@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: 10px 5% 50px;
    margin: 0;

    color: var(--text-light);

    min-height: auto;
    overflow: hidden;
}

/* ================= NAV FIX ================= */

/* NAV RIGHT SIDE */

.hero nav {
    position: relative;
    width: 100%;

    display: flex;
    justify-content: flex-end;

    right: -70;
}


/* NAV LIST */
.hero nav ul {
    display: flex;
    flex-wrap: wrap;  /* ✅ prevents overflow */
    gap: 10px;
    list-style: none;
    margin: 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;
}

/* dropdown box */
.hero .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
   
    left: 50%;
    transform: translate(-50%);
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    padding: 8px 0;px;

}

/* 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 {
    background: #ffc0cb;   /* 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/corn.jpg");
         background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url("../images/corn.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;
    }

    /* HERO TEXT */
    .hero-text {

        max-width: 100%;
        width: 100%;

        top: 0;

        z-index: 2;
    }

    .hero-text h1 {

        font-size: 2rem;
        line-height: 1.3;

        margin-bottom: 15px;
    }

    .hero-text p {

        font-size: 1rem;
        line-height: 1.7;

        margin-bottom: 20px;
    }

    .hero-text h4 {

        font-size: 0.95rem;
        line-height: 1.6;

        margin-bottom: 20px;
    }

    /* BUTTONS */
    .hero-text .btn,
    .hero-text .btn1 {

        display: inline-block;

        padding: 12px 22px;

        font-size: 14px;

        margin: 5px;
    }

    /* HERO IMAGE */
    .hero-image {

        width: 100%;

        max-width: 100%;

        margin: 25px 0 0;

        min-height: auto;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image img {

        width: 90%;
        max-width: 330px;

        height: auto;

        border-radius: 20px;

        object-fit: cover;
    }

}

/* =================================================
   HERO IMAGE MOBILE RESPONSIVE ONLY
   LAPTOP / DESKTOP PAR EFFECT NAHI
================================================= */

@media screen and (max-width: 768px) {

    .hero-image {

        width: 100%;

        max-width: 100%;

        margin-top: 20px;

        min-height: auto;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image img {

        width: 90%;

        max-width: 320px;

        height: auto;

        border-radius: 18px;

        object-fit: cover;
    }

}












/* ================= DESKTOP (DEFAULT) ================= */
.hamburger {
    display: none;   /* 🔥 laptop me hide */
}



/* =================================================
   MOBILE MENU + DROPDOWN + SUBMENU FIX
   LAPTOP / DESKTOP PAR KOI EFFECT NAHI
================================================= */

@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: 73px;
        left: -100%;

        width: 80%;
height: calc(100vh - 147px); /* 🔥 bottom space kam feel hoga */
        background: linear-gradient(135deg, #2b1a0f, #b8860b);

        display: none;
        flex-direction: column;

        overflow-y: auto;

        transition: 0.3s ease;

        z-index: 99999;
        max-height: 65vh;   /* 👈 yaha control karo (try 60-70vh) */

        padding-top: 12px;
    }
    .menu.active {
        left: 0;
    }

    /* ================= 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){

    .hero .dropdown-menu,
    .hero .submenu{

        left: 0 !important;
        transform: none !important;

        width: 100%;
    }

}
/* 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;
  text-decoration: none !important;

    z-index: 2;
    margin-top: -20px;   /* 👈 top se gap control */
 
}


/* TEXT STYLE */
.hero-title {
  font-family: 'poppins','sans-sarif';
    font-size: 70px;
    color: #fbfaf9;
    text-align: center;
    font-weight: 600;
    text-decoration: none !important;

    /* 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: 60%;                 /* 👈 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;
text-decoration: none;
        word-break: break-word;
    }
.hero-title::after{
    display: none !important;
      content: none !important;
}
}



/* ================= COMPANY ABOUT (FINAL) ================= */
.company-about {
  padding: 70px 5%;
  background: linear-gradient(135deg, #fffaf3, #fff0d6);
}
/* =================================================
   REMOVE EXTRA TOP SPACE ONLY MOBILE
   LAPTOP PAR KOI EFFECT NAHI
================================================= */

@media screen and (max-width: 768px) {

    .company-about {

        padding-top: 0px !important;   /* 👈 upar ka extra gap remove */

        margin-top: 0 !important;
        margin-bottom: 0px;
    }

}


/* CONTAINER */
.company-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ================= LEFT TEXT ================= */
.company-text {
  flex: 1;
}

.company-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color:goldenrod;
  position: relative;
}

/* GOLD LINE */
.company-text h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffb347);
  display: block;
  margin-top: 8px;
  border-radius: 10px;
}

.company-text h3 {
  color: #b8860b;
  margin: 15px 0;
  font-weight: 600;
}

.company-text p {
  line-height: 1.7;
  color: #555;
}

/* HIGHLIGHT BOX */
.company-highlight {
  background: rgba(255,255,255,0.7);
  padding: 18px;
  border-left: 5px solid #ffd700;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-weight: 700;
}

/* LIST */
.company-text ul {
  padding-left: 20px;
}

.company-text ul li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

/* CORN BULLET */
.company-text ul li::before {
  content: "🌽";
  position: absolute;
  left: 0;
}

/* =================================================
   COMPANY SECTION MOBILE RESPONSIVE ONLY
   LAPTOP / DESKTOP PAR KOI EFFECT NAHI
================================================= */

@media screen and (max-width: 768px) {

    /* CONTAINER */
    .company-container {

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    /* TEXT */
    .company-text {

        width: 100%;
    }

    .company-text h2 {

        font-size: 28px;
text-align: center;
        line-height: 1.3;
    }

@media screen and (max-width: 768px) {

  .company-text h2::after {
    content: "";
    display: block;

    width: 80px;
    height: 4px;

    background: linear-gradient(90deg, #ffd700, #ffb347);

    margin: 8px auto 0;   /* 🔥 mobile me center */
    border-radius: 10px;
  }
}

    .company-text h3 {

        font-size: 18px;
    }

    .company-text p {

        font-size: 15px;

        line-height: 1.9;
    }
/* =================================================
   COMPANY HIGHLIGHT MOBILE LINE HEIGHT FIX
   LAPTOP / DESKTOP PAR KOI EFFECT NAHI
================================================= */

@media screen and (max-width: 768px) {

    .company-highlight {

        line-height: 1.8;

        font-size: 15px;

        padding: 15px;
    }

}



    /* LIST */
    .company-text ul {

        padding-left: 15px;
    }

    .company-text ul li {

        font-size: 14px;

        line-height: 1.6;
    }

}




/* ================= RIGHT IMAGE ================= */
.company-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* GLOW EFFECT */
.company-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,215,0,0.25), transparent 70%);
  border-radius: 20px;
}

/* IMAGE */
.company-image img {
    margin-top: 60px;
  width: 100%;
  max-width: 500px;   /* 👈 small image */
  border-radius: 20px;
  position: relative;
max-height: 435px;
  border: 4px solid rgba(255,215,0,0.4);

  box-shadow: 
    0 12px 25px rgba(0,0,0,0.18),
    0 0 15px rgba(255,215,0,0.25);

  transition: 0.4s;
}

/* HOVER */
.company-image img:hover {
  transform: scale(1.05);
}

/* =================================================
   COMPANY IMAGE MOBILE RESPONSIVE ONLY
   LAPTOP / DESKTOP PAR KOI EFFECT NAHI
================================================= */

@media screen and (max-width: 768px) {

    .company-image {

        width: 100%;

        justify-content: flex-start;

        margin-top: 0;
        margin-bottom: 0;
    }

    .company-image img {

        margin-top: 0;   /* 👈 image upar aa jayegi */

        width: 100%;

        max-width: 320px;

        max-height: auto;
margin-bottom: 0;
        border-radius: 16px;
    }

}




/* ================= CARDS ROW ================= */
.cards-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

/* CARD */
.stat-card {
  width: 300px;
  padding: 20px;

  background: linear-gradient(135deg, #ffffff, #fff8dc);
  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* CONTENT ALIGNMENT */
.card-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* GIF STYLE */
.card-gif {
  width: 60px;   /* 👈 choti gif */
  height: 60px;
  object-fit: contain;

  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
}



/* TEXT */
.stat-card p,
.stat-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2b1a0f;
}

/* HOVER */
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .card-content {
    flex-direction: column;
    text-align: center;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .cards-row {
    gap: 15px;              /* mobile me spacing reduce */
    padding: 10px;
  }

  .stat-card {
    width: 90%;             /* full responsive width */
    max-width: 320px;      /* limit so it doesn’t stretch */
    margin: 0 auto;
  }

  .card-content {
    flex-direction: column;
    text-align: center;
  }

  .card-gif {
    width: 50px;
    height: 50px;
  }

  .stat-card p,
  .stat-card h4 {
    font-size: 14px;
  }
}

/* ================= MOBILE GAP FIX ================= */
@media (max-width: 768px) {
  .stat-section {
    margin-top: 0px !important;   /* 👈 gap reduce */
    padding-top:0px !important;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}





/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #fffaf3, #fdebd0);
}

@media screen and (max-width: 768px) {

  .about-section {
    padding-top: 20px;   /* 🔥 upar ka space kam */
    padding-bottom: 60px;
    padding-left: 5%;
    padding-right: 5%;
  }
}


/* CONTAINER */
.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-container {

 padding-top: 20px;   /* 🔥 upar ka space kam */
    padding-bottom: 60px;
    padding-left: 5%;
    padding-right: 5%;
}
/* ================= LEFT TEXT ================= */
.about-text {
  flex: 1;
}

/* HEADING */
.about-text h2 {
  font-size: 34px;
  color:goldenrod;
  margin-bottom: 15px;
  position: relative;
  align-items: center;
  justify-content: center;
}

/* GOLD LINE */
.about-text h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, gold, orange);
  display: block;
  margin-top: 8px;
  border-radius: 10px;
  text-align: center;
}

/* PARAGRAPH (IMPORTANT) */
.about-text p {
  line-height: 1.9;
  color: #444;
  font-size: 15.5px;
font-weight: 700;
  background: rgba(255,255,255,0.7);
  padding: 20px;
  border-radius: 12px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ================= RIGHT IMAGE ================= */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* IMAGE */
.about-image img {
  width: 100%;
  max-width: 620px;
  border-radius: 20px;
min-height: 400px;
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.2),
    0 0 15px rgba(255,215,0,0.3);

  transition: 0.4s;
}

/* HOVER */
.about-image img:hover {
  transform: scale(1.04);
}

@media screen and (max-width: 768px) {

  .about-image {
    padding-top: 10px;     /* 🔥 upar ka space kam */
    padding-bottom: 10px;  /* 🔥 neeche ka space kam */
  }

  .about-image img {
    margin: 0;            /* extra spacing remove */
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-image {
    margin-top: 30px;
  }
}
/* SECTION WRAPPER */
.image-row-section {
    padding: 30px 20px;
    background: #f9f9f9;
}

/* ROW FLEX */
.image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* IMAGE BOX */
.img-box {
    width: 280px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.img-box:hover {
    transform: translateY(-5px);
}

/* IMAGE STYLE */
.img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;   /* IMPORTANT: image cut/fit fix */
    display: block;
}

/* TITLE */
.section-title {
    font-size: 12px;
    padding: 0px;
    color: #333;
    font-weight: 600;
}

/* =================================================
   SECTION TITLE MOBILE RESPONSIVE ONLY
   LAPTOP / DESKTOP PAR KOI EFFECT NAHI
================================================= */

@media screen and (max-width: 768px) {

    .section-title {

        font-size: 16px;

        line-height: 1.0;

        padding:0px;

        text-align: center;
    }

}

/* ================= FEATURE SECTION ================= */
.feature-section {
  padding: 80px 5%;
  background: #fffaf3;
}

/* GRID */
.feature-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* BOX */
.feature-box {
  background: #fff;
  padding: 25px 20px;
  text-align: center;

  border-radius: 12px;
  border-right: 5px solid gold;   /* 👈 RIGHT GOLD BORDER */

  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* TEXT */
.feature-box h3 {
  font-size: 18px;
  color: #2b1a0f;
}

/* HOVER */
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);

  border-right: 5px solid #ffb347; /* hover me thoda orange */
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .feature-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {

  .feature-section {
    padding: 20px 5%;   /* 🔥 top/bottom space reduce */
  }

  .feature-container {
    gap: 12px;          /* 🔥 boxes ke beech space kam */
  }

  .feature-box {
    padding: 18px 15px; /* 🔥 box compact */
  }

  .feature-box h3 {
    font-size: 16px;    /* 🔥 text thoda chhota */
  }
}




/* ================= PRESS SECTION ================= */
.press-container {
        font-family: 'poppins',sans-serif;

  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD STYLE (ICE + GOLD FEEL) */
.press-card {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;

  background: #f5f9ff; /* ice base */
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);

  border: 2px solid rgba(212,175,55,0.3); /* golden border */
}

/* IMAGE */
.press-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* HOVER ZOOM */
.press-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

/* ================= CENTER BUTTON ================= */
.press-card a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
font-family: 'poppins', sans-serif;
  padding: 8px 16px;
  background: linear-gradient(135deg, #d4af37, #f5e7a3); /* GOLD */
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;

}

/* HOVER ZOOM */
.press-card:hover a {
   background: linear-gradient(135deg, #8f5f28, #f5e7a3); /* GOLD */
}

/* ================= H1 GOLD STYLE ================= */
h1 {
        font-family: 'poppins',sans-serif;

  text-align: center;
  font-size: 28px;
  color: #d4af37;
  margin: 20px 0;
  font-weight: 700;
  letter-spacing: 1px;
}


/* Golden underline */
h1::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, gold, orange);
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

@media (max-width: 768px) {

  .press-container {
    grid-template-columns: repeat(1, 1fr); /* 👈 3 column → 1 column */
    width: 95%;
    gap: 15px;
  }

  .press-card {
    height: 200px; /* mobile fit */
  }

  h1 {
    font-size: 20px;
    margin: 15px 0;
  }

  .press-card a {
    padding: 6px 14px;
    font-size: 14px;
  }

}
/* ================= GALLERY ================= */
.gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* SMALL IMAGES */
.gallery img {
  width: 180px;   /* 👈 choti size */
  height: 140px;  /* 👈 compact height */

  object-fit: cover;
  border-radius: 10px;

  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* HOVER */
.gallery img:hover {
  transform: scale(1.08);
}
/* SECTION */
.image-row-section {
  padding: 70px 5%;
  background: linear-gradient(135deg, #fffaf3, #fdebd0);
}

/* ROW */
.image-row {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* BOX */
.img-box {
  overflow: hidden;
  border-radius: 15px;

}
.img-box:hover
{
  
  perspective: 1000px;
transform-style: preserve-3d;
transform: rotate3d(1, 1, 0, 30deg);
}
.frozen-title {
  font-size: 25px;
    color: #d4af37;

  text-align: center;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin: 30px 0 25px;
  position: relative;
  text-transform: capitalize;
}

/* soft golden underline */
.frozen-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, gold, orange);
  display: block;
  margin: 12px auto 0;
  border-radius: 50px;

  transition: all 0.35s ease;
  opacity: 0.9;
}

/* hover effect (subtle luxury feel) */
.frozen-title:hover::after {
  width: 130px;
  opacity: 1;
}

/* soft glow effect */
.frozen-title {
  text-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

/* optional tiny lift on hover */
.frozen-title:hover {
  transform: translateY(-2px);
}

/* ================= H1 GOLD STYLE ================= */
.section-title {
        font-family: 'poppins',sans-serif;

  text-align: center;
  font-size: 28px;
  color: #d4af37;
  margin:30px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Golden underline */
.section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, gold, orange);
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}
.section-title0 {
 font-family: 'poppins',sans-serif;
min-height: 40px;
  text-align: center;
  font-size: 19px;
  color: black;
  margin: 27px 0;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Golden underline */
.section-title0::after {
  content: "";
  width: 90px;
  height: 4px;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}
/* ================= H1 GOLD STYLE ================= */
.section-title1 {
        font-family: 'poppins',sans-serif;
min-height: 40px;
  text-align: center;
  font-size: 19px;
  color: black;
  margin: 20px 0;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Golden underline */
.section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, gold, orange);
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}
/* IMAGE */
.img-box img {
  width: 360px;
  min-height: 280px;
  object-fit: cover;
  border-radius: 15px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.1);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ✨ SUBTLE LEFT-TOP MOVE */
.img-box:hover img {
  transform: translate(-8px, -8px);   /* 👈 left + top move */
  box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .image-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ================= BRANDS ================= */
.brands-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* BOX */
.brand-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* IMAGE */
.brand-box img {
  width: 140px;   /* 👈 logo size */
  height: auto;
}

/* HOVER */
.brand-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ================= CLIENTELE ================= */
.clientele-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row */
  gap: 25px;
  padding: 20px 5%;
}

/* BOX */
.client-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* IMAGE */
.client-box img {
  width: 100px;
  height: auto;

  filter: grayscale(100%); /* black & white */
  transition: 0.3s;
}

/* HOVER */
.client-box:hover {
  transform: translateY(-6px);
}

.client-box:hover img {
  filter: grayscale(0%); /* color on hover */
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .clientele-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .clientele-container {
    grid-template-columns: 1fr;
  }
}