<style>
        .info-boxes-section {
            padding: 15px 0 15px 0;
            background: #f5faff;
        }

        .info-box {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            margin: 0;

        }

        .info-box:hover {
            transform: translateY(-3px);
        }

        .info-box .icon {
            margin-right: 15px;
            flex-shrink: 0;
        }

        .info-box .icon img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .info-box .content {
            flex-grow: 1;
        }

        .info-box h3 {
            color: #0066cc;
            font-size: 16px;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .info-box p {
            color: #666;
            margin: 0;
            font-size: 12px;
            line-height: 1.3;
        }

        .container-fluid {
            padding-left: 30px;
            padding-right: 30px;
        }

        /* Intervention Areas Navigation Arrows */
        .intervention-slider-container {
            position: relative;
        }

        .intervention-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            font-size: 14px;
            border-radius: 50%;
            padding: 0;
            background: #0066cc;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .intervention-nav-arrow:hover {
            background: #0056b3;
            transform: translateY(-50%) scale(1.05);
        }

        .intervention-nav-arrow i {
            color: #fff;
            font-size: 14px;
        }

        .intervention-prev-arrow {
            left: -20px;
        }

        .intervention-next-arrow {
            right: -20px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .intervention-nav-arrow {
                width: 28px;
                height: 28px;
            }

            .intervention-prev-arrow {
                left: -15px;
            }

            .intervention-next-arrow {
                right: -15px;
            }
        }

        .banner-section {
            padding: 15px 0;
            background: #fff;
        }

        .main-banner {
            position: relative;
            height: 500px;
            background-image: url('{{ asset('assets/blog_image/children-friendship.jpg') }}');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            overflow: hidden;
        }

        .main-banner::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
        }

        .banner-content {
            position: absolute;
            bottom: 50px;
            left: 50px;
            right: 50px;
            color: #fff;
        }

        .banner-content h1 {
            font-size: 35px;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #fff;
        }

        /* Mobile responsive banner title */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 25px !important;
                margin-bottom: 15px;
            }
        }

        .banner-content p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .banner-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .banner-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .banner-slide.active {
            opacity: 1;
        }

        .banner-slide::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
        }

        .banner-dots {
            position: absolute;
            bottom: 30px;
            left: 50px;
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .banner-dots .dot {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .banner-dots .dot.active {
            background: #fff;
        }

        .trending-section {
            background: #fff;
            border-radius: 16px;
            padding: 0;

        }



        .trending-section h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: #0066cc;
        }

        .trending-articles {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .trending-card {
            display: flex;
            align-items: center;
            height: 141px;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
            padding: 10px 15px;
            gap: 22px;
            border: 2px solid #e0f0ff;
        }

        .trending-card.yellow {
            border-color: #f4f0bf;
            background: #fcfbee;
        }

        .trending-card.blue {
            border-color: #9edcf2;
            background: #eef9fd;
        }

        .trending-card.pink {
            border-color: #e9c8b1;
            background: #fbf6f2;
        }

        .trending-card-image {
            width: 90px;
            height: 90px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            background: #f8f8f8;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trending-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .trending-card-content {
            flex: 1;
        }

        .trending-card-title {
            font-size: 14px;
            font-weight: 700;
            color: #222;
            margin-bottom: 6px;
            line-height: 20px;
        }

        .trending-card-desc {
            font-size: 13px;
            color: #666;
            margin-bottom: 6px;
        }

        .trending-card-link {
            color: #23aaff;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            border-bottom: 2px solid #23aaff;
            padding-bottom: 1px;
            transition: color 0.2s;
        }

        .trending-card-link:hover {
            color: #0077cc;
        }

        @media (max-width: 991px) {
            .trending-section {
                padding: 20px 10px;
            }

            .trending-card {
                flex-direction: row;
                align-items: center;
                gap: 16px;
                height: auto;
                min-height: 120px;
            }

            .trending-card-image {
                width: 70px;
                height: 70px;
                flex-shrink: 0;
            }

            .trending-card-content {
                flex: 1;
                min-width: 0;
            }
        }

        /* Additional mobile optimizations for very small screens */
        @media (max-width: 576px) {
            .trending-card {
                padding: 8px 12px;
                gap: 12px;
                min-height: 100px;
            }

            .trending-card-image {
                width: 60px;
                height: 60px;
            }

            .trending-card-title {
                font-size: 13px;
                margin-bottom: 4px;
            }

            .trending-card-desc {
                font-size: 12px;
                margin-bottom: 4px;
            }

            .trending-card-link {
                font-size: 12px;
            }
        }

        /* Additional carousel styles */
        .owl-carousel .owl-stage-outer {
            padding: 10px 0;
        }

        .intervention-carousel .intervention-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            margin: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .intervention-carousel .intervention-card:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .intervention-carousel .intervention-card img {
            width: 100%;
            height: 200px;
            object-fit: contain;
            margin-bottom: 15px;
            border-radius: 5px;
        }

        .intervention-carousel .intervention-card h3 {
            font-size: 16px;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.4;
            min-height: 45px;
        }

        .intervention-carousel .view-more {
            color: #0066cc;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            padding: 5px 0;
        }

        .carousel-nav {
            width: 40px;
            height: 40px;
            background: #0066cc;
            color: #fff;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            border: none;
            transition: all 0.3s ease;
        }

        .carousel-nav:hover {
            background: #0052a3;
        }

        .carousel-nav.prev {
            left: -20px;
        }

        .carousel-nav.next {
            right: -20px;
        }

        /* Intervention Areas Styles */
        .intervention-areas-section {
            padding: 25px 0;
            background: #fff;
        }

        .section-header {
            margin-bottom: 15px;
            padding-left: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section-header h2 {
            font-size: 22px;
            font-weight: 600;
            color: #333;
            position: relative;
            display: inline-block;
            margin: 0;
            padding-bottom: 8px;
        }

        .section-header h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: #0066cc;
        }

        .section-header .slider-nav {
            display: flex;
            gap: 10px;
            padding-right: 15px;
        }

        /* Update navigation arrows */
        .slider-nav button {
            width: 28px;
            height: 28px;
            font-size: 14px;
            border-radius: 50%;
            padding: 0;
            background: #0066cc;
        }

        .slider-nav button i {
            font-size: 14px;
        }

        /* Hide default Slick arrows */
        .slick-prev,
        .slick-next {
            display: none !important;
        }

        .intervention-slider {
            padding: 0;
        }

        .intervention-card {
            margin: 10px;
            padding: 10px;

            text-align: left;
            transition: all 0.3s ease;
            border: 1px solid #b7b5b5;
            border-radius: 5px;

        }

        .intervention-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .intervention-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            margin-bottom: 12px;
        }

        .intervention-card h3 {
            font-size: 13px;
            color: #333;
            margin: 0;
            line-height: 1.4;

            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            font-weight: 500;
        }

        .intervention-card .view-more {
            display: inline-block;
            color: #0066cc;
            text-decoration: none;
            font-weight: 500;
            font-size: 12px;
            padding: 5px 0;
            position: relative;
        }

        .intervention-card .view-more:after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 1px;
            background: #0066cc;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .intervention-card .view-more:hover:after {
            transform: scaleX(1);
        }

        /* Slick Slider Custom Styles */
        .slick-prev,
        .slick-next {
            width: 32px;
            height: 32px;
            background: #0066cc;
            border-radius: 50%;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .slick-prev {
            left: -5px;
        }

        .slick-next {
            right: -5px;
        }

        .slick-prev:hover,
        .slick-next:hover {
            background: #0052a3;
        }

        .slick-prev:before,
        .slick-next:before {
            font-family: 'slick';
            font-size: 16px;
            line-height: 1;
            opacity: 1;
            color: white;
        }

        .trending-categories-section {
            padding: 20px 0;
            background: #fff;
        }

        .categories-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
        }

        .categories-row {
            display: flex;
            gap: 20px;
            width: 100%;
        }

        .category-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            height: 300px;
        }

        /* First row cards */
        .categories-row:first-child .category-card:first-child {
            width: 50%;
        }

        .categories-row:first-child .category-card:not(:first-child) {
            width: 25%;
        }

        /* Second row cards */
        .categories-row:last-child .category-card {
            width: calc(33.333% - 14px);
        }

        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
            color: #fff;
        }

        .card-content h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #fff;
        }

        .card-content p {
            font-size: 14px;
            line-height: 1.5;
            opacity: 0.9;
        }

        /* Ensure uniform text width across all cards */
        .card-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 120px;
            width: 100%;
            /* Full width for background gradient */
        }

        .card-content h3,
        .card-content p {
            width: 100%;
            max-width: 280px;
            /* Fixed maximum width for text elements */
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .card-content h3 {
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .card-content p {
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Mobile responsive styles for trending categories */
        @media (max-width: 991px) {
            .trending-categories-section {
                padding: 15px 0;
            }

            .categories-grid {
                gap: 0;
                margin-top: 20px;
            }

            .categories-row {
                flex-direction: column;
                gap: 0;
                margin-bottom: 15px;
            }

            .categories-row:last-child {
                margin-bottom: 0;
            }

            .category-card {
                width: 100% !important;
                height: 200px;
                margin-bottom: 15px;
            }

            .category-card:last-child {
                margin-bottom: 0;
            }

            .card-content {
                padding: 20px;
                min-height: 100px;
            }

            .card-content h3 {
                font-size: 20px;
                margin-bottom: 8px;
            }

            .card-content p {
                font-size: 13px;
                -webkit-line-clamp: 2;
            }
        }

        /* Small mobile optimizations */
        @media (max-width: 576px) {
            .trending-categories-section {
                padding: 10px 0;
            }

            .categories-grid {
                gap: 0;
                margin-top: 15px;
            }

            .categories-row {
                gap: 0;
                margin-bottom: 12px;
            }

            .categories-row:last-child {
                margin-bottom: 0;
            }

            .category-card {
                height: 180px;
                margin-bottom: 12px;
            }

            .category-card:last-child {
                margin-bottom: 0;
            }

            .card-content {
                padding: 15px;
                min-height: 80px;
            }

            .card-content h3 {
                font-size: 18px;
                margin-bottom: 6px;
            }

            .card-content p {
                font-size: 12px;
            }
        }



        /* Latest Products Section Styling */
        .latest-products-section {
            padding: 20px 0;
            background: #fff;
        }

        .latest-products-slider {
            margin-top: 30px;
            padding-bottom: 30px;
            /* Add bottom padding for shadow visibility */
            overflow: visible;
            /* Ensure shadows are not cropped */
        }

        .latest-products-slider .slide {
            padding: 0 10px;
            margin-bottom: 20px;
            /* Add bottom margin for shadow visibility */
            position: relative;
            /* Ensure proper positioning context */
        }

        .latest-products-slider .product-card {
            height: 400px;
            /* Fixed uniform height for all cards */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 10px;
            /* Ensure bottom margin for shadow */
            display: flex;
            flex-direction: column;
        }

        .latest-products-slider .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
            z-index: 10;
            /* Bring hovered card above others */
        }

        .latest-products-slider .product-img {
            text-align: center;
            padding: 20px;
            background: #f8f9fa;
            height: 200px;
            /* Fixed height for image section */
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            /* Prevent image section from shrinking */
        }

        .latest-products-slider .product-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .latest-products-slider .product-info {
            flex: 1;
            /* Take remaining space */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px;
        }

        .latest-products-slider .product-info h5 {
            font-family: 'Poppins', Arial, sans-serif;
            font-size: 16px;
            color: #333;
            line-height: 1.3;
            margin-bottom: 8px;
            height: 40px;
            /* Fixed height for title */
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .latest-products-slider .product-info p {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 15px;
            height: 40px;
            /* Fixed height for description */
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .latest-products-slider .price {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .latest-products-slider .btn-outline-primary {
            font-size: 14px;
            padding: 6px 12px;
            align-self: flex-start;
            /* Align button to the left */
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .categories-row {
                flex-wrap: wrap;
            }

            .categories-row:first-child .category-card:first-child {
                width: 100%;
                margin-bottom: 20px;
            }

            .categories-row:first-child .category-card:not(:first-child) {
                width: calc(50% - 10px);
            }

            .categories-row:last-child .category-card {
                width: calc(50% - 10px);
                margin-bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .category-card {
                height: 250px;
            }

            .categories-row:first-child .category-card:not(:first-child),
            .categories-row:last-child .category-card {
                width: 100%;
            }
        }

        .embracing-differences-section {
            padding: 30px 0;
            background: #fff;
            overflow: hidden;
        }

        .image-container {
            position: relative;
            padding-right: 30px;
        }


        .image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }



        .image-wrapper img {
            width: 90%;
            height: auto;
            border-radius: 20px;
            position: relative;
            z-index: 1;
        }

        .content-wrapper {
            padding-left: 0px;
        }

        .content-wrapper h2 {}

        .content-wrapper .main-text {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }

        .content-wrapper .secondary-text {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
        }

        .explore-more-btn {
            display: inline-block;
            padding: 10px 15px;
            background: #0066cc;
            color: #fff;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .explore-more-btn:hover {
            background: #0052a3;
            color: #fff;
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {
            .embracing-differences-section {
                padding: 30px 0;
            }

            .image-container {
                margin-bottom: 40px;
                padding-right: 0;
                padding-left: 0;
            }

            .content-wrapper {
                padding-left: 15px;
                padding-right: 15px;
                text-align: center;
            }

            .content-wrapper h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 767px) {
            .embracing-differences-section {
                padding: 20px 0;
            }

            .image-container {
                margin-bottom: 30px;
                padding: 0 15px;
            }

            .image-wrapper img {
                width: 100%;
                border-radius: 15px;
            }

            .content-wrapper {
                padding: 0 15px;
                text-align: left;
            }

            .content-wrapper h1 {
                font-size: 28px;
                text-align: left;
                margin-bottom: 20px;
            }

            .content-wrapper p {
                text-align: left;
                margin-bottom: 25px;
            }

            .explore-more-btn {
                text-align: left;
                display: inline-block;
            }
        }

        /* Extra small mobile optimizations */
        @media (max-width: 576px) {
            .embracing-differences-section {
                padding: 15px 0;
            }

            .image-container {
                margin-bottom: 25px;
                padding: 0 20px;
            }

            .image-wrapper img {
                width: 100%;
                border-radius: 12px;
            }

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

            .content-wrapper h1 {
                font-size: 24px;
                margin-bottom: 18px;
            }

            .content-wrapper p {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .explore-more-btn {
                padding: 8px 12px;
                font-size: 13px;
            }
        }

        .customer-testimonials-section {
            padding: 80px 0;
            background: #fff;
        }

        .testimonial-content h2 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            color: #333;
            margin-bottom: 30px;
        }

        .testimonial-content h2 .highlight {
            color: #0099ff;
        }

        .view-experience-btn {
            display: inline-block;
            padding: 15px 35px;
            background: #0099ff;
            color: #fff;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            margin-bottom: 40px;
            transition: all 0.3s ease;
        }

        .view-experience-btn:hover {
            background: #007acc;
            color: #fff;
            transform: translateY(-2px);
        }

        .testimonial-quote {
            background: #f8f9ff;
            padding: 40px;
            border-radius: 20px;
            position: relative;
        }

        .quote-icon {
            font-size: 24px;
            color: #0099ff;
            margin-bottom: 20px;
        }

        .testimonial-quote p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
        }

        .testimonial-author h3 {
            font-size: 18px;
            font-weight: 600;
            color: #0099ff;
            margin-bottom: 5px;
        }

        .testimonial-author p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .company-logo {
            height: 40px;
            width: auto;
        }

        .testimonial-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .testimonial-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        @media (max-width: 991px) {
            .customer-testimonials-section {
                padding: 50px 0;
            }

            .testimonial-content {
                margin-bottom: 40px;
            }

            .testimonial-content h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 767px) {
            .testimonial-content h2 {
                font-size: 32px;
            }

            .testimonial-quote {
                padding: 30px;
            }
        }

        .our-values-section {
            background: #fff;
            padding: 40px 0 40px 30px;
            margin-bottom: 40px;
        }

        .our-values-title {
            text-align: center;
            margin-bottom: 8px;
        }

        .our-values-title-underline {
            height: 4px;
            width: 60px;
            background: #23aaff;
            border-radius: 2px;
            margin: 0 auto 18px auto;
        }

        .our-values-desc {
            text-align: center;
            color: #222;
            margin-bottom: 36px;
        }

        .our-values-flex {
            display: flex;
            align-items: stretch;
            justify-content: center;
            gap: 0;
            max-width: 1400px;
            margin: 0 auto;
        }

        .our-values-accordion {
            display: flex;
            height: 380px;
            flex: 1.2;
        }

        .our-values-accordion-item {
            position: relative;
            flex: 1;
            min-width: 60px;
            max-width: 400px;
            margin: 0 6px;
            border-radius: 18px;
            overflow: hidden;
            cursor: pointer;
            transition: flex 0.5s cubic-bezier(.4, 2.08, .55, .44);
            display: flex;
            align-items: flex-end;
        }

        .our-values-accordion-item.active {
            flex: 4;
            z-index: 2;
        }

        .our-values-accordion-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: filter 0.3s;
            filter: brightness(0.85);
        }

        .our-values-accordion-label {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            writing-mode: vertical-rl;
            text-align: center;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
            background: rgba(0, 0, 0, 0.18);
            transition: background 0.3s;
        }

        .our-values-accordion-item.active .our-values-accordion-label {
            background: rgba(0, 0, 0, 0.08);
            font-size: 20x;
        }

        .our-values-content {
            flex: 1.5;
            display: flex;
            align-items: start;
            justify-content: flex-start;
            padding-left: 40px;
        }

        .our-values-content-inner {
            max-width: 700px;
        }

        .our-values-content-icon {
            font-size: 30px;
            margin-bottom: 18px;
            display: none;
        }

        .our-values-content-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .our-values-content-desc {
            font-size: 16px;
            color: #444;
        }

        @media (max-width: 1200px) {
            .our-values-flex {
                flex-direction: column;
                align-items: stretch;
            }

            .our-values-accordion {
                height: 260px;
                margin-bottom: 30px;
            }

            .our-values-content {
                padding-left: 0;
                justify-content: center;
            }

            .our-values-content-inner {
                max-width: 600px;
            }
        }

        @media (max-width: 768px) {
            .our-values-section {
                padding: 30px 15px;
                margin-bottom: 30px;
            }

            .our-values-accordion {
                height: 440px;
                margin-bottom: 25px;
            }

            .our-values-accordion-item {
                margin: 0 4px;
                border-radius: 15px;
                height: 100%;
            }

            .our-values-accordion-item img {
                height: 100%;
                min-height: 440px;
            }

            .our-values-accordion-label {
                font-size: 16px;
                letter-spacing: 0.5px;
                text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
            }

            .our-values-content-title {
                font-size: 1.3rem;
                margin-bottom: 10px;
            }

            .our-values-content-desc {
                font-size: 14px;
                line-height: 1.5;
            }

            .our-values-desc {
                font-size: 14px;
                margin-bottom: 25px;
                padding: 0 10px;
            }
        }

        /* Small mobile optimizations */
        @media (max-width: 576px) {
            .our-values-section {
                padding: 20px 10px;
                margin-bottom: 25px;
            }

            .our-values-accordion {
                height: 400px;
                margin-bottom: 20px;
            }

            .our-values-accordion-item img {
                min-height: 400px;
            }

            .our-values-accordion-item {
                margin: 0 3px;
                border-radius: 12px;
            }

            .our-values-accordion-label {
                font-size: 14px;
                letter-spacing: 0.3px;
                text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
            }

            .our-values-content-title {
                font-size: 1.2rem;
                margin-bottom: 8px;
            }

            .our-values-content-desc {
                font-size: 13px;
                line-height: 1.4;
            }

            .our-values-desc {
                font-size: 13px;
                margin-bottom: 20px;
                padding: 0 8px;
            }
        }

        /* Extra small mobile optimizations */
        @media (max-width: 480px) {
            .our-values-section {
                padding: 15px 8px;
                margin-bottom: 20px;
            }

            .our-values-accordion {
                height: 360px;
                margin-bottom: 15px;
            }

            .our-values-accordion-item img {
                min-height: 360px;
            }

            .our-values-accordion-item {
                margin: 0 2px;
                border-radius: 10px;
            }

            .our-values-accordion-label {
                font-size: 12px;
                letter-spacing: 0.2px;
                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
            }

            .our-values-content-title {
                font-size: 1.1rem;
                margin-bottom: 6px;
            }

            .our-values-content-desc {
                font-size: 12px;
                line-height: 1.3;
            }

            .our-values-desc {
                font-size: 12px;
                margin-bottom: 15px;
                padding: 0 5px;
            }
        }

        /* Mobile responsive styles for Features section */
        @media (max-width: 768px) {
            .features-section {
                padding: 15px 0 !important;
            }

            .features-section .col-sm-6 {
                width: 50% !important;
                float: left !important;
            }

            .features-section .col-sm-6:nth-child(odd) {
                clear: left;
            }

            /* Center the last icon (5th) on mobile */
            .features-section .col-sm-6:last-child {
                float: none !important;
                margin: 0 auto !important;
                clear: both !important;
            }

            .feature-box {
                padding: 15px 10px !important;
                margin-bottom: 15px;
            }

            .feature-icon img {
                width: 60px !important;
                height: 60px !important;
            }

            .feature-box h4 {
                font-size: 13px !important;
                margin-bottom: 4px !important;
            }

            .feature-box p {
                font-size: 12px !important;
                line-height: 1.3;
            }
        }

        /* Mobile responsive styles for Our Partners section */
        @media (max-width: 768px) {
            .our-partners-section .col-sm-4 {
                width: 33.333% !important;
                float: left !important;
                padding: 0 5px !important;
            }

            .our-partners-section .col-sm-4:nth-child(3n+1) {
                clear: left;
            }

            .our-partners-section .row {
                width: 100% !important;
                margin: 0 !important;
            }
        }

        @media (max-width: 576px) {
            .our-partners-section .col-sm-4 {
                width: 33.333% !important;
                float: left !important;
                padding: 0 3px !important;
            }

            .our-partners-section .col-sm-4:nth-child(3n+1) {
                clear: left;
            }
        }

        @media (max-width: 480px) {
            .our-partners-section .col-sm-4 {
                width: 33.333% !important;
                float: left !important;
                padding: 0 2px !important;
            }

            .our-partners-section .col-sm-4:nth-child(3n+1) {
                clear: left;
            }
        }

        @media (max-width: 576px) {
            .features-section {
                padding: 10px 0 !important;
            }

            .features-section .col-sm-6 {
                width: 50% !important;
                float: left !important;
            }

            .features-section .col-sm-6:nth-child(odd) {
                clear: left;
            }

            /* Center the last icon (5th) on mobile */
            .features-section .col-sm-6:last-child {
                float: none !important;
                margin: 0 auto !important;
                clear: both !important;
            }

            .feature-box {
                padding: 12px 8px !important;
                margin-bottom: 12px;
            }

            .feature-icon img {
                width: 50px !important;
                height: 50px !important;
            }

            .feature-box h4 {
                font-size: 12px !important;
                margin-bottom: 3px !important;
            }

            .feature-box p {
                font-size: 11px !important;
                line-height: 1.2;
            }
        }

        @media (max-width: 480px) {
            .features-section {
                padding: 8px 0 !important;
            }

            .features-section .col-sm-6 {
                width: 50% !important;
                float: left !important;
            }

            .features-section .col-sm-6:nth-child(odd) {
                clear: left;
            }

            /* Center the last icon (5th) on mobile */
            .features-section .col-sm-6:last-child {
                float: none !important;
                margin: 0 auto !important;
                clear: both !important;
            }

            .feature-box {
                padding: 10px 6px !important;
                margin-bottom: 10px;
            }

            .feature-icon img {
                width: 45px !important;
                height: 45px !important;
            }

            .feature-box h4 {
                font-size: 11px !important;
                margin-bottom: 2px !important;
            }

            .feature-box p {
                font-size: 10px !important;
                line-height: 1.1;
            }
        }

        #whyJoinImage {
            height: 315px;
        }

        /* Desktop layout for Features section - 5 icons properly distributed */
        @media (min-width: 992px) {
            .features-section .row {
                max-width: 1200px;
                margin: 0 auto;
            }

            .features-section .col-lg-2 {
                flex: 0 0 auto;
                width: 19% !important;
                margin: 0 0.5% !important;
            }

            .features-section .feature-box {
                padding: 25px 15px !important;
                min-height: 200px;
            }

            .features-section .feature-icon img {
                width: 90px !important;
                height: 90px !important;
            }

            .features-section .feature-box h4 {
                font-size: 16px !important;
                margin-bottom: 8px !important;
            }

            .features-section .feature-box p {
                font-size: 15px !important;
                line-height: 1.4;
            }
        }

        /* Mobile responsive styles for Why Join Us section */
        @media (max-width: 768px) {
            .why-join-section {
                padding: 40px 15px 30px 15px !important;
            }

            .why-join-tabs {
                gap: 8px !important;
                margin-bottom: 30px !important;
                flex-wrap: wrap;
                justify-content: center;
            }

            .why-join-tabs .why-join-tab-btn {
                font-size: 14px !important;
                padding: 12px 20px !important;
                min-width: auto;
                white-space: nowrap;
            }

            .why-join-tabs .why-join-tab-btn.active {
                font-size: 14px !important;
                padding: 12px 20px !important;
            }

            .why-join-content-row {
                flex-direction: column !important;
                align-items: center !important;
            }

            .why-join-content-row .col-lg-6:first-child {
                text-align: center !important;
                margin-bottom: 25px;
            }

            #whyJoinImage {
                max-width: 100% !important;
                height: 250px !important;
                margin: 0 auto;
                display: block;
            }

            .why-join-content-row .col-lg-6:last-child {
                padding-left: 0 !important;
                text-align: center;
            }

            .why-join-content-row .col-lg-6:last-child h2 {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }

            .why-join-content-row .col-lg-6:last-child p {
                font-size: 14px;
                line-height: 1.5;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .why-join-section {
                padding: 30px 10px 25px 10px !important;
            }

            .why-join-tabs {
                gap: 6px !important;
                margin-bottom: 25px !important;
            }

            .why-join-tabs .why-join-tab-btn {
                font-size: 13px !important;
                padding: 10px 16px !important;
            }

            .why-join-tabs .why-join-tab-btn.active {
                font-size: 13px !important;
                padding: 10px 16px !important;
            }

            #whyJoinImage {
                height: 220px !important;
                margin-bottom: 20px;
            }

            .why-join-content-row .col-lg-6:last-child h2 {
                font-size: 1.3rem;
                margin-bottom: 12px;
            }

            .why-join-content-row .col-lg-6:last-child p {
                font-size: 13px;
                line-height: 1.4;
                margin-bottom: 18px;
            }
        }

        @media (max-width: 480px) {
            .why-join-section {
                padding: 25px 8px 20px 8px !important;
            }

            .why-join-tabs {
                gap: 4px !important;
                margin-bottom: 20px !important;
            }

            .why-join-tabs .why-join-tab-btn {
                font-size: 12px !important;
                padding: 8px 12px !important;
            }

            .why-join-tabs .why-join-tab-btn.active {
                font-size: 12px !important;
                padding: 8px 12px !important;
            }

            #whyJoinImage {
                height: 200px !important;
                margin-bottom: 18px;
            }

            .why-join-content-row .col-lg-6:last-child h2 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }

            .why-join-content-row .col-lg-6:last-child p {
                font-size: 12px;
                line-height: 1.3;
                margin-bottom: 15px;
            }
        }

        .why-join-tabs .why-join-tab-btn {
            font-size: 18px;
            font-weight: 600;
            color: #000;
            background: #fff;
            border: 0;
            border-radius: 0;
            padding: 16px 48px;
            outline: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        .why-join-tabs .why-join-tab-btn.active {
            font-size: 18px;
            font-weight: 600;
            color: #0091ea;
            background: #fff;
            border-bottom: 2px solid #0091ea;
            border-radius: 0px;
            padding: 16px 48px;
            outline: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        .our-values-content-desc {
            padding-left: 0.5rem;
            /* adds indentation */
            list-style: none;
            /* padding-left: 0; */
            /* shows bullet dots */
        }

        .our-values-content-desc li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
            line-height: 1.6;
            /* spacing between list items */
        }

        .our-values-content-desc li::before {
            content: "✔";
            /* Tick mark */
            color: #007BFF;
            /* Bootstrap primary blue or your preferred shade */
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
        }

        /* style for buttton */
         .banner-read-btn {
            color: #016fa9;
            background: #fff;
            border: 1px solid #eaeaea;
            transition: background 0.18s, color 0.18s;
        }

        .banner-read-btn:hover {
            background: #016fa9;
            color: #fff;
            border: 1px solid #016fa9;
            text-decoration: none;
        }

        .banner-read-btn2 {
            font-size: 0.98rem;
            padding: 4px 18px;
            font-weight: 500;
            border-radius: 20px;
            margin-top: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            color: #ffffff;
            background: #ffffff00;
        }

        .banner-read-btn2:hover {
            background: #ffffff00;
            color: #fff;
            border: 1px solid #016fa9;
            text-decoration: none;
        }
    </style>