
@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/paano.jpg");
               background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url("../images/paano.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 WRAPPER ================= */
.rasrang-section{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 6%;
    background: linear-gradient(135deg, #fff8e1, #fffaf0, #ffe9b3);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    gap:10px;
    margin-left: 80px;
}

/* Icecream soft floating glow effect */
.rasrang-section::before{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffffffaa, transparent 70%);
    top: -80px;
    left: -80px;
    filter: blur(10px);
    animation: floatGlow 6s infinite alternate;
}

@keyframes floatGlow{
    0%{ transform: translateY(0px); }
    100%{ transform: translateY(30px); }
}

/* ================= LEFT IMAGE ================= */
.rasrang-img{
  margin-top: 10px;
    flex: 2;
    position: relative;
    margin-right: -30px;
}

.rasrang-img img{
    width: 320px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 6px solid #ffd700;
    transition: 0.4s ease;
    margin-right: -30px;
}

/* Hover icecream bounce effect */
.rasrang-img img:hover{
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
}

/* ================= RIGHT CONTENT ================= */
.rasrang-content{
    flex: 1;
    padding-left: 10px;
    margin-left: -90px;
    font-weight: 700;
}

.rasrang-content h2{
    font-size: 36px;
    font-weight: bold;
    color: #b8860b;
    margin-bottom: 20px;
    text-shadow: 1px 1px 0px #fff;
    position: relative;
}

/* golden underline animation */
.rasrang-content h2::after{
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ffd700, #ffb300);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 10px;
}

/* TEXT STYLE */
.rasrang-content p{
    font-size: 16px;
    color: #5a4a2f;
    margin: 10px 0;
    line-height: 1.6;
    position: relative;
    padding-left: 18px;
}

/* icecream bullet style */
.rasrang-content p::before{
    content: "🍦";
    position: absolute;
    left: 0;
}

/* ================= BUTTON ================= */
.buy-btn{
    margin-top: 25px;
    padding: 12px 28px;
    background: linear-gradient(45deg, #ffd700, #ffb300);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    transition: 0.3s ease;
}

.buy-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.5);
    background: linear-gradient(45deg, #ffcc00, #ff9800);
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px){
    .rasrang-section{
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .rasrang-content{
        padding-left: 0;
        margin-top: 30px;
    }

    .rasrang-content h2{
        font-size: 28px;
    }
}/* ================= RASRANG MOBILE FIX ONLY ================= */
@media screen and (max-width: 768px) {

  .rasrang-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px 15px;
    margin-left: 0 !important;   /* ❌ remove desktop shift */
    gap: 20px;
  }

  /* LEFT IMAGE FIX */
  .rasrang-img {
    margin: 0 !important;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .rasrang-img img {
    width: 85%;
    max-width: 300px;
    margin: 0 !important;
  }

  /* RIGHT CONTENT FIX */
  .rasrang-content {
    margin: 0 !important;
    padding: 0 10px;
    text-align: center;
  }

  .rasrang-content h2 {
    font-size: 24px;
  }

  .rasrang-content h2::after {
    left: 50%;
    transform: translateX(-50%); /* center underline */
  }

  .rasrang-content p {
    font-size: 14px;
    padding-left: 0;
  }

  .rasrang-content p::before {
    position: static;
    margin-right: 6px;
  }

  /* BUTTON FIX */
  .buy-btn {
    width: 80%;
    max-width: 260px;
  }

}
.paan-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;

    color: #b8860b; /* golden tone */

    margin: 30px 0 20px;
    letter-spacing: 1px;

    position: relative;
}

/* underline design */
.paan-heading::after {
    content: "";
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, gold, orange);
    
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    
    border-radius: 5px;
}
/* WRAPPER CENTER */
.paan-wrapper {
    display: flex;
    gap: 30px;

    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    align-items: flex-start;
}

/* LEFT SIDE */
.paan-left {
    width: 60%;
}

.paan-main-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
}

/* RIGHT SIDE */
.paan-right {
    width: 40%;
    display: flex;
    flex-wrap: wrap;              /* 🔥 allows text to go below */
    justify-content: flex-end;    /* 🔥 push everything to right */
    gap: 12px;
}
.paan-small-img {
    width: 48%;
    height: 220px;
    object-fit: cover;
    object-position: top center; /* ⭐ important fix */
    border-radius: 10px;
    display: block;
}

/* TEXT */
.paan-text {
    width: 100%;                  /* 🔥 move text to next line */
    text-align:left;            /* 🔥 align text to right */
    font-size: 16px;
    line-height: 1.6;
    margin-top: 5px;
    font-weight: 600;
}/* ================= HEADING ================= */
.intro-heading {
    text-align: center;
    font-size: 32px;
    color: #b8860b; /* golden */
    margin: 30px 0 10px;
    letter-spacing: 1px;
    position: relative;
}

/* underline */
.intro-heading::after {
    content: "";
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, gold, orange);
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* ================= PARAGRAPH ================= */
.intro-text {
    max-width: 900px;
    margin: 20px auto 30px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    font-weight: 700;
}

.intro-images{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 30px auto;
}


/* ================= IMAGE STYLE ================= */

.paan-img{

    width:100%;
    height:220px;

    object-fit:cover;

    border-radius:18px;

    transition:all 1s ease;

    transform:
    rotateY(0deg)
    rotateX(0deg)
    scale(0.9);

    opacity:0;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.12);
}

/* ================= SCROLL ANIMATION ACTIVE ================= */

.paan-img{

    opacity:1;

    transform:
    rotateY(12deg)
    rotateX(6deg)
    scale(1.02);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.22);
}

/* ================= HOVER EFFECT ================= */

.paan-img:hover{

    transform:
    rotateY(8deg)
    rotateX(4deg)
    scale(1.04);

    box-shadow:
    0 25px 45px rgba(212,175,55,0.28);

    border-color:gold;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .paan-img {
        width: 100%;
    }

    .intro-heading {
        font-size: 24px;
    }

    .intro-text {
        font-size: 14px;
    }
}
/* ================= THEME ================= */
:root {
  --gold: #d4af37;
  --gold-light: #f7e7a6;
  --ice: #f5fbff;
  --text-dark: #2b1a0f;
}

/* ================= SECTION ================= */
.variant-section {
  padding: 70px 5%;
  background: linear-gradient(135deg, var(--ice), #ffffff);
  width: 100%;
  box-sizing: border-box;
}

/* ================= TITLE ================= */
.section-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 40px;
  position: relative;
}

/* GOLD UNDERLINE */
.section-heading::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  display: block;
  margin: 10px auto 0;
  border-radius: 50px;
}

/* ================= GRID ================= */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
  align-items: center;
}

/* ================= CARD ================= */
.variant-grid .card {
  width: 100%;
  max-width: 240px;
  background: #fff;

  border-radius: 16px;
  border: 2px solid var(--gold-light);

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  overflow: hidden;

  transition: all 0.35s ease;
}

/* CARD HOVER */
.variant-grid .card:hover {
  

 transform: rotateY(12deg) rotateX(6deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);

}

/* ================= IMAGE ================= */
.variant-grid .paan-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;

  transition: all 0.35s ease;
}

/* IMAGE HOVER */
.variant-grid .card:hover .paan-img {
  transform: scale(1.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .variant-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .variant-grid .paan-img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .variant-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= THEME ================= */
:root {
  --gold: #d4af37;
  --gold-light: #f7e7a6;
  --ice: #f5fbff;
  --text-dark: #2b1a0f;
}

/* ================= SECTION ================= */
.choco-section {
  padding: 70px 5%;
  background: linear-gradient(135deg, var(--ice), #ffffff);
  width: 100%;
  box-sizing: border-box;
}

/* ================= TITLE ================= */
.choco-section .section-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 40px;
  position: relative;
}

/* GOLD UNDERLINE */
.choco-section .section-heading::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  display: block;
  margin: 10px auto 0;
  border-radius: 50px;
}



/* ================= THEME ================= */
:root {
  --gold: #d4af37;
  --gold-light: #f7e7a6;
  --ice: #f5fbff;
  --text-dark: #2b1a0f;
}

/* ================= SECTION ================= */
.choco-section {
  padding: 70px 5%;
  background: linear-gradient(135deg, var(--ice), #ffffff);
  width: 100%;
  box-sizing: border-box;
}

/* ================= TITLE ================= */
.choco-section .section-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 40px;
  position: relative;
}

/* GOLD UNDERLINE */
.choco-section .section-heading::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  display: block;
  margin: 10px auto 0;
  border-radius: 50px;
}

/* ================= GRID ================= */
.choco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
  align-items: center;
}

/* ================= CARD ================= */
.choco-grid .card {
  width: 100%;
  max-width: 240px;

  background: #fff;
  border-radius: 16px;

  border: 2px solid var(--gold-light);

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  overflow: hidden;

  position: relative;

  transition: all 0.35s ease;
  transform-style: preserve-3d;
}

/* ================= SUBTLE HOVER ================= */
.choco-grid .card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(212,175,55,0.18);
}

/* ================= IMAGE ================= */
.choco-grid .paan-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;

  transition: transform 0.35s ease;
}

/* IMAGE HOVER */
.choco-grid .card:hover .paan-img {

 transform: rotateY(12deg) rotateX(6deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);


}

/* ================= GOLD BORDER GLOW ================= */
.choco-grid .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;

  background: linear-gradient(145deg, var(--gold), transparent);

  

  pointer-events: none;
  opacity: 0.4;

  transition: opacity 0.3s ease;
}

/* STRONGER GLOW ON HOVER */
.choco-grid .card:hover::before {

/* Hover Tilt Effect */

    transform: rotateY(12deg) rotateX(6deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}




/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .choco-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .choco-grid .paan-img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .choco-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= TITLE ================= */
.pune-heading1 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin: 40px 0 20px;
  color: #2b1a0f;
  position: relative;
}

.pune-heading1::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f7e7a6);
  display: block;
  margin: 8px auto 0;
  border-radius: 50px;
}

/* ================= GRID ================= */
.pune-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  padding: 10px 5%;
  justify-items: center;
}

/* ================= CARD (SMALL) ================= */
.pune-grid .card {
  width: 140px;
  background: #fff;

  border-radius: 12px;
  border: 1px solid #f7e7a6;

  box-shadow: 0 4px 10px rgba(0,0,0,0.06);

  text-align: center;
  padding: 8px;

  transition: all 0.25s ease;
}

/* CARD HOVER */
.pune-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}

/* ================= IMAGE (SMALL LOGO STYLE) ================= */
.pune-grid .paan-img {
  width: 100%;
  height: 80px;
  object-fit: contain;   /* 🔥 important for logos */

  display: block;
  margin: auto;
}

/* ================= TEXT ================= */
.pune-grid .card p {
  font-size: 12px;
  margin-top: 6px;
  color: #2b1a0f;
  font-weight: 600;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .pune-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pune-grid .card {
    width: 120px;
  }

  .pune-grid .paan-img {
    height: 60px;}
  }

/* ================= BUTTON ================= */
.buy-btn {
  padding: 12px 25px;
  background: linear-gradient(45deg, gold, orange);
  border: none;
  border-radius: 30px;
  color: #fff;
}

/* ================= GRID SYSTEM ================= */
.grid {
  display: grid;
  gap: 20px;
}

.variant-grid,
.choco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* ================= TEAM ================= */
.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.team-card {
  width: 220px;
  background: #ffe;
  padding: 20px;
  border-radius: 12px;
}

/* ================= PUNE GRID ================= */
.pune-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.pune-grid .card {
  text-align: center;
  padding: 10px;
}

/* ================= HEADINGS ================= */
.section-heading,
.intro-heading,
.paan-heading {
  text-align: center;
  font-size: 30px;
  color: var(--dark);
  margin-bottom: 20px;
}

/* ================= RASRANG ================= */
.rasrang-section {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--light);
  border-radius: 20px;
}

.rasrang-img,
.rasrang-content {
  flex: 1;
}/* =================================================
   MOBILE RESPONSIVE FIX ONLY
   LAPTOP / DESKTOP SAFE
================================================= */

@media screen and (max-width: 768px) {

  /* ===== GLOBAL SAFE ===== */
  *{
    box-sizing: border-box;
  }

  body{
    overflow-x: hidden;
  }

  /* ===== RASRANG SECTION ===== */
  .rasrang-section{
    flex-direction: column;
    padding: 35px 15px;
    gap: 25px;

    border-radius: 16px;
    text-align: center;
  }

  .rasrang-img{
    width: 100%;
  }

  .rasrang-img img{
    width: 100%;
    max-width: 260px;
    border-width: 4px;
  }

  .rasrang-content{
    width: 100%;
    padding-left: 0;
  }

  .rasrang-content h2{
    font-size: 26px;
    line-height: 1.3;
  }

  .rasrang-content h2::after{
    left: 50%;
    transform: translateX(-50%);
  }

  .rasrang-content p{
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
    padding-left: 22px;
  }

  .buy-btn{
    width: 100%;
    max-width: 240px;
    font-size: 15px;
  }

  /* ===== PAAN WRAPPER ===== */
  .paan-wrapper{
    flex-direction: column;
    padding: 15px;
    gap: 20px;
  }

  .paan-left,
  .paan-right{
    width: 100%;
  }

  .paan-main-img{
    width: 100%;
    height: auto;
    max-height: 280px;
  }

  .paan-right{
    justify-content: center;
  }

  .paan-small-img{
    width: 48%;
    height: 140px;
  }

  .paan-text{
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
  }

  /* ===== INTRO ===== */
  .intro-heading{
    font-size: 24px;
    line-height: 1.4;
    padding: 0 10px;
  }

  .intro-text{
    font-size: 14px;
    line-height: 1.8;
    padding: 0 15px;
    text-align: justify;
  }

  /* ===== INTRO IMAGES ===== */
  .intro-images{
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }

  .paan-img{
    height: auto;
    max-height: 250px;
  }

  /* ===== VARIANT GRID ===== */
  .variant-section{
    padding: 50px 15px;
  }

  .section-heading{
    font-size: 24px;
    line-height: 1.4;
  }

  .variant-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .variant-grid .card{
    max-width: 100%;
  }

  .variant-grid .paan-img{
    height: 220px;
  }

  /* ===== CHOCO GRID ===== */
  .choco-section{
    padding: 50px 15px;
  }

  .choco-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .choco-grid .card{
    max-width: 100%;
  }

  .choco-grid .paan-img{
    height: 220px;
  }

  /* ===== PUNE GRID ===== */
  .pune-heading1{
    font-size: 22px;
    line-height: 1.4;
    padding: 0 10px;
  }

  .pune-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 10px 15px;
  }

  .pune-grid .card{
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }

  .pune-grid .paan-img{
    height: 55px;
  }

  .pune-grid .card p{
    font-size: 11px;
  }

  /* ===== COMMON HEADINGS ===== */
  .section-heading,
  .intro-heading,
  .paan-heading{
    font-size: 24px;
  }

  /* ===== TEAM SECTION ===== */
  .team-cards{
    flex-direction: column;
    align-items: center;
  }

  .team-card{
    width: 100%;
    max-width: 280px;
  }

  /* ===== REMOVE HEAVY HOVER EFFECTS ===== */
  .card:hover,
  .variant-grid .card:hover,
  .choco-grid .card:hover,
  .paan-img:hover,
  .rasrang-img img:hover{
    transform: none;
  }

}html, body {
  overflow-x: hidden;
}