* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Header Section */
.top-header {
    display: flex;
    background-color: whitesmoke;
}

.top-header1 {
    padding: 5px 0 4px 0px;
    font-size: large;
    color: black;
}

.top-header1 p span {
    color: blue;
}

.top-header2 {
    padding: 5px 10px 4px 0;
    font-size: large;
    border-left: 5px solid white;
}

/* Head Section */
.header {
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: white;
}

.head {
    display: flex;
    margin: 12px;
    text-align: center;
    align-items: center;
}

.head img {
    width: 50px;
    height: 50px;
    margin: 0 30px;
}

.head h1 {
    color: red;
    font-family: "ROG LyonsType Regular", sans-serif;
    font-size: 25px;
}

.head p {
    color: blue;
    font-size: 13px;
    font-family: sans-serif;
    text-align: center;
}


@media (max-width: 1024px) {
    .header {
        grid-template-columns: repeat(2, 1fr);
        height: 85px;
        text-align: center;
        align-items: center;
    }

    .head {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .head img {
        width: 45px;
        height: 45px;
        margin: 0 20px 0 40px;
    }

    .head h1 {
        font-size: 21px;
        margin: 8px 0 0 0;
        text-align: center;
        line-height: 1.2;
        white-space: normal;
        word-break: keep-all;
    }

    .head p {
        font-size: 12px;
        margin-top: 5px;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .header {
        grid-template-columns: repeat(2, 1fr);
        /* height: auto; */
        height: 65px;
        text-align: center;
        align-items: center;

        padding: 5px 0;
    }

    .head {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .head img {
        width: 30px;
        height: 30px;
        /* margin: 0 auto; */

        margin: 0 10px 0 15px !important;
    }

    .head h1 {
        font-size: 18px;
        /* margin: 8px 0 0 0; */
        margin: 0;
        /* text-align: center; */
        text-align: left;
        line-height: 1.2;
        white-space: normal;
        word-break: keep-all;
    }

    .head p {
        /* font-size: 9px; */
        font-size: 8px;
        /* margin-top: 5px; */
        margin: 2px 0 0 0;
        text-align: center;
        white-space: normal;
    }
}


/* NAVIGATION BAR */
.navigation-bar {
    display: flex;
    justify-content: flex-end;
    text-align: right;
    align-items: center;
    position: relative;
}

.nav-bar {
    text-transform: capitalize;
    padding-right: 50px;
}

.nav-bar a {
    color: black;
    text-decoration: none;
    margin-left: 12px;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 7px;
    border-bottom: 2px solid black;
}

.nav-bar a.clicked {
    background-color: orange;
}

.nav-bar a:hover {
    background-color: orange;
}

.menu-toggle {
    font-size: 25px;
    color: black;
    display: none;
    cursor: pointer;
}

@media(max-width:1024px) {
    .navigation-bar {
        justify-content: flex-end;
        padding-right: 20px;
    }

    .nav-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-right: 20px;
    }
}

@media(max-width:768px) {
    .navigation-bar {
        flex-direction: row;
        justify-content: flex-end;

        align-items: center;
        height: 100%;
        padding-right: 15px;
    }

    .nav-bar {
        display: none;
        flex-direction: column;
        background-color: white;
        position: fixed;
        top: 110px;
        right: 0;
        width: 95%;
        height: 750px;
        z-index: 9999;
        align-items: flex-start;
        padding-left: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

    }

    .nav-bar a {
        display: block;
        font-size: 22px;
        padding: 10px 60px 10px 60px;
        background-color: none;
        color: black;
        margin-top: 12px;
        justify-content: flex-start;
        padding: 5px 700px 5px 15px;
        border-radius: 0;
        border-bottom: 2px solid black;

    }

    .menu-toggle {
        display: inline-block;
        margin: 0 10px;
        padding: 0 5px 3px 10px;
    }

    .nav-bar.active {
        display: flex;
    }
}

/* Service-Main */
.ex-port {
    width: 100%;
    height: 300px;
    display: block;
}

@media (min-width: 1025px) {
    .ex-port {
        height: auto;
    }
}

@media (min-width:601px) and (max-width: 1024px) {
    .ex-port {
        height: auto;
    }
}

@media (max-width:600px) {
    .ex-port {
        height: auto;
    }
}


/* Export Top Heading */
.export-heading {
    text-align: center;
    margin: 30px 100px;
}

.export-heading h2 {
    font-size: 40px;
    padding-bottom: 20px;
}

.export-heading p {
    font-size: 20px;
    line-height: 26px;
}

@media(max-width:1024px) {
    .export-heading {
        margin: 40px 70px;
        padding-bottom: 10px;
    }

    .export-heading h2 {
        font-size: 43px;
        padding-bottom: 15px;
    }

    .export-heading p {
        font-size: 23px;
    }
}

@media(max-width:768px) {
    .export-heading {
        margin: 35px 40px;
    }

    .export-heading h2 {
        font-size: 34px;
    }

    .export-agri h3 {
        font-size: 22px;
    }

    .export-heading p {
        font-size: 20px;
    }
}


/* EXPORT PRODUCTS */
.export-agri {
    padding-bottom: 30px;
}

.export-agri h2 {
    text-align: center;
    padding: 35px 0 10px 0;
    font-size: xx-large;
}

.export-agri h3 {
    text-align: center;
    font-size: 22px;
    padding-bottom: 20px;
}

.export-agri-foods {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 15px 15px 15px;
}

.export-foods {
    border-radius: 20px;
    background-color: rgb(219, 217, 214);
    position: relative;
    width: 100%;
}

.export-foods img {
    width: 90%;
    height: 150px;
    margin-left: 5%;
    padding-bottom: 15px;
    border-radius: 30px;
}

.export-foods h3 {
    text-align: center;
    margin: 15px 15px;
    color: blue;
    text-decoration: underline;
}

.details {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    display: none;
    z-index: 2000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0, 3);
}

.details.active {
    display: block;
}

.btn {
    display: block;
    margin: 6px auto;
    padding: 6px 12px;
    background-color: blue;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.details p {
    font-size: 20px;
    line-height: 30px;
}

@media screen and (max-width:1024px) {
    .export-agri-foods {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        width: 100%;
        height: auto;
        align-items: center;
    }

    .export-foods {
        width: 100%;
        height: 300px;
        align-items: center;
    }

    .export-foods img {
        height: 180px;
        border-radius: 30px;
    }

    .export-foods h3 {
        font-size: 22px;
        margin: 10px 10px;
    }

    .details {
        width: 450px;
    }

    .btn {
        padding: 4px 6px;
        font-size: 18px;
    }

    .details p {
        font-size: 18px;
    }
}

@media(max-width:768px) {
    .export-agri-foods {
        display: grid !important;  /* ← flex से grid करें */
        grid-template-columns: repeat(2, 1fr) !important;  /* ← 1 column की जगह 2 columns */
        gap: 15px;
        /* display: flex; */
        flex-direction: column;
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: center;

        padding: 0 10px;
    }

    .export-foods {
        width: 100% !important;  /* ← 80% से 100% करें */
        height: auto !important;  /* ← fixed height हटाएं */
        min-height: 320px;
        margin: 0 !important;
        
        /* width: 80%; */
        /* height: 320px; */
        align-items: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .export-foods img {
        /* width: 80%; */
        width: 90%;
        /* padding-left: 50px; */
        padding-left: 0;
        border-radius: 0;
        /* height: 200px; */
        height: 160px;
        align-items: center;

        margin: 0 auto 10px auto !important;
        display: block;
    }

    .export-foods h3 {
        font-size: 24px;
        margin: 10px 10px;
    }

    .details {
        width: 450px;
    }

    .btn {
        padding: 4px 6px;
        font-size: 18px;
    }

    .details p {
        font-size: 18px;
    }
}


.machine-export {
    width: 100%;
}

.machine-export h3 {
    padding: 20px 20px;
    text-align: center;
    font-size: xx-large;
    color: red;
    font-weight: bold;
}

.machine-export img {
    width: 100%;
    height: 600px;
}

@media screen and (max-width:768px) {
    .machine-export h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .machine-export img {
        width: 100%;
        /* height: 500px; */
        height: 300px;
        object-fit: cover;
    }
}

@media screen and (max-width:768px) {
    .machine-export h3 {
        font-size: 25px;
        line-height: 30px;
    }

    .machine-export img {
        width: 100%;
        height: 400px;
    }
}

/* NOTE */
.product-source {
    padding: 50px 100px 0 100px;
    text-align: center;
    align-items: center;
}

.product-source h2 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 40px;
    color: green;
}

.product-source h3 {
    text-align: center;
    line-height: 35px;
    font-size: 20px;
}

@media screen and (max-width:1024px) {
    .product-source h2 {
        font-size: 32px;
    }

    .product-source h3 {
        font-size: 20px;
        line-height: 30px;
        padding: 0 10px 15px 10px;
    }
}

@media screen and (max-width:768px) {
    .product-source h2 {
        font-size: 20px;
    }

    .product-source h3 {
        font-size: 18px;
        line-height: 28px;
        padding: 0 7px 10px 7px;
    }
}


/* EXPORT PLACE (COUNTRIES) */
.export-place {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    text-align: center;
}

.export-place img {
    width: 90px;
    height: 60px;
}

.export-place h2 {
    padding: 50px;
    font-size: 30px;
}

.export-all-country {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
    padding: 30px 15px 50px 15px;
}

.expo-country {
    display: flex;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expo-country:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.expo-country img {
    width: 90px;
    height: 60px;
}

.expo-country h3 {
    text-align: center;
}

@media screen and (max-width:1024px) {
    .export-place {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: lightblue;
        padding-top: 30px;
    }

    .export-place img {
        width: 90px;
        height: 60px;
    }

    .export-place h2 {
        padding: 20px;
        font-size: 24px;
    }

    .export-all-country {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        padding: 30px 10px 50px 10px;
    }

    .expo-country img {
        width: 75px;
        height: 50px;
    }
}

@media screen and (max-width:768px) {
    .export-place {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: lightblue;
        padding-top: 30px;
    }

    .export-place img {
        width: 75px;
        height: 50px;
    }

    .export-place h2 {
        padding: 10px;
        font-size: 18px;
    }

    .export-all-country {
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: repeat(3,1fr);
        /* grid-gap: 15px; */
        gap: 12px;
        /* padding: 30px 10px 50px 10px; */
        padding: 20px 10px;
    }

    .expo-country {
        flex-direction: column;
        padding: 10px 5px;
    }

    .expo-country h3 {
        padding-left: 0 !important;
        font-size: 14px;
        margin-top: 5px;
    }

    .expo-country img {
        width: 60px;
        height: 45px;
    }
}


/* Export Ending */
.export-ending {
    text-align: center;
    margin: 50px 100px;
}

.export-ending h2 {
    font-size: 40px;
    padding-bottom: 20px;
}

.export-ending p {
    font-size: 20px;
    line-height: 26px;
}

@media(max-width:1024px) {
    .export-ending {
        margin: 40px 70px;
        padding-bottom: 10px;
    }

    .export-ending h2 {
        font-size: 35px;
        padding-bottom: 15px;
    }

    .export-ending p {
        font-size: 20px;
    }
}

@media(max-width:768px) {
    .export-ending {
        margin: 35px 40px;
    }

    .export-ending h2 {
        font-size: 30px;
    }

    .export-ending p {
        font-size: 19px;
    }
}



/* Footer-Section*/
.base-bottom-image img {
    width: 100%;
    height: 150px;
}

.footer-end {
    display: flex;
    flex-direction: row;
    margin: 20px 50px 20px 60px;
    gap: 50px;
}

.footer-end h3 {
    font-size: 25px;
    line-height: 50px;
    padding-bottom: 15px;
}

.footer-end p {
    font-size: 19px;
    line-height: 26px;
}

.foot-1 p {
    line-height: 30px;
}

.footer-1 {
    width: 60%;
    margin: 20px 30px 20px 50px;
}

.footer-2 {
    display: flex;
    flex-direction: row;
    margin: 20px 30px 20px 20px;
}

.foot-1 {
    width: 100%;
    margin-right: 40px;
}

.footer-end a:hover {
    color: black;
}

/* Laptop View */
@media(max-width:1024px) {
    .footer-end {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 20px 20px 0px 40px;
        gap: 0;
    }

    .footer-1 {
        width: 95%;
        margin: 20px 0 0 10px;
    }

    .footer-1 p {
        font-size: 22px;
    }

    .footer-2 {
        margin: 20px 50px 20px 50px;
    }

    .foot-1 {
        margin-right: 20px;
    }

    .foot-1 a {
        font-size: 20px;
    }

    .foot-2 p {
        font-size: 20px;
    }
}

/* Mobile View */
@media(max-width:768px) {
    .base-bottom-image img {
        height: 130px;
    }

    .footer-end {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 20px 20px 0px 20px;
        gap: 0;
    }

    .footer-end h3 {
        font-size: 23px;
        padding-bottom: 0px;
    }

    .footer-1 {
        width: 90%;
        margin: 20px 30px 30px 40px;
    }

    .footer-1 p {
        font-size: 18px;
    }

    .footer-2 {
        width: 90%;
        display: flex;
        flex-direction: row;
        margin: 0px 0px 20px 50px;
        gap: 0;
    }

    .foot-1 a {
        font-size: 16px;
        line-height: 17px;
    }

    .foot-2 p {
        font-size: 18px;
    }
}

.bottom {
    display: flex;
    padding: 18px 0 18px 0;
    background-color: red;
    color: white;
    font-size: 18px;
    justify-content: center;
    gap: 100px;
}

@media(max-width:1024px) {
    .bottom p {
        font-size: 16px;
    }
}

@media(max-width:768px) {
    .bottom p {
        font-size: 12px;
    }
}



.whatsapp-float {
    position: fixed;
    bottom: 138px;
    left: 32px;
    z-index: 1000;
    width: 55px;
    height: 55px;
}

.whatsapp-float img {
    width: 90%;
    height: 90%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
}

@media(max-width:768px) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
    }
}





/* MOBILE RESPONSIVE FIXES (ADD THIS AT END) */
@media(max-width:768px) {

    /* 1. HEADER - SAME AS LAPTOP LAYOUT */
    .header {
        height: auto;
        min-height: 70px;
        padding: 5px 0;
        grid-template-columns: repeat(2, 1fr);
    }

    /* 2. LOGO & COMPANY NAME - SAME POSITION */
    .head {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0 0 0 10px;
        padding: 0;
        justify-content: flex-start;
        text-align: left;
    }

    .head img {
        width: 45px;
        height: 45px;
        margin: 0 10px 0 0;
    }

    .head h1 {
        font-size: 18px;
        margin: 0;
        padding: 0;
        text-align: left;
        line-height: 1.2;
    }

    .head p {
        font-size: 9px;
        white-space: nowrap;
        margin: 0;
        padding: 0;
        text-align: left;
    }


    /* 4. MARQUEE - NO CHANGE, SAME AS BEFORE */
    .top-header {
        display: flex;
        font-size: 12px;
        padding: 3px;
    }

    /* 8. FOOTER FIXES */
    .footer-end {
        margin: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .footer-1 {
        width: 100%;
        margin: 0;
        padding: 0 10px;
    }

    .footer-2 {
        flex-direction: column;
        margin: 0;
        padding: 0 10px;
        width: 100%;
    }

    .foot-1,
    .foot-2 {
        width: 100%;
        margin: 0 0 20px 0;
    }

    /* 9. BOTTOM BAR */
    .bottom {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
        font-size: 14px;
    }
}


/* --- Footer --- */
.footer-end {
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 20px;
}

.footer-1,
.foot-1,
.foot-2 {
    width: 100%;
    text-align: center;
}

.footer-1 p,
.foot-1 p,
.foot-2 p {
    font-size: 15px;
    line-height: 22px;
}

/* --- Bottom bar --- */
.bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 10px 0;
}



/* ========== MOBILE HEADER COMPACT FIX ========== */
@media (max-width: 768px) {

    /* Header height fix */
    .header {
        height: 65px !important;
    }

    /* Logo smaller */
    .head img {
        width: 32px !important;
        height: 32px !important;
    }

    /* Company name smaller */
    .head h1 {
        font-size: 14px !important;
    }

    /* Tagline smaller */
    .head p {
        font-size: 7px !important;
    }

    /* Toggle menu button fix */
    .menu-toggle {
        margin-right: 15px !important;
    }

    /* Dropdown menu position fix */
    .nav-bar {
        top: 65px !important;
        width: 200px !important;
    }
}





/* ========== MOBILE EXPORT SPECIFIC FIXES ========== */
@media (max-width: 768px) {
    /* EXPORT HEADING */
    .export-heading {
        margin: 20px 15px !important;
        padding: 15px 10px;
    }
    
    .export-heading h2 {
        font-size: 24px !important;
        line-height: 1.3;
    }
    
    .export-heading p {
        font-size: 16px !important;
        line-height: 1.5;
    }
    
    /* PRODUCT SOURCE SECTION */
    .product-source {
        padding: 30px 20px !important;
    }
    
    .product-source h2 {
        font-size: 22px !important;
    }
    
    .product-source h3 {
        font-size: 16px !important;
        line-height: 1.5;
    }
    
    /* EXPORT ENDING */
    .export-ending {
        margin: 30px 20px !important;
    }
    
    .export-ending h2 {
        font-size: 22px !important;
    }
    
    .export-ending p {
        font-size: 16px !important;
        line-height: 1.5;
    }
    
    /* DETAILS MODAL FIX */
    .details {
        width: 90% !important;
        max-width: 320px !important;
        padding: 15px !important;
    }
    
    .details p {
        font-size: 14px !important;
        line-height: 1.4;
    }
}