/* Color Variables */
:root {
    --primary-green: #ee4323;
    --primary-blue: #009eda;
    --light-green: #ee432312;
    --light-blue: #E3F2FD;
    --dark-bg: #212529;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.header-section {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.logo-circle {
    /* width: 60px; */
    /* height: 60px; */
    /* border-radius: 50%; */
    /* background: linear-gradient(135deg, var(--primary-green), #66BB6A); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 8px; */
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* border-radius: 50%; */
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 400;
    margin: 0 10px;
    transition: color 0.3s;
    font-size: 1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

/* Button Styles */
.btn-primary-custom {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary-custom:hover {
    background-color: #ee4323;
    border-color: #ee4323;
    color: var(--white);
    transform: translateY(-2px);
    /* box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3); */
}


/* Button Styles */
.btn-blue-custom {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-blue-custom:hover {
    background-color: #009eda;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    background-color: transparent;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%); */
    /* padding: 80px 0; */
    padding-top: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-title span {
    font-weight: 700;
    color: #009eda;
    display: block;
}

.hero-buttons{margin-top: 30px;}


.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-image-wrapper {
    position: relative;
}

.hero-phone-img {
    max-width: 100%;
    height: auto;
    /* border-radius: 0 ; */
    /* box-shadow: 0 10px 40px rgba(0,0,0,0.2); */
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}



.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.blue-icon {
    background: linear-gradient(135deg, #ffffff, #ffffff);
        border: 2px solid var(--primary-blue);
}

.green-icon {
    background: linear-gradient(135deg, #ffffff, #ffffff);
        border: 2px solid var(--primary-green);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: start;
}

.feature-description {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: start;
}

/* How It Works Section */
.how-it-works-section {
    /* background: linear-gradient(135deg, #f5f5f5 0%, #e3f2fd 100%); */
    padding: 120px 0;
}

.step-card {
    padding: 0 20px;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-description {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

/* Reports Section */
.reports-section {
    background-color: #009eda12;
    padding: 120px 0;
}

.reports-list {
    list-style: none;
    padding: 0;
}

.reports-item {
    font-size: 18px;
    color: #6B7280;
    padding: 16px 0 0;
    font-weight: 400;
    margin: 0;
}

.reports-image-wrapper {
    position: relative;
}

.reports-laptop-img {
    width: 100%;
    /* max-width: 600px; */
    /* border-radius: 10px; */
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.15); */
}

.reports-phone-img {
    position: absolute;
    bottom: -30px;
    right: 50px;
    width: 200px;
    border-radius: 20px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.2); */
}

/* Farmer App Section */
.farmer-app-section {
    /* background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%); */
    padding: 120px 0;
}

.farmer-features-list {
    list-style: none;
    padding: 0;
}

.farmer-feature-item {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 0;
    padding: 16px 0 0;
    font-weight: 400;
}

.farmer-phones-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.farmer-phone-1 {
    width: 510px;
    transform: rotate(-10deg);
    border-radius: 30px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.2); */
}

.farmer-phone-2 {
    width: 250px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Why Choose Section */
.why-choose-section {
    background-color: #009eda12;
    padding: 120px 0;
}

.why-choose-card {
    padding: 0 20px;
}

.why-choose-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--white);
}

.why-choose-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-choose-description {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.why-choose-section  .section-subtitle{margin-bottom: 30px;}

/* Two Apps Section */

.two-apps-section {
    background-color: var(--white);
    padding: 120px 0;
}
.two-apps-section .col-lg-6{margin-top: 60px;}

.app-card.left-panel {
    background: linear-gradient(135deg, #ee432312 0%, #ee432312 100%);
}

.app-card.right-panel {
    background: linear-gradient(135deg, #009eda12 0%, #009eda12 100%);
}

.app-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #E5E7EB
}

.app-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.app-card-header-icon {
    /* width: 60px;
    height: 60px; */
        border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-right: 15px;
    flex-shrink: 0;
    padding: 4px;
}

.app-card-header-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    text-align: left;
}

.app-card-header-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 400;
}

.app-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto;
}

.app-icon-wrapper.square {
    border-radius: 10px;
}

.app-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.btn-primary-blue {
    /* background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white); */
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 1rem;
}

/* .btn-primary-blue:hover {
    background-color: #1976D2;
    border-color: #1976D2;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
} */

.app-features-list li {
    font-weight: 400;
}

.app-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-features-list li {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 0;
    padding: 8px 0;
}

.app-phones-wrapper {
        display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.app-phone-screen {
    /* border-radius: 20px; */
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.15); */
    width: 100%;
    height: 100%;
}

/* Products Section */
.products-section {
    background-color: #009eda12;
    padding: 120px 0;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    overflow: hidden;
    height: 200px;
    /* background-color: #f5f5f5; */
}

.product-image {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.3s;
    padding: 18px;
    border-radius: 8px;
    /* object-fit: contain; */
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 0 20px 20px;
}

.product-category {
    /* font-size: 0.85rem; */
    color: #2563EB;
    /* font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 5px; */
}
.product-Industrial{
    /* font-size: 0.85rem; */
    color: #10B981;
    /* font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 5px; */
}


.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 400;
}

/* App Preview Section */
.app-preview-section {
    /* background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%); */
    padding: 120px 0;
}

.app-preview-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-preview-screen {
    width: 240px;
    /* border-radius: 25px; */
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.15); */
    transition: transform 0.3s;
}

.app-preview-screen:hover {
    transform: translateY(-10px);
}

/* Bottom CTA Section */
.bottom-cta-section {
    background: linear-gradient(90deg, #009eda 0%, #ee4323 100%);
    padding: 80px 0;
    color: var(--white);
}
.bottom-cta-section a.btn {background-color: #ffffff !important; border-color: #ffffff; color: #000;}

.bottom-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.bottom-cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

/* Footer Section */
.footer-section {
    background-color: #F6F9FC;
    color: var(--white);
    padding: 70px 0;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

/* .footer-links a:hover {
    color: var(--primary-green);
} */

.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li a{ color: #333; text-decoration: unset;}
.footer-contact li {
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: self-start;
    font-weight: 400;
}
.footer-contact li:nth-last-child(1) img{margin-top: 4px;}

.footer-contact i {
    color: var(--primary-green);
}

.features-section .section-subtitle{margin-bottom: 50px;}

.footer-section .third{padding-left: 31px;}
.footer-section .fouth{padding-left: 80px;}

.logo-first{margin: 0;}
.logo-first img{width: 170px; padding-right: 20px;}
.logo-second{margin: 0;}
.logo-second img{width: 250px; border-left: 1px solid #ddd; padding-left: 20px;}
.fix-right{position: fixed; right: 20px; bottom: 20px; }
.fix-right svg{width: 60px; height: auto;}

.footer-section{position: relative; overflow: hidden;}
.footer-section .container{position: relative; z-index: 111;}
.footer-section img.bg-map{position: absolute; top: 0; right: 0; opacity: 0.4; width: 37%;}
.footer-bottom {border-color: #f9f9f9 !important; border: 0 !important; background-color: #ebebeb; margin: 0 !important; padding: 15px !important;}
.footer-bottom p{color: #000;}
.footer-section .logo-img2-p {border-top: 1px solid #ddd; padding-top: 20px; margin-top: 20px;}
.footer-section .logo-img2-p p {color: #333; margin: 0 0 7px; font-size: 12px;}
.products-section .owl-nav{display: block;}
.products-section .owl-carousel .owl-nav button{position: absolute; top: 40%; right: -5px; background-color: #ecfaff; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #009eda; border: 1px solid #bbecff; border-radius: 0;}
.products-section .owl-carousel .owl-nav button.owl-prev{right: auto;    left: -5px;}

.footer-section .last h5{font-size: 36px; color: #666666; font-weight: 400; padding-left: 20px;}
.footer-section .last h4{font-size: 42px; color: #ee4323; font-weight: 600; padding-left: 20px;}
.footer-section .last h4 span{color: #009eda;}

.multi-language-section {background-color: #009eda12; padding: 120px 0;}
.multi-language-section .step-card{background-color: #fefefc; padding: 30px 10px; text-align: center; border-radius: 10px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); transition: transform 0.3s, box-shadow 0.3s;}
.multi-language-section img{  height: 400px; object-fit: cover; object-position: left; background: #f1f1f1; padding: 20px; width: 100%; text-align: center;}

.how-it-works-section {position: relative;    overflow: hidden;}
.how-it-works-section .container{position: relative; z-index: 111;}
.how-it-works-section .bg-part1{position: absolute; width: 20%; opacity: 0.1; top: 80px; right: 0;}
.how-it-works-section .bg-part2{    right: auto;    width: 19%;    top: 53px;}

.farmer-app-section {position: relative;    overflow: hidden;}
.farmer-app-section .container{position: relative; z-index: 111;}
.farmer-app-section .bg-part1{position: absolute;width: 24%; opacity: 0.1; top: 301px; right: 0;}
.farmer-app-section .bg-part2{    right: auto;    width: 19%;    top: 133px;}

/* Responsive Styles */
@media (max-width: 868px) {
    .hero-title {
        font-size: 2rem;        line-height: 46px;
    }
    
    .section-title { font-size: 26px; line-height: 35px; }
    
    .reports-phone-img {
        position: static;
        margin-top: 20px;
        width: 150px;
    }
    
    .farmer-phone-1,
    .farmer-phone-2 {
        width: 200px;
    }
    
    .app-phone-screen {
        /* width: 120px; */
    }
    
    .app-preview-screen {
        width: 150px;
    }
    
    .bottom-cta-title { font-size: 24px; line-height: 34px; }
    .bottom-cta-subtitle { font-size: 16px;}
    .app-card{padding: 20px;}

    
    .header-section ul li:nth-child(5), .header-section ul li:nth-child(6){margin: 12px 0 !important; width: 100%;}
    .header-section ul li:nth-child(5) a, .header-section ul li:nth-child(6) a{ width: 100%;}
    .header-section .navbar {padding: 0 !important;}
    .how-it-works-section, .reports-section, .farmer-app-section, .why-choose-section, .two-apps-section, .products-section, .app-preview-section, .bottom-cta-section, .multi-language-section{padding: 40px 0;}
    .two-apps-section .col-lg-6 { margin-top: 40px; }
    body, html{overflow-x: hidden;}
    .step-icon , .why-choose-icon{ width: 70px; height: 70px;    margin: 0 auto 15px;}

    
.footer-section .third{padding-left: 12px;}
.footer-section .fouth{padding-left: 12px;}

.products-section .owl-carousel .owl-nav button{    right: 0;    height: 33px;}
.products-section .owl-carousel .owl-nav button.owl-prev{    left: 0;}
.footer-section img.bg-map{    width: 97%;}
.footer-section{    padding: 70px 0 30px;}

.footer-section .last img{width: 130px !important;  bottom: -30px !important; right: 220px !important;}
}

.hero-section{
    background: #009eda12;
}

/* mukesh */

/* Features Section */
.features-section {
    background-color: var(--light-green);
    padding: 120px 0;
    margin: 0px 200px;
}

.feature-margin {
   margin-left: 0;
    width: 48px;
    height: auto;
}

/* Laptop / small desktop */
@media (max-width: 1200px) {
    .feature-margin img{
        margin-right: unset;
        margin-left: 0;
        width: 100%;
        height: auto;
    }

    .features-section {
        margin: 0 120px;
    }
}

/* Laptop / small desktop */
@media (max-width: 1200px) {
    .feature-margin img{
        margin-right: unset;
        margin-left: 0;
        width: 100%;
        height: auto;
    }

    .features-section {
        margin: 0 120px;
    }
    .footer-section .third { width: 30%; padding-left: 12px;}
    .footer-section .fouth { padding-left: 12px; width: 28%; }

    
    .logo-first img {width: 90px !important; padding-right: 10px !important;}
    .logo-second img {    width: 150px !important;    padding-left: 10px !important;}
    .navbar-nav .nav-link{    margin: 0 0  !important;     font-size: 14px !important;}
}
/* Laptop / small desktop */
@media (max-width: 1600px) {
    .feature-margin img{
        margin-right: unset;
        margin-left: 0;
        width: 100%;
        height: auto;
    }

    .features-section {
        margin: 0 80px;
    }
    .footer-section .third{padding-left: 20px;}

    .logo-first img { width: 130px;}
    .logo-second img { width: 200px;}
    .navbar-nav .nav-link{    margin: 0 5px;}

    .app-preview-screen { width: 200px;}
}
/* Tablet */
@media (max-width: 992px) {
    .feature-margin img{
        margin-right: unset;
        margin-left: 0;
        width: 100%;
        height: auto;
    }
     .features-section {
        margin: 0 60px;
        padding: 60px 0;
    }

    .footer-logo-circle { width: 140px;}
    .footer-section .first{padding-left: 12px; width: 100%; text-align: center;}
    .footer-section .second{padding-left: 12px; width: 22%;}
    .footer-section .third{padding-left: 12px; width: 40%;}
    .footer-section .fouth{padding-left: 12px; width: 35%;}


    
    .logo-first img {width: 90px; padding-right: 10px;}
    .logo-second img {    width: 150px;    padding-left: 10px;}
    .navbar-nav .nav-link{    margin: 0 0 ;     font-size: 14px;}

}

/* Mobile */
@media (max-width: 576px) {
    .feature-margin img{
        margin-right: unset;
        margin-left: 0;
        width: 100%;
        height: auto;
    }
    .features-section {
        margin: 0 15px;
        padding: 40px 0;
    }

    
    .footer-section .first{padding-left: 12px; width: 100%; text-align: left;}
    .footer-section .second{padding-left: 12px; width: 100%;}
    .footer-section .third{padding-left: 12px; width: 100%;}
    .footer-section .fouth{padding-left: 12px; width: 100%;}
}

/* .section-pading{
    padding-left: 50px;
    padding-right: 50px;
} */
.setting-image img{
    width: 64px;
    height: auto;
    margin: 0;
}

.product-footer {
    display: flex;
    justify-content: space-between; /* start & end */
    align-items: center;
}
.product-footer span{font-family: Inter; font-weight: 600; font-size: 16px; line-height: 24px; letter-spacing: 0; text-transform: unset;}
.product-footer a.btn{padding: 0;}
.footer-logo-circle {
    width: 220px;
    height: auto;
    border-radius: 0%;
    /* background: linear-gradient(135deg, var(--primary-green), #66BB6A); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 8px; */
}

.app-sujan{
    width: 64px;
    height: 64px;
}

.farmer-google-img{
    width: 163.25px;
    height: auto;
}

.text-muted{
    color: #9CA3AF !important;
}


#features, #how-it-works, #support, #products, #farmer-app, #reports{scroll-margin-top: 120px; scroll-margin-bottom: 120px;}