@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= NAV FIX ================= */

/* ================= NAV FIX ================= */
.hero nav {
    font-family: 'Poppins', sans-serif;

    position: absolute;   /* 🔥 top pe fix */
    top: 20px;            /* 🔥 upar distance */
    right: 40px;          /* 🔥 right side */

    width: auto;

    display: flex;
    justify-content: flex-end;

    padding: 10px 0;

    font-size: 16px;
    font-weight: 600;

    z-index: 9999;
}
/* NAV LIST */
.hero nav ul {
    display: flex;
    flex-wrap: wrap;  /* ✅ prevents overflow */
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}




/* LINKS */
.hero nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;

    padding: 6px 8px;
    transition: 0.3s;
right:-60px;

    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);
}

/* ================= DROPDOWN ================= */
.hero nav ul li {
    position: relative;
}




.hero .dropdown-menu {
    display: none;
    position: absolute;

    top: 140%;          /* parent ke niche */
    left: 50%;          /* center point */
    transform: translateX(-50%);  /* exact center */

    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 {


     background: #be5462;   /* icecream pink */

  color: rgb(241, 241, 28);

}


/* ================= 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: #be5462;   /* icecream pink */
    color: #ffd700 !important;   /* strong gold yellow */

  color: rgb(241, 241, 28);


}

/* Hero Section */
.hero {
 
    justify-content: flex-start; /* text left, image right */
    padding: 13px 5%;
  
    background-image: url("../images/exportmaka.jpg");
             background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), 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;    
         
}      
    

     
/* =========================================
   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: 10px;
        right: -20px;

        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: flex;
        flex-direction: column;

        overflow-y: auto;

        transition: 0.3s ease;

        z-index: 99999;
        max-height: 65vh;   /* 👈 yaha control karo (try 60-70vh) */

        padding-top: 20px;
    }
    .menu.active {
        left: 0;
    }
/* MENU SCROLLBAR HIDE (KEEP SCROLL WORKING) */
.menu {
    overflow-y: auto;   /* scroll chalega */
    scrollbar-width: none; /* Firefox */
}

/* Chrome, Edge, Safari */
.menu::-webkit-scrollbar {
    display: none;
}
    /* ================= MENU ITEMS ================= */
    .menu li {

        width: 100%;

        padding: 0;
        list-style: none;
    }

    /* ================= LINKS ================= */
    .menu li a {

        color: #fff;

        display: block;

        padding: 14px 18px;

        text-decoration: none;
    }

    /* ================= REMOVE DESKTOP HOVER ================= */
    .dropdown:hover > .dropdown-menu,
    .dropdown-sub:hover > .submenu {

        display: none !important;
    }

    /* ================= DROPDOWN ================= */
    .dropdown-menu {

        display: none;

        position: static !important;

        width: 100%;

        background: rgba(255,255,255,0.08);

        padding-left: 10px;

        box-shadow: none;

        border-radius: 0;
    }

    .dropdown.open > .dropdown-menu {

        display: block !important;
    }

    /* ================= SUBMENU ================= */
    .submenu {

        display: none;

        position: static !important;

        width: 100%;

        margin-left: 0 !important;

        margin-top: 5px;

        padding-left: 15px;

        background: rgba(255,255,255,0.05);

        border-left: 2px solid rgba(255,255,255,0.3);

        box-shadow: none;
    }

    .dropdown-sub.open > .submenu {

        display: block !important;
    }
}

@media screen and (max-width: 900px) {

  /* 🔥 FORCE RESET EVERYTHING RELATED TO SIDE POSITION */
  .dropdown-menu,
  .submenu {

    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;

    transform: none !important;

    width: 100% !important;

    float: none !important;
  }

  /* dropdown behavior */
  .dropdown.open > .dropdown-menu {
    display: block !important;
  }

  .dropdown-sub.open > .submenu {
    display: block !important;
  }

    .dropdown > a::after{
        content:"▼";
        font-size:12px;
        margin-left:10px;
    }

    .dropdown-sub > a::after{
        content:"▶";
        font-size:12px;
        margin-left:10px;
    }

  /* remove any side effects */
  .hero .submenu {
    margin-left: 0 !important;
  }
}




/* REMOVE BOX */
.hero-content {
  
 position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* perfect center */

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 2;
    margin-top: -20px;   /* 👈 top se gap control */

}

/* TEXT STYLE */
.hero-title {
    font-family: 'poppins','sans-sarif';
    font-size: 60px;
    color: #fbfbfa;
    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 TITLE ================= */
.section-title{
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: #b8860b;
    font-weight: 700;
}
/* ================= GALLERY ================= */
.gallery{
    width: 100%;
    padding: 0 5%;

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

/* ================= GALLERY CARD ================= */
.gallery-card{
    display: flex;
    flex-direction: column;
width: 78%;
    gap: 10px;
}

/* ================= IMAGE BOX ================= */
.img-box{
    position: relative;

    overflow: hidden;

    border-radius: 20px;

    background: rgba(255,255,255,0.96);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.08);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;

    transform-style: preserve-3d;

    line-height: 0;
}

/* 🔥 SUBTLE TILT EFFECT */
.img-box:hover{
    transform:
        perspective(1000px)
        rotateY(5deg)
        rotateX(2deg)
        translateY(-3px);

    box-shadow:
        0 16px 28px rgba(0,0,0,0.12),
        0 0 12px rgba(255,215,0,0.12);
}

/* ================= IMAGE ================= */
.img-box img{
    width: 78%;
    height: auto;

    object-fit: contain;

    display: block;

    margin: 0;
    padding: 0;

    vertical-align: top;

    transition: transform 0.45s ease;
}

/* 🔥 SOFT IMAGE ZOOM */
.img-box:hover img{
    transform: scale(1.03);
}

/* ================= IMAGE NAME ================= */
.img-name{
    margin-top: -37px; /* 🔥 VERY LESS GAP */

    padding: 5px 8px 6px;

    text-align: center;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.1;

    color: #7a5200;


    position: relative;

    z-index: 20;
}
/* ================= BUTTON ================= */
.read-more{
    display: block;

    width: 50%; /* 🔥 BUTTON WIDTH SMALL */

    margin: 10px auto 0; /* center */

    padding: 11px 0;

    border: none;
    border-radius: 19px;

    background: linear-gradient(
        135deg,
        #d4a017,
        #ffd54f
    );

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;

    box-shadow:
        0 8px 18px rgba(212,160,23,0.25);
}

/* 🔥 BUTTON STABLE */
.read-more:hover{
  
    /* 🔥 ACCENT CORAL + GOLDEN */
    background: linear-gradient(
        135deg,
        #ff6f61,
        #ffb347,
        #ffd54f
    );


    transform: none !important;

    box-shadow:
        0 12px 22px rgba(255,111,97,0.22);
}
/* ================= MOBILE RESPONSIVE ONLY ================= */
@media (max-width: 1024px){

.gallery{
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.gallery-card{
    width: 100%; /* 🔥 FIX OVERFLOW ISSUE */
}

.img-box img{
    width: 100%; /* 🔥 FIX IMAGE WIDTH */
}

.img-name{
    font-size: 15px;
    margin-top: -20px;
}

.read-more{
    width: 70%;
}

}

/* ================= MOBILE (SMALL DEVICES) ================= */
@media (max-width: 600px){
/* ================= FORCE SINGLE COLUMN ================= */
.gallery{
    display: grid !important;
    grid-template-columns: 1fr !important; /* 🔥 one below one */
    gap: 20px !important;
}

.section-title{
    font-size: 1.6rem;
}

.img-name{
    font-size: 14px;
    margin-top: -12px;
}

.read-more{
    width: 60%;
    font-size: 13px;
}

}
#popup1.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 182, 193, 0.25); /* soft ice pink */
    backdrop-filter: blur(7px);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* popup box */
#popup1 .popup-box {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1, #ffffff);
    width: 420px;
    max-width: 90%;

    padding: 22px;
    border-radius: 20px;

    position: relative;

    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.25);
    border: 2px solid #ffd1dc;

    font-family: Arial, sans-serif;

    animation: icecreamPop 0.3s ease;
}

/* title */
#popup1 h2 {
    color: #ff4d6d;
    text-align: center;
    margin-top: 19px;
}

/* text */
#popup1 p {
    color: #444;
    font-size: 14px;
    margin: 6px 0;
}

/* close X */
#popup1 .close-x {
    padding-top:10px;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #ff4d6d;
    font-weight: bold;
}

/* close button */
#popup1 button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(90deg, #ffb6c1, #ff69b4);
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

#popup1 button:hover {
    transform: scale(1.05);
}

/* animation */
@keyframes icecreamPop {
    from {
        transform: scale(0.75);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
#popup2.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 182, 193, 0.25); /* soft ice pink */
    backdrop-filter: blur(7px);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* popup box */
#popup2 .popup-box {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1, #ffffff);
    width: 420px;
    max-width: 90%;

    padding: 22px;
    border-radius: 20px;

    position: relative;

    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.25);
    border: 2px solid #ffd1dc;

    font-family: Arial, sans-serif;

    animation: icecreamPop 0.3s ease;
}

/* title */
#popup2 h2 {
   

 color: #ff4d6d;
    text-align: center;
    margin-top: 15px;

}

/* text */
#popup2 p {
    color: #444;
    font-size: 14px;
    margin: 6px 0;
}

/* close X */
#popup2 .close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #ff4d6d;
    font-weight: bold;
}

/* close button */
#popup2 button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(90deg, #ffb6c1, #ff69b4);
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

#popup2 button:hover {
    transform: scale(1.05);
}

/* animation */
@keyframes icecreamPop {
    from {
        transform: scale(0.75);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


#popup3.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 182, 193, 0.25); /* soft ice pink */
    backdrop-filter: blur(7px);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* popup box */
#popup3 .popup-box {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1, #ffffff);
    width: 420px;
    max-width: 90%;

    padding: 22px;
    border-radius: 20px;

    position: relative;

    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.25);
    border: 2px solid #ffd1dc;

    font-family: Arial, sans-serif;

    animation: icecreamPop 0.3s ease;
}

/* title */
#popup3 h2 {
    
    
 color: #ff4d6d;
    text-align: center;
    margin-top: 15px;


}

/* text */
#popup3 p {
    color: #444;
    font-size: 14px;
    margin: 6px 0;
}

/* close X */
#popup3 .close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #ff4d6d;
    font-weight: bold;
}

/* close button */
#popup3 button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(90deg, #ffb6c1, #ff69b4);
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

#popup3 button:hover {
    transform: scale(1.05);
}

/* animation */
@keyframes icecreamPop {
    from {
        transform: scale(0.75);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


#popup4.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 182, 193, 0.25); /* soft ice pink */
    backdrop-filter: blur(7px);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* popup box */
#popup4 .popup-box {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1, #ffffff);
    width: 420px;
    max-width: 90%;

    padding: 22px;
    border-radius: 20px;

    position: relative;

    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.25);
    border: 2px solid #ffd1dc;

    font-family: Arial, sans-serif;

    animation: icecreamPop 0.3s ease;
}

/* title */
#popup4 h2 {
    color: #ff4d6d;
    text-align: center;
    margin-bottom: 15px;
}

/* text */
#popup4 p {
    color: #444;
    font-size: 14px;
    margin: 6px 0;
}

/* close X */
#popup4 .close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #ff4d6d;
    font-weight: bold;
}

/* close button */
#popup4 button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(90deg, #ffb6c1, #ff69b4);
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

#popup4 button:hover {
    transform: scale(1.05);
}

/* animation */
@keyframes icecreamPop {
    from {
        transform: scale(0.75);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}



#popup5.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 182, 193, 0.25); /* soft ice pink */
    backdrop-filter: blur(7px);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* popup box */
#popup5 .popup-box {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1, #ffffff);
    width: 420px;
    max-width: 90%;

    padding: 22px;
    border-radius: 20px;

    position: relative;

    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.25);
    border: 2px solid #ffd1dc;

    font-family: Arial, sans-serif;

    animation: icecreamPop 0.3s ease;
}

/* title */
#popup5 h2 {
    color: #ff4d6d;
    text-align: center;
    margin-bottom: 15px;
}

/* text */
#popup5 p {
    color: #444;
    font-size: 14px;
    margin: 6px 0;
}

/* close X */
#popup5 .close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #ff4d6d;
    font-weight: bold;
}

/* close button */
#popup5 button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(90deg, #ffb6c1, #ff69b4);
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

#popup5 button:hover {
    transform: scale(1.05);
}

/* animation */
@keyframes icecreamPop {
    from {
        transform: scale(0.75);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


#popup6.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 182, 193, 0.25); /* soft ice pink */
    backdrop-filter: blur(7px);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* popup box */
#popup6 .popup-box {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1, #ffffff);
    width: 420px;
    max-width: 90%;

    padding: 22px;
    border-radius: 20px;

    position: relative;

    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.25);
    border: 2px solid #ffd1dc;

    font-family: Arial, sans-serif;

    animation: icecreamPop 0.3s ease;
}

/* title */
#popup6 h2 {
    color: #ff4d6d;
    text-align: center;
    margin-bottom: 15px;
}

/* text */
#popup6 p {
    color: #444;
    font-size: 14px;
    margin: 6px 0;
}

/* close X */
#popup6 .close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #ff4d6d;
    font-weight: bold;
}

/* close button */
#popup6 button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(90deg, #ffb6c1, #ff69b4);
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

#popup6 button:hover {
    transform: scale(1.05);
}

/* animation */
@keyframes icecreamPop {
    from {
        transform: scale(0.75);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}



#popup7.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 182, 193, 0.25); /* soft ice pink */
    backdrop-filter: blur(7px);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* popup box */
#popup7 .popup-box {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1, #ffffff);
    width: 420px;
    max-width: 90%;

    padding: 22px;
    border-radius: 20px;

    position: relative;

    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.25);
    border: 2px solid #ffd1dc;

    font-family: Arial, sans-serif;

    animation: icecreamPop 0.3s ease;
}

/* title */
#popup7 h2 {
    color: #ff4d6d;
    text-align: center;
    margin-bottom: 15px;
}

/* text */
#popup7 p {
    color: #444;
    font-size: 14px;
    margin: 6px 0;
}

/* close X */
#popup7 .close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #ff4d6d;
    font-weight: bold;
}

/* close button */
#popup7 button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(90deg, #ffb6c1, #ff69b4);
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

#popup7 button:hover {
    transform: scale(1.05);
}

/* animation */
@keyframes icecreamPop {
    from {
        transform: scale(0.75);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}




#popup8.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 182, 193, 0.25); /* soft ice pink */
    backdrop-filter: blur(7px);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* popup box */
#popup8 .popup-box {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1, #ffffff);
    width: 420px;
    max-width: 90%;

    padding: 22px;
    border-radius: 20px;

    position: relative;

    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.25);
    border: 2px solid #ffd1dc;

    font-family: Arial, sans-serif;

    animation: icecreamPop 0.3s ease;
}

/* title */
#popup8 h2 {
    color: #ff4d6d;
    text-align: center;
    margin-bottom: 15px;
}

/* text */
#popup8 p {
    color: #444;
    font-size: 14px;
    margin: 6px 0;
}

/* close X */
#popup8 .close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #ff4d6d;
    font-weight: bold;
}

/* close button */
#popup8 button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(90deg, #ffb6c1, #ff69b4);
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

#popup8 button:hover {
    transform: scale(1.05);
}

/* animation */
@keyframes icecreamPop {
    from {
        transform: scale(0.75);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}





#popup9.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 182, 193, 0.25); /* soft ice pink */
    backdrop-filter: blur(7px);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* popup box */
#popup9 .popup-box {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1, #ffffff);
    width: 420px;
    max-width: 90%;

    padding: 22px;
    border-radius: 20px;

    position: relative;

    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.25);
    border: 2px solid #ffd1dc;

    font-family: Arial, sans-serif;

    animation: icecreamPop 0.3s ease;
}

/* title */
#popup9 h2 {
    color: #ff4d6d;
    text-align: center;
    margin-bottom: 15px;
}

/* text */
#popup9 p {
    color: #444;
    font-size: 14px;
    margin: 6px 0;
}

/* close X */
#popup9 .close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #ff4d6d;
    font-weight: bold;
}

/* close button */
#popup9 button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(90deg, #ffb6c1, #ff69b4);
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

#popup2 button:hover {
    transform: scale(1.05);
}

/* animation */
@keyframes icecreamPop {
    from {
        transform: scale(0.75);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* ================= FULL MOBILE RESPONSIVE ONLY ================= */
@media (max-width: 900px) {

  


}
/* TITLE */
.section-title2 {
    text-align: center;
    font-size: 28px;
    color: #544309;
    margin: 40px 0;
    font-family: 'poppins','sans-serif';
    font-weight: 600;
    margin-left: 20px;
}

/* SLIDER */
.slider {
    width: 90%;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f2027, #2c5364);
    box-shadow: 0 0 25px rgba(212,175,55,0.4);
    position: relative;
  margin-bottom: 20px;
}

/* SLIDES */
.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

/* SINGLE SLIDE */
.slide {
    min-width: 100%;
}

/* IMAGE */
.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(212,175,55,0.6);
}
@media (max-width: 768px) {

  .slider {
    width: 95%;
    border-radius: 15px;
  }

  .slide img {
    height: 220px;
  }

}


/* ================= SIMPLE IMAGE GALLERY ================= */
.gallery {
    margin-top: 30px;
  width: 100%;
  padding: 20px 5%;
font-weight: 700;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 images in one row */
  gap: 20px;
  margin-bottom: 40px;
}

/* IMAGES */
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;

  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);

  transition: 0.3s ease;
  margin-bottom: 50px;
}

/* HOVER EFFECT */
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


/* ===== MAIN SECTION ===== */
.export-sections {
  position: relative;
  background: #fffaf3;
  overflow: hidden;
}

/* ===== CONTAINER ===== */
.export-containers {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px; /* 👈 VERY SMALL GAP (as you wanted) */

  padding: 10px 40px 80px;
  z-index: 2;
}

/* ===== TOP HALF CIRCLE (GOLD ICE CREAM) ===== */
.export-sections::before {
  content: "";
  position: absolute;

  width: 650px;
  height: 650px;

  background: linear-gradient(135deg, #ffd89b, #19547b);

  border-radius: 50%;
  top: -350px;
  right: -300px;

  opacity: 0.25;
  z-index: 0;
}

/* ===== BOTTOM HALF CIRCLE ===== */
.export-sections::after {
  content: "";
  position: absolute;

  width: 650px;
  height: 650px;

  background: linear-gradient(135deg, #ffe0b2, #fff3e0);

  border-radius: 50%;
  bottom: -350px;
  left: -300px;

  opacity: 0.35;
  z-index: 0;
}

/* ===== LEFT SIDE TEXT ===== */
.export-lefts {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  text-align: left;
}

.export-lefts h2 {
  font-size: 28px;
  color: #5a3e1b;
  margin-bottom: 15px;
font-weight: 700;
}

.export-lefts p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b4e2e;
  font-weight: 700;
}
/* ===== RIGHT SIDE ===== */
.export-rights {
  flex: 0 0 260px;   /* thoda narrow kiya */
  display: flex;
  flex-direction: column;
  align-items: center;

  z-index: 2;

  /* LEFT PUSH */
  margin-left: -20px;   /* adjust as needed */
}

/* ===== PASSPORT IMAGE ===== */
.export-rights img {
  margin-top: 100px;
  width: 180px;   /* smaller */
  height: 220px;  /* smaller */

  object-fit: cover;

  border-radius: 14px;
  border: 5px solid #fff;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
margin-bottom: 40px;
  transition: 0.3s ease;
}

.export-rights img:hover {
  transform: scale(1.05);
}

/* ===== NAME (add this if not present) ===== */
.export-rights h3,
.export-rights .name {
  font-weight: 700;
  font-size: 16px;
  margin-top: 30px;
  color: #3b2a14;
  text-align: center;
}


.contact-boxs{
    max-width: 320px;
    padding: 18px 22px;
    border-radius: 15px;
    background: linear-gradient(135deg, #fffaf0, #ffe9b3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    transition: 0.3s ease;
}

/* hover effect */
.contact-boxs:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Name */
.contact-boxs .name{
    font-size: 18px;
    color: #b8860b;
    margin-bottom: 10px;
}

/* Phone */
.contact-boxs .phone{
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

/* Email link */
.contact-boxs .email{
    display: inline-block;
    font-size: 14px;
        color: #b8860b;

    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* hover email */
.contact-boxs .email:hover{
        color: #ff6f61;

    text-decoration: underline;
}






/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .export-containers {
    flex-direction: column;
    text-align: center;
    margin-bottom: 10px;

    gap: 25px;
    padding: 20px 20px;
  }

  .export-rights img {
    margin-top: 20px;
    width: 200px;
    height: 250px;
    
  }}
