/* cotton Media Slider Styles */
        .cotton-hero-slider {
            position: relative;
            overflow: hidden;
        }

        .cotton-slide {
            position: relative;
            height: 600px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cotton-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, 
                rgba(28, 66, 137, 0.95) 0%,
                rgba(28, 66, 137, 0.85) 40%,
                rgba(28, 66, 137, 0.4) 70%,
                transparent 100%);
            z-index: 1;
        }

        .cotton-content {
            position: relative;
            z-index: 2;
            padding: 40px 0 100px 0;
            color: #ffffff;
        }

        .cotton-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .cotton-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 25px;
            color: #ffffff;
            opacity: 0.95;
        }

        .cotton-description {
            font-size: 1.125rem;
            line-height: 1.7;
            margin-bottom: 30px;
            color: #ffffff;
            opacity: 0.9;
            max-width: 90%;
        }

        .cotton-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #ffffff;
            font-size: 1.125rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 5px 0;
        }

        .cotton-link:hover {
            color: #ffffff;
            opacity: 0.8;
            transform: translateX(5px);
        }

        .cotton-link svg {
            transition: transform 0.3s ease;
        }

        .cotton-link:hover svg {
            transform: translateX(5px);
        }

        /* Carousel Controls */
        .cotton-control {
            width: 60px;
            height: 60px;
            background: #1c4289;
            border: 2px solid #1c4289;
            border-radius: 50%;
            opacity: 1;
            transition: all 0.3s ease;
            top: 50%;
            transform: translateY(-50%);
        }

        .cotton-control:hover {
            background: #154073;
            border-color: #154073;
            box-shadow: 0 4px 12px rgba(28, 66, 137, 0.4);
        }

        .cotton-control-prev {
            left: 30px;
        }

        .cotton-control-next {
            right: 30px;
        }

        .cotton-control-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cotton-control-icon svg {
            width: 24px;
            height: 24px;
            stroke: #ffffff;
            stroke-width: 2.5;
        }

        /* Bottom Navigation Bar */
        .cotton-bottom-nav {
            position: relative;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            background: transparent;
            z-index: 3;
            padding: 0;
            margin-top: -95px;
        }

        .cotton-nav-items {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            background: transparent;
            border-radius: 8px;
        }

        .cotton-nav-item {
            flex: 1;
            text-align: center;
            padding: 25px 20px;
            color: #ffffff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            cursor: pointer;
            background: transparent;
        }

        .cotton-nav-item:first-child {
            border-radius: 8px 0 0 8px;
        }

        .cotton-nav-item:last-child {
            border-right: none;
            border-radius: 0 8px 8px 0;
        }

        .cotton-nav-item:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }

        .cotton-nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffffff;
            transition: width 0.3s ease;
        }

        .cotton-nav-item.active::after {
            width: 100%;
        }

        .cotton-nav-item:hover::after {
            width: 100%;
        }

        .cotton-nav-item.active {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Scroll Indicator */
        .cotton-scroll-indicator {
            position: absolute;
            bottom: 120px;
            right: 30px;
            z-index: 3;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .cotton-title {
                font-size: 3rem;
            }
            
            .cotton-subtitle {
                font-size: 1.3rem;
            }

            .cotton-slide {
                height: 560px;
            }
        }

        @media (max-width: 992px) {
            .cotton-slide {
                height: 500px;
            }

            .cotton-title {
                font-size: 2.5rem;
            }

            .cotton-subtitle {
                font-size: 1.2rem;
            }

            .cotton-description {
                font-size: 1rem;
            }

            /* Hide bottom navigation on tablet and mobile */
            .cotton-bottom-nav {
                display: none;
            }

            .cotton-control {
                width: 50px;
                height: 50px;
            }

            .cotton-control-prev {
                left: 15px;
            }

            .cotton-control-next {
                right: 15px;
            }
        }

        @media (max-width: 768px) {
            .cotton-slide {
                height: 450px;
            }

            .cotton-content {
                padding: 30px 0;
            }

            .cotton-title {
                font-size: 2rem;
            }

            .cotton-subtitle {
                font-size: 1.1rem;
            }

            .cotton-description {
                font-size: 0.95rem;
                max-width: 100%;
            }

            .cotton-overlay {
                background: linear-gradient(to bottom, 
                    rgba(28, 66, 137, 0.95) 0%,
                    rgba(28, 66, 137, 0.85) 100%);
            }

            /* Keep navigation hidden on mobile */
            .cotton-bottom-nav {
                display: none;
            }

            .cotton-scroll-indicator {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .cotton-slide {
                height: 400px;
            }

            .cotton-title {
                font-size: 1.75rem;
            }

            .cotton-subtitle {
                font-size: 1rem;
            }

            .cotton-link {
                font-size: 1rem;
            }

            .cotton-control {
                width: 40px;
                height: 40px;
            }

            .cotton-control-icon svg {
                width: 20px;
                height: 20px;
            }

            /* Keep navigation hidden on small mobile */
            .cotton-bottom-nav {
                display: none;
            }
        }
        /* Latest Insights Section Styles */
        .latest-insights {
            background: #f8f9fa;
        }

        .insights-header {
            max-width: 900px;
        }

        .insights-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1c1c1c;
            margin-bottom: 1rem;
            border-left: 4px solid #1c4289;
            padding-left: 20px;
        }

        .insights-description {
            font-size: 1.125rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Tab Navigation Styles */
        .insights-tabs {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            padding: 20px 0;
            border-bottom: 1px solid #dee2e6;
        }

        .tab-label {
            font-weight: 600;
            color: #1c1c1c;
            font-size: 1rem;
        }

        .insights-tab {
            background: none;
            border: none;
            color: #666;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
        }

        .insights-tab:hover {
            color: #000000;
        }

        .insights-tab.active {
            color: #00bcd4;
            font-weight: 600;
        }

        .insights-tab.active::after {
            content: '';
            position: absolute;
            bottom: -21px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #00bcd4;
        }

        .tab-separator {
            color: #dee2e6;
            font-size: 1rem;
        }

        /* Content Cards Styles */
        .insights-content {
            padding-top: 0px;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Insight Card Styles */
        .insight-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .insight-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .insight-card-image {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .card-gradient {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1e5a9e 0%, #4a9fd8 50%, #7ec8e3 100%);
            position: relative;
        }

        /* Circular Pattern Effect */
        .card-gradient::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: -150px;
            left: -150px;
            animation: pulse 3s ease-in-out infinite;
        }

        .card-gradient::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: -100px;
            left: -100px;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        .insight-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .insight-card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1c1c1c;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .insight-card:hover .insight-card-title {
            color: #1c4289;
        }

        .insight-card-date {
            font-size: 0.95rem;
            color: #999;
            margin-bottom: 0;
            font-weight: 500;
            padding-top: 10px;
            border-top: 1px solid #f0f0f0;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .insights-title {
                font-size: 2rem;
            }

            .insights-tabs {
                gap: 10px;
            }

            .insights-tab {
                font-size: 0.95rem;
            }

            .insight-card-image {
                height: 240px;
            }
        }

        @media (max-width: 768px) {
            .insights-title {
                font-size: 1.75rem;
            }

            .insights-description {
                font-size: 1rem;
            }

            .insights-tabs {
                flex-direction: row;
                align-items: center;
                gap: 10px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 10px;
            }

            .tab-label {
                display: none;
            }

            .insights-tab {
                font-size: 0.9rem;
                padding: 10px 15px;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .insights-tab.active::after {
                bottom: -11px;
            }

            .insight-card-image {
                height: 200px;
            }

            .insight-card-title {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .insights-title {
                font-size: 1.5rem;
                padding-left: 15px;
            }

            .insights-description {
                font-size: 0.95rem;
            }

            .insight-card-body {
                padding: 20px;
            }

            .insight-card-image {
                height: 180px;
            }

            .insight-card-title {
                font-size: 1rem;
            }

            .insight-card-date {
                font-size: 0.85rem;
            }
        }
        /* Commodities Section Styles */
        .commodities-section {
            background: #ffffff;
        }

        .commodities-header {
            max-width: 900px;
        }

        .commodities-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1c1c1c;
            margin-bottom: 1rem;
            border-left: 4px solid #1c4289;
            padding-left: 20px;
        }

        .commodities-description {
            font-size: 1.125rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Image Categories - Left Column */
        .commodity-card {
            position: relative;
            height: 240px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .commodity-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .commodity-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(28, 66, 137, 0.85) 0%, rgba(28, 66, 137, 0.6) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .commodity-name {
            color: #ffffff;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 10px;
            transition: transform 0.3s ease;
        }

        .commodity-hover-text {
            color: #ffffff;
            font-size: 0.95rem;
            line-height: 1.5;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            margin: 0;
        }

        .commodity-card:hover .commodity-image {
            transform: scale(1.05);
        }

        .commodity-card:hover .commodity-overlay {
            background: linear-gradient(to right, rgba(28, 66, 137, 0.95) 0%, rgba(28, 66, 137, 0.8) 100%);
        }

        .commodity-card:hover .commodity-name {
            transform: translateY(-10px);
        }

        .commodity-card:hover .commodity-hover-text {
            opacity: 1;
            transform: translateY(0);
        }

        /* Sub-categories - Right Column */
        .subcategory-item {
            padding: 25px;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            background: #ffffff;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .subcategory-item:hover {
            border-color: #1c4289;
            box-shadow: 0 4px 12px rgba(28, 66, 137, 0.1);
            transform: translateY(-3px);
        }

        .subcategory-header {
            margin-bottom: 12px;
        }

        .subcategory-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1c4289;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .subcategory-item:hover .subcategory-title {
            color: #00bcd4;
        }

        .subcategory-icon {
            stroke: currentColor;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .subcategory-item:hover .subcategory-icon {
            transform: translateX(5px);
        }

        .subcategory-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
            margin: 0;
            flex-grow: 1;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .commodities-title {
                font-size: 2rem;
            }

            .commodity-card {
                height: 220px;
            }

            .commodity-name {
                font-size: 1.5rem;
            }

            .subcategory-item {
                padding: 20px;
            }

            .subcategory-title {
                font-size: 1.3rem;
            }

            .col-lg-6:first-child {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .commodities-title {
                font-size: 1.75rem;
            }

            .commodities-description {
                font-size: 1rem;
            }

            .commodity-card {
                height: 200px;
            }

            .commodity-name {
                font-size: 1.3rem;
            }

            .commodity-hover-text {
                font-size: 0.85rem;
            }

            .subcategory-item {
                padding: 18px;
            }

            .subcategory-title {
                font-size: 1.2rem;
            }

            .subcategory-description {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 576px) {
            .commodities-title {
                font-size: 1.5rem;
                padding-left: 15px;
            }

            .commodities-description {
                font-size: 0.95rem;
            }

            .commodity-card {
                height: 180px;
            }

            .commodity-name {
                font-size: 1.2rem;
            }

            .commodity-overlay {
                padding: 20px;
            }

            .subcategory-item {
                padding: 16px;
            }

            .subcategory-title {
                font-size: 1.1rem;
            }

            .subcategory-icon {
                width: 18px;
                height: 18px;
            }
        }
        /* Services Delivery Section Styles */
        .services-delivery-section {
            background: #f8f9fa;
            overflow: hidden;
        }

        .services-image-wrapper {
            position: relative;
            height: 100%;
            min-height: 500px;
        }

        .services-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        /* Header Styles */
        .services-header {
            margin-bottom: 2rem;
        }

        .services-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1c1c1c;
            border-left: 4px solid #1c4289;
            padding-left: 20px;
        }

        .services-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1c1c1c;
            margin-bottom: 1rem;
        }

        .services-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
        }

        /* Service Blocks */
        .service-block {
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
            transition: height 0.3s ease;
            z-index: 0;
        }

        .service-block > * {
            position: relative;
            z-index: 1;
        }

        /* Featured Block (Client Portal) - Always Blue */
        .service-block.featured-block {
            background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
        }

        .service-block.featured-block .service-block-title,
        .service-block.featured-block .service-block-description,
        .service-block.featured-block .service-block-link {
            color: #ffffff;
        }

        .service-block.featured-block .service-block-link svg {
            stroke: #ffffff;
        }

        /* Regular Blocks - Hover Effect */
        .service-block:not(.featured-block):hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 188, 212, 0.2);
        }

        .service-block:not(.featured-block):hover::before {
            height: 100%;
        }

        .service-block:not(.featured-block):hover .service-block-title,
        .service-block:not(.featured-block):hover .service-block-description,
        .service-block:not(.featured-block):hover .service-block-link {
            color: #ffffff;
        }

        .service-block:not(.featured-block):hover .service-block-link svg {
            stroke: #ffffff;
        }

        .service-block-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1c1c1c;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .service-block-description {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
            transition: color 0.3s ease;
        }

        .service-block-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #1c4289;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .service-block-link:hover {
            gap: 12px;
        }

        .service-block-link svg {
            stroke: #1c4289;
            transition: all 0.3s ease;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .services-title {
                font-size: 2rem;
            }

            .services-subtitle {
                font-size: 1.3rem;
            }

            .services-image-wrapper {
                min-height: 400px;
                margin-bottom: 30px;
            }

            .col-lg-5 {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .services-title {
                font-size: 1.75rem;
            }

            .services-subtitle {
                font-size: 1.2rem;
            }

            .services-description {
                font-size: 0.95rem;
            }

            .services-image-wrapper {
                min-height: 350px;
            }

            .service-block {
                padding: 25px;
            }

            .service-block-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 576px) {
            .services-title {
                font-size: 1.5rem;
                padding-left: 15px;
            }

            .services-subtitle {
                font-size: 1.1rem;
            }

            .services-image-wrapper {
                min-height: 300px;
            }

            .service-block {
                padding: 20px;
            }

            .service-block-title {
                font-size: 1.2rem;
            }

            .service-block-description {
                font-size: 0.9rem;
            }
        }
        /* How Can We Help Section */
        .help-header {
            max-width: 900px;
        }

        .help-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1c1c1c;
            border-left: 4px solid #1c4289;
            padding-left: 20px;
        }

        .help-description {
            font-size: 1.125rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Help Items */
        .help-item {
            padding: 30px 0;
            border-bottom: 1px solid #e5e5e5;
            transition: all 0.3s ease;
        }

        .help-item:hover {
            padding-left: 10px;
        }

        .help-item-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #000000;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .help-item:hover .help-item-title {
            color: #1c4289;
        }

        .help-item-icon {
            stroke: currentColor;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .help-item:hover .help-item-icon {
            transform: translateX(5px);
        }

        .help-item-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .help-title {
                font-size: 2rem;
            }

            .help-item-title {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 768px) {
            .help-title {
                font-size: 1.75rem;
            }

            .help-description {
                font-size: 1rem;
            }

            .help-item {
                padding: 25px 0;
            }

            .help-item-title {
                font-size: 1.1rem;
            }

            .help-item-description {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 576px) {
            .help-title {
                font-size: 1.5rem;
                padding-left: 15px;
            }

            .help-item {
                padding: 20px 0;
            }
        }
        /* Smart Decisions Section */
        .smart-decisions-section {
            background: #ffffff;
            padding: 80px 0;
        }

        /* Image + Badge */
        .smart-img-wrap {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(28, 66, 137, 0.14);
        }
        .smart-main-img {
            width: 100%;
            height: 460px;
            object-fit: cover;
            display: block;
        }
        .smart-badge {
            position: absolute;
            bottom: 22px;
            left: 22px;
            right: 22px;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 14px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        .smart-badge-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1c4289, #2a6cb5);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(28, 66, 137, 0.3);
        }
        .smart-badge-text {
            font-size: 0.88rem;
            color: #1c4289;
            line-height: 1.35;
        }
        .smart-badge-text strong {
            font-weight: 700;
        }

        /* Content Side */
        .smart-content {
            padding-left: 24px;
        }
        .smart-heading {
            font-size: 2.45rem;
            font-weight: 700;
            color: #1c1c1c;
            line-height: 1.22;
            margin-bottom: 14px;
        }
        .smart-heading span {
            color: #1c4289;
        }
        .smart-subheading {
            font-size: 1.02rem;
            color: #5a6a7a;
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 520px;
        }

        /* Steps */
        .smart-steps {
            position: relative;
        }
        .smart-step {
            display: flex;
            gap: 22px;
            align-items: flex-start;
            margin-bottom: 26px;
            position: relative;
        }
        .smart-step-num {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(145deg, #1c4289, #2c6fbe);
            color: #ffffff;
            font-size: 1.05rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            box-shadow: 0 5px 16px rgba(28, 66, 137, 0.32);
            letter-spacing: 0.5px;
        }
        /* Vertical connector line between steps */
        .smart-step:not(:last-child)::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 50px;
            bottom: -26px;
            width: 2px;
            background: linear-gradient(to bottom, rgba(28, 66, 137, 0.5) 0%, rgba(28, 66, 137, 0.08) 100%);
            z-index: 0;
        }
        .smart-step-body {
            flex: 1;
            padding-top: 4px;
        }
        .smart-step-title {
            font-size: 1.08rem;
            font-weight: 600;
            color: #1c1c1c;
            margin-bottom: 5px;
        }
        .smart-step-desc {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.65;
            margin: 0;
        }

        /* CTA Button */
        .smart-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #1c4289, #2c6fbe);
            color: #ffffff;
            padding: 15px 36px;
            border-radius: 50px;
            font-size: 1.02rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 12px;
            box-shadow: 0 6px 22px rgba(28, 66, 137, 0.3);
        }
        .smart-cta-btn:hover {
            background: linear-gradient(135deg, #154073, #1c4289);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(28, 66, 137, 0.42);
        }
        .smart-cta-btn svg {
            transition: transform 0.3s ease;
        }
        .smart-cta-btn:hover svg {
            transform: translateX(4px);
        }

        /* Smart Decisions Responsive */
        @media (max-width: 992px) {
            .smart-decisions-section { padding: 60px 0; }
            .smart-main-img { height: 380px; }
            .smart-content { padding-left: 0; }
            .smart-heading { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .smart-decisions-section { padding: 50px 0; }
            .smart-main-img { height: 300px; }
            .smart-badge { bottom: 14px; left: 14px; right: 14px; padding: 12px 16px; gap: 12px; }
            .smart-badge-icon { width: 38px; height: 38px; }
            .smart-badge-icon svg { width: 17px; height: 17px; }
            .smart-badge-text { font-size: 0.8rem; }
            .smart-heading { font-size: 1.75rem; }
            .smart-subheading { font-size: 0.94rem; }
            .smart-step-num { width: 42px; height: 42px; font-size: 0.9rem; }
            .smart-step:not(:last-child)::before { left: 20px; top: 42px; }
            .smart-step-title { font-size: 0.98rem; }
            .smart-step-desc { font-size: 0.84rem; }
        }
        @media (max-width: 576px) {
            .smart-decisions-section { padding: 40px 0; }
            .smart-main-img { height: 240px; }
            .smart-badge { bottom: 10px; left: 10px; right: 10px; padding: 10px 12px; gap: 10px; border-radius: 10px; }
            .smart-badge-icon { width: 34px; height: 34px; }
            .smart-badge-icon svg { width: 15px; height: 15px; }
            .smart-badge-text { font-size: 0.74rem; }
            .smart-heading { font-size: 1.5rem; }
            .smart-subheading { font-size: 0.88rem; margin-bottom: 28px; }
            .smart-step { gap: 16px; margin-bottom: 22px; }
            .smart-step-num { width: 38px; height: 38px; font-size: 0.82rem; }
            .smart-step:not(:last-child)::before { left: 18px; top: 38px; bottom: -22px; }
            .smart-step-title { font-size: 0.92rem; }
            .smart-step-desc { font-size: 0.8rem; }
            .smart-cta-btn { padding: 13px 28px; font-size: 0.92rem; }
        }
        /* Agriwatch Plans Section */
        .agriwatch-plans-section {
            position: relative;
            padding: 70px 0 60px;
            background-image: url('https://images.unsplash.com/photo-1615790184803-38a1c3a5d177?w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }

        .agriwatch-bg-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.52);
            z-index: 1;
        }

        /* Title */
        .agriwatch-plans-title {
            color: #ffffff;
            font-size: 2.6rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            letter-spacing: 0.5px;
        }

        /* Plan Cards */
        .agriwatch-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 42px 36px 38px;
            text-align: center;
            min-height: 260px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .agriwatch-card-title {
            color: #1b5e45;
            font-size: 1.65rem;
            font-weight: 700;
            margin-bottom: 18px;
            letter-spacing: 0.3px;
        }

        .agriwatch-card-desc {
            color: #444;
            font-size: 0.97rem;
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 380px;
        }

        .agriwatch-card-desc strong {
            color: #1c1c1c;
            font-weight: 700;
        }

        /* Buttons */
        .agriwatch-btn {
            display: inline-block;
            font-size: 0.88rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-decoration: none;
            border-radius: 4px;
            padding: 13px 36px;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .agriwatch-btn-outline {
            background: #ffffff;
            color: #1b5e45;
            border: 2px solid #1b5e45;
        }

        .agriwatch-btn-outline:hover {
            background: #1b5e45;
            color: #ffffff;
        }

        .agriwatch-btn-filled {
            background: #1b5e45;
            color: #ffffff;
            border: 2px solid #1b5e45;
        }

        .agriwatch-btn-filled:hover {
            background: #154d38;
            border-color: #154d38;
            color: #ffffff;
        }

        /* Free Trial Banner */
        .agriwatch-trial-banner {
            background: #c0522a;
            border-radius: 10px;
            padding: 32px 40px;
            margin-top: 10px;
        }

        .agriwatch-trial-heading {
            color: #ffffff;
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .agriwatch-trial-heading strong {
            font-weight: 700;
        }

        .agriwatch-trial-gold {
            color: #f5c842;
            font-weight: 700;
        }

        .agriwatch-trial-sub {
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.92rem;
            margin-bottom: 0;
        }

        .agriwatch-btn-trial {
            background: #ffffff;
            color: #1b5e45;
            border: 2px solid #1b5e45;
            padding: 13px 32px;
        }

        .agriwatch-btn-trial:hover {
            background: #1b5e45;
            color: #ffffff;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .agriwatch-plans-title {
                font-size: 2.1rem;
            }
            .agriwatch-card {
                padding: 36px 28px 32px;
            }
        }

        @media (max-width: 768px) {
            .agriwatch-plans-section {
                padding: 50px 0 44px;
            }
            .agriwatch-plans-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            .agriwatch-card {
                padding: 32px 24px 28px;
                min-height: auto;
            }
            .agriwatch-card-title {
                font-size: 1.4rem;
            }
            .agriwatch-trial-banner {
                padding: 26px 24px;
            }
            .agriwatch-trial-heading {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 576px) {
            .agriwatch-plans-title {
                font-size: 1.55rem;
            }
            .agriwatch-card {
                padding: 28px 20px 24px;
            }
            .agriwatch-card-desc {
                font-size: 0.9rem;
            }
            .agriwatch-trial-banner {
                padding: 22px 18px;
                text-align: center;
            }
            .agriwatch-btn-trial {
                width: 100%;
                text-align: center;
            }
        }
        /* Experts Section */
        /* Main Section with Background Image */
        .experts-main-section {
            background: linear-gradient(to right, 
                rgba(30, 58, 95, 0.95) 0%, 
                rgba(30, 58, 95, 0.85) 40%,
                rgba(30, 58, 95, 0.3) 70%,
                transparent 100%),
                url('https://images.unsplash.com/photo-1556157382-97eda2d62296?w=1920&q=80');
            background-size: cover;
            background-position: center right;
            background-repeat: no-repeat;
            /*max-height: 400px;*/
            /*min-height: 400px;*/
            display: flex;
            align-items: center;
        }

        .experts-content {
            padding: 40px 0;
        }

        .experts-title {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
			margin-top:50px;
        }

        .experts-description {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
        }

        /* Form Styling */
        .experts-input {
            background: #ffffff;
            border: none;
            padding: 12px 18px;
            font-size: 0.95rem;
            border-radius: 4px;
            color: #333;
        }

        .experts-input::placeholder {
            color: #666;
        }

        .experts-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.3);
        }

        .experts-submit-btn {
            background: #000000;
            color: #ffffff;
            border: none;
            padding: 12px 50px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }

        .experts-submit-btn:hover {
            background: #0097a7;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 188, 212, 0.3);
        }

        .experts-privacy {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            margin: 0;
        }

        .privacy-link {
            color: #000000;
            text-decoration: underline;
        }

        .privacy-link:hover {
            color: #0097a7;
        }

        /* Newsletter Banner */
        .newsletter-banner {
            background: #000000;
            padding: 20px 0;
        }

        .newsletter-text {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
        }

        .newsletter-btn {
            background: #1c3a5f;
            color: #ffffff;
            border: none;
            padding: 10px 35px;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #0f2540;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .experts-main-section {
                min-height: 450px;
                max-height: 450px;
                background-position: 70% center;
            }

            .experts-title {
                font-size: 1.75rem;
            }

            .newsletter-text {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }

            .col-lg-3.text-end {
                text-align: center !important;
            }
        }

        @media (max-width: 768px) {
            .experts-main-section {
                min-height: 500px;
                max-height: 500px;
                background: linear-gradient(to bottom, 
                    rgba(30, 58, 95, 0.95) 0%, 
                    rgba(30, 58, 95, 0.9) 100%),
                    url('https://images.unsplash.com/photo-1556157382-97eda2d62296?w=1920&q=80');
                background-size: cover;
                background-position: center;
            }

            .experts-content {
                padding: 30px 0;
            }

            .experts-title {
                font-size: 1.5rem;
            }

            .experts-description {
                font-size: 0.9rem;
            }

            .newsletter-text {
                font-size: 1.1rem;
            }

            .newsletter-btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .experts-title {
                font-size: 1.4rem;
            }

            .experts-submit-btn {
                padding: 12px 40px;
                font-size: 0.95rem;
            }

            .newsletter-banner {
                padding: 18px 0;
            }

            .newsletter-text {
                font-size: 1rem;
            }
        }
 