
@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;  /* 🔥 FORCE override */
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
    right: -60px;
}

/* NAV LIST */
.hero nav ul {
    display: inline-flex;
    flex-wrap: wrap;  /* ✅ prevents overflow */
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}


/* 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;   /* 🔥 FIX */
    top: 100%;            /* nav ke just niche */
    left: 50%;
    transform: translateX(-50%);

margin-top: 5px;
    min-width: 220px;
    background: #fff;

    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    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 {
    background: #ffb6c1;   /* icecream pink */
     color: yellow;
    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 {
    background: #ffc0cb;   /* icecream pink */
    color: yellow;
    transform: translateY(-2px);
}



/* Hero Section */
.hero {
 
    justify-content: flex-start; /* text left, image right */
    padding: 13px 5%;
  background-image: url("../images/cornno2.jpg");
     background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url("../images/cornno2.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 */
}




/* REMOVE BOX */
.hero-content {
  
 position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* perfect center */
  font-family: 'poppins','sans-serif';

    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;
    color: #f8f7f7;
    text-align: center;
  font-family: 'poppins','sans-serif';

    /* 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);
}




.reviews-section {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

/* horizontal row */
.reviews-box {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 20px 10px;
  scroll-behavior: smooth;
}

/* hide scrollbar */
.reviews-box::-webkit-scrollbar {
  display: none;
}

/* CARD */
.review-img {
  flex: 0 0 auto;
  width: 600px;

  transition: transform 0.3s ease;
}

/* IMAGE */
.review-img img {
  width: 100%;
  display: block;
}

/* ⭐ HOVER LEFT MOVE */
.review-img:hover {
  transform: translateX(-15px);
}
/* ================= GLOBAL FIX ================= */
* {
    box-sizing: border-box;
}

body {
    font-family: 'poppins', 'sans-sarif';
    margin: 0;
    padding: 0;
    background: var(--vanilla-bg);
    overflow-x: hidden;
}

/* ================= LAYOUT RESET ================= */
main, section {
    width: 100%;
    display: block;
    position: relative;
}

/* ================= NAV ================= */
.hero nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero nav ul li {
    position: relative;
}

.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);
}

.hero nav ul li a:hover {
    color: rgb(241, 241, 28);
    transform: translateY(-2px);
}

.hero .dropdown:hover > .dropdown-menu {
    display: block;
}

.hero .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #2b1a0f;
    text-shadow: none;
}

.hero .dropdown-menu li a:hover {
   
     background: #be5462;   /* icecream pink */
    color: #ffd700 !important;   /* strong gold yellow */

  color: rgb(241, 241, 28);
    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);
}

.hero .dropdown-sub:hover > .submenu {
    display: block;
}

.hero .submenu li a {
    display: block;
    padding: 10px 15px;
    color: #2b1a0f;
}

.hero .submenu li a:hover {
    background: #be5462;   /* icecream pink */
    color: #ffd700 !important;   /* strong gold yellow */

  color: rgb(241, 241, 28);
    transform: translateY(-2px);}



/* =========================================
   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: 50px;

        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;
    }
/* 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;
    color: #fffffe;
    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;
    }

}



/* IMAGE ROW */
.image-row {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
}

/* IMAGE BOX */
.img-box {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* IMAGE */
.img-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* HOVER EFFECT */
.img-box img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

/* RESPONSIVE (MOBILE) */
@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
    }
}
body {
    font-family: 'poppins', 'sans-serif';
   
}



/* ================= COMMON TITLE ================= */
.title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 30px;
    color: #b8860b; /* golden */
    font-weight: 700;
    letter-spacing: 1px;
}

/* SECTION HEADING */
.section-heading {
    text-align: center;
    font-size: 34px;
    margin: 25px 0 10px;
    color: #6b4f1d; /* deep golden-brown */
    font-weight: 700;
}

/* ================= TABLE CONTAINER ================= */
.table-container {
    max-width: 900px;
    margin: auto;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: #ffffff;
    border: 2px solid #f3e5ab; /* light gold border */
}

/* ================= TABLE ================= */
table {
    width: 100%;
    border-collapse: collapse;
}

/* HEADER (GOLD + ICE GRADIENT) */
th {
    background: linear-gradient(135deg, #fffaf0, #ffd700);
    color: #5a3e1b;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #f1d27a;
}

/* CELLS (ICE WHITE LOOK) */
td {
    padding: 14px;
    text-align: center;
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
    color: #333;
}

/* ALTERNATE ROW (ICE BLUE HINT) */
tr:nth-child(even) td {
    background: #f0f8ff; /* ice blue */
}

/* HOVER ROW EFFECT */
tr:hover td {
    background: #fff3cd;
    transition: 0.3s ease;
}
/* ================= TABLE RESPONSIVE ================= */

/* TABLET */
@media (max-width: 900px) {

  .table-container {
    max-width: 95%;
    margin: 20px auto;
    border-radius: 12px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .table-container {
    max-width: 100%;
    margin: 10px;
    border-radius: 10px;
    overflow-x: auto; /* ⭐ important for tables */
  }
}
/* ================= OPTIONAL ICE EFFECT BACKGROUND ================= */
body {
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    margin-bottom: 0;
}



.gallery {
    display: grid;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* FIRST GALLERY (3 images per row) */
.section-title:nth-of-type(1) + .gallery {
    grid-template-columns: repeat(3, 1fr);
}

/* SECOND GALLERY (2 images per row) */
.section-title:nth-of-type(2) + .gallery {
    grid-template-columns: repeat(2, 1fr);
}

/* IMAGE STYLE */
.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 768px) {
    .section-title:nth-of-type(1) + .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title:nth-of-type(2) + .gallery {
        grid-template-columns: 1fr;
    }}


/* ================= COMMON SECTION TITLE ================= */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 20px;
    color: #222;
    padding: 0 10px;
}

/* ================= SINGLE LINE GALLERY (HORIZONTAL SCROLL) ================= */
.gallery {
    display: flex;
    gap: 15px;
    padding: 20px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
}

/* HIDE SCROLLBAR (optional clean look) */
.gallery::-webkit-scrollbar {
    display: none;
}

/* ================= IMAGES (ALL GALLERY TYPES) ================= */
.gallery img {
    width: 220px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: 0 4px 12px 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 10px 20px rgba(0,0,0,0.2);
}

/* ================= PRODUCT CARD (ECOMMERCE) ================= */
.img-card {
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.img-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    color: #333;
}

/* ================= LOGO SECTION ================= */
.logo-section {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
}

.logo-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #333;
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.logo-strip img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: 0.3s ease;
}

.logo-strip img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}



/* ================= SECTION TITLE ================= */
.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin: 30px 0 20px;
    color: #222;
    padding: 0 10px;
}

/* ================= GALLERY (2 IMAGES CENTERED) ================= */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

/* ================= IMAGES ================= */
.gallery img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER EFFECT */
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* ================= SECTION TITLE ================= */
.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #c9a227;

  margin: 50px 0 30px;

  text-shadow:
    0 0 10px rgba(212,175,55,0.5),
    0 0 20px rgba(255,215,0,0.3);
}

/* ================= GALLERY ================= */
.gallery {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;

  /* 🔥 BIG GAP */
  gap: 35px;

  padding: 50px 6%;

  background: linear-gradient(135deg, #fffaf0, #ffffff);

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(212,175,55,0.12);
}

/* ================= IMAGE CARD ================= */
.gallery img {
  width: 280px;        /* 🔥 BIGGER SIZE */
  height: 210px;

  object-fit: cover;

  border-radius: 14px;

  position: relative;

  border: 2px solid rgba(212,175,55,0.5);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.12),
    inset 0 0 10px rgba(255,215,0,0.1);
    transition:0.4s ease;


  cursor: pointer;

  /* ⭐ CORNER CUT */
  clip-path: polygon(
    0 0,
    92% 0,
    100% 8%,
    100% 100%,
    0 100%
  );
}

/* ================= GALLERY IMAGE ================= */



/* ================= GLASSMORPHISM HOVER ================= */

.gallery img:hover{

    transform:
    perspective(1200px)
    rotateY(-8deg)
    translateY(-6px)
    scale(1.02);

    border:1px solid rgba(255,255,255,0.45);

    box-shadow:
    0 20px 35px rgba(212,175,55,0.18),
    0 10px 20px rgba(255,255,255,0.15),
    inset 0 1px 1px rgba(255,255,255,0.4);

    filter:
    brightness(1.03)
    saturate(1.05);

    background:
    rgba(255,255,255,0.08);
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .gallery {
    gap: 20px;
    padding: 30px 4%;
  }

  .gallery img {
    width: 180px;
    height: 140px;
  }

  .section-title {
    font-size: 26px;
  }}