 /* General Body Styles */
        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, h5, h6 {
            box-shadow: 0 0 0 0;
            line-height: 1.3em;
        }

        body {
            font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', 'Avant Garde', 'Futura', sans-serif;
            margin: 0;
            color: #343A40;
            background-color: #ffffff;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            line-height: 1.6;
        }

        /* Header and Navigation */
        header {
            background-color: rgba(92, 225, 230, 0.85);
            padding: 1rem 5%;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav .logo img {
            height: clamp(40px, 8vw, 60px);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        nav .logo img:hover {
            transform: scale(1.08);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: clamp(0.5rem, 3vw, 2rem);
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }

        nav a {
            text-decoration: none;
            color: #0D2A4A;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            font-size: clamp(0.9rem, 2.5vw, 1.2rem);
            position: relative;
            padding: 0.5rem 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #0056b3;
            transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: #0056b3;
            transform: translateY(-3px);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: none;
            border: none;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #0D2A4A;
            margin: 3px 0;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: block;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Enhanced Hero Section with Animations */
        .hero-section {
            text-align: center;
            padding: clamp(6rem, 18vh, 8rem) 5% clamp(3rem, 12vh, 5rem);
            background-color: #F8F9FA;
            background-image: url(img/bg1.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            align-content: center;
            position: relative;
            overflow: hidden;
            min-height: clamp(400px, 60vh, 700px);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-section * {
            position: relative;
            z-index: 2;
        }

        .hero-section h1 {
            font-size: clamp(2rem, 6vw, 4rem);
            color: #ffffff;
            font-weight: 700;
            margin: 5px 0 1rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
            animation: fadeInUp 1.2s ease-out 0.3s forwards;
            opacity: 0;
            transform: translateY(40px);
        }

        .hero-section p {
            font-size: clamp(1.1rem, 3.5vw, 2.2rem);
            max-width: 800px;
            margin: 0.9rem auto;
            color: #ffffff;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
            animation: fadeInUp 1.2s ease-out 0.6s forwards;
            opacity: 0;
            transform: translateY(40px);
            line-height: 1.3em;
        }

        .hero-buttons {
            margin-top: 2.5rem;
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s ease-out 0.9s forwards;
            opacity: 0;
            transform: translateY(40px);
        }

        .btn-primary, .btn-secondary {
            padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2rem);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: inline-block;
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
            box-shadow: 0 4px 20px rgba(0,0,0,0.25);
            text-align: center;
            min-width: 160px;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .btn-primary:hover::before,
        .btn-secondary:hover::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%;
            height: 300%;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            animation: ripple 0.8s ease-out;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0D2A4A, #0056b3);
            color: #fff;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #0056b3, #007bff);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 30px rgba(0,0,0,0.35);
        }

        .btn-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .btn-secondary:hover {
            background-color: #ffffff;
            color: #0D2A4A;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 30px rgba(255,255,255,0.3);
        }
        
        #tafa-academy-page .btn-secondary {
            color: #9c9c9c;
            border: 2px solid #9c9c9c;
        }
        
        #tafa-academy-page .btn-secondary:hover {
            background-color: #9c9c9c;
            color: #ffffff;
        }

        /* Learning Solutions Section */
        .solutions-section {
            padding: clamp(3rem, 8vh, 5rem) 5%;
            text-align: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .solutions-section h2 {
            color: #0D2A4A;
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .solutions-section > p {
            color: #5A6A7B;
            margin-bottom: clamp(2rem, 6vh, 4rem);
            font-size: clamp(1rem, 3vw, 1.3rem);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: clamp(1.5rem, 4vw, 2.5rem);
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
        }

        .solution-card {
            padding: clamp(1.5rem, 4vw, 2.5rem);
            border-radius: 20px;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .solution-card:nth-child(1) {background: linear-gradient(135deg, #1859a7 0%, #0288D1 100%);color: white;}
        .solution-card:nth-child(2) {background: linear-gradient(135deg, #607D8B 0%, #0b75c0 100%);color: white;}
        .solution-card:nth-child(3) {background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);color: #283593;}
        .solution-card:nth-child(4) {background: linear-gradient(135deg, #d72231 0%, #0675b9 100%);color: white;}
        .solution-card:nth-child(5) {background: linear-gradient(135deg, #0675b9 0%, #0675b9 100%);color: white;}
        .solution-card:nth-child(6) {background: linear-gradient(135deg, #eb1b24 0%, #0873b9 100%);color: #ffffff;}

        .solution-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .solution-card img {
            height: clamp(35px, 6vw, 50px);
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .solution-card:hover img {
            transform: scale(1.2) rotate(5deg);
        }

        .solution-card h3 {
            margin-top: 0;
            margin-bottom: 1rem;
            font-size: clamp(1.2rem, 3.5vw, 1.5rem);
            font-weight: 600;
        }

        .solution-card p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
            line-height: 1.6;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .solution-card a {
            color: inherit;
            text-decoration: none;
            font-weight: bold;
            position: relative;
            padding: 0.5rem 1.5rem;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 25px;
            transition: all 0.3s ease;
            display: inline-block;
            backdrop-filter: blur(10px);
            font-size: clamp(0.8rem, 2vw, 0.9rem);
        }

        .solution-card a:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.8);
            transform: translateX(5px);
        }
        
        .solution-card:nth-child(3) a {
            border-color: rgba(40, 53, 147, 0.3);
        }
        .solution-card:nth-child(3) a:hover {
            background: rgba(40, 53, 147, 0.1);
            border-color: rgba(40, 53, 147, 0.8);
        }


        /* How It Works Section */
        .how-it-works-section {
            padding: clamp(3rem, 8vh, 5rem) 5%;
            text-align: center;
            background-color: #ffffff;
        }

        .how-it-works-section h2 {
            color: #0D2A4A;
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .how-it-works-section > p {
            color: #5A6A7B;
            font-size: clamp(1rem, 3vw, 1.3rem);
            margin-bottom: clamp(2rem, 6vh, 4rem);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
            gap: clamp(2rem, 5vw, 3rem);
            margin-top: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .step-number {
            background: linear-gradient(135deg, #0D2A4A, #0056b3);
            color: #fff;
            width: clamp(60px, 12vw, 80px);
            height: clamp(60px, 12vw, 80px);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-weight: bold;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 25px rgba(13, 42, 74, 0.3);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .step:hover .step-number {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 12px 35px rgba(13, 42, 74, 0.4);
        }

        .step h3 {
            color: #0D2A4A;
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            margin-bottom: 1rem;
        }

        .step p {
            color: #5A6A7B;
            line-height: 1.6;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        /* Tafa Academy Section */
        .tafa-academy-section {
            padding: clamp(3rem, 8vh, 5rem) 5%;
            text-align: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .tafa-academy-section h2 {
            color: #0D2A4A;
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            font-weight: 700;
        }

        .tafa-academy-section > p {
            color: #5A6A7B;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-size: clamp(1rem, 3vw, 1.3rem);
            line-height: 1.6;
        }

        .tafa-academy-buttons {
            margin: 3rem 0;
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .why-choose-tafa, .key-features {
            margin-top: clamp(2rem, 6vh, 4rem);
            text-align: left;
        }

        .key-features > p {
            text-align: center;
            color: #5A6A7B;
            font-size: clamp(1rem, 3vw, 1.3rem);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: clamp(1.5rem, 4vw, 2.5rem);
            margin-top: 3rem;
        }

        .feature {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: clamp(1.5rem, 4vw, 2.5rem);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .feature:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .feature-icon {
            font-size: clamp(2rem, 5vw, 2.5rem);
            font-weight: bold;
            color: #0D2A4A;
            margin-bottom: 1rem;
            display: inline-block;
            transition: all 0.4s ease;
        }

        .feature:hover .feature-icon {
            transform: scale(1.2) rotate(-5deg);
        }

        .feature h3 {
            color: #0D2A4A;
            font-size: clamp(1.2rem, 3.5vw, 1.4rem);
            margin-bottom: 1rem;
        }

        .feature ul {
            list-style: none;
            padding-left: 0;
        }

        .feature li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
            color: #5A6A7B;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .feature li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #0056b3;
            font-weight: bold;
        }
        
        /* Contact Section */
        .contact-section {
            padding: clamp(3rem, 8vh, 5rem) 5%;
            background-color: #ffffff;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: clamp(2rem, 5vw, 4rem);
            align-items: flex-start;
        }

        .contact-info h2 {
            color: #0D2A4A;
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .contact-info p {
            color: #5A6A7B;
            line-height: 1.7;
            margin-bottom: 2.5rem;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .info-item .icon {
            font-size: 2rem;
            color: #0056b3;
            margin-top: -5px;
        }

        .info-item h3 {
            margin: 0 0 0.25rem 0;
            color: #0D2A4A;
            font-size: clamp(1.1rem, 3vw, 1.3rem);
        }

        .info-item a, .info-item p {
            margin: 0;
            color: #5A6A7B;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-item a:hover {
            color: #0056b3;
        }

        .contact-form form {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: clamp(1.5rem, 4vw, 2.5rem);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #0D2A4A;
            font-weight: 600;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ced4da;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background-color: #fff;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0056b3;
            box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.2);
        }

        .contact-form .btn-primary {
            width: 100%;
            border: none;
            cursor: pointer;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0D2A4A 0%, #1a365d 100%);
            color: #E9ECEF;
            padding: clamp(3rem, 8vh, 5rem) 5% 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
            gap: clamp(2rem, 5vw, 3rem);
            max-width: 1200px;
            margin: 0 auto;
        }

        footer h3 {
            color: #FFFFFF;
            margin-bottom: 1.5rem;
            font-weight: 600;
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        footer h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 3px;
            background-color: #5CE1E6;
        }

        footer p, footer a {
            color: #ced4da;
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s ease;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        footer a:hover {
            color: #5CE1E6;
            text-decoration: none;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 0.8rem;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #adb5bd;
        }

        /* Enhanced Scroll Animation Classes */
        .scroll-animate {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .scroll-animate.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes ripple {
            from {
                transform: translate(-50%, -50%) scale(0);
                opacity: 1;
            }
            to {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }
        
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        /* Mobile Navigation - Hidden by default */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav ul {
                position: fixed;
                top: 75px; /* Adjust based on header height */
                left: 0;
                width: 100%;
                background-color: rgba(92, 225, 230, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem 5%;
                transform: translateX(-100%);
                transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                box-shadow: 0 4px 20px rgba(0,0,0,0.1);
                gap: 1rem;
            }

            nav ul.active {
                transform: translateX(0);
            }

            nav li {
                width: 100%;
                text-align: center;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(13, 42, 74, 0.1);
            }

            nav a {
                display: block;
                font-size: 1.1rem;
                padding: 1rem 0;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 280px;
            }
            
            .contact-container {
                gap: 2.5rem;
            }
        }

        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .hero-section {
                min-height: 450px;
            }

            .solutions-grid,
            .steps-container,
            .features-grid,
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        
        
            /*
            =================================
            404 Error Page Styles
            =================================
            */
            
            .error-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                min-height: 100vh;
                padding: 2rem;
                font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                color: #343A40;
            }
            
            .error-404-title {
                font-size: clamp(8rem, 25vw, 15rem);
                font-weight: 700;
                margin: 0;
                line-height: 1;
                text-shadow: 4px 4px 10px rgba(0,0,0,0.1);
                
                /* Modern Animated Gradient Text Effect */
                background: linear-gradient(135deg, #0D2A4A, #0056b3, #5CE1E6);
                background-size: 200% 200%;
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                animation: gradient-flow 8s ease-in-out infinite;
            }
            
            .error-container h2 {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
                margin-top: 0;
                margin-bottom: 1rem;
                color: #0D2A4A;
            }
            
            .error-container p {
                color: #5A6A7B;
                max-width: 500px;
                margin-bottom: 2.5rem;
                font-size: clamp(1rem, 3vw, 1.2rem);
            }
            
            
            /* Keyframes for the animated gradient text */
            @keyframes gradient-flow {
                0% { background-position: 0% 50%; }
                50% { background-position: 100% 50%; }
                100% { background-position: 0% 50%; }
            }
            
            /*
            =================================
            WhatsApp Floating Button Styles
            (Amusing & Action-Oriented Version)
            =================================
            */
            
            .whatsapp-float {
                position: fixed;
                width: 60px;
                height: 60px;
                bottom: 30px;
                right: 30px;
                background-color: #25d366;
                color: #FFF;
                border-radius: 50px;
                text-align: center;
                box-shadow: 2px 2px 8px rgba(0,0,0,0.25);
                z-index: 1000;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease-in-out;
                
                /* Animation call */
                animation: pulse-and-shake 2.5s infinite;
            }
            
            .whatsapp-float:hover {
                /* Stop animation on hover for a smoother experience */
                animation: none;
                transform: scale(1.1); /* Slightly larger on hover */
                background-color: #128C7E;
            }
            
            .whatsapp-icon {
                width: 38px;
                height: 38px;
                fill: #ffffff;
            }
            
            /* Tooltip Styles */
            .whatsapp-float .tooltip-text {
                visibility: hidden;
                width: 180px;
                background-color: #075E54;
                color: #fff;
                text-align: center;
                border-radius: 6px;
                padding: 8px;
                position: absolute;
                z-index: 1;
                bottom: 125%; /* Position above the button */
                left: 50%;
                margin-left: -90px; /* Use half of the width to center */
                opacity: 0;
                transition: opacity 0.3s, transform 0.3s;
                font-size: 0.9rem;
                font-weight: 600;
                transform: translateY(10px);
            }
            
            /* Tooltip arrow */
            .whatsapp-float .tooltip-text::after {
                content: "";
                position: absolute;
                top: 100%;
                left: 50%;
                margin-left: -5px;
                border-width: 5px;
                border-style: solid;
                border-color: #075E54 transparent transparent transparent;
            }
            
            /* Show the tooltip on hover */
            .whatsapp-float:hover .tooltip-text {
                visibility: visible;
                opacity: 1;
                transform: translateY(0);
            }
            
            /* Keyframes for the animation */
            @keyframes pulse-and-shake {
                0% { transform: scale(1); }
                50% { transform: scale(1.05); }
                60% { transform: scale(1.05) rotate(5deg); }
                70% { transform: scale(1.05) rotate(-5deg); }
                80% { transform: scale(1.05) rotate(5deg); }
                90% { transform: scale(1.05) rotate(-5deg); }
                100% { transform: scale(1); }
            }
            
            /*
            =================================
            Tafa Academy Section Styles
            =================================
            */
            
            /* Main section styling */
            .tafa-academy-section {
                padding: clamp(4rem, 10vh, 6rem) 5%;
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            }
            
            /* The two-column grid container for the intro */
            .tafa-grid-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: clamp(2rem, 5vw, 4rem);
                align-items: center;
                max-width: 1200px;
                margin: 0 auto;
                text-align: left;
            }
            
            /* Styling for the left (text) column */
            .tafa-content h2 {
                font-size: clamp(2rem, 5vw, 3rem);
                color: #0D2A4A;
                margin-bottom: 1.5rem;
            }
            
            .tafa-content p {
                font-size: clamp(1rem, 2.5vw, 1.2rem);
                color: #5A6A7B;
                line-height: 1.7;
                margin-bottom: 2.5rem;
            }
            
            #tafa-academy-page .tafa-academy-buttons {
                margin: 0;
                justify-content: flex-start;
            }
            
            /* Styling for the right (image) column */
            .tafa-image img {
                width: 100%;
                height: auto;
                border-radius: 20px;
                box-shadow: 0 15px 40px rgba(0,0,0,0.12);
                object-fit: cover;
            }
            
            /* Specific button styles to match the image */
            #tafa-academy-page .btn-primary {
                background: linear-gradient(135deg, #0D2A4A, #0056b3);
            }
            
            #tafa-academy-page .btn-secondary {
                background-color: transparent;
                color: #0056b3;
                border: 2px solid #0056b3;
            }
            
            #tafa-academy-page .btn-secondary:hover {
                background-color: #0056b3;
                color: #ffffff;
                transform: translateY(-5px) scale(1.05);
            }
            
            /* Styles for the sections below the intro grid */
            .why-choose-tafa {
                max-width: 1200px;
                margin: clamp(3rem, 6vh, 4rem) auto 0; /* Add top margin for spacing */
                text-align: center; /* Center the headings for these sections */
            }
            
            
            .key-features {
                max-width: 1200px;
                margin: clamp(3rem, 6vh, 4rem) auto 0; /* Add top margin for spacing */
            }
            
            .why-choose-tafa p {
                max-width: 800px; /* Constrain the paragraph width for readability */
                margin-left: auto;
                margin-right: auto;
                color: #5A6A7B;
            }
            
            /* Responsive adjustments for tablets and mobile */
            @media (max-width: 992px) {
                .tafa-grid-container {
                    grid-template-columns: 1fr;
                    text-align: center;
                }
            
                .tafa-content {
                    order: 2; 
                }
            
                .tafa-image {
                    order: 1;
                }
            
                #tafa-academy-page .tafa-academy-buttons {
                    justify-content: center;
                }
            }
            /* Why Choose Section */
.why-choose-section {
    padding: clamp(3rem, 8vh, 5rem) 5%;
    background-color: #ffffff;
    text-align: center;
}

.why-choose-section h2 {
    color: #0D2A4A;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-choose-section > p {
    color: #5A6A7B;
    margin-bottom: clamp(2rem, 6vh, 4rem);
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0D2A4A, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-icon svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

.why-choose-card h3 {
    color: #0D2A4A;
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-choose-card p {
    color: #5A6A7B;
    line-height: 1.7;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}
/* Enhanced Mission Section */
.mission-section {
    padding: clamp(4rem, 10vh, 6rem) 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(13,42,74,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vh, 5rem);
}

.mission-header h2 {
    color: #0D2A4A;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.mission-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0D2A4A, #0056b3);
    border-radius: 2px;
}

.mission-header p {
    color: #5A6A7B;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.6;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: clamp(3rem, 6vh, 5rem);
}

.mission-card {
    background: #ffffff;
    padding: clamp(1.8rem, 4vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0D2A4A, #0056b3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0D2A4A, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D2A4A, #0056b3);
    opacity: 0.2;
    z-index: -1;
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon::after {
    transform: scale(1.2);
    opacity: 0.3;
}

.mission-icon svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

.mission-card h3 {
    color: #0D2A4A;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p {
    color: #5A6A7B;
    line-height: 1.7;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 0;
}

.mission-commitment {
    background: linear-gradient(135deg, #0D2A4A 0%, #1a365d 100%);
    border-radius: 20px;
    padding: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.mission-commitment::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(92, 225, 230, 0.1) 0%, transparent 70%);
}

.commitment-content h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.commitment-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #5CE1E6;
    border-radius: 2px;
}

.commitment-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.commitment-stats {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #5CE1E6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-stats {
        gap: 2rem;
    }
    
    .stat {
        flex: 1;
        min-width: 100px;
    }
}