
        /* Section ya Footprint */
        .footprint-section {
            padding: 40px 5%;
            background-color: #fafafa;
        }

        .footprint-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .region-card {
            padding: 20px;
            background: #ffffff;
            border: 1px solid #eef2f5;
            border-radius: 12px;
            text-align: center;
            transition: 0.3s ease;
        }
        .region-card:hover {
            border-color: var(--brand-blue);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Modern Map Container */
        .map-container {
            position: relative; /* Muhimu kwa ajili ya kuweka pins */
            width: 100%;
            max-width: 700px;
            margin: 20px auto;
            padding: 20px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            text-align: center;
        }

        .map-container object {
            width: 100%;
            height: auto;
            min-height: 400px;
            display: block;
        }

        /* Pin ya Ramani */
        .pin {
            position: absolute;
            width: 18px;
            height: 18px;
            background: var(--brand-blue);
            border: 3px solid white;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
            transition: 0.3s;
        }
        .pin:hover {
            transform: scale(1.3);
            background: var(--brand-green);
        }

        .why-us-pro {
            padding: 100px 5%;
            background: #ffffff; /* Background safi/nyeupe */
            color: #333;
            position: relative;
        }

        .why-pro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            counter-reset: num;
        }

        .why-pro-text h2 {
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -1.5px;
            color: var(--brand-blue);
        }

        .why-pro-item {
            border-top: 1px solid #eee;
            padding: 30px 0;
            transition: 0.4s;
        }

        /* Hover effect ya mstari wa kijani */
        .why-pro-item:hover {
            padding-left: 20px;
            border-top: 1px solid var(--brand-green);
        }

        .why-pro-item h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            color: #222;
        }

        /* Number counters */
        .why-pro-item h4::before {
            content: '0' counter(num);
            counter-increment: num;
            margin-right: 20px;
            color: var(--brand-green);
            font-size: 1.2rem;
            font-weight: bold;
        }

        @media (max-width: 992px) {
            .why-pro-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .why-pro-text h2 {
                font-size: 2.2rem;
            }
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            padding: 60px 5%;
        }

        .service-card {
            position: relative;
            height: 350px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

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

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

        /* Overlay inayotumia rangi yako ya brand */
        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(transparent, var(--brand-blue));
            color: white;
        }

        .card-overlay h3 {
            margin: 0 0 10px;
            font-size: 1.5rem;
        }
        .card-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin: 0;
        }
        .section-title {
            text-align: center;
            padding: 50px 0 20px;
        }
        .section-title h2 {
            color: var(--brand-blue);
            font-size: 2.5rem;
            text-transform: uppercase;
            margin-bottom: 10px;
            position: relative;
        }
        /* Underline ya kisasa */
        .section-title h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--brand-green);
            margin: 10px auto;
            border-radius: 2px;
        }

        .about-section {
            display: flex;
            align-items: center;
            padding: 80px 5%;
            gap: 50px;
            background: #ffffff;
        }

        .about-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
        }
        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .about-content {
            flex: 1;
        }
        .about-content h2 {
            color: var(--brand-blue);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .about-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .about-stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }
        .stat-item {
            border-left: 3px solid var(--brand-green);
            padding-left: 15px;
        }
        .stat-item h3 {
            color: var(--brand-blue);
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-section {
                flex-direction: column;
                text-align: center;
            }
            .about-stats {
                justify-content: center;
            }
        }

        /* Slider Container */
        .client-slider-section {
            padding: 40px 5%;
            background: #f9f9f9;
            overflow: hidden;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .slider-track {
            display: flex;
            gap: 60px;
            animation: scroll 20s linear infinite;
            width: max-content;
        }

        /* Simamisha slider ukiweka cursor */
        .client-slider-section:hover .slider-track {
            animation-play-state: paused;
        }

        .client-item {
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 200px;
        }

        .client-item img {
            height: 40px;
            filter: grayscale(100%); /* Inafanya logo zionekane professional */
            transition: 0.3s;
        }

        .client-item:hover img {
            filter: grayscale(0%);
        }

        .client-name {
            font-weight: 600;
            color: #555;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            } /* Hii inategemea idadi ya items */
        }

        .team-section {
            padding: 80px 5%;
            background: #f9f9f9;
        }
        .team-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .team-header h2 {
            color: var(--brand-blue);
            font-size: 2.5rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            text-align: center;
            padding-bottom: 20px;
            transition: 0.3s;
            border: 1px solid #eee;
        }
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .team-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            margin-bottom: 15px;
        }
        .team-body h4 {
            margin: 10px 0 5px;
            color: var(--brand-blue);
        }
        .team-body p {
            color: var(--brand-green);
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        .team-social a {
            color: #555;
            transition: 0.3s;
        }
        .team-social a:hover {
            color: var(--brand-blue);
        }

        /* Hero Section - Desktop 75/25 split */
        .hero-container {
            display: flex;
            height: 60vh;
            padding: 20px 5%;
            gap: 20px;
            background: #ffffff;
            margin-top: 20px;
        }

        .hero-left {
            flex: 0 0 25%;
            display: flex;
            flex-direction: column;
        }
        .hero-left img {
            width: 100%;
            height: 75%;
            object-fit: cover;
            border-radius: 12px;
            border: 3px solid var(--brand-blue);
        }
        .hero-left p {
            margin-top: 15px;
            font-size: 0.95rem;
            color: var(--brand-blue);
            font-weight: 600;
            line-height: 1.4;
        }

        /* Modern Swiper Slider */
        .hero-right {
            flex: 0 0 73%;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            background: #eee;
        }
        .swiper {
            width: 100%;
            height: 100%;
        }
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .swiper-slide-active img {
            transform: scale(1.05);
        }

        /* Modern Overlay Caption */
        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 80px 40px 40px;
            background: linear-gradient(to top, rgba(0,74,139,0.85) 0%, transparent 100%);
            color: white;
        }
        .slide-caption h2 {
            font-size: 2rem;
            margin: 0 0 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .slide-caption p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Services Grid */
        .services-section {
            padding: 60px 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .biz-card {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            text-align: center;
            border-top: 5px solid var(--brand-green);
            transition: 0.3s;
        }
        .biz-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .biz-card i {
            font-size: 45px;
            color: var(--brand-blue);
            margin-bottom: 20px;
        }

        /* Mobile View (Slider inachukua 100%) */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                height: auto;
                padding: 15px;
            }
            .hero-left {
                display: none;
            }
            .hero-right {
                flex: 0 0 100%;
                height: 350px;
            }
            .slide-caption {
                padding: 40px 20px 20px;
            }
            .slide-caption h2 {
                font-size: 1.5rem;
            }
        }

        .impact-section {
            padding: 80px 5%;
            background: var(--brand-blue);
            color: white;
            text-align: center;
        }
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        .impact-card h2 {
            font-size: 3.5rem;
            margin-bottom: 10px;
            color: var(--brand-green);
        }
        .impact-card p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .impact-wrapper {
            padding: 80px 5%;
        }

        .impact-row {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
        }

        /* Hapa tunabadilisha mtiririko kwa kila row ya pili */
        .impact-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .impact-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
        }
        .impact-image img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .impact-text {
            flex: 1;
        }
        .impact-text h3 {
            color: var(--brand-blue);
            font-size: 2rem;
            margin-bottom: 15px;
        }
        .impact-text p {
            color: #666;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .impact-row {
                flex-direction: column !important;
                text-align: center;
                gap: 20px;
            }
        }

        .testimonial-section {
            padding: 80px 5%;
            background: #fdfdfd;
        }
        .testimonial-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .testimonial-header h2 {
            color: var(--brand-blue);
            font-size: 2.5rem;
        }

        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testi-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            position: relative;
        }

        .testi-card::before {
            content: "\f10d";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 3rem;
            color: #eee;
            position: absolute;
            top: 10px;
            left: 20px;
        }

        .testi-card p {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .testi-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .testi-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        .testi-author h5 {
            margin: 0;
            color: var(--brand-blue);
        }

        .news-section {
            padding: 80px 5%;
            background: #ffffff;
        }
        .news-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .news-header h2 {
            color: var(--brand-blue);
            font-size: 2.5rem;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .news-card {
            border-radius: 15px;
            overflow: hidden;
            background: #fff;
            border: 1px solid #eee;
            transition: 0.3s;
        }
        .news-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .news-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .news-body {
            padding: 25px;
        }
        .news-date {
            font-size: 0.85rem;
            color: var(--brand-green);
            font-weight: bold;
            margin-bottom: 10px;
            display: block;
        }
        .news-body h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--brand-blue);
        }
        .news-body p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .read-more {
            margin-top: 20px;
            display: inline-block;
            color: var(--brand-blue);
            font-weight: bold;
            text-decoration: none;
        }

        .contact-section {
            padding: 80px 5%;
            background: #f9f9f9;
        }
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1000px;
            margin: auto;
        }

        .contact-info h2 {
            color: var(--brand-blue);
            margin-bottom: 20px;
        }
        .contact-info p {
            color: #666;
            margin-bottom: 20px;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
        }
        .contact-form button {
            background: var(--brand-blue);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
        }
        .contact-form button:hover {
            background: var(--brand-green);
        }

        @media (max-width: 768px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
        }

        .faq-section {
            padding: 80px 5%;
            background: #ffffff;
        }
        .faq-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .faq-container {
            max-width: 800px;
            margin: auto;
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            background: none;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--brand-blue);
            cursor: pointer;
        }
        .faq-answer {
            display: none;
            padding: 15px 0;
            color: #666;
            line-height: 1.6;
        }
    