@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body
{
    font-family: 'poppins',sans-serif;
}
/* ================= NAVBAR ================= */
.hero nav {
        font-family: 'poppins',sans-serif;

    position: absolute;
    top: 20px;

font-size: 17px;
font-weight: 600;
    display: flex;
    justify-content: flex-end;   /* ⭐ RIGHT ALIGN */
    padding: 0 14px;
    top: 20px;
  right: -1px;   /* 👈 force right side */
width: auto;
gap: 10px;
    z-index: 99999;
}

/* MAIN MENU */
.hero nav ul {
    list-style: none;
    display: flex;
    gap: 12px;

    margin: 0;
    padding: 5px;
}

/* LINKS */
.hero nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    backdrop-filter: blur(4px);

    padding: 6px 8px;
    transition: 0.3s;

    text-shadow: 0 2px 6px rgba(10, 1, 1, 1.7);
}

/* HOVER */
.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: 0;

    min-width: 220px;
    background: #fff;

    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    padding: 8px 0;
}

/* show dropdown */
.hero .dropdown:hover > .dropdown-menu {
    display: block;
}

/* dropdown items */
.hero .dropdown-menu li a {
    display: block;
    padding: 10px 12px;
    color: #2b1a0f;
    text-shadow: none;
}

/* ICECREAM PINK */
.hero .dropdown-menu li a:hover {
       background: #be5462;   /* icecream pink */

  color: rgb(241, 241, 28);
    transform: translateY(-2px);}



/* ================= SUBMENU ================= */
.hero .dropdown-sub {
    position: relative;
}

/* submenu box */
.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);
}

/* show submenu */
.hero .dropdown-sub:hover > .submenu {
    display: block;
}

/* submenu items */
.hero .submenu li a {
    display: block;
    padding: 10px 15px;
    color: #2b1a0f;
}

/* SUBMENU HOVER */
.hero .submenu li a:hover {

   background: #be5462;   /* icecream pink */
    color: #ffd700 !important;   /* strong gold yellow */

    transform: translateY(-2px);}



/* Hero Section */
.hero {
 
    justify-content: flex-start; /* text left, image right */
    padding: 13px 5%;
    background:
linear-gradient(
135deg,

#111111 0%,
#1f1f1f 20%,
#3a2b00 45%,
#ffb300 70%,
#ffd54f 100%

);
    color: var(--text-light);
    position: relative;
    display: flex;
    align-items: center;      /* vertical alignment fix */
    justify-content: space-between;
    font-family: 'poppins',sans-serif;

    min-height: 60vh;         /* controlled height */
    overflow: hidden;     
       /* ⭐ prevents topbar overlap */
         height: 700px;        /* jitna cut chahiye */
}








/* Hero Text */
.hero-text {
    font-family: 'poppins';
    flex: 1;
    max-width: 50%;
    z-index: 1;
    font-weight: bold;
    align-items: flex-start;  /* text upar align hoga */
top:-30px;

font-weight: 700;

}

.hero-text h1 {
    font-family: 'poppins';
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
    top:-20px;
}

.hero-text p {
    font-family: 'poppins';
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}

.hero-text h4 {
    font-family: 'poppins';
    font-size: 1.0rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}
.hero-text .btn {
    font-family: 'poppins';
    background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.hero-text .btn:hover {
    background: linear-gradient(145deg, var(--accent-coral), var(--gold-light));
    transform: translateY(-3px);
}


.hero-text .btn1 {
    background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.hero-text .btn1:hover {
    background: linear-gradient(145deg, var(--accent-coral), var(--gold-light));
    transform: translateY(-3px);
}







/* Hero Image */
.hero-image {
    flex: 1;
    max-width: 105%;
    margin-left: 2%;
    margin-top: -60px;
    z-index: 0;
    min-height: 60vh;
    margin-right: -60px;
    background: rgba(0,0,0,0.35); /* dark level */

}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: none;
        background: rgba(0,0,0,0.35); /* dark level */

}


/* =========================================
   MOBILE RESPONSIVE ONLY
   LAPTOP / DESKTOP PAR KOI EFFECT NAHI
========================================= */

@media screen and (max-width: 900px) {

    /* HERO SECTION */
    .hero {    font-family: 'poppins',sans-serif;
        backdrop-filter: unset !important;

        display: flex;
        flex-direction: column;

        justify-content: top;
        align-items: center;

        text-align: center;

        height:68vh;
        max-height:68vh;

        padding: 120px 20px 350px;
        overflow: hidden;
    }

    /* HERO TEXT */
    .hero-text {
margin-top: -20px;
        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;
    }

}
/* DESKTOP / LAPTOP */
.hamburger {
    display: none;
}

@media screen and (max-width: 768px) {

  .hero-image {
        backdrop-filter: unset !important;

    display: none !important;  /* 👈 image completely hide */
  }


/* =========================================
   HAMBURGER ONLY MOBILE
   LAPTOP PAR HIDE
========================================= */

 /* ================= HAMBURGER ================= */
    .hamburger {

        display: flex;

        flex-direction: column;
        gap: 5px;

        cursor: pointer;

        position: absolute;

        top: 10px;
        right: 20px;

        z-index: 100000;
    }

    .hamburger span {

        width: 28px;
        height: 3px;

        background: #fff;

        border-radius: 5px;

        display: block;
    }

    /* ================= MENU ================= */
    .menu {

        position: fixed;

        top: 76px;
        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 > 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;
  }
}




/* Section */
.cards-section {    font-family: 'poppins',sans-serif;

    display: flex;
    gap: 25px;
    padding: 3rem 5%;
}

/* Card Box */
.card-box {
    flex: 1;
    text-align: center;
}

/* Card */
.card {
    background: linear-gradient(145deg, var(--icecream-pink), var(--vanilla-bg));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

/* Image */
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Title */
.card h3 {
    padding: 1rem;
    color: var(--gold-dark);
    font-size: 1.1rem;
}

/* Hover Tilt Effect */
.card:hover {
    transform: rotateY(12deg) rotateX(6deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Subtle Golden Glow Border */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(145deg, var(--gold-light), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}



/* Button */
.card-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
    color: #fff;
    text-decoration: un;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Button Hover (Theme Match) */
.card-btn:hover {
    background: linear-gradient(145deg, var(--accent-coral), var(--gold-light));
    color: #fff;
    transform: translateY(-2px);
}


/* Popup background */
.popup {    font-family: 'poppins',sans-serif;

    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    z-index: 999;
}

/* Popup content */
.popup-content {
    width: 420px;
    max-width: 90%;
    margin: 80px auto;
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--vanilla-bg), var(--icecream-pink));
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    position: relative;
    animation: zoom 0.4s ease;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Heading */
.popup-content h2 {
    text-align: center;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

/* Details text */
.details p {
    margin: 6px 0;
    font-size: 14px;
    color: #444;
}

/* Highlight labels */
.details b {
    color: var(--gold-dark);
}

/* Description */
.desc {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

/* Animation */
@keyframes zoom {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}



/* Responsive */
@media(max-width:768px){
    .cards-section {
        flex-direction: column;
    }
}





/* ===== BOX ===== */
.why-box {    font-family: 'poppins',sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;   /* center alignment fix */
    gap: 30px;
    margin-top: 0px;

    background: linear-gradient(145deg, var(--icecream-pink), var(--icecream-mint));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===== IMAGE WRAPPER ===== */
.why-image {
    flex: 0 0 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== IMAGE ===== */
.why-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* ===== CONTENT ===== */
.why-content {
    flex: 1;
    max-width: 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;   /* IMPORTANT FIX */

    font-size: medium;
    font-weight: bold;
}

/* ===== HEADING ===== */
.why-content h2 {
    font-family: "Times New Roman";
    font-size: 22px;
    margin-bottom: 10px;
}

/* ===== PARAGRAPH ===== */
.why-content p {
    line-height: 1.7;
    margin-bottom: 10px;
}

/* ===== BUTTON ===== */
.why-btn {
    display: inline-block;
    width: fit-content;

    padding: 0.6rem 1.5rem;
    font-size: 14px;

    border-radius: 50px;
    background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
    color: #fff;
    text-decoration: none;
    font-weight: 600;

    margin-bottom: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Hover */
.why-btn:hover {
    background: linear-gradient(145deg, var(--accent-coral), var(--gold-light));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Click effect */
.why-btn:active {
    transform: scale(0.95);
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px){
    .why-box {
        flex-direction: column;
        text-align: left;
    }

    .why-image {
        flex: 1;
        width: 100%;
    }

    .why-content {
        max-width: 100%;
        align-items: center;
    }
}




/* Feature Section */
.feature-section {    font-family: 'poppins',sans-serif;

    padding: 60px 5%;
    background: linear-gradient(135deg, var(--icecream-pink), var(--icecream-mint));
}

/* Container */
.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* Card Style */
.feature-card {
    width: 280px;
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Card 1 - Vanilla Ice */
.feature-card:nth-child(1) {
    background: #fffaf0;
}

/* Card 2 - Ice Blue */
.feature-card:nth-child(2) {
    background: #eaf6ff;
}

/* Card 3 - Strawberry Ice */
.feature-card:nth-child(3) {
    background: #fff0f5;
}

/* Extra cards future */
.feature-card:nth-child(4) {
    background: #f0fff4;
}

.feature-card:nth-child(5) {
    background: #f5f0ff;
}
/* Circle Icon */
.feature-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--dark-bg); /* 👈 white ki jagah dark */

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: -50px auto 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}




/* Title */
.feature-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

/* Text */
.feature-card p {
    font-size: 15px;
    color: #484747;
    font-weight: bold;
}

/* Hover */
.feature-card:hover {
    transform: translateY(-10px);
}




/* ICON BASE */
.feature-card .icon {
    min-width: 55px;
    height: 55px;

    background: linear-gradient(135deg, #d4af37, #f7e7a6);
    color: #2b1a0f;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    flex-shrink: 0;

    /* 🔥 animation */
    animation: moveSide 3s ease-in-out infinite;
}

/* KEYFRAMES */
@keyframes moveSide {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(12px); }  /* 👉 right move */
    100% { transform: translateX(0); }
}




:root {
    --gold-dark: #b8860b;
    --gold-light: #ffd700;
    --vanilla-bg: #fffaf0;
    --dark-bg: #2b1a0f;
}

/* ================= ABOUT SECTION ================= */
.about-section {    font-family: 'poppins',sans-serif;

    margin-top: 20px;
    text-align: center;
    padding: 20px 20px;
    background: var(--vanilla-bg);
}

/* ================= IMAGE ================= */
.about-images {
    text-align: center;
    margin-bottom: 10px;   /* 🔥 GAP FIX */
}

.about-images img {
    width: 100%;
    max-width: 370px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

/* ================= BUTTON ================= */
.about-section .cta1-btn {
    display: inline-block;

    margin-top: 10px;      /* 🔥 FIXED GAP */
    padding: 14px 32px;

    background: #FFD700;
    color: #fff;

    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;

    transition: transform 0.3s, box-shadow 0.3s;
}

/* 🔥 HOVER WITHOUT LAYOUT SHIFT */
.about-section .cta1-btn:hover {
    background: linear-gradient(145deg, #ff6f61, var(--gold-light));

    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ================= TEXT ================= */
.about-section p {
    margin-top: 20px;
    font-size: 17px;
    font-weight: bold;
}


/* Cards Row */
.cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    font-weight: bold;
    color: gold;
    font-size: 14px;

}

.stat-card {
    font-family: 'Poppins', sans-serif;
    width: 330px;
    padding: 25px 20px;
    border-radius: 22px;
    text-align: center;
    background: linear-gradient(145deg, #ac6969, #f9f9f9);
    position: relative;
    color: #58430c;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;

    /* REAL CUT EFFECT */
    -webkit-mask: radial-gradient(circle 40px at top right, transparent 98%, black 100%);
            mask: radial-gradient(circle 40px at top right, transparent 98%, black 100%);
}


.stat-card::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: #f9f9f9; /* same as card background */
    border-radius: 50%;
    top: -20px;
    right: -20px;
}

/* Icon */
.stat-card .icon {
    font-size: 60px;
    color: #b8860b;
    margin-bottom:0px;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}
.stat-card p{
    margin-top: 0px;
}
/* Heading */
.stat-card h4 {
    font-size: 18px;
    color: #58430c;
    
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    margin-top: 0px;

}


/* Hover Effect */
.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Icon hover glow */
.stat-card:hover .icon {
    transform: scale(1.1);
    color: #ffd700;
}

/* ================= CONTACT SECTION ================= */

.contact-section {    font-family: 'poppins',sans-serif;

    padding: 10px 10px;
    background: linear-gradient(105deg, var(--icecream-pink), var(--icecream-mint));

}

/* WRAPPER */
.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;   /* ⭐ MOST IMPORTANT (equal height) */

    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ================= LEFT IMAGE CARD ================= */
.left-image {
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.left-image:hover {
    transform: translateY(-5px);
}

.left-image img {
   
  width: 85%;          /* ⭐ thodi chhoti */
    max-width: 320px;    /* ⭐ control size */
    height: auto;        /* ⭐ full image visible */
    object-fit: contain; /* ⭐ no cut */

    border-radius: 12px;

}

/* ================= RIGHT SIDE ================= */
.right-side {    font-family: 'poppins',sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #ffffff;

    border-radius: 12px;

}

/* RIGHT IMAGE CARD */
.right-image {
    background: #ffffff;
    padding: 10px;
    border-radius: 16px;
margin-top: 10px;
    transition: 0.3s;
}

.right-image:hover {
    transform: translateY(-2px);
}

.right-image img {
    width: 480px;
    background: #ffffff;

        height:300px;

    border-radius: 12px;
}

/* ================= CONTENT CARD ================= */
.right-content {    font-family: 'poppins',sans-serif;

    background: #ffffff;
    padding: 10px;
    border-radius: 16px;
    text-align: center;

}

/* TEXT */
.right-content p {
    margin-top: 10px;
    font-size: 16px;
    color: #444;
    line-height: 1.5;
    font-weight: 700;
        background: #ffffff;

}

/* ================= BUTTON ================= */
.cta1-btn {
    padding: 12px 34px;
    background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));

    color:white;
    font-weight: 600;
    text-decoration: none;

    border-radius: 50px;
    display: inline-block;

    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(212,175,55,0.4);
}

/* HOVER */
.cta1-btn:hover {
        background: linear-gradient(145deg, #ff6f61, var(--gold-light));

    color: #fff;

    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,127,80,0.5);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .left-image img,
    .right-image img {
        width: 90%;
    }
}

@media (max-width: 768px) {

    /* CENTER LEFT IMAGE BLOCK */
    .left-image{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* IMAGE CENTER ALIGN */
    .left-image img{
        margin: 0 auto;
        display: block;
    }

}
/* Section with background image */
.export-section {    font-family: 'poppins',sans-serif;

  position: relative;
  background: url('../images/cornseeds.jpg') center/cover no-repeat;
  height: 400px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #120101;
}

/* Optional overlay for readability */
.export-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content inside overlay */
.export-section .content {
  position: relative;
  z-index: 2;
}

/* Headline */
.export-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color:white;
}

/* Subheadline */
.export-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color:white;
}

/* CTA Button */
.export-section .cta-btn {
  padding: 12px 30px;
  background: #FFD700; /* Golden yellow */
  color: #faf7f7;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.export-section .cta-btn:hover {
 background: linear-gradient(145deg, var(--accent-coral), var(--gold-light));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}





/* Section background gradient */
.experienced-team {    font-family: 'poppins',sans-serif;

  text-align: center;
  padding: 50px 5%;
  position: relative;
  color:black;
        font-size:16px;
line-height: 1.8rem;
  background: linear-gradient(
      to bottom right,
      var(--icecream-pink),
      var(--soft-honey-tint),
      var(--icecream-mint)
    );
}

.experienced-team h1 {    font-family: 'poppins',sans-serif;

    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 700;
    color: #2b1a0f;
}


.experienced-team h2 {    font-family: 'poppins',sans-serif;

    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 700;
    color: #2b1a0f;
}

.experienced-team::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.2);
  z-index: 0;
}

/* Top tribute */
.top-tribute {    font-family: 'poppins',sans-serif;

  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.top-tribute img {
    margin-top: 10px;
  width: 200px;
  border-radius: 50%;
  border: 3px solid var(--golden);
  margin-bottom: 8px;
}

.top-tribute .tribute-text h2 {    font-family: 'poppins',sans-serif;

  font-size: 22px;
  margin-bottom: 3px;
  color:black;
  font-weight: 700;
}

.top-tribute .tribute-text h3 {    font-family: 'poppins',sans-serif;

  font-size: 19px;
  margin: 0px;
  font-weight: 700;
}

.top-tribute .tribute-text p {    font-family: 'poppins',sans-serif;

  font-size: 16px;
font-weight: 700;
  color:black;
  margin-bottom: 8px;
}

/* Quote */
.team-quote {    font-family: 'poppins',sans-serif;

    padding-top: 0;
    margin-top:0;
  font-size: 2rem;
  font-weight: bold;
  color:black;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Team cards */
.team-cards {
    margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.team-card {
  background-color:var(--icecream-pink);
  opacity: 0.9; /* creamy soft look */
  padding: 20px;
  border-radius: 15px;
  width: 220px;
  transition: transform 0.3s, background 0.3s, opacity 0.3s;
}

.team-card img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--golden);
    color:black;

}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color:black;
}

.team-card p {
  font-size: 15px;
  color: var(--text-dark);
    color:black;
    font-weight: bold;
    

}

/* Hover effect using theme pink */
.team-card:hover {
  transform: translateY(-10px);
  background-color: var(--vanilla-bg);
  opacity: 1;
}

@media (max-width: 768px) {
  .team-cards {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 80%;
  }

  .top-tribute img {
    width: 150px;
  }
}



.press-releases {    font-family: 'poppins',sans-serif;

  position: relative;
  overflow: hidden;
  padding: 30px 5%;
  text-align: center;
  color: var(--dark-bg);
  font-size: large;
  font-weight: bold;
  background-color: var(--soft-honey-tint); /* fallback color */
}

/* Pseudo-element for blurred background image */
.press-releases::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
      rgba(255, 250, 240, 0.6), /* creamy soft overlay */
      rgba(217, 196, 155, 0.6)
    ),
    url('images/corngreen.jpg') center/cover no-repeat;
  filter: blur(4px); /* blur strength */
  z-index: 0;
}

/* Make all content appear above blurred background */
.press-releases * {
  position: relative;
  z-index: 1;
}

/* Section title */
.section-title {
  font-size: 35px;
  font-weight: bold;
  color: var(--gold-dark);
  margin-bottom: 30px;
}

/* Press main text */
.press-main {
  margin-bottom: 40px;
  font-size: 1.5rem;
  color: var(--dark-bg);
  font-weight: bold;
}

/* Press cards layout */
.press-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.press-card {
  background-color: var(--vanilla-bg);
  padding: 20px;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s;
}

.press-card:hover {
  transform: translateY(-8px);
  background-color: var(--icecream-pink);
}

.press-link {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--accent-coral);
  text-decoration: none;
}

.press-link:hover {
  text-decoration: underline;
}

.press-publication {
  font-weight: bold;
  margin-bottom: 5px;
}

.press-date {
  font-size: 0.9rem;
  color: var(--dark-bg);
}

@media (max-width: 768px) {
  .press-cards {
    flex-direction: column;
    align-items: center;
  }

  .press-card {
    width: 80%;
  }
}




.reviews-section {    font-family: 'poppins',sans-serif;

    padding: 20px 20px;
    background: white;
    text-align: center;
}
p.sub-text
{
    font-weight: 600;
}
/* SCROLL CONTAINER */
.reviews-box {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;

    overflow-x: auto;
    padding: 25px 10px;
margin-bottom: 20px;
    scroll-behavior: smooth;
}

.reviews-box::-webkit-scrollbar {
    display: none;
}
.p .sub-text
{
    font-size:700px;
margin-top: 10px;
}
/* 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 */
@media (max-width: 576px) {
    .review-img {
        width: 320px;
    }
}

@media (max-width: 576px) {

    /* reduce container padding */
    .reviews-box{
        padding: 10px 5px;
        gap: 12px;
        height: auto;
    }

    /* FIX IMAGE CARD SIZE */
    .review-img{
        width: 260px;   /* smaller for mobile */
        height: auto;
    }

    /* image clean fit */
    .review-img img{
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* remove extra bottom space */
    .reviews-section{
        padding-bottom: 0px;
    }
}

.premium-section {    font-family: 'poppins',sans-serif;
background-color: #fcfdfe;
  font-weight: 700;
  color: var(--gold-dark); /* premium gold text */
  padding: 10px;
      text-align: center;
}

@media (max-width: 768px) {
  .premium-text {
    font-size: 1rem;
    text-align: left;
    line-height: 1.2;
    font-weight: 600;
        flex-wrap: nowrap;
  }
  .premium-section {
    height: 10px;
  }
}
.premium-text {
    font-family: 'poppins','sans-sarif';
    margin-top: 10px;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold-dark);
    padding: 20px;
    text-align: center;

    margin-bottom: 10px; /* ⭐ reduce space */
}

/* IMPORTANT FIX */
.premium-section {
    height: auto;   /* ⭐ REMOVE 1000px ISSUE */
}
/* ================= TITLE ANIMATION ================= */
.license-badge {    font-family: 'poppins',sans-serif;
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 40px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(246, 196, 69, 0.3);
text-align: center;
  animation: fadeSlideDown 1s ease forwards;
  margin-bottom: 20px;
}
@media (max-width: 768px) {

  .license-badge{
    margin-top: 10px;
    font-size: 12px;
  }

}
/* ================= IMAGE CONTAINER ================= */
.license-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ================= IMAGE STYLE ================= */
.license-images img {
  width: 130px;
  height: 95px;
  object-fit: cover;

  border-radius: 8px;
  border: 1px solid var(--gold-light);

  display: block;
  margin-bottom: 20px;

  /* ⭐ animation */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;

  /* smooth hover */
  transition: all 0.3s ease;
}

/* ⭐ stagger effect (one by one) */
.license-images img:nth-child(1) { animation-delay: 0.1s; }
.license-images img:nth-child(2) { animation-delay: 0.2s; }
.license-images img:nth-child(3) { animation-delay: 0.3s; }
.license-images img:nth-child(4) { animation-delay: 0.4s; }
.license-images img:nth-child(5) { animation-delay: 0.5s; }

/* ================= HOVER EFFECT ================= */
.license-images img:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 8px 20px rgba(246, 196, 69, 0.4);
}

/* ================= FLOAT ANIMATION ================= */
.license-images img {
  animation: fadeUp 0.8s ease forwards, float 4s ease-in-out infinite;
}

/* ================= KEYFRAMES ================= */

/* fade up */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* title */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* floating effect */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .license-images img {
    width: 45%;
    height: 80px;
    margin-bottom: 10px;
  }
}