* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/*GLOBAL CSS*/


body {
    font-family: 'Poppins', sans-serif;
    background: #f3f3f3;
    overflow-x: hidden;
    

}

a {
    text-decoration: none;
    color: #000;
}

ul {
    list-style: none;
}


/* TOP BAR */

.top-bar {
    width: 100%;
    height: 35px;
    border-top: 1px solid #e5e5e5;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 74px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
}

.top-bar i {
    margin-right: 5px;
}

/* MAIN HEADER */

.main-header {
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 75px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 99999;
    background: #fff;
}


/* LEFT */

.header-left {
    display: flex;
    align-items: center;
    /* margin-right: 20px; */
    /* gap: 1px; */
}

.menu-icon {
    margin-top: 10px;
}

.menu-icon i {
    /* margin-left: 20px; */
    font-size: 32px;
    cursor: pointer;
    /* font-weight: 500; */
    color: #444;
}

.logo img {
    width: 240px;
}

/* SEARCH */

.search-section {
    width: 50%;
}

.search-box {
    width: 50% !important;
    height: 48px;

    border: 2px solid #e88d1f;
    border-radius: 40px;

    overflow: hidden;

    display: flex;
    align-items: center;
}

.search-box select {
    /* width: 150px; */
    /* height: 100%; */

    border: none;
    outline: none;

    padding-left: 20px;

    font-size: 15px;

    border-right: 1px solid #ddd;
}

.search-box input {
    flex: 1;
    height: 100%;

    border: none;
    outline: none;

    padding: 0 25px;

    font-size: 15px;
}

.search-box button {
    width: 55px;
    height: 60px;

    border: none;
    background: #e88d1f;

    color: #fff;
    cursor: pointer;

    font-size: 18px;
}

/* RIGHT */

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}


.signin-wrapper {
    position: relative;
    display: inline-block;
}

.signin-btn {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    padding: 5px 15px;
    display: block;
}

.signin-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
    display: none;
    z-index: 999;
}

.signin-wrapper:hover .signin-dropdown {
    display: block;
}

.top-btns {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.btn-signin,
.btn-join {
    width: 48%;
    text-align: center;
    padding: 7px 10px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
}

.btn-signin {
    border: 1px solid #E88D1F;
    color: #E88D1F;
}

.btn-signin:hover {
    background: #E88D1F;
    color: #fff;
}

.btn-join {
    border: 1px solid #0d6efd;
    color: #0d6efd;
}

.btn-join:hover {
    background: #0d6efd;
    color: #fff;
}

.signin-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.signin-dropdown ul li {
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
}

.signin-dropdown ul li a {
    color: #333;
}


.signin-dropdown ul li i {
    text-decoration: none;
    color: #333;
    display: inline;
    font-size: 14px;
    align-items: center;
    margin-right: 8px;
}


.signin-dropdown ul li:hover {
    background: #f8f8f8;
}

.share-requirement {
    font-size: 14px;
    padding: 10px;
    background: #fafafa;
}


.signin-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
}

.signin-wrapper:hover .signin-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* highlight */
.signin-btn {
    position: relative;
}

.signin-btn::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, .7);
    }

    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        transform: scale(1);
    }
}

.header-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;

    cursor: pointer;
}

.header-item i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #222;
}

.header-item i.fa-cart-shopping {
    /* color:#e41e26 !important; */
    font-size: 20px !important;
}

.header-item span {
    font-size: 13px;
    color: #222;
}

.files i {
    font-size: 23px;
    color: #e88d1f !important;
}

.files span {
    color: #e88d1f !important;
}

.cart-count {
    position: absolute;
    top: -13px;
    right: -10px;

    width: 20px;
    height: 20px;

    background: #e41e26;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: bold;
}


/* MEGA NAVBAR*/

.mega-navbar {
    max-width: 1530px;
    /* margin: 0 auto; */
    /* padding-left: 95px;
    padding-right: 95px; */
    background: #fff;
    /* border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5; */
    position: relative;
    z-index: 999;
}

.mega-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* gap:30px; */
}

.mega-item {
    position: relative;
}

.mega-item>a {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0px 10px;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    /* border-right: 1px solid #efefef; */
}

.mega-item>a:hover {
    color: #5c2d91;
    background: #fafafa;
}



/*ALL CATEGORY*/

.all-category {
    /* width: 160px; */
}

.all-category>a {
    gap: 5px;
    font-size: 25px;
    font-weight: 700;
}

.all-category-dropdown {
    position: absolute;
    top: 55px;
    left: 0;
    width: 310px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.all-category:hover .all-category-dropdown {
    opacity: 1;
    visibility: visible;
}

.all-category-dropdown ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #131313;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f4f4f4;
    transition: 0.3s;
}

.all-category-dropdown ul li a:hover {
    background: #faf7ff;
    color: #5c2d91;
}

.all-btn {
    text-align: center;
    padding: 18px;
}

.all-btn a {
    color: #0d6efd;
    font-size: 14px;
    font-weight: 500;
}

/* agri new */
.mega-panel {
    position: absolute;
    left: 309px;
    top: -1px;
    width: 1050px;
    min-height: 433px;
    background: #fff;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);
    z-index: 999;
}

/* agri menu */

.all-category-dropdown ul li {
    position: relative;
}

.agri-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-right: 20px;

}

.agri-column h4 a{
    color: #0f5fbf;
    font-size: 14px;
    margin-bottom: 2px;
    margin-top: 20px;
    font-weight: 600;

}

.agri-column .link a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    color: #131313;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.agri-column a:hover {
    color: #0f5fbf;
}

.view-agri {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.view-agri a {
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: #0d6efd !important;
    font-size: 16px;
    font-weight: 600;
    margin: 0 !important;
}

/* =========================
MEGA DROPDOWN
========================= */

.mega-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100vw;
    background: #fdfdfd;
    display: flex;
    justify-content: space-evenly;
    gap: 30px;
    padding: 20px 60px;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 13px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mega-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
}

.mega-column {
    width: 15%;

}

.mega-column h3 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 7px;
    margin-top: 10px;
}

.mega-column a {
    display: block;
    color: #555;
    font-size: 14px;
    margin-bottom: 7px;
    transition: 0.3s;
}

.mega-column a:hover {
    color: #f39c12;
    padding-left: 6px;
}



/* VIEW ALL CATEGORY */


.view-all a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 7px;
    color: #0d6efd;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.view-all a:hover {
    color: #5c2d91;
}



/* MEGA MENU POSITION */

.mega-item:nth-child(2) .mega-dropdown {
    left: -270px;
}

.mega-item:nth-child(3) .mega-dropdown {
    left: -406px;
}

.mega-item:nth-child(4) .mega-dropdown {
    left: -650px;
}

.mega-item:nth-child(5) .mega-dropdown {
    left: -798px;
}

.mega-item:nth-child(6) .mega-dropdown {
    left: -983px;
}

.mega-item:nth-child(7) .mega-dropdown {
    left: -1090px;
}



/*
HOVER BORDER TOP
 */

.mega-item:hover>a {
    border-bottom: 2px solid #5c2d91;
}



/* SCROLLBAR */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #5c2d91;
    border-radius: 10px;
}

.banner-slider img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* border-radius:10px; */
}

.owl-carousel {
    width: 100%;
}



.banner-slider {
    position: relative;
}

.banner-slider .item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


.banner-slider .owl-nav {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    margin-top: 0;
}

.banner-slider .owl-prev,
.banner-slider .owl-next {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #111 !important;
    font-size: 22px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


.banner-slider .owl-prev {
    left: 20px;
}


.banner-slider .owl-next {
    right: 20px;
}


.banner-slider .owl-prev:hover,
.banner-slider .owl-next:hover {
    background: #f39c12 !important;
    color: #fff !important;
}


.owl-theme .owl-nav [class*=owl-] {
    margin: 0 !important;
}


.banner-slider .owl-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.banner-slider .owl-dot span {
    width: 10px;
    height: 10px;
}

.banner-slider .owl-dot.active span {
    background: #f39c12 !important;
}



.container {
    max-width: 1415px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.trending-wrapper {
    position: relative;
    z-index: 99;
    background: transparent;
    padding-top: 1px;

}

.trending-title {
    font-size: 22px;
    font-weight: 550;
    margin-bottom:25px;
}

.trending-box {
    transform: translateY(41px);
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 99;
}

.trending-products {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
}

.product-card {
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 90%;
    height: 70%;
    object-fit: cover;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 6px;
    background: #fff;
}

.product-card p {
    margin-top: 10px;
    font-size: 17 px;
    color: #0056b3;
    font-weight: 500;
}


.shop-section {
    width: 100%;
    max-width: 1417px;
    margin: auto;
    background: #d4e0f0;
    border-radius: 30px;
    padding: 35px;
    position: relative;
    overflow: visible;
}

/* HEADER */

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-header h2 {
    color: #000;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 8px;
}

.shop-header p {
    font-size: 15px;
    color: #222;
}

/* VIEW ALL BUTTON */

.view-btn {
    border: 2px solid #6c3cff;
    padding: 11px 11px;
    border-radius: 18px;
    color: #6c3cff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    background: #fff;
}

.view-btn:hover {
    background: #6c3cff;
    color: #fff;
}

/* SLIDER */

.slider-container {
    position: relative;
    overflow: hidden;
}

.product-slider {
    display: flex;
    gap: 25px;
    transition: 0.5s ease;
    scroll-behavior: smooth;
    /* overflow-x:auto; */
    scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

/* CARD */

.shop-card {
    min-width: 280px;
    background: #fff;
    border-radius: 22px;
    padding: 16px;
    flex-shrink: 0;
    transition: 0.3s;
}

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    height: 260px;
    background: #f1f1f1;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand {
    color: #6c3cff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.title {
    font-size: 16px;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.4;
}

.price {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.buy-btn {
    width: 100%;
    height: 48px;
    border-radius: 40px;
    border: 2px solid #6c3cff;
    background: #fff;
    color: #6c3cff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #6c3cff;
    color: #fff;
}


.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #6c3cff;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(108, 60, 255, 0.35);
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-50%) scale(1.08);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}


/* category section */


.category-section {
    margin: 50px 0;
}

.category-container {
    width: 95%;
    margin: auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    justify-content: space-between;
}
.card-header a{ 
    color: #266ad0 !important;
    font-size: 14px !important;

}
.sub-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.sub-category img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 15px;
}

.sub-category p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #333;
}

.category-card {
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
}

.card-header h2 i {
    color: #b0b0b0;
    font-size: 22px;
}


/* banner section */
.banner-section {
    width: 100%;
    padding: 40px 0;
    background: transparent;
}


.banner-container {
    width: 95%;
    height: 250px;
    margin: auto;

    background: url('../image/abstract-wave-blue-background-free-vector.jpg') no-repeat center;
    background-size: cover;

    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    overflow: hidden;
}


.join-btn {

    color: #fff;

    text-decoration: none;
    font-weight: 600;
}

.banner-btn {
    background-color: rgb(52, 85, 202);
    border-radius: 10pxpx;
    border: none;
    padding: 10px 40px;
    color: white;
}

.banner-text h2 {
    font-size: 28px;
    color: #252222;
    margin-bottom: 20px;
}

.brand-container{
    max-width: 95%;
    margin: auto;
}

.brands-section h2{ 
    font-size: 28px;
    margin-bottom: 18px;
    font-weight:700px;
    color: #222;

}

.brand-grid{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
}

.brand-card{
    background:#fff;
    border:1px solid #e6e6e6;
    height:180px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
    cursor:pointer;
}

.brand-card img{
    max-width:75%;
    max-height:90px;
    object-fit:contain;
    transition:.3s;
}

.brand-card:hover{
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transform:translateY(-5px);
}

.brand-card:hover img{
    transform:scale(1.08);
}

/* construction section */
.construction-section {
    max-width: 1450px;
    /* margin:auto; */
    margin: 85px 85px 60px 91px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px 1fr;
}



/* LEFT SIDE */

.left-panel {
    background: #dfe8f6;
    padding: 35px 0px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-header {
    padding: 0 32px;
}

.left-panel h2 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

/* .view-btn{
      display:inline-block;
      background:#0d5bbf;
      color:#fff;
      text-decoration:none;
      padding:14px 34px;
      border-radius:40px;
      font-size:22px;
      font-weight:600;
      margin-bottom:30px;
      transition:.3s;
    }

    .view-btn:hover{
      background:#084a9d;
    } */

.left-panel img {
    width: 100%;
    /* border-top-left-radius: 180px; */
    object-fit: cover;
    margin-top: 20px;
}

/* RIGHT SIDE */
.card-content{
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.card-text{
    flex: 1;
}

.card-image{
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img{
    width: 100%;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    transition: .3s;
}

.category-card:hover .card-image img{
    transform: scale(1.05);
}

.category-card{
    position: relative;
    overflow: hidden;
}

.card-image{
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 120px;
}

.card-image img{
    width: 100%;
    object-fit: contain;
}

.right-panel {
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


.category-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 28px;
    background: #fff;
    transition: .3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.category-card h3 {
    font-size: 16px;
    margin-bottom: 18px;
    color: #000;
}

.category-card ul {
    padding-left: 22px;
    margin-bottom: 25px;
}

.category-card ul li {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-btn {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 7px 12px;
    border-radius: 35px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.card-btn:hover {
    background: #0d5bbf;
    color: #fff;
    border-color: #0d5bbf;
}

/* .construction-section{
    display:grid;
    grid-template-columns:320px 1fr;
     gap:30px;
    background:#3f63a9;
    border-radius : 20px;

    max-width: 1400px;
    margin: 0 auto;
    padding-right: 15px;
    padding-top: 15px;

}
.right-box{
    display:grid;
    grid-template-columns: repeat(3,2fr);
    gap : 20px;
}

.grid-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    transition:.3s;
    border:1px solid rgba(0,87,255,0.2);
}

.grid-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
} */

.footer-bottom {
    /* margin-top:50px; */
    background:#2E2D2E;
    color:#fff;
    text-align:center;
    padding:20px;
}
.main-footer {
    /* background: #004a99; */
    background: #2e2d2e;
    padding: 70px 60px;
    margin-top: 60px;
    color: #fff;
}


.footer-container {
    display: grid;

    grid-template-columns: 1.2fr 1fr 1.2fr 1.3fr;

    gap: 60px;
}

.footer-column h3 {
    font-size: 22px;

    font-weight: 700;

    margin-bottom: 28px;
}

.footer-column h4 {
    font-size: 22px;

    margin-bottom: 20px;

    margin-top: 35px;
}

.footer-column ul {
    list-style: none;

    padding: 0;
}

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li a {
    text-decoration: none;

    color: #e5e7eb;

    font-size: 16px;

    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;

    padding-left: 6px;
}

.contact-info p {
    font-size: 16px;

    line-height: 28px;

    color: #f1f5f9;
}

.sellers-space {
    margin-top: 60px;
}

/* SOCIAL */

.social-icons {
    display: flex;

    gap: 22px;
}

.social-icons a {
    width: 50px;

    height: 50px;

    background: rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #fff;

    font-size: 22px;

    transition: 0.3s;
}


.social-icons a:first-child {
    background: #E88D1F;
    color: #fff;
}

.social-icons a:not(:first-child):hover {
    background: #E88D1F;
    color: #fff;
    transform: translateY(-4px);
}



/* APP BUTTONS */

.app-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.app-buttons img {
    width: 180px;

    border-radius: 10px;
}

/* LANGUAGE */

.language-section select {
    width: 100%;

    max-width: 320px;

    height: 58px;

    border-radius: 40px;

    border: none;

    outline: none;

    padding: 0 20px;

    font-size: 22px;

    margin-top: 15px;
}


/*  RESPONSIVE  */
@media(max-width:900px) {

    .construction-section {
        grid-template-columns: 1fr;
    }

    .left-panel {
        padding-bottom: 0;
    }

    .left-panel img {
        max-height: 350px;
    }

    .right-panel {
        grid-template-columns: 1fr;
    }
}


@media(max-width:991px) {

    .mega-wrapper {
        flex-wrap: wrap;
    }

    .mega-item {
        width: 100%;
    }

    .mega-item>a {
        width: 100%;
        justify-content: space-between;
    }

    .mega-dropdown {
        position: static;
        width: 100%;
        flex-wrap: wrap;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .mega-item:hover .mega-dropdown {
        display: flex;
    }

    .mega-column {
        width: 48%;
    }

    .all-category {
        width: 100%;
    }

    .all-category-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .all-category:hover .all-category-dropdown {
        display: block;
    }

    .view-all {
        width: 100%;
    }

}

@media(max-width:576px) {

    .mega-column {
        width: 100%;
    }

    .mega-item>a {
        font-size: 14px;
        padding: 15px;
    }

    .mega-column h3 {
        font-size: 16px;
    }

    .mega-column a {
        font-size: 14px;
    }

    .banner-slider .item img {
        height: auto;
        object-fit: cover;
    }


    .banner-slider .owl-nav {
        display: block !important;
    }

    .banner-slider .owl-prev,
    .banner-slider .owl-next {
        width: 32px;
        height: 32px;
        font-size: 16px !important;
    }


    .banner-slider .owl-prev {
        left: 8px;
    }


    .banner-slider .owl-next {
        right: 8px;
    }


    .banner-slider .owl-dots {
        bottom: 5px;
    }

    .banner-slider .owl-dot span {
        width: 7px;
        height: 7px;
        margin: 3px;
    }

    /* category section */

    .category-grid {
        grid-template-columns: 1fr;
    }

    .sub-category img {
        height: 140px;
    }

    .card-header h2 {
        font-size: 18px;
    }

    .sub-category p {
        font-size: 15px;
    }
}



@media(max-width:1200px) {

    .search-section {
        width: 45%;
    }

    .header-item span {
        display: none;
    }

    .mega-dropdown {
        width: 900px;
    }

    .right-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .left-panel h2 {
        font-size: 34px;
    }
}

@media(max-width:992px) {

    .top-bar {
        display: none;
    }

    .main-header {
        flex-wrap: wrap;
        height: auto;
        gap: 20px;
        padding: 20px;
    }

    .search-section {
        width: 100%;
        order: 3;
    }

    .logo img {
        width: 180px;
    }


    /* category section */

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media(max-width:600px) {

    .search-box {
        height: 50px;
    }

    .search-box select {
        width: 110px;
        font-size: 16px;
    }

    .search-box input {
        font-size: 15px;
    }

    .search-box button {
        width: 65px;
    }

    .header-right {
        gap: 20px;
    }


    /*body {*/
    /*    padding: 15px;*/
    /*}*/

    .left-panel h2 {
        font-size: 28px;
    }

    .view-btn {
        font-size: 18px;
        padding: 12px 24px;
    }

    .category-card {
        padding: 22px;
    }

    .category-card h3 {
        font-size: 24px;
    }

    .category-card ul li {
        font-size: 18px;
    }

    .card-btn {
        font-size: 18px;
    }
}

@media(max-width:768px) {

    .trending-box {
        transform: translateY(-70px);
        padding: 18px;
        border-radius: 12px;
    }

    .trending-products {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
    }

    .trending-products::-webkit-scrollbar {
        display: none;
    }

    .product-cards {
        min-width: 110px;
        flex-shrink: 0;
    }

    .shop-card img {
        height: 95px;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-header h2 {
        font-size: 30px;
    }

    .shop-header p {
        font-size: 18px;
    }

    .product-cards {
        min-width: 240px;
    }

    .nav-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .prev-btn {
        left: -20px;
    }

    .next-btn {
        right: -20px;
    }


}
/* agricultural section */


.page-section{
    margin: auto;
    max-width: 1453px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex-wrap: wrap;
}

.page-card{
    background: #fff;
    border-radius: 7px;
    padding: 30px;
    transition: .3s;
}

.page-card h4 {
        border-bottom: 1px solid #ddd;
        padding-bottom: 8px;
        color: #185cab;
        font-size: 16px;

}
.pagehead{
    max-width: 1450px;
    margin: auto;
    padding: 20px 40px;
}
.breadcrum {
    font-size: 12px;
    color: #666;
    gap: 10px;
    display: flex;
    font-family: sans-serif;

}
.breadcrum a{
    color: #333;
    text-decoration: none;
}

.breadcrum a:hover {
    color: #111;
}
.pagetitle h2{
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    color: #091e42;
    padding-top: 20px;
    /* padding-left: 90px; */


}

.page-card-content{
            display: flex;
            padding:10px;
            gap: 15px;
}
.page-card-content img{
    width: 95px;
    height: auto;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    object-fit: scale-down;
   
}
.page-card-content ul li{
    line-height: 1px;
}
.page-card-content ul a{
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    line-height: 20px;
}
.page-card-content ul li:last-child a{
    display: inline-block;
    color: #0d6efd; 
    font-size: 13px;
    font-weight: 600;
   
}

.agri-content{
    max-width:1450px;
    margin:40px auto;
    padding:0 40px;
    color:#333;
    line-height:1.8;
}

.agri-content h3{
    font-size:24px;
    margin-bottom:20px;
    color:#222;
}

.agri-content h4{
    font-size:18px;
    margin:25px 0 10px;
    color:#222;
}

.agri-content p{
    margin-bottom:15px;
}

.agri-content ul{
    padding-left:20px;
    margin-bottom:20px;
}

.agri-content li{
    margin-bottom:8px;
}


.country-container{
    width:95%;
    margin:auto;
}
.country-section{
    padding:40px 0;
}

.country-section h2{
    font-size:28px;
    margin-bottom:30px;
}


.country-list{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    flex-wrap:wrap;
    gap:25px;
}

.country-item{

    text-decoration:none;
    color:#111;

    display:flex;
    flex-direction:column;
    align-items:center;

    width:120px;

    transition:.3s;
}

.country-icon{

    width:100px;
    height:100px;

    border:1px solid #e6e6e6;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#fff;
    transition:.3s;
}

.country-icon img{

    width:60px;
    height:60px;
    object-fit:contain;
}

.country-item span{

    margin-top:15px;
    font-size:15px;
    text-align:center;
}

.more{

    font-size:36px;
    color:#e53935;
    font-weight:bold;
}

.country-item:hover .country-icon{

    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,.1);
}

/* .country-item:hover span{

    color:#ff6600;
} */
@media(max-width:992px){

    .country-list{
        justify-content:center;
    }

}

@media(max-width:768px){

    .country-item{
        width:100px;
    }

    .country-icon{
        width:85px;
        height:85px;
    }

    .country-icon img{
        width:50px;
        height:50px;
    }

    .country-item span{
        font-size:15px;
    }

}

@media(max-width:480px){

    .country-list{
        gap:18px;
    }

    .country-item{
        width:80px;
    }

    .country-icon{
        width:70px;
        height:70px;
    }

    .country-icon img{
        width:40px;
        height:40px;
    }

    .country-item span{
        font-size:13px;
    }

}

/* testimonial */


.testimonial-section{
    background:#f8f8f8;
    padding:70px 0;
}

.testimonial-container{
    width:95%;
    margin:auto;
}

.testimonial-section h2{
    text-align:center;
    font-size:30px;
    margin-bottom:45px;
    font-weight:600;
}

.testimonial-card{

    background:#fff;
    padding:35px;

    height:290px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

    display:flex;
    flex-direction:column;
}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.quote{
    font-size:24px;
    color:#f15a24;
    margin-bottom:20px;
}

.testimonial-card p{

    color:#555;
    font-size:14px;
    line-height:1.8;
    flex:1;
}

.testimonial-card h4{
    margin-top:20px;
    font-size:20px;
    color:#222;
}

.testimonial-card span{
    color:#777;
    font-size:15px;
}

.swiper-pagination{

    margin-top:35px;
    position:relative;

}

.swiper-pagination-bullet{

    width:11px;
    height:11px;

}

.swiper-pagination-bullet-active{

    background:#007bff;

}

  .wwb-about {
      padding: 70px 20px;
      background: #ffffff;
    }

 .wwb-container {
      max-width: 1200px;
      margin: 0 auto;
    }

      .wwb-title {
      font-size: 34px;
      font-weight: 700;
      line-height: 1.3;
      color: #1e3a5f;
      margin-bottom: 25px;
    }

      .wwb-content p {
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
    }

        .wwb-content strong {
      color: #1e3a5f;
      font-weight: 600;
    }

    .wwb-highlight {
      margin-top: 35px;
      padding: 25px 30px;
      background: #f5f9ff;
      border-left: 4px solid #0878e5;
      border-radius: 6px;
    }

     .wwb-content p {
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
    }

    .wwb-content strong {
      color: #1e3a5f;
      font-weight: 600;
    }

    .wwb-highlight {
      margin-top: 35px;
      padding: 25px 30px;
      background: #f5f9ff;
      border-left: 4px solid #0878e5;
      border-radius: 6px;
    }

    .wwb-highlight p {
      margin: 0;
      font-size: 17px;
      font-weight: 500;
      color: #333;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .wwb-about {
        padding: 45px 15px;
      }

      .wwb-title {
        font-size: 26px;
      }

      .wwb-content p {
        font-size: 15px;
      }

      .wwb-highlight {
        padding: 20px;
      }

      .wwb-highlight p {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .wwb-about {
        padding: 35px 15px;
      }

      .wwb-title {
        font-size: 23px;
      }
    }


/* =========================
   RESPONSIVE (added)
========================= */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .page-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .main-footer {
        padding: 50px 30px;
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trending-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-section {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .trending-products {
        grid-template-columns: repeat(3, 1fr);
    }

    .pagehead {
        padding: 15px 20px;
    }

    .banner-container {
        height: auto;
        padding: 20px;
    }

    .banner-text h2 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 40px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brand-card {
        height: 120px;
    }

    .trending-title {
        font-size: 18px;
    }

    .language-section select {
        max-width: 100%;
    }

    .app-buttons img {
        width: 140px;
    }
}

img {
    max-width: 100%;
}

/* =========================
   MOBILE BUGFIXES (added)
   Fixes cascade-order issues where a
   wider breakpoint (900px/992px/1200px) declared
   later in the file was overriding a narrower
   breakpoint's mobile-stacking rules.
========================= */
@media (max-width: 991px) {
    .right-panel {
        grid-template-columns: 1fr !important;
    }

    .category-grid {
        grid-template-columns: 1fr !important;
    }

    .mega-dropdown {
        width: 100% !important;
    }
}

@media (max-width: 900px) {
    .right-panel {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 992px) {
    .search-box {
        width: 100% !important;
    }

    .search-box select {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .search-box select {
        width: 85px;
        padding-left: 10px;
        font-size: 12px;
    }

    .search-box input {
        padding: 0 10px;
        font-size: 13px;
    }

    .card-image {
        display: none;
    }

    .category-card h3 {
        padding-right: 0;
    }
}

/* =========================
   MOBILE HEADER — ONE LINE
   (hamburger + logo + search + sign in)
========================= */
@media (max-width: 767px) {

    .main-header {
        flex-wrap: nowrap !important;
        height: auto !important;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 10px 12px !important;
    }

    /* HAMBURGER + LOGO */
    .header-left {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }

    .mega-navbar {
        max-width: none;
    }

    .all-category > a {
        font-size: 22px !important;
        padding: 0 !important;
    }

    .all-category > a i {
        font-size: 22px;
    }

    .all-category-dropdown {
        width: 85vw;
        max-width: 300px;
    }

    .logo img {
        width: 90px !important;
    }

    /* SEARCH BAR */
    .search-box {
        width: auto !important;
        flex: 1 1 auto;
        min-width: 0;
        height: 40px !important;
        margin: 0;
    }

    .search-box select {
        display: none;
    }

    .search-box input {
        padding: 0 10px;
        font-size: 13px;
        min-width: 0;
    }

    .search-box button {
        width: 38px !important;
        height: 100% !important;
        font-size: 14px !important;
    }

    /* RIGHT SIDE: only Sign In stays in the row */
    .header-right {
        flex-shrink: 0;
        gap: 0 !important;
    }

    .header-right .header-item.files,
    .header-right .header-item.cart {
        display: none;
    }

    .signin-wrapper.header-item {
        flex-direction: row;
        align-items: center;
    }

    .signin-wrapper.header-item > i {
        display: none;
    }

    .signin-btn {
        white-space: nowrap;
        font-size: 12px;
        font-weight: 600;
        padding: 8px 14px;
        border: 1.5px solid #E88D1F;
        border-radius: 30px;
        color: #E88D1F;
    }

    .signin-dropdown {
        right: 0;
        left: auto;
        width: 260px;
    }
}

@media (max-width: 400px) {
    .logo img {
        width: 75px !important;
    }

    .signin-btn {
        font-size: 11px;
        padding: 7px 10px;
    }

    .search-box input {
        font-size: 12px;
    }
}

/* =========================
   MOBILE HEADER — 2 ROWS
   Row 1: hamburger + logo + Sign In
   Row 2: search bar (full width)
========================= */
@media (max-width: 767px) {

    .main-header {
        flex-wrap: wrap !important;
        row-gap: 10px;
    }

    .header-left {
        order: 1;
    }

    .header-right {
        order: 2;
    }

    .search-box {
        order: 3;
        flex: 1 1 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
}

/* =========================
   TRENDING BOX OVERLAP FIX
   .trending-box had translateY(-70px) on mobile
   which pulled it up over the header/banner.
========================= */
@media (max-width: 768px) {
    .trending-box {
        transform: translateY(0) !important;
        margin-top: 20px;
    }

    .trending-wrapper {
        padding-top: 10px;
    }
}