:root {
            --cie-blue: #031b7e;
            --cie-light-blue: #2a45d1;
            --cie-red: #e63946;
            --cie-green: #00a859;
            --cie-orange: #ff6600;
            --cie-yellow: #ffcc00;
            --light-bg: #f8f9fa;
            --dark-text: #333333;
            --light-text: #666666;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        /* Header & Navigation */
        .navbar {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            transition: all 0.3s;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .nav-link {
            color: var(--cie-blue) !important;
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 16px !important;
            border-radius: 4px;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--cie-red) !important;
            background-color: rgba(3, 27, 126, 0.05);
        }
        
        .nav-link.active {
            color: var(--cie-red) !important;
            background-color: rgba(230, 57, 70, 0.08);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--cie-red);
            transition: all 0.3s;
            transform: translateX(-50%);
        }
        
        .nav-link:hover:after {
            width: 70%;
        }
        
        .navbar-toggler {
            border: 1px solid rgba(3, 27, 126, 0.2);
            padding: 6px 10px;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%283, 27, 126, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(3, 27, 126, 0.9), rgba(42, 69, 20, 0.85)), url('../img/about.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 160px 0 100px;
            min-height: 120vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, transparent, white);
            z-index: 1;
        }
        
        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
        }
        
        .status-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
        }
        
        .btn-cie-primary {
            background-color: var(--cie-red);
            color: white;
            padding: 12px 35px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
        }
        
        .btn-cie-primary:hover {
            background-color: #d32f3e;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
        }
        
        .btn-cie-outline {
            background-color: transparent;
            color: white;
            padding: 12px 35px;
            border-radius: 30px;
            font-weight: 600;
            border: 2px solid white;
            transition: all 0.3s;
        }
        
        .btn-cie-outline:hover {
            background-color: white;
            color: var(--cie-blue);
        }
        
        /* Section Styling */
        .section-title {
            color: var(--cie-blue);
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--cie-red);
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        .bg-light-section {
            background-color: var(--light-bg);
        }
        
        /* About Section */
        .about-content {
            padding-right: 40px;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            min-height: 400px;
            background: linear-gradient(45deg, var(--cie-blue), var(--cie-light-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
        }
        
        .about-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.9;
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(3, 27, 126, 0.8), rgba(42, 69, 209, 0.7));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            text-align: center;
            z-index: 2;
        }
        
        .image-overlay h3 {
            color: white;
            margin-bottom: 20px;
        }
        
        .image-overlay p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Mission & Vision */
        .mission-vision-box {
            background-color: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            border-top: 5px solid var(--cie-blue);
            transition: all 0.3s;
        }
        
        .mission-vision-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .mission-vision-box.mission {
            border-top-color: var(--cie-red);
        }
        
        .mission-vision-box.vision {
            border-top-color: var(--cie-green);
        }
        
        /* What We Do */
        .service-card {
            background-color: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s;
            border-left: 5px solid var(--cie-blue);
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--cie-blue), var(--cie-light-blue));
        }
        
        .service-icon {
            font-size: 2.8rem;
            color: var(--cie-blue);
            margin-bottom: 25px;
        }
        
        /* ENHANCED Programmes & Initiatives */
        .programmes-section {
            position: relative;
            overflow: hidden;
        }
        
        .programme-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            border: 1px solid rgba(3, 27, 126, 0.1);
        }
        
        .programme-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(3, 27, 126, 0.15);
            z-index: 2;
        }
        
        .programme-header {
            background: linear-gradient(135deg, var(--cie-blue), var(--cie-light-blue));
            color: white;
            padding: 30px 25px;
            position: relative;
            overflow: hidden;
            min-height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .programme-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
        }
        
        .programme-header h4 {
            font-size: 1.3rem;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }
        
        .programme-icon {
            position: absolute;
            bottom: -20px;
            right: 20px;
            font-size: 5rem;
            opacity: 0.2;
            color: white;
            z-index: 0;
        }
        
        .programme-body {
            padding: 35px 30px;
            position: relative;
            z-index: 1;
            background: white;
        }
        
        .programme-body p {
            margin-bottom: 25px;
            color: var(--light-text);
        }
        
        .programme-features {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .programme-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            color: var(--light-text);
        }
        
        .programme-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--cie-green);
            font-weight: bold;
        }
        
        .programme-card .btn-programme {
            background: linear-gradient(135deg, var(--cie-blue), var(--cie-light-blue));
            color: white;
            border: none;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .programme-card .btn-programme:hover {
            background: linear-gradient(135deg, var(--cie-light-blue), var(--cie-blue));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(3, 27, 126, 0.2);
        }
        
        /* Locations (Chapters) with Hover Effects */
        .locations-section {
            position: relative;
        }
        
        .chapter-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            text-align: center;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(3, 27, 126, 0.1);
            cursor: pointer;
            text-decoration: none !important;
            color: inherit;
            display: block;
        }
        
        .chapter-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--cie-blue), var(--cie-light-blue));
        }
        
        .chapter-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 25px 50px rgba(3, 27, 126, 0.15);
            color: inherit;
        }
        
        .chapter-card:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(3, 27, 126, 0.05), rgba(42, 69, 209, 0.05));
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 0;
        }
        
        .chapter-card:hover:after {
            opacity: 1;
        }
        
        .country-logo {
            font-size: 2.5rem;
            margin-bottom: 20px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }
        
        .country-logo i {
            color: var(--cie-blue);
            transition: all 0.3s;
        }
        
        .chapter-card:hover .country-logo i {
            color: var(--cie-red);
            transform: scale(1.2);
        }
        
        .country-flag {
            height: 50px;
            width: 70px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #eee;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }
        
        .chapter-card:hover .country-flag {
            transform: scale(1.1) rotate(3deg);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            border-color: var(--cie-red);
        }
        
        .chapter-card h5 {
            position: relative;
            z-index: 1;
            transition: all 0.3s;
            margin-bottom: 10px;
        }
        
        .chapter-card:hover h5 {
            color: var(--cie-red);
        }
        
        .chapter-card .small {
            position: relative;
            z-index: 1;
            color: var(--light-text);
        }
        
        .chapter-card .explore-btn {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--cie-red);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s;
            z-index: 2;
        }
        
        .chapter-card:hover .explore-btn {
            bottom: 20px;
            opacity: 1;
        }
        
        /* Countries Modal */
        .modal-content {
            border-radius: 15px;
            border: none;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }
        
        .modal-header {
            background: linear-gradient(135deg, var(--cie-blue), var(--cie-light-blue));
            color: white;
            border-bottom: none;
            padding: 25px 30px;
            position: relative;
            overflow: hidden;
        }
        
        .modal-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
        }
        
        .modal-title {
            font-weight: 700;
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .btn-close-modal {
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }
        
        .btn-close-modal:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }
        
        .modal-body {
            padding: 30px;
            max-height: 60vh;
            overflow-y: auto;
        }
        
        .modal-country-card {
            background-color: white;
            border-radius: 12px;
            padding: 25px 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            text-align: center;
            height: 100%;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(3, 27, 126, 0.1);
            cursor: pointer;
        }
        
        .modal-country-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(3, 27, 126, 0.15);
        }
        
        .modal-country-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--cie-blue), var(--cie-light-blue));
        }
        
        .modal-country-flag {
            height: 45px;
            width: 65px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 15px;
            border: 1px solid #eee;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .modal-country-card:hover .modal-country-flag {
            transform: scale(1.05);
            border-color: var(--cie-red);
        }
        
        .coming-soon-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--cie-green);
            color: white;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
        }
        
        /* Contact Section with Form */
        .contact-form-section {
            background: linear-gradient(rgba(3, 27, 126, 0.03), rgba(42, 69, 209, 0.02));
        }
        
        .contact-form-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .form-control, .form-select {
            border: 1px solid rgba(3, 27, 126, 0.2);
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--cie-blue);
            box-shadow: 0 0 0 3px rgba(3, 27, 126, 0.1);
        }
        
        .form-label {
            font-weight: 600;
            color: var(--cie-blue);
            margin-bottom: 8px;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, var(--cie-blue), var(--cie-light-blue));
            color: white;
            border: none;
            border-radius: 30px;
            padding: 12px 35px;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
            margin-top: 10px;
        }
        
        .btn-submit:hover {
            background: linear-gradient(135deg, var(--cie-light-blue), var(--cie-blue));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(3, 27, 126, 0.2);
        }
        
        .contact-info-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-icon-wrapper {
            background-color: rgba(3, 27, 126, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-icon-wrapper i {
            color: var(--cie-blue);
            font-size: 1.2rem;
        }
        
        .contact-details h5 {
            margin-bottom: 5px;
            color: var(--cie-blue);
        }
        
        .contact-details p {
            margin-bottom: 0;
            color: var(--light-text);
        }
        
        /* Partnership Section */
        .partners-section {
            background: linear-gradient(rgba(3, 27, 126, 0.05), rgba(3, 27, 126, 0.02));
        }
        
        .partner-logo {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 15px 0;
            transition: all 0.3s;
        }
        
        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        /* Rollout Section */
        .rollout-step {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }
        
        .rollout-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 50px;
            left: 25px;
            width: 2px;
            height: calc(100% + 20px);
            background-color: #e0e0e0;
            z-index: 1;
        }
        
        .step-number {
            background-color: var(--cie-blue);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin-right: 30px;
            flex-shrink: 0;
            z-index: 2;
            position: relative;
        }
        
        .step-content {
            flex: 1;
            padding-top: 10px;
        }
        
        /* Social Icons Fix */
        .social-icons a {
            display: inline-block;
            width: 42px;
            height: 42px;
            background-color: var(--cie-blue);
            color: white !important;
            border-radius: 50%;
            text-align: center;
            line-height: 42px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a i {
            color: white;
        }
        
        .social-icons a:hover {
            background-color: var(--cie-red);
            transform: translateY(-5px);
        }
        
        /* Footer */
        footer {
            background-color: var(--cie-blue);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--cie-red);
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }
        
        .footer .social-icons a {
            background-color: rgba(255,255,255,0.1);
        }
        
        .footer .social-icons a:hover {
            background-color: var(--cie-red);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 50px;
            padding-top: 25px;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.8rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .about-content {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .btn-cie-primary, .btn-cie-outline {
                padding: 10px 25px;
                font-size: 0.95rem;
            }
            
            .contact-form-card, .contact-info-card {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 140px 0 80px;
                text-align: center;
            }
            
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .navbar-collapse {
                background-color: white;
                padding: 20px;
                border-radius: 10px;
                margin-top: 10px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            
            .btn-cie-primary, .btn-cie-outline {
                display: inline-block;
                width: auto;
                margin-bottom: 10px;
                margin-right: 10px;
            }
            
            .hero-buttons {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }
            
            .contact-form-card, .contact-info-card {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            
            .hero-section p {
                font-size: 1.1rem;
            }
            
            .btn-cie-primary, .btn-cie-outline {
                padding: 10px 20px;
                font-size: 0.9rem;
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .section-padding {
                padding: 70px 0;
            }
            
            .rollout-step {
                flex-direction: column;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .rollout-step:not(:last-child):after {
                left: 25px;
                top: 50px;
                height: calc(100% + 20px);
            }
            
            .chapter-card {
                padding: 20px 15px;
            }
            
            .country-logo {
                font-size: 2rem;
                height: 50px;
            }
            
            .contact-form-card, .contact-info-card {
                padding: 25px;
            }
        }
        
        @media (max-width: 400px) {
            .hero-section h1 {
                font-size: 1.9rem;
            }
            
            .btn-cie-primary, .btn-cie-outline {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
        }