


@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: #ffd700 !important;   /* strong gold yellow */

  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/cornno1.jpg");
               background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url("../images/cornno1.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 ================= */
.cornclub-wrapper {
    padding: 70px 5%;
    background: linear-gradient(135deg, #fffaf0, #fff3e0); /* ice + cream */
    text-align: center;
    color: #3b2a14;
}

/* ================= CONTENT BOX ================= */
.cornclub-section {
    max-width: 900px;
    margin: auto;

    padding: 30px;
    border-radius: 20px;

    position: relative;

    background: linear-gradient(135deg, #ffffff, #fff8dc);

    /* 🔥 MAIN GOLDEN BORDER */
    border: 2px solid #d4af37;

    /* 🔥 DOUBLE EFFECT (inside glow) */
    box-shadow:
        0 8px 25px rgba(212,175,55,0.2),
        inset 0 0 15px rgba(255,215,0,0.2);

    text-align: left;

    transition: 0.4s ease;
}

/* ✨ PREMIUM GRADIENT BORDER EFFECT */
.cornclub-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;

    padding: 2px;
    background: linear-gradient(135deg, #ffd700, #fff, #d4af37);

    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* 🔥 HOVER EFFECT */
.cornclub-section:hover {
    transform: translateY(-6px) scale(1.01);

    box-shadow:
        0 15px 35px rgba(212,175,55,0.35),
        inset 0 0 20px rgba(255,215,0,0.3);
}

.cornclub-text{
    max-width: 800px;          /* reading width control */
}

.cornclub-text p{
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 700;
    text-align:start;
}

/* ================= SECTION TITLE ================= */
.section-title {
    text-align: center;
    font-size: 42px;
    margin: 40px 0 20px;

    color: #c9a227; /* golden */

    text-transform: uppercase;
    letter-spacing: 2px;

    text-shadow:
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(255,215,0,0.3);
}

/* GOLD UNDERLINE */
.section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  display: block;
  margin: 12px auto 0;
  border-radius: 50px;
}


/* ================= GALLERY GRID ================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;

    padding: 40px 5%;
    background: linear-gradient(135deg, #fffaf0, #fff3e0); /* ice cream theme */

    border-radius: 20px;
}

/* ================= IMAGE CARD ================= */
.gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;

    border-radius: 15px;

    border: 2px solid rgba(212,175,55,0.5);

    box-shadow:
        0 5px 15px rgba(0,0,0,0.08),
        0 0 10px rgba(212,175,55,0.2);

    transition: 0.4s ease;

    cursor: pointer;
}

/* ================= HOVER EFFECT ================= */
.gallery img:hover {
    transform: scale(1.08) translateY(-5px);

    box-shadow:
        0 15px 30px rgba(212,175,55,0.35),
        0 0 20px rgba(255,215,0,0.3);
}

/* ================= GLOW BORDER WRAP (OPTIONAL) ================= */
.gallery {
    border: 1px solid rgba(212,175,55,0.4);
    box-shadow: 0 0 25px rgba(212,175,55,0.15);
}


/* ================= REVIEWS ================= */
.reviews-section {
  padding: 60px 20px;
  background: white;
  text-align: center;
    overflow: hidden; /* 🔥 no scroll, no shake */

}

.reviews-box {
  display: flex;
  gap: 18px;   /* reduced gap */
  overflow-x: auto;
  padding: 20px 10px;
  scroll-behavior: smooth;
}

.reviews-box::-webkit-scrollbar {
  display: none;
}

.review-img {
  flex: 0 0 auto;
  width: 420px;
}

.review-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: 0.3s;
}

.review-img img:hover {
  transform: scale(1.03);
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .review-img {
    width: 300px;
  }

  .nav-menu {
    gap: 2px;   /* ultra small mobile gap */
  }

  .nav-menu > li > a {
    font-size: 14px;
    padding: 4px;
  }
}

/* ================= REVIEWS ================= */
.reviews-section {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

/* scroll container */
.reviews-box {
  display: flex;
  gap: 20px;   /* 🔥 reduced gap */
  overflow-x: auto;
  padding: 20px 10px;
  scroll-behavior: smooth;
}

.reviews-box::-webkit-scrollbar {
  display: none;
}

/* card */
.review-img {
  flex: 0 0 auto;
  width: 450px;   /* balanced size */
}

/* image */
.review-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: 0.3s;
}

.review-img img:hover {
  transform: scale(1.03);
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .review-img {
    width: 300px;
  }

  .nav-menu {
    gap: 4px;
  }

  .nav-menu > li > a {
    font-size: 14px;
    padding: 5px;
  }
}

================= SECTION ================= */
.crowd-section {
  padding: 70px 5%;
  background: linear-gradient(135deg, #fffaf0, #ffffff);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* ================= HEADER ================= */
.crowd-header {
  text-align: center;
  margin-bottom: 25px;
}

.crowd-header .section-title {
  font-size: 19px;
  font-weight: 900;
  color: #c9a227;
  margin: 5px 0;
  text-align: center;
  text-shadow: 0 0 10px rgba(212,175,55,0.5);
}

.crowd-header .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 8px auto 0 auto;
  background: linear-gradient(90deg, #d4af37, #f7e7a6);
  border-radius: 50px;
}

.sub-text {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  text-align: center;
  font-weight: 700;
}

/* ================= GALLERY ================= */
.crowd-section .gallery {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 20px;

  width: max-content; /* 🔥 IMPORTANT FIX */
  animation: scrollLeft 25s linear infinite;

  will-change: transform;
}

/* 🔥 KEYFRAME (SMOOTH LOOP FIX) */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* STOP ON HOVER */
.crowd-section .gallery:hover {
  animation-play-state: paused;
}

/* ================= IMAGES ================= */
.crowd-section .gallery img {
  width: 220px !important;
  min-width: 220px !important;
  flex: 0 0 auto !important;
  height: 160px !important;
  overflow: visible;    /* 🔥 FIX 2 (remove hidden cut feel) */

  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #f7e7a6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {

  .crowd-section {
    overflow: hidden;
  }

  .crowd-section .gallery {
    display: flex !important;
    flex-wrap: nowrap !important;

    width: max-content !important;

    gap: 15px;

    animation: crowdSlide 20s linear infinite !important;
  }

  .crowd-section .gallery img {
    flex: 0 0 auto !important;

    width: 180px !important;
    height: 140px !important;

    object-fit: cover;
  }

}@media (max-width: 768px) {

  .crowd-section .gallery {
    display: grid !important;
    grid-template-columns: 1fr !important;  /* 🔥 single column */
    gap: 15px;

    width: 100% !important;
    animation: none !important; /* 🔥 stop movement */
  }

  .crowd-section .gallery img {
    width: 100% !important;
    max-width: 320px;
    height: 160px !important;

    margin: auto;
    object-fit: cover;
  }

}
/* 🔥 HOVER EFFECT */
.crowd-section .gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {

  .crowd-section .gallery {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .crowd-section .gallery img {
    width: 100% !important;
    max-width: 320px;

    height: auto !important;      /* 🔥 important fix */
    object-fit: contain !important; /* 🔥 full image show */

    display: block;
    margin: auto;
  }

}
/* ================= THEME ================= */
:root {
  --gold: #d4af37;
  --gold-light: #f7e7a6;
  --ice: #f5fbff;
  --ice-soft: #eaf6ff;
  --text-dark: #2b1a0f;
}

/* ================= MENU SECTION ================= */
.menu-section {
  padding: 10px 5%;
  background: linear-gradient(135deg, var(--ice), #ffffff);
}

/* TITLE */
.menu-section .section-title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color:goldenrod;
  margin-bottom: 40px;
  position: relative;

}

/* GOLD UNDERLINE */
.menu-section .section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  display: block;
  margin: 12px auto 0;
  border-radius: 50px;
}

/* ================= GRID ================= */
.menu-section .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); /* 🔥 BIG CARDS */
  gap: 30px;
  padding: 15px;
}

/* ================= IMAGES ================= */
.menu-section .gallery img {
  width: 100%;
  height: 520px;           /* 🔥 VERY BIG BUT CONTROLLED */
  object-fit: contain;     /* 🔥 FULL IMAGE SHOW (NO CUT) */

  background: #fff;
  border-radius: 20px;
  border: 2px solid var(--gold-light);

  box-shadow: 0 12px 30px rgba(0,0,0,0.12);

  transition: all 0.4s ease;
}

/* ================= HOVER ================= */
.menu-section .gallery img:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 45px rgba(212,175,55,0.28);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .menu-section .gallery img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .menu-section .gallery {
    grid-template-columns: 1fr;
  }

  .menu-section .gallery img {
    height: 350px;
  }
}


/* ================= LOGO SECTION ================= */
.logo-section {
  padding: 10px 5%;
  background: linear-gradient(135deg, var(--ice-soft), #ffffff);
  text-align: center;
  margin-top: 10px;
}

/* TITLE */
.logo-section h2 {
  font-size: 26px;
  font-weight: 700;
  color:goldenrod;
  position: relative;
  margin-bottom: 30px;
}

/* UNDERLINE */
.logo-section h2::after {
  content: "";
  width: 70px;
  height: 3px;
  display: block;
  margin: 8px auto 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #d4af37, #f7e7a6);

}

/* LOGO GRID */
.logo-section .logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* LOGO IMAGES */
.logo-section .logo-strip img {
  width: 120px;
  height: 90px;
  object-fit: contain;

  padding: 10px;
  border-radius: 12px;

  border: 1px solid var(--gold-light);
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);

  transition: all 0.3s ease;
}

/* LOGO HOVER */
.logo-section .logo-strip img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(212,175,55,0.2);
}

.logo-section{
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fff8e1, #ffe0b2, #fffaf0);
    overflow: visible;
}

/* SINGLE ROW LOGOS */
.logo-section::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50px;  /* 👈 adjust vertical position */

    width: 100%;
    height: 60px;

    background-image: 
        url("images/i.jpg"),
        url("images/ii.jpg"),
        url("images/iii.jpg"),
        url("images/iiii.jpg"),
        url("images/iiiii.jpg"),
        url("images/iiiiii.jpg"),
        url("images/iiiiiii.jpg");

    background-size: 50px 50px;
    background-repeat: repeat-x; /* 👈 IMPORTANT (single line) */
    opacity: 0.80; /* 👈 increase kiya (ab dikhega) */

}
/* GALLERY GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* IMAGES */
.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;   /* important for uniform look */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER EFFECT */
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}


/* CONTENT ABOVE */
.logo-section .content{
    position: relative;
    z-index: 2;
}

.logo-strip{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: center;
    gap: 40px;

    background: rgba(0,0,0,0.6); /* 👈 dark strip */
    padding: 10px 0;
}

.logo-strip img{
    width: 60px;
    height: 60px;
}



.reviews-section {
    margin-top: auto;
    padding:20px;
    background: white;
    text-align: center;
    margin-bottom: 0;
}
.reviews-section,h2
{
  color:#b8860b;

}


/* SCROLL CONTAINER */
.reviews-box {
    display: flex;
    flex-wrap: nowrap;
    gap: 35px;

    overflow-x: auto;
    padding: 15px 10px;

    scroll-behavior: smooth;
}

.reviews-box::-webkit-scrollbar {
    display: none;
}

/* CARD (NO WHITE BOX) */
.review-img {
    flex: 0 0 auto;
    width: 520px;
    height: 320px; 
    width: 600px;  /* BIG SIZE */
}

/* IMAGE → FULL DISPLAY */
.review-img img {
    width: 100%;
    display: block;
    object-fit: contain; /* FULL IMAGE (NO CUT) */
    height: auto;
}

/* HOVER EFFECT */
.review-img img:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
}


/* =================================================
   MOBILE RESPONSIVE ONLY (SAFE FOR LAPTOP)
================================================= */

@media screen and (max-width: 768px) {

  /* ================= CORN CLUB ================= */
  .cornclub-section {
    padding: 20px;
    text-align: center;
  }

  .cornclub-text {
    max-width: 100%;
  }

  .cornclub-text p {
    text-align: center;
    font-size: 14px;
  }

  /* ================= TITLE ================= */
  .section-title {
    font-size: 24px !important;
  }

  /* ================= GALLERY (NO SCROLL, STACK) ================= */
  .gallery {
    grid-template-columns: 1fr !important;
    gap: 15px;
    padding: 20px 10px;
  }

  .gallery img {
    height: 200px;
  }

  /* ================= REVIEWS (STOP HORIZONTAL SCROLL) ================= */
  .reviews-box {
    flex-direction: column;
    overflow-x: hidden;
    gap: 20px;
  }

  .review-img {
    width: 100% !important;
  }

  /* ================= CROWD SECTION (AUTO SCROLL OFF) ================= */
  .crowd-section .gallery {
    animation: none !important;
    flex-wrap: wrap !important;
    justify-content: center;
  }

  .crowd-section .gallery img {
    width: 100% !important;
    max-width: 300px;
    height: 160px !important;
  }

  /* ================= MENU SECTION ================= */
  .menu-section .gallery {
    grid-template-columns: 1fr !important;
  }

  .menu-section .gallery img {
    height: 280px;
  }

  /* ================= LOGO SECTION ================= */
  .logo-section .logo-strip {
    gap: 10px;
  }

  .logo-section .logo-strip img {
    width: 90px;
    height: 60px;
  }

}/* =================================================
   SAFE MOBILE FIX (NO IMPACT ON LAPTOP)
================================================= */
@media screen and (max-width: 768px) {

  /* ================= GENERAL SAFE FIX ================= */
  body {
    overflow-x: hidden; /* horizontal scroll band */
  }

  /* ================= CORNCLUB ================= */
  .cornclub-section {
    padding: 20px;
  }

  .cornclub-text p {
    text-align: center;
    font-size: 14px;
  }

  /* ================= ALL GALLERY SAFE ================= */
  .gallery {
    grid-template-columns: 1fr !important;
    gap: 15px;
    padding: 15px;
  }

  .gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* ================= REVIEWS FIX ================= */
  .reviews-box {
    flex-direction: column;
    overflow: hidden; /* scroll hata diya */
    gap: 15px;
  }

  .review-img {
    width: 100% !important;
  }


.reviews-section {
  padding:10px;
  background: white;
  text-align: center;
}

/* ================= DESKTOP (NO SCROLL EFFECT) ================= */
.reviews-box {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.review-img {
  width: 450px;
  flex: 0 0 auto;
}

.review-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: 0.3s ease;
}

.review-img img:hover {
  transform: scale(1.03);
}

/* ================= MOBILE ONLY SCROLL ================= */
@media (max-width: 576px) {

  .reviews-box {
    display: flex;
    flex-wrap: nowrap;

    overflow-x: auto;      /* 🔥 enable swipe scroll */
    overflow-y: hidden;

    gap: 15px;

    -webkit-overflow-scrolling: touch; /* smooth finger scroll */
  }

  .reviews-box::-webkit-scrollbar {
    display: none; /* no scrollbar */
  }

  .review-img {
    flex: 0 0 auto;
    width: 85%;
    max-width: 300px;
      display: block;          /* 🔥 removes image bottom gap */

  }
}
@media (max-width: 576px) {

  .reviews-box {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    overflow-x: auto;
    overflow-y: hidden;

    gap: 12px;

    align-items: flex-start;   /* 🔥 removes vertical gap issue */
padding-bottom: 0;
margin-bottom: 0;
    -webkit-overflow-scrolling: touch;
  }

  .reviews-box::-webkit-scrollbar {
    display: none;
  }

  .review-img {
    flex: 0 0 auto !important;
    width: 80%;
    max-width: 320px;

    margin: 0 !important;     /* 🔥 remove unwanted spacing */
    padding: 0 !important;
  }

  .review-img img {
    width: 100%;
    height: auto;
    display: block;

  margin: 0;
  padding: 0;
}
  }
}

/* ====/* ================= DESKTOP SAFE ================= */
.crowd-section .gallery {
  display: flex;
  gap: 20px;
}

/* ================= MOBILE SLIDER ================= */
@media (max-width: 768px) {

  .crowd-section {
    overflow: hidden;
  }

  .crowd-section .gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;

    width: max-content;

    animation: scrollLeft 25s linear infinite;
  }

  .crowd-section .gallery img {
    flex: 0 0 auto;
    width: 180px;
    height: 140px;
    object-fit: cover;
  }

  /* smooth infinite scroll */
  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* optional pause */
  .crowd-section .gallery:hover {
    animation-play-state: paused;
  }}

  
/* ================= SAFETY RESET ================= */
.logo-section {
  position: relative;
  padding: 60px 5%;
  text-align: center;
  margin-bottom: 0px;
}

/* ================= TITLE FIX ================= */
.section-title {
  position: relative;
  display: block;

  margin-bottom: 35px;   /* 🔥 space fix */
  z-index: 2;            /* overlap avoid */

  font-size: 22px;
}

/* ================= LOGO STRIP FIX ================= */
.logo-strip {
  display: flex;
  flex-wrap: wrap;       /* 🔥 important */
  justify-content: center;
  align-items: center;

  gap: 15px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* LOGO IMAGE */
.logo-strip img {
  width: 90px;
  height: 65px;
  object-fit: contain;
}

/* ================= MOBILE ONLY ================= */
@media screen and (max-width: 768px) {

  .section-title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .logo-strip {
    gap: 10px;
  }

  .logo-strip img {
    width: 75px;
    height: 55px;
  }

}html, body {
  overflow-x: hidden;
}