:root {
    --primary-color: #038C43;
    --secondry-color: #88C932;
    --text-gray: #4a4a4a;
    --bg-light: #fbf2e6;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}

body {
    color: var(--text-gray);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

#products, #daal, #grains, #spices, #ghee, #tea, #oils {
    scroll-margin-top: 100px;
}


.section-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;

}



.header-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.header-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
}

.header-content h3 {
    color: #9c5b00;
    font-weight: 600;
    margin-bottom: 10px;
}

.header-content p {
    color: #767676;
    font-size: 18px;
    letter-spacing: .4px;
    line-height: 1.3;
}









/* fixed buttons on screen for contact */
.fixed-on-screen {
    position: fixed;
    top: 67.5%;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 50px;
    width: 50px;
    padding-left: 13px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0px 0px 2px #5c5c5c;
    overflow: hidden;
    transition: width 0.4s ease;
    color: white;
    cursor: pointer;
}

.icon {
    font-size: 22px;
    margin-right: 10px;
}

.whatsapp-container .icon {
    font-size: 22px;
    transform: scale(1.1);
}

.label {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 4px;
}

.call-container {
    background-color: #007BFF;
}

.app-container {
    background-color: #ff5d5d;
}


.app-container i {
    font-size: 26px;
    /* margin-right: 10px; */
}

.whatsapp-container {
    background-color: #25D366;
}

.button-container:hover {
    width: 135px;
    padding-right: 20px;
}

.button-container:hover .label {
    opacity: 1;
}

.whatsapp-container:hover {
    width: 190px;
}

.app-container:hover {
    width: 200px;
}


.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    visibility: hidden;
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}









/* header */
.header {
    transition: all 0.5s;
    z-index: 1;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 100;
    background: #ffffff;
    padding: 10px 0px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    width: 100%;
}

.header-top-bar {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 200px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
}

.header-top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ccc;
    height: 36px;
    min-width: 300px;
    padding: 0 10px;
    border-radius: 4px;
}

.header-search-bar i {
    color: var(--secondry-color);
    font-size: 16px;
}

.header-search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    width: 100%;
}

.header-search-bar input::placeholder {
    color: #a5a5a5;
}

.login-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.header-cart {
    position: relative;
    background-color: var(--primary-color);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.header-cart i {
    font-size: 18px;
    color: #fff;
}

.header-cart::after {
    content: none;
}

.header-cart:hover {
    background-color: var(--secondry-color);
}


.header-bottom-bar {
    height: 40px;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.navmenu ul {
    display: flex;
    align-items: center;
}

.navmenu ul li {
    list-style: none;
    font-size: 17px;
    font-weight: 500;
}

.navmenu ul li a {
    text-decoration: none;
    color: #212121;
    position: relative;
    transition: all 0.3s ease;
    padding: 4px 24px;
    border-radius: 4px;
}


.navmenu ul li a:hover {
    color: var(--primary-color);
}


/* Active Link State */
.navmenu ul li a.active {
    background-color: var(--primary-color);
    color: #fff;
}


/* --- Dropdown Hover Logic --- */

.has-dropdown {
    position: relative;
}

.has-dropdown .menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.menu-link i {
    transition: transform 0.3s ease;
    margin-left: 5px;
    font-size: 14px;
    padding-top: 4px !important;
}

.sub-menu {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    list-style: none;
    padding-left: 10px !important;
    background: #f9fbf7;
    transition: all 0.4s ease;
    border-left: 2px solid var(--primary-color);
    /* margin-left: 10px; */

    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    width: 200px;

}

.has-dropdown:hover .sub-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
    padding-bottom: 10px !important;
    justify-content: left;
    align-items: baseline;
}

.has-dropdown:hover .bi-chevron-down {
    transform: rotate(180deg);
    transition: 0.3s;
    color: var(--primary-color);
}

.sub-menu li {
    border: none !important;
    padding: 10px 0 !important;
}

.sub-menu li a {
    font-size: 16px !important;
    color: #666 !important;
    font-weight: 500 !important;
}

.sub-menu li a:hover {
    color: var(--primary-color) !important;
    padding-left: 15px;
}



.hamburger-menu {
    display: none;
    font-size: 34px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: -120%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    padding: 20px;
    z-index: 99;
}

.mobile-menu.active {
    left: 0;
}


/* Mobile bar */
.mobile-search-bar {
    margin-bottom: 20px;
}

.mobile-search-bar input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.mobile-nav ul {
    padding: 0;
}

.mobile-nav ul li {
    list-style: none;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.mobile-actions {
    margin-top: 20px;
}




@media (max-width: 900px) {

    .header-bottom-bar.desktop-only,
    .header-search-bar.desktop-only {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
}

@media (max-width: 600px) {
    .login-btn.desktop-only {
        display: none;
    }

    .logo {
        width: 150px;
    }
}
















/* Hero Section */
.hero-carousel {
    width: 100%;
    height: 560px;
    overflow: hidden;
    position: relative;
    padding-top: 130px;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 50%;
    color: #414141;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 60px;
    letter-spacing: 1px;
    font-weight: 900;
}

.hero-content p {
    font-size: 18px;
    line-height: 24px;
    margin-top: 20px;
    opacity: 0.9;
}

.hero-tags {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    color: var(--primary-color);
}

.hero-tag {
    font-size: 18px;
    font-weight: 600;
}














.hero-btn-container {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    position: relative;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn i {
    font-size: 18px;
    z-index: 2;
}

.btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -2;
}

.btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #1a1a1a;
    transition: all 0.3s;
    z-index: -1;
}

.shop-btn {
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

.shop-btn:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.shop-btn:hover::before {
    width: 100%;
}

.download-btn {
    color: var(--primary-color);
    background: transparent;
}

.download-btn i {
    font-size: 22px;
}

.download-btn::after {
    display: none;
}

.download-btn:hover {
    color: var(--white);
}

.download-btn:hover::before {
    width: 100%;
    background-color: var(--primary-color);
}

.btn:hover i {
    animation: bounceRight 0.5s infinite alternate;
}

@keyframes bounceRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(5px);
    }
}



















/* Strengths Section */
.strengths-section {
    padding: 40px 0;
    background-color: #f9fbf7;
}

.strengths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 12px;
    text-align: center;
    margin-top: 40px;
}

.strength-card {
    background: #ffffff;
    padding: 20px 10px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strength-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.strength-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7e6;
    border-radius: 50%;
}

.strength-icon img {
    width: 45px;
    height: auto;
}

.strength-card h3 {
    font-size: 18px;
    color: #2d3436;
    margin-bottom: 10px;
    font-weight: 600;
}

.strength-card p {
    font-size: 14px;
    color: #636e72;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1000px) {
    .strengths-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .strengths-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }
}

@media (max-width: 400px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }
}

















.products-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #212121;
    margin-bottom: 40px;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--primary-color);
}

.product-img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-container img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.product-price {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.add-to-cart {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: var(--secondry-color);
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.view-all-btn {
    text-decoration: none;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive Logic */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 440px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-title {
        font-size: 26px;
    }
}


















.category-box-section {
    padding: 40px 0;
    background-color: #fff;
}

.category-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.card-content {
    color: #fff;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-content p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.shop-now-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.category-card:hover .card-bg {
    transform: scale(1.1);
}

.category-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.shop-now-link:hover {
    gap: 12px;
    color: #b2df77;
}

/* Responsive Logic */
@media (max-width: 900px) {
    .category-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .category-box-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 280px;
    }
}














.blog-section {
    padding: 40px 0;
    background-color: #fcfcfc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: #a5a5a5;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 20px;
    line-height: 1.4;
    color: #212121;
    margin-bottom: 12px;
    font-weight: 700;
}

.blog-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-img-container {
        height: 250px;
    }
}


















.testimonial-section {
    padding: 40px 0;
    background-color: #f9fbf7;
}

.testimonial-slider {
    position: relative;
    width: 100%;
}

.testimonial-viewport {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card {
    min-width: calc(33.33% - 17px);
    background: #fff;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 200px;
}

.testimonial-image {
    width: 40%;
    height: 100%;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rating {
    color: #ffb400;
    font-size: 12px;
    margin-bottom: 8px;
}

.testimonial-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #212121;
}

.testimonial-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.customer-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigation */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--primary-color);
    border: 1px solid #eee;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slide-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.prev {
    left: -25px;
}

.next {
    right: -25px;
}

/* Responsive */
@media (max-width: 1100px) {
    .testimonial-card {
        min-width: calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }

    .prev {
        left: 0px;
    }

    .next {
        right: 0px;
    }
}



















.faq-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 14px;
    background: #f3f3f398;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Active State for Question */
.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Answer Styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 10px;
}




















.main-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 50px 0 30px;
    font-size: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #e1e1e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-logo img {
    width: 260px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.brand-tagline {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 16px;
    max-width: 330px;
}

.company-details p {
    margin-bottom: 8px;
    font-size: 16px;
}

.company-details strong {
    color: #fff;
}

.mt-20 {
    margin-top: 30px;
}

/* Bottom Bar */
.footer-divider {
    border: 0;
    border-top: 1px solid #ffffff30;
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    color: #fff;
    font-weight: 600;
}

.trust-badges i {
    margin-right: 5px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 300px) {
    .footer-logo img {
        width: 200px;
    }
}
































/* about page */

.about-hero {
    padding: 180px 0 40px;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

.sub-heading {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.mission-vision {
    padding: 40px 0;
    background: #f9fbf7;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border-bottom: 5px solid #eee;
    text-align: center;
}

.mv-card.highlight {
    border-bottom-color: var(--primary-color);
}

.mv-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.mv-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.tech-innovation {
    padding: 40px 0;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.impact-section {
    padding: 40px 0;
    background: #f3ffe4;
    color: #3e3e3e;
    text-align: center;
}

.impact-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.impact-content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.impact-stats .stat {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.impact-stats .stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat span {
    display: block;
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .about-hero {
        padding: 120px 0 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
        overflow: hidden;
    }
}

@media (max-width: 768px) {

    .mv-grid,
    .tech-features {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 460px) {
    .about-image {
        height: auto;
        overflow: visible;
    }
}








































/* privacy page */

.policy-page {
    line-height: 1.8;
}

.policy-simple-header {
    padding: 160px 0 40px;
    background: #eef5e7;
    border-bottom: 1px solid #eee;
    text-align: center;
    margin-bottom: 40px;
}

.policy-simple-header h1 {
    font-size: 34px;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.2;
}

.policy-meta {
    color: #666;
    font-size: 14px;
}

.policy-meta .separator {
    margin: 0 15px;
    color: #ccc;
}

.policy-full-content {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.policy-block {
    margin-bottom: 50px;
}

.policy-block h2 {
    font-size: 24px;
    color: #111;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.lead-text {
    font-size: 19px;
    color: #222;
    font-weight: 500;
    margin-bottom: 25px;
}

.policy-sub-block {
    margin: 25px 0;
    padding: 20px;
    background: #f9fbf7;
    border-radius: 8px;
}

.policy-sub-block h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.clean-list {
    padding-left: 60px;
    margin-top: 10px;
}

.clean-list li {
    margin-bottom: 10px;
    list-style-type: square;
    color: #444;
}

.contact-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

/* Responsive */
@media (max-width: 900px) {
    .policy-simple-header {
        padding: 100px 0px 20px;
    }

    .policy-simple-header h1 {
        font-size: 30px;
    }

    .policy-full-content {
        padding: 0 20px;
    }
}































/* contact page */

.contact-page {
    padding-bottom: 80px;
}

.contact-header {
    background-color: #eef5e7;
    padding: 160px 0 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.contact-header h1 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding-top: 40px;
}

/* Form Styles */
.contact-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    margin-bottom: 25px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(178, 223, 119, 0.2);
}

.submit-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--secondry-color);
    transform: translateY(-2px);
}

/* Sidebar Info Styles */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.info-item p {
    color: #e6e6e6;
    line-height: 1.5;
}

.info-item a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    display: inline-block;
}

.info-item a:hover {
    color: #fff;
}

.info-item p a {
    line-height: 1.5;
}

/* Social Links */
.social-connect h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #444;
    transition: 0.3s;
}

.social-links a i {
    font-size: 20px;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-header {
        padding: 100px 0 30px;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
}

@media (max-width: 440px) {

    .form-row {
        grid-template-columns: 1fr;
        gap: 0px;
    }

}




































/* faq page */

.faq-page {
    padding-bottom: 100px;
}

.faq-hero {
    background: #eef5e7;
    padding: 160px 0 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.faq-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

/* Layout Split */
.faq-layout {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

.faq-categories {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.faq-categories h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.faq-categories ul {
    list-style: none;
    padding: 0;
}

.faq-categories ul li {
    padding: 12px 15px;
    border-radius: 8px;
    transition: 0.3s;
    margin-bottom: 10px;
}

.faq-categories ul li.active {
    background: var(--primary-color);
}

.faq-categories ul li.active a {
    color: #fff;
}

.faq-categories ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
}

/* Accordion Adjustments */
.faq-main-content {
    flex: 1;
}

.faq-category-block {
    margin-bottom: 60px;
}

.faq-category-block h2 {
    margin-bottom: 25px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
}

.faq-category-block h2 i {
    color: var(--primary-color);
}

.faq-categories ul {
    list-style: none;
    padding: 0;
}

.cat-link {
    padding: 15px;
    margin-bottom: 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-link i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Active State */
.cat-link.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.cat-link.active i {
    color: #fff;
}

.cat-link:hover:not(.active) {
    background: #f9fbf7;
    transform: translateX(5px);
}

.faq-category-block {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .faq-hero {
        padding: 100px 0 30px;
    }
}

@media (max-width: 768px) {
    .faq-layout {
        flex-direction: column;
    }

    .faq-categories {
        width: 100%;
        position: static;
    }

    .faq-categories ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
}
































/* blog detail page */


.blog-detail-page {
    background: #fff;
    padding-bottom: 80px;
}

/* Header Area */
.blog-detail-header {
    background: #eef5e7;
    padding: 160px 0 40px;
    text-align: center;
}

.breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--primary-color);
}

.blog-detail-header h1 {
    font-size: 38px;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 14px;
}

.dot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

/* Layout */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    margin-top: 60px;
}

.blog-article {
    max-width: 850px;
}

.featured-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Article Body Typography */
.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.lead {
    font-size: 22px;
    font-weight: 500;
    color: #111;
    margin-bottom: 30px;
}

.article-body h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #111;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body blockquote {
    background: #f9fbf7;
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    font-size: 20px;
    font-style: italic;
    margin: 40px 0;
}

.inline-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin: 30px 0;
}

/* Sidebar Styling */
.sidebar-widget {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.sidebar-cats {
    list-style: none;
    padding: 0;
}

.sidebar-cats li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-cats li a {
    text-decoration: none;
    color: #555;
    display: flex;
    justify-content: space-between;
}

.recent-post {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.recent-post img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-post a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

/* Share Links */
.post-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-links a {
    font-size: 20px;
    color: #666;
    transition: 0.3s;
}

.share-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 900px) {
    .blog-detail-header {
        padding: 100px 0 30px;
    }
}

@media (max-width: 768px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: 2;
    }

    .blog-detail-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 400px) {
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
}


































/* --- Opportunity Page --- */

.opportunity-page {
    background-color: #fff;
    padding-bottom: 80px;
}

.opportunity-hero {
    background: #eef5e7;
    padding: 120px 0 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.opportunity-hero .label {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

.opportunity-hero h1 {
    font-size: 38px;
    margin: 15px 0;
    color: #111;
    line-height: 1.2;
}

/* Flex Item Layout */
.opp-item {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    border-bottom: 1px solid #f5f5f5;
}

.opp-item.reverse {
    flex-direction: row-reverse;
}

.opp-image {
    flex: 1;
}

.opp-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.opp-text {
    flex: 1;
}

.opp-text h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.highlight-tag {
    display: inline-block;
    background: #eef7e1;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.opp-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* CTA Button */
.opp-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(178, 223, 119, 0.3);
}

.opp-btn:hover {
    background: var(--secondry-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .opportunity-hero {
        padding: 60px 0 20px;
    }
}

@media (max-width: 768px) {

    .opp-item,
    .opp-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .opp-image img {
        height: 300px;
    }
}



































/* login page */


.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f7f0;
    padding-top: 160px;
    padding-bottom: 40px;
}

.login-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    height: 700px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

/* Side Image Styling */
.login-side-image {
    flex: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9)),
        url('../images/opp-2.webp') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 20px 30px;
    color: #fff;
}

.overlay-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.overlay-text p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}


.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(178, 223, 119, 0.9);
    color: #1a5d1a;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mini-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

.stat-item strong {
    display: block;
    font-size: 24px;
    color: #b2df77;
}

.stat-item span {
    font-size: 14px;
    opacity: 0.8;
}

/* Subtle button update */
.login-submit-btn {
    box-shadow: 0 4px 15px rgba(178, 223, 119, 0.4);
}

.input-wrapper i {
    color: #1a5d1a !important;
}




/* Form Side Styling */
.login-side-form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.form-box {
    width: 100%;
    max-width: 400px;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo img {
    width: 200px;
}

.form-box h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.subtitle {
    color: #777;
    margin-bottom: 30px;
    font-size: 15px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i:first-child {
    position: absolute;
    left: 15px;
    color: #aaa;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: 0.3s;
}

.input-wrapper input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(178, 223, 119, 0.1);
}

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #aaa;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 25px;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.login-submit-btn:hover {
    background: var(--secondry-color);
    transform: translateY(-2px);
}

/* Social Login */
.social-login {
    text-align: center;
    margin-top: 30px;
}

.divider-text {
    display: block;
    position: relative;
    color: #bbb;
    font-size: 13px;
    margin-bottom: 20px;
}

.divider-text::before,
.divider-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #eee;
}

.divider-text::before {
    left: 0;
}

.divider-text::after {
    right: 0;
}

.social-btns {
    display: flex;
    gap: 15px;
}

.s-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.s-btn:hover {
    background: #f9f9f9;
}

.register-prompt {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #777;
}

.register-prompt a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}


/* --- Tab System --- */

.login-tabs {
    display: flex;
    /* border-bottom: 2px solid #eee; */
    margin-bottom: 30px;
    gap: 6px;
    justify-content: center;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    background: var(--primary-color);
    border-radius: 8px 8px 0 0;
}

.tab-btn.active {
    color: var(--primary-color);
    background: #fff;
    border: 2px solid var(--primary-color);
}


/* Tab Content Logic */
.tab-content {
    display: none;
    /* Hide by default */
    animation: slideIn 0.3s ease-out;
}

.tab-content.active {
    display: block;
    /* Show active */
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inner OTP Button */
.get-otp-btn {
    position: absolute;
    right: 5px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.get-otp-btn:hover {
    background: var(--secondry-color);
}



/* Responsive */
@media (max-width: 900px) {
    .login-page {
        padding-top: 100px;
        padding-bottom: 20px;
    }
}

@media (max-width: 678px) {
    .login-side-image {
        display: none;
    }

    .login-container {
        max-width: 500px;
        height: auto;
    }
}







































/* signup page */

/* --- Signup Specific Styles --- */

.form-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 15px;
}

.user-type-selection {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.type-radio {
    flex: 1;
    cursor: pointer;
}

.type-radio input {
    display: none;
    /* Hide default radio */
}

.radio-card {
    display: block;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: 0.3s;
}

.type-radio input:checked+.radio-card {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(178, 223, 119, 0.3);
}

.terms-text {
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.4;
}

.terms-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

/* Responsive fix for the small form-row */
@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}




































/* cart page */

.cart-page {
    padding: 160px 0 80px;
    background-color: #f3f3f3;
}

.cart-header {
    margin-bottom: 40px;
    text-align: left;
}

.cart-header h1 {
    font-size: 30px;
    color: #1a1a1a;
    line-height: 1.2;
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Items List */
.cart-items-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
    gap: 20px;
}

.cart-item:last-of-type {
    border-bottom: none;
}

.item-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #111;
}

.item-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.qty-btn {
    background: #f9f9f9;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 14px;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff5e5e;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.item-price .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.continue-shopping {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.continue-shopping i {
    margin-right: 5px;
    transition: 0.3s;
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Summary Sidebar */
.summary-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.summary-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.total {
    font-weight: 800;
    color: #111;
    font-size: 18px;
    margin-top: 10px;
}

.free-text {
    color: var(--primary-color);
    font-weight: 700;
}

.promo-code {
    display: flex;
    margin: 20px 0;
    gap: 10px;
}

.promo-code input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.promo-code button {
    background: #b3e4be;
    color: var(--primary-color);
    border: none;
    padding: 0 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.checkout-btn {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: var(--secondry-color);
    transform: translateY(-2px);
}

.payment-trust {
    margin-top: 20px;
    text-align: center;
}

.payment-trust p {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 900px) {
    .cart-page {
        padding: 100px 0 80px;
    }
}

@media (max-width: 960px) {
    .cart-wrapper {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 600px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-controls {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .item-price {
        align-self: flex-end;
        margin-top: -30px;
    }
}

@media (max-width: 320px) {
    .promo-code {
        flex-direction: column;
    }

    .promo-code button {
        height: 34px;
    }
}






























/* checkout page */

.checkout-page {
    padding: 160px 0 80px;
    background-color: #f8f9f6;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

.checkout-section {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    overflow: hidden;
}

.section-header {
    padding: 20px 25px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.step-num {
    background: var(--primary-color);
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

.section-body {
    padding: 30px 25px;
}

.address-form {
    margin-top: 10px;
}

.address-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.address-form .form-row:has(input + select + input),
.address-form .form-row:nth-child(3) {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.address-form input[type="text"],
.address-form input[type="tel"],
.address-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.address-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.address-form input:focus,
.address-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(178, 223, 119, 0.15);
}


/* Payment Options */
.payment-options {
    display: grid;
    gap: 15px;
}

.pay-option input {
    display: none;
}

.pay-card {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.pay-option input:checked+.pay-card {
    border-color: var(--primary-color);
    background: #f9fbf7;
    box-shadow: 0 0 0 1px var(--primary-color);
}

.pay-card i {
    font-size: 20px;
    color: var(--primary-color);
}

/* Sidebar Summary */
.order-preview-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
}

.mini-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f9f9f9;
}

.mini-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.mini-details p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.mini-details span {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
}

.price-breakdown {
    margin-top: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.grand-total {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-top: 15px;
}

.free {
    color: var(--primary-color);
    font-weight: 700;
}

.place-order-btn {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.place-order-btn:hover {
    background: #144514;
}

.trust-note {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .checkout-page {
        padding: 100px 0 40px;
        background-color: #f8f9f6;
    }
}

@media (max-width: 992px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
        gap: 0px;
    }
}

@media (max-width: 600px) {
    .address-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 0;
    }
}



































/* --- Wholesale Page --- */
.wholesale-page {
    padding-bottom: 80px;
}

.b2b-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wholesale-page .contact-header h1 {
    margin-top: 6px;
    line-height: 1.2;
}

.wholesale-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px;
}

.search-box {
    position: relative;
    width: 300px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondry-color);
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.category-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pill {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #f9fbf7;
}

.pill.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(178, 223, 119, 0.3);
}

.pill:active {
    transform: scale(0.95);
}


.wholesale-container {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    margin-top: 40px;
}

.wholesale-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr 1fr;
    background: #EEF5E7;
    padding: 15px 25px;
    font-weight: 700;
    font-size: 14px;
    color: #444;
}

.wholesale-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr 1fr;
    padding: 20px 25px;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.col-prod {
    display: flex;
    align-items: center;
    gap: 15px;
}

.col-prod img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

.col-prod span {
    display: block;
    font-size: 12px;
    color: #888;
}

.col-qty .qty-input {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: fit-content;
    overflow: hidden;
}

.qty-input button {
    background: #eee;
    border: none;
    width: 30px;
    cursor: pointer;
}

.qty-input input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
}

.col-total {
    font-weight: 700;
    color: var(--primary-color);
}

.wholesale-footer {
    position: sticky;
    bottom: 20px;
    background: #fff;
    margin-top: 40px;
    padding: 14px 30px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--primary-color);
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.total-amount {
    font-size: 18px;
}

.total-amount span {
    font-weight: 800;
    color: #1a5d1a;
}

.bulk-add-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.bulk-add-btn:hover {
    background: var(--secondry-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .wholesale-controls {
        flex-direction: column;
        gap: 20px;
    }
    .wholesale-table-header { display: none; }
    .wholesale-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    .col-prod, .col-qty { justify-content: center; margin: auto; }
}

@media (max-width: 768px) {
    
    .wholesale-page .contact-header h1 {
        margin-top: 10px;
        font-size: 30px;
    }

    .search-box {
        width: 100%;
    }
    
    .category-pills {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    .wholesale-footer {
        padding: 6px 20px;
        border-radius: 20px;
    }
    .footer-actions {
        gap: 10px;
        flex-direction: column;
    }
}
@media (max-width: 430px) {
    
    .wholesale-footer {
        border-radius: 10px;
        flex-direction: column;
        bottom: 10px;
    }
    .footer-info {
        text-align: center;
        margin-bottom: 6px;
    }
    .footer-actions {
        gap: 6px;
    }
    .bulk-add-btn {
        padding: 6px 30px;
        font-size: 14px;
        border-radius: 50px;
        font-weight: 700;
    }
}