@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* ================= GLOBAL SAFETY FIX ================= */
* {
    box-sizing: border-box;
}

body {
      font-family: 'poppins',sans-serif;

    margin: 0;
    padding: 0;
    background: var(--vanilla-bg);
    overflow-x: hidden;   /* ✅ prevents horizontal overlap */
}

/* ================= FORCE PAGE FLOW RESET ================= */
main, section {
    width: 100%;
    display: block;
    position: relative;
}

/* ================= HERO FIX (MOST IMPORTANT) ================= */
.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 5% 60px;
    margin: 0;

    background: linear-gradient(135deg, var(--dark-bg), var(--gold-dark));
    color: var(--text-light);

    min-height: auto;
    overflow: hidden;
}

/* ================= NAV FIX ================= */
.hero nav {
    position: relative !important;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
font-size: 17px;
font-weight: 500;
right: -60px;   
 font-family: 'Poppins';
}
/* NAV LIST */
.hero nav ul {
    display: flex;
    flex-wrap: wrap;  /* ✅ prevents overflow */
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ================= TEAM SECTION ISOLATION ================= */
.experienced-team {
  margin-top: 200px;
    width: 100%;
    display: block;
    position: relative;

    padding: 60px 5%;
    margin: 0;

    background: linear-gradient(
        to bottom right,
        var(--icecream-pink),
        var(--soft-honey-tint),
        var(--icecream-mint)
    );
}

/* FORCE STACKING INSIDE TEAM */
.team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* ================= CARD SAFETY ================= */
.team-card {
    width: 220px;
    background: var(--icecream-pink);
    padding: 20px;
    border-radius: 15px;

    position: relative;
    z-index: 1; /* ✅ prevents overlap */
}

/* ================= IMAGE SAFETY ================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================= DROPDOWN FIX ================= */
.hero .dropdown-menu {
    position: absolute;
    z-index: 9999;
}

.hero .submenu {
    position: absolute;
    z-index: 9999;
}

/* ================= SECTION GAP FIX ================= */
section {
    margin-bottom: 40px;
}

/* LINKS */
.hero nav ul li a {
    color: #fff;
    text-decoration: none;
   
    padding: 6px 8px;
    transition: 0.3s;

    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

/* HOVER MAIN LINK */
.hero nav ul li a:hover {
    color: rgb(169, 169, 14);
    transform: translateY(-2px);
}

/* ================= DROPDOWN ================= */
.hero nav ul li {
    position: relative;
}

/* dropdown box */
.hero .dropdown-menu {
    display: none;
    position: absolute;
    top: 120%;
    right: 0;
left:auto;
    min-width: 220px;
    background: #fff;

    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    padding: 8px 0;
}

/* show dropdown */
.hero .dropdown:hover > .dropdown-menu {
    display: block;
}

/* dropdown items */
.hero .dropdown-menu li a {
    color: #2b1a0f;
    text-shadow: none;

    display: block;
    padding: 10px 18px;
}

/* ⭐ ICECREAM PINK HOVER */
.hero .dropdown-menu li a:hover {
    background: #ffb6c1;   /* icecream pink */
    color: #2b1a0f;
}

/* ================= SUBMENU ================= */
.hero .dropdown-sub {
    position: relative;
}

/* submenu box */
.hero .submenu {
    display: none;
    position: absolute;
    top: 0;
    right: auto;
left:100%;
    min-width: 200px;
    background: #fff;

    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* show submenu */
.hero .dropdown-sub:hover > .submenu {
    display: block;
}

/* submenu items */
.hero .submenu li a {
    display: block;
    padding: 10px 15px;
    color: #2b1a0f;
    text-shadow: none;
}

/* ⭐ ICECREAM PINK HOVER SUBMENU */
.hero .submenu li a:hover {
    background: #ffc0cb;   /* icecream pink */
    color: #2b1a0f;
}



/* Hero Section */
.hero {
 
    justify-content: flex-start; /* text left, image right */
    padding: 13px 5%;
  background-image: url("../images/mka.jpg");

       background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url("../images/mka.jpg");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    position: relative;
    display: flex;
    align-items: center;      /* vertical alignment fix */
    justify-content: space-between;

    min-height: 60vh;         /* controlled height */
    overflow: hidden;     
       /* ⭐ prevents topbar overlap */
         height: 700px;        /* jitna cut chahiye */
}

/* ================= MOBILE BACKGROUND FIX ONLY ================= */
@media screen and (max-width: 768px) {

  .hero {
    background-position: center top;   /* ⭐ important fix */
    background-size: cover;
    background-repeat: no-repeat;

    /* better control for mobile visibility */
    max-height: 68vh;
  }

}

/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fffaf0;
    overflow-x: hidden;
    font-family: 'poppins,'sans-serif;
}

/* ================= SECTION FLOW ================= */
main, section {
    width: 100%;
    display: block;
}

section {
    margin-bottom: 50px;
}
/* ================= NAV ================= */
.hero nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1000;
}

/* NAV LIST */
.hero nav ul {
    display: flex;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
}

.hero nav ul li {
    position: relative;
}

/* NAV LINKS */
.hero nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 7px 10px;
    display: block;
    transition: 0.3s;
}

.hero nav ul li a:hover {
      color: #ffd700 !important;   /* strong gold yellow */

    transform: translateY(-2px);

}

/* ================= DROPDOWN ================= */
.hero .dropdown {
    position: relative;
}

.hero .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
 left: 50%;
    transform: translateX(-50%);

    min-width: 220px;
    background: #fff;
    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;

    padding: 8px 0;
}

.hero .dropdown:hover > .dropdown-menu {
    display: block;
}

.hero .dropdown-menu li {
    position: relative;
}

.hero .dropdown-menu li a {
    color: #2b1a0f;
    padding: 10px 15px;
    display: block;
}

.hero .dropdown-menu li a:hover {
        background: #be5462;   /* icecream pink */
    color: #ffd700 !important;   /* strong gold yellow */

    transform: translateY(-2px);


      }

/* ================= SUBMENU ================= */
.hero .dropdown-sub {
    position: relative;
}

.hero .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;

    min-width: 200px;
    background: #fff;
    border-radius: 10px;

    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 10000;

    padding: 8px 0;
}

.hero .dropdown-sub:hover > .submenu {
    display: block;
}

.hero .submenu li a {
    color: #2b1a0f;
    padding: 10px 12px;
    display: block;
    white-space: nowrap;
}

.hero .submenu li a:hover {
   
        background: #be5462;   /* icecream pink */
    color: #ffd700 !important;   /* strong gold yellow */

  color: rgb(241, 241, 28);
    transform: translateY(-2px);}


/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
    .hero nav {
        justify-content: center;
    }

    .hero nav ul {
        flex-direction: column;
        align-items: center;
    }

    .hero .dropdown-menu,
    .hero .submenu {
        position: static;
        display: none;
        box-shadow: none;
        width: 100%;
    }

    .hero .dropdown:hover .dropdown-menu {
        display: block;
    }

    .hero .dropdown-sub:hover .submenu {
        display: block;
    }
}



/* ================= DESKTOP (DEFAULT) ================= */
.hamburger {
    display: none;   /* 🔥 laptop me hide */
}



@media screen and (max-width: 900px) {

    /* ================= HAMBURGER ================= */
    .hamburger {

        display: flex;

        flex-direction: column;
        gap: 5px;

        cursor: pointer;

        position: absolute;

        top: 20px;
        right: 60px;

        z-index: 100000;
    }

    .hamburger span {

        width: 28px;
        height: 3px;

        background: #fff;

        border-radius: 5px;

        display: block;
    }

    /* ================= MENU ================= */
    .menu {

        position: fixed;

        top: 74px;
        left: -100%;

        width: 80%;
height: calc(100vh - 147px); /* 🔥 bottom space kam feel hoga */
        background: linear-gradient(135deg, #2b1a0f, #b8860b);

        display: flex;
        flex-direction: column;

        overflow-y: auto;

        transition: 0.3s ease;

        z-index: 99999;
        max-height: 68vh;   /* 👈 yaha control karo (try 60-70vh) */

        padding-top: 20px;
    }
    .menu.active {
        left: 0;
    }
/* MENU SCROLLBAR HIDE (KEEP SCROLL WORKING) */
.menu {
    overflow-y: auto;   /* scroll chalega */
    scrollbar-width: none; /* Firefox */
}

/* Chrome, Edge, Safari */
.menu::-webkit-scrollbar {
    display: none;
}
    /* ================= MENU ITEMS ================= */
    .menu li {

        width: 100%;

        padding: 0;
        list-style: none;
    }

    /* ================= LINKS ================= */
    .menu li a {

        color: #fff;

        display: block;

        padding: 14px 18px;

        text-decoration: none;
    }

    /* ================= REMOVE DESKTOP HOVER ================= */
    .dropdown:hover > .dropdown-menu,
    .dropdown-sub:hover > .submenu {

        display: none !important;
    }

    /* ================= DROPDOWN ================= */
    .dropdown-menu {

        display: none;

        position: static !important;

        width: 100%;

        background: rgba(255,255,255,0.08);

        padding-left: 10px;

        box-shadow: none;

        border-radius: 0;
    }

    .dropdown.open > .dropdown-menu {

        display: block !important;
    }

    /* ================= SUBMENU ================= */
    .submenu {

        display: none;

        position: static !important;

        width: 100%;

        margin-left: 0 !important;

        margin-top: 5px;

        padding-left: 15px;

        background: rgba(255,255,255,0.05);

        border-left: 2px solid rgba(255,255,255,0.3);

        box-shadow: none;
    }

    .dropdown-sub.open > .submenu {

        display: block !important;
    }


@media screen and (max-width: 900px) {

  /* 🔥 FORCE RESET EVERYTHING RELATED TO SIDE POSITION */
  .dropdown-menu,
  .submenu {

    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;

    transform: none !important;

    width: 100% !important;

    float: none !important;
  }

  /* dropdown behavior */
  .dropdown.open > .dropdown-menu {
    display: block !important;
  }

  .dropdown-sub.open > .submenu {
    display: block !important;
  }
    .dropdown > a::after{
        content:"▼";
        font-size:12px;
        margin-left:10px;
    }

    .dropdown-sub > a::after{
        content:"▶";
        font-size:12px;
        margin-left:10px;
    }


  /* remove any side effects */
  .hero .submenu {
    margin-left: 0 !important;
  }
}
}

/* REMOVE BOX */
.hero-content {
  
 position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* perfect center */

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 2;
    margin-top: -20px;   /* 👈 top se gap control */

}

/* TEXT STYLE */
.hero-title {
    font-size: 70px;
    font-family: 'poppins',sans-serif;
    color: #f2f0eb;
    text-align: center;

    /* DARK SHADOW (background readable banane ke liye) */
    text-shadow:
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(49, 47, 47, 0.7),
        0 0 20px rgba(212,175,55,0.6),
        0 0 30px rgba(173,216,230,0.4);
}

/* ================= MOBILE RESPONSIVE ONLY ================= */
@media screen and (max-width: 768px) {

    .hero-content {

        top: 50%;                 /* 👈 mobile me neeche */
        left: 50%;

        transform: translate(-50%, -50%);

        width: 90%;
        padding: 0 15px;

        margin-top: 0;            /* desktop margin remove */

        text-align: center;
    }

    .hero-title {

        font-size: 34px;          /* mobile font size */
        line-height: 1.3;

        word-break: break-word;
    }

}


/* ================= TITLE ================= */
.section-title1 {
    font-family: 'poppins','sans-serif';

  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #b8860b;
  margin: 40px 0 20px;
}

.section-title1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #b8860b, #ffd700);
  margin: 10px auto 0;
  border-radius: 10px;
}
.feedback-section{
    width:80%;
    margin:40px auto;
    padding:20px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
    color: #000;
}

.feedback-form input,
.feedback-form textarea{
    width:100%;
    padding:10px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:8px;
    color: #252525;
}

.feedback-form button{
    padding:10px 20px;
    background:#2e7d32;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

/* ⭐ STARS */
.stars{
    font-size:30px;
    cursor:pointer;
    margin:10px 0;
}

.stars span{
    color:#ccc;
    transition:0.2s;
}

.stars span.active{
    color:gold;
}
/* ================= CONTAINER ================= */
.clientele-container {
  display: flex;
  gap: 15px;

  width: max-content;
  animation: scrollLeft 22s linear infinite;


  padding: 10px 0;
}

/* pause on hover */
.clientele-container:hover {

  animation-play-state: paused;
}

/* ================= BOX ================= */
.client-box {
  flex: 0 0 auto;   /* ⭐ IMPORTANT (prevents shrink issues) */

  width: 150px;
  height: 120px;

  background: #fff;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid rgba(210, 27, 97, 0.4);

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  transition: 0.3s ease;
}

/* IMAGE */
.client-box img {
  max-width: 110px;
  filter: grayscale(100%);
  transition: 0.3s ease;
  border: 4px solid  #ffd700;


}

/* hover */
.client-box:hover {
  border-color: #ffd700;
  transform: translateY(-6px);
}

.client-box:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ================= SMOOTH ANIMATION FIX ================= */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media screen and (max-width: 768px) {

  .section-title1 {
    font-size: 20px;
  }

  .clientele-container {
    gap: 15px;
    animation-duration: 16s;
  }

  .client-box {
    width: 140px;
    height: 100px;
  }

  .client-box img {
    max-width: 80px;
  }
}

/* extra small phones */
@media screen and (max-width: 480px) {

  .client-box {
    width: 120px;
    height: 90px;
  }
}