
@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);
}

/* ================= 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;  /* 🔥 FORCE override */
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
}

/* 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;
    font-weight: 600;
    font-size: 17px;

    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(241, 241, 28);
    transform: translateY(-2px);
}

/* ================= DROPDOWN ================= */
.hero nav ul li {
    position: relative;
}


.hero .dropdown-menu {
    display: none;
    position: absolute;   /* ⭐ IMPORTANT (fix) */

    top: 100%;            /* nav ke just neeche */
    left: 0;

    min-width: 220px;
    background: #fff;

    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    padding: 8px 0;
    z-index: 9999;
}




/* 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 15px;
}

/* ⭐ ICECREAM PINK HOVER */
.hero .dropdown-menu li a:hover {
    /* icecream pink */
      background: #be5462;   /* icecream pink */
    color: #ffd700 !important;   /* strong gold yellow */

  color: rgb(241, 241, 28);
    transform: translateY(-2px);}





/* ================= 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 {
    /* icecream pink */
      background: #be5462;   /* icecream pink */

  color: rgb(241, 241, 28);
    transform: translateY(-2px);}




/* Hero Section */
.hero {
 
    justify-content: flex-start; /* text left, image right */
    padding: 13px 5%;
  background-image: url("../images/cornsmall.jpg");
               background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url("../images/cornsmall.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 RESPONSIVE ONLY
   LAPTOP / DESKTOP PAR KOI EFFECT NAHI
========================================= */

@media screen and (max-width: 900px) {

    /* HERO SECTION */
    .hero {

        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: center;

        text-align: center;

        height: auto;
        min-height: auto;

        padding: 120px 20px 353px;

        overflow: hidden;
    }

}


/* ================= 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: -90px;
        right: -10px;

        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: 67vh;   /* 👈 yaha control karo (try 60-70vh) */

        padding-top: 20px;
    }
    .menu.active {
        left: 0;
    }

/* 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 > a::after{
        content:"▼";
        font-size:12px;
        margin-left:10px;
    }

    .dropdown-sub > a::after{
        content:"▶";
        font-size:12px;
        margin-left:10px;
    }

    .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;
  }

  /* 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-family: 'poppins','sans-sarif';
    font-size: 70px;
    color: #fcfbf8;
    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;
    }

}




/* SECTION */
.methamba-section {
    padding: 60px 5%;
    color:black;
    text-align: left;
}


/* SECTION */
.about-methamba{
    margin-top: 20px;
    padding: 60px 5%;
    color: #fff;
    text-align: center;
    justify-content: center;
    width: fit-content;        /* ⭐ center trick */



}

/* SECTION */
.methamba-about {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px 60px;   /* 🔥 outer left-right space */

    gap: 15px;   /* 🔥 global gap (sab ke beech) */

    background: linear-gradient(145deg, #fffaf0, #fff3e0);
    border-radius: 20px;
}

/* TEXT */
.methamba-text {
    flex: 1.2;
    font-weight: 600;
}

/* CENTER IMAGE */
.methamba-center-image {
    flex: 0 0 auto;
    margin-right: 10px;   /* 🔥 center-right gap */
}

/* RIGHT IMAGE */
.methamba-image {
    flex: 0 0 auto;
}

/* IMAGE SIZE */
.methamba-center-image img {
    max-width: 200px;
}

.methamba-image img {
    max-width: 240px;
}


/* =================================================
   MOBILE RESPONSIVE ONLY
   LAPTOP / DESKTOP SAFE
   SAB EK KE BAAD EK AAYEGA
================================================= */

@media screen and (max-width: 768px) {

  /* MAIN SECTION */
  .methamba-section {
    padding: 40px 15px;
    text-align: center;
  }

  /* OUTER WRAPPER */
  .about-methamba {
    width: 100%;
    padding: 25px 10px;

    margin-top: 10px;
  }

  /* FLEX COLUMN */
  .methamba-about {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 20px 15px;
    gap: 20px;

    overflow: hidden;

    border-radius: 16px;
  }

  /* TEXT */
  .methamba-text {
    width: 100%;

    font-size: 14px;
    line-height: 1.7;

    text-align: center;

    order: 1;
  }

  /* CENTER IMAGE */
  .methamba-center-image {
    width: 100%;
    margin: 0;

    order: 2;
  }

  .methamba-center-image img {
    width: 100%;
    max-width: 180px;
    height: auto;

    display: block;
    margin: auto;
  }

  /* RIGHT IMAGE */
  .methamba-image {
    width: 100%;

    order: 3;
  }

  .methamba-image img {
    width: 100%;
    max-width: 220px;
    height: auto;

    display: block;
    margin: auto;
  }

}

/* ================= RADZ SECTION ================= */
.radz-section {
  padding: 60px 5%;
  background: linear-gradient(135deg, #fffaf0, #fff3e0);
  text-align: center;
  overflow: hidden;
}

/* ================= TITLE ================= */
.radz-section .section-title {
  font-size: 30px;
  font-weight: 700;
  color: #3b2a14;
  margin-bottom: 30px;
  position: relative;
}

/* UNDERLINE */
.radz-section .section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffb347);
  display: block;
  margin: 10px auto 0;
  border-radius: 50px;
}

/* ================= GALLERY ================= */
.radz-section .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
}

/* ================= IMAGES ================= */
.radz-section .gallery img {
  width: 100%;
  max-width: 260px;
  height: 200px;

  object-fit: cover;   /* 🔥 clean look */

  border-radius: 18px;
  border: 2px solid #f7e7a6;

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);

  transform: rotateY(12deg) rotateX(6deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);

}

/* ================= HOVER ================= */
.radz-section .gallery img:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 18px 40px rgba(212,175,55,0.25);
}

/* ================= EMPTY TEXT ================= */
.radz-section .gallery p {
  grid-column: 1 / -1;
  color: #777;
  font-size: 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .radz-section .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .radz-section .gallery img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .radz-section .gallery {
    grid-template-columns: 1fr;
  }

  .radz-section .gallery img {
    height: 200px;
  }
}

/* ================= BOX ================= */
.product-info {
    max-width: 500px;
    margin: 40px auto;
    padding: 25px;

    background: linear-gradient(135deg, #fffaf0, #fff3d6);

    border-radius: 18px;
    border: 1px solid rgba(212,175,55,0.5);

    position: relative;
    overflow: hidden;

    box-shadow: 
        0 8px 20px rgba(0,0,0,0.08),
        0 0 15px rgba(212,175,55,0.2);

    text-align: center;
    font-weight: 600;

    transition: 0.4s ease;
}

/* ✨ GOLDEN SHINE ANIMATION */
.product-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 215, 0, 0.4),
        transparent
    );

    animation: shine 4s infinite;
}

/* ANIMATION */
@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* HOVER */
.product-info:hover {
    transform: translateY(-6px) scale(1.01);

    box-shadow: 
        0 15px 30px rgba(212,175,55,0.25),
        0 0 25px rgba(173,216,230,0.2);
}

/* ================= TITLE ================= */
.product-info h2 {
    font-size: 26px;
    color: #b8962e;
    margin-bottom: 6px;
    font-weight: 700;

    text-shadow:
        0 0 8px rgba(212,175,55,0.5),
        0 0 15px rgba(173,216,230,0.3);
}

/* TAGLINE */
.product-info .tagline {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    font-style: italic;
}

/* ================= LIST ================= */
.product-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ITEMS */
.product-info ul li {
    font-size: 15px;
    padding: 10px 12px;
    margin: 8px 0;

    background: linear-gradient(135deg, #ffffff, #fff8dc);

    border-radius: 10px;

    box-shadow: 
        0 3px 8px rgba(0,0,0,0.05),
        0 0 10px rgba(212,175,55,0.1);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition: 0.3s;
}

/* HOVER */
.product-info ul li:hover {
    transform: translateX(6px);

    background: linear-gradient(135deg, #fff8dc, #fff3b0);

    box-shadow: 
        0 5px 15px rgba(212,175,55,0.3),
        0 0 20px rgba(173,216,230,0.2);
}
/* ================= SECTION ================= */
.brand-section {
  padding: 10px 5%;
  background: linear-gradient(135deg, #fffaf0, #fff3e0);
  text-align: center;
  overflow: hidden;
  margin-bottom: 0;
}

/* ================= TITLE ================= */
.brand-section .section-title {
  font-size: 26px;
  font-weight: 800;
  color: #2b1a0f;
  margin-bottom: 25px;
  position: relative;
}

.brand-section .section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f7e7a6);
  display: block;
  margin: 8px auto 0;
  border-radius: 10px;
}

/* ================= GALLERY FIX ================= */
.brand-section .gallery {
  display: flex;              /* 🔥 grid hata diya */
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* ================= IMAGES (LOGO STYLE) ================= */
.brand-section .gallery img {
  width: 120px;
  height: 80px;

  object-fit: contain;   /* 🔥 FULL IMAGE SHOW */

  background: #fff;
  padding: 8px;

  border-radius: 12px;
  border: 1px solid #f7e7a6;

  box-shadow: 0 4px 10px rgba(0,0,0,0.08);

  transition: all 0.3s ease;

  display: block;
}

/* ================= HOVER ================= */
.brand-section .gallery img:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .brand-section .gallery img {
    width: 90px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .brand-section .gallery img {
    width: 75px;
    height: 50px;
  }}/* ================= FINAL RESPONSIVE LAYER (DO NOT MODIFY OLD CSS) ================= */
