
        :root {
            --blue: #1a73e8;
            --blue-dark: #0d47a1;
            --blue-light: #4285f4;
            --blue-bright: #2962ff;
            --blue-gradient: linear-gradient(135deg, var(--blue), var(--blue-dark));
            --blue-gradient-light: linear-gradient(135deg, var(--blue-light), var(--blue));
            --black: #0b0b0b;
            --muted: #6c757d;
            --card: #ffffff;
            --bg: #f7f7f8;
            --glass: rgba(255, 255, 255, 0.06);
        }

        * {
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            color: var(--black);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Enhanced Loading Screen */
        #loading-screen {
            position: fixed;
            inset: 0;
            background:#000000;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity .5s ease-out;
            color: rgb(255, 255, 255);
            font-weight: 700;
        }

        .loader-container {
            text-align: center;
            padding: 30px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            max-width: 300px;
            width: 80%;
        }

        .loader-logo img {
            height: 80px;
            width: auto;
            margin-bottom: 20px;
            border-radius: 6px;
            filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .loader {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 4px solid rgba(255, 255, 255, 0.2);
            border-top-color: white;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .loader-text {
            margin-top: 20px;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        .loader-subtext {
            margin-top: 10px;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* ========== NAVBAR ========== */
        .navbar {
            padding: 16px 0;
            transition: all 0.35s ease;
            background: transparent;
            border-bottom: none;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(10, 20, 40, 0.85));
        }

        .navbar.scrolled {
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(10, 20, 40, 0.95));
            padding: 12px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
        }

        .navbar-top {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 900;
            font-size: 1.35rem;
            color: white;
            text-decoration: none;
        }

        .navbar-brand img {
            height: 46px;
            width: auto;
            border-radius: 6px;
            object-fit: cover;
            filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
        }

        /* Nav links */
        .nav-link {
            color: rgba(255, 255, 255, 0.95) !important;
            font-weight: 600;
            padding: 8px 16px;
            position: relative;
            transition: all 0.25s ease;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 16px;
            bottom: 0;
            height: 3px;
            width: 0;
            background: var(--blue);
            transition: width 0.28s ease;
            border-radius: 3px;
        }

        .nav-link:hover {
            color: var(--blue-light) !important;
        }

        .nav-link:hover::after {
            width: calc(100% - 32px);
        }

        .nav-login {
            background: var(--blue-gradient);
            color: white;
            border-radius: 999px;
            padding: 10px 22px;
            font-weight: 700;
            border: none;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(26, 115, 232, 0.25);
            transition: transform 0.18s ease, background 0.3s ease;
        }

        .nav-login:hover {
            transform: translateY(-3px);
            background: var(--blue-gradient-light);
            color: white;
        }

        /* ========== HERO SECTION ========== */
        .hero-section {
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            position: relative;
            background: 
                linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)),
                url('./img/Hero\ Image.png') center/cover no-repeat;
            color: white;
            padding-top: 70px;
            overflow: hidden;
        }

        .hero-wrap {
            z-index: 3;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-highlight {
            color: var(--blue-light);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-sub {
            max-width: 720px;
            color: rgba(255, 255, 255, 0.92);
            font-size: 1.15rem;
            margin-bottom: 30px;
        }

        .hero-cta .btn {
            border-radius: 999px;
            padding: 14px 30px;
            font-weight: 700;
            font-size: 1.05rem;
        }

        .btn-outline-light.custom {
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: white;
            background: transparent;
        }

        /* ========== HERO FEATURE BOX ========== */
        .hero-feature-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 28px;
            backdrop-filter: blur(8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
            max-width: 480px;
            margin-left: auto;
        }

        .hero-feature-header {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .hero-feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            background: var(--blue-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .hero-feature-title {
            font-weight: 800;
            font-size: 1.3rem;
        }

        .hero-feature-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        .hero-feature-description {
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 18px;
            font-size: 1rem;
        }

        .hero-feature-buttons {
            display: flex;
            gap: 12px;
        }

        .hero-mission-btn {
            background: white;
            color: var(--blue);
            font-weight: 700;
        }

        /* ========== FLOATING ICONS ========== */
        .medical-icons {
            position: absolute;
            font-size: 1.75rem;
            color: rgba(255, 255, 255, 0.85);
            opacity: 0.9;
            z-index: 1;
        }

        .medical-icons.i1 {
            top: 20%;
            left: 6%;
        }

        .medical-icons.i2 {
            top: 20%;
            right: 8%;
        }

        .medical-icons.i3 {
            bottom: 16%;
            left: 10%;
        }

        .medical-icons.i4 {
            bottom: 26%;
            right: 14%;
        }

        @keyframes floaty {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-18px);
            }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding-top: 100px;
                height: auto;
                min-height: 100vh;
            }
            .hero-feature-box {
                margin-top: 3rem;
                margin-left: 0;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-sub {
                font-size: 1rem;
            }
            .hero-cta .btn {
                padding: 12px 24px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.9rem;
            }
            .hero-feature-box {
                padding: 20px;
            }
        }

        /* sections */
        .section {
            padding: 90px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .section-sub {
            color: var(--muted);
            margin: auto;
            max-width: 720px;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .bg-light-section {
            background: linear-gradient(180deg, #fff, #fafafa);
        }

        /* Solutions & cards with fixed heights */
        .solution-card {
            background: white;
            border-radius: 14px;
            padding: 32px;
            box-shadow: 0 14px 40px rgba(5, 5, 5, 0.06);
            transition: all .3s;
            height: 100%;
            min-height: 300px;
            display: flex;
            flex-direction: column;
        }

        .solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 22px 50px rgba(5, 5, 5, 0.10);
        }

        .solution-icon {
            font-size: 2.5rem;
            color: var(--blue);
            margin-bottom: 16px;
        }

        /* Partnership cards */
        .partnership-card {
            background: linear-gradient(180deg, #fff, #fff);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .partnership-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .partnership-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            display: inline-block;
            padding: 15px;
            border-radius: 12px;
            background: rgba(26, 115, 232, 0.08);
            color: var(--blue);
        }

        .partnership-title {
            font-weight: 800;
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
        }

        /* NEWS cards with fixed heights */
        .news-section {
            background: linear-gradient(180deg, #070707, #0b0b0b);
            color: white;
            padding-top: 80px;
            padding-bottom: 80px;
        }

        .news-section-title {
            color: white;
        }

        .news-section-sub {
            color: rgba(255, 255, 255, 0.75);
        }

        .news-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            transition: transform .35s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-8px);
        }

        .news-image {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }

        .news-content {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .news-title {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--black);
            margin-bottom: 12px;
        }

        .news-excerpt {
            color: var(--muted);
            font-size: 1rem;
            margin-bottom: 16px;
            flex-grow: 1;
        }

        .news-meta {
            font-size: .9rem;
            color: #222;
            opacity: .75;
            margin-bottom: 12px;
        }

        .news-details {
            background: linear-gradient(90deg, rgba(26, 115, 232, 0.06), rgba(0, 0, 0, 0.02));
            padding: 14px;
            border-radius: 8px;
            margin-top: auto;
        }

        /* Testimonials with fixed heights */
        .testimonial-card {
            border-radius: 12px;
            padding: 32px;
            background: white;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
            height: 100%;
            min-height: 240px;
            display: flex;
            flex-direction: column;
        }

        .testimonial-text {
            flex-grow: 1;
            font-style: italic;
            font-size: 1.05rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 16px;
        }

        .avatar-initial {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--blue-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
            border: 2px solid var(--blue-light);
        }

        .author-name {
            font-weight: 800;
            font-size: 1.1rem;
        }

        /* NEW PROFESSIONAL CONTACT DESIGN */
        .contact-section {
            background: linear-gradient(135deg, #f8fbff 0%, #e8f0ff 100%);
            border-radius: 0;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.08) 0%, rgba(66, 133, 244, 0.03) 100%);
            z-index: 0;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            bottom: -15%;
            left: -8%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.06) 0%, rgba(66, 133, 244, 0.02) 100%);
            z-index: 0;
        }

        .contact-container {
            position: relative;
            z-index: 1;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .contact-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: var(--blue-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .contact-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--blue);
            border-radius: 3px;
        }

        .contact-subtitle {
            color: var(--muted);
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 25px;
            align-items: start;
        }

        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }

        /* Contact Info Cards */
        .contact-info-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .contact-info-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid var(--blue);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .contact-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .contact-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: var(--blue-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
        }

        .contact-card-title {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 4px;
            color: var(--black);
        }

        .contact-card-subtitle {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .contact-card-content {
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.6;
            flex-grow: 1;
            font-weight: 600;
        }

        /* Contact Form */
        .contact-form-container {
            background: white;
            border-radius: 20px;
            padding: 45px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .form-header {
            margin-bottom: 35px;
            text-align: center;
        }

        .form-title {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--black);
        }

        .form-subtitle {
            color: var(--muted);
            font-size: 1.05rem;
        }

        .contact-form .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--black);
            font-size: 0.95rem;
        }

        .contact-form .form-control {
            padding: 16px 20px;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafafa;
            width: 100%;
        }

        .contact-form .form-control:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
            background: white;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        @media (max-width: 576px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* CAPTCHA Styles */
        .captcha-section {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            margin: 25px 0;
            border: 1px solid #e9ecef;
        }

        .captcha-label {
            font-weight: 600;
            margin-bottom: 12px;
            display: block;
            color: var(--black);
        }

        .captcha-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .captcha-code {
            font-family: 'Courier New', monospace;
            font-size:2rem;
            font-weight: bold;
            letter-spacing: 3px;
            /* padding: 12px 16px; */
            background: white;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            user-select: none;
            min-width: 160px;
            text-align: center;
            background: linear-gradient(45deg, #f8f9fa, #e9ecef);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .captcha-refresh {
            background: white;
            border: 1px solid #e0e0e0;
            color: var(--blue);
            width: 50px;
            height: 50px;
            border-radius: 8px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .captcha-refresh:hover {
            background: var(--blue);
            color: white;
            transform: rotate(90deg);
        }

        .captcha-input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .captcha-input:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.1);
        }

        /* Submit Button */
        .submit-btn {
            background: var(--blue-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 16px 32px;
            font-weight: 700;
            font-size: 1.1rem;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(26, 115, 232, 0.4);
            background: var(--blue-gradient-light);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Success Message */
        .success-message {
            display: none;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            margin-top: 20px;
            animation: fadeIn 0.5s ease;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .success-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        /* Footer */
        .footer {
            position: relative;
            padding: 70px 0 30px;
            color: white;
            background: linear-gradient(90deg, #0b0b0b, #001433);
            overflow: hidden;
        }

        .footer-top {
            background: linear-gradient(90deg, rgba(26, 115, 232, 0.12), rgba(26, 115, 232, 0.02));
            padding: 32px;
            border-radius: 12px;
            margin-bottom: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .footer .footer-title {
            font-weight: 800;
            margin-bottom: 16px;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 1rem;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            transition: all .2s;
            text-decoration: none;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            transform: translateY(-4px);
            background: var(--blue-gradient);
            box-shadow: 0 8px 26px rgba(26, 115, 232, 0.18);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 20px;
            margin-top: 24px;
            text-align: center;
            color: rgba(255, 255, 255, 0.65);
            font-size: 1rem;
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 56px;
            height: 56px;
            border-radius: 999px;
            background: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 12px 30px rgba(26, 115, 232, 0.22);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all .25s;
            font-size: 1.2rem;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-6px);
            background: var(--blue-dark);
        }

        /* Premium About/Mission section */
        .about-section {
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.05), rgba(255, 255, 255, 1));
            padding: 100px 0;
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--blue), transparent);
        }

        .about-card {
            background: white;
            border-radius: 16px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: var(--blue-gradient);
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
        }

        .mission-icon {
            font-size: 3.5rem;
            color: var(--blue);
            margin-bottom: 24px;
            display: inline-block;
            padding: 18px;
            background: rgba(26, 115, 232, 0.08);
            border-radius: 50%;
        }

        .mission-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 24px;
            position: relative;
            display: inline-block;
        }

        .mission-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--blue);
            border-radius: 3px;
        }

        .mission-text {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .values-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }

        .value-item {
            text-align: center;
            padding: 24px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            flex: 1;
            max-width: 220px;
        }

        .value-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            font-size: 2.2rem;
            color: var(--blue);
            margin-bottom: 12px;
        }

        .value-title {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        /* About icon link */
        .about-icon-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--blue-gradient);
            color: white;
            font-size: 26px;
            text-decoration: none;
            margin: 24px auto;
            box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
            transition: all 0.3s ease;
        }

        .about-icon-link:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 25px rgba(26, 115, 232, 0.4);
            color: white;
        }

        /* Footer logo */
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            font-weight: 900;
            font-size: 1.6rem;
        }

        .footer-logo img {
            height: 50px;
            width: auto;
            border-radius: 6px;
            object-fit: cover;
            filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
        }

        /* Utilities & responsiveness */
        .muted {
            color: var(--muted);
        }

        @media (max-width: 1200px) {
            .contact-title {
                font-size: 2.7rem;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-sub {
                font-size: .95rem;
            }
            .navbar {
                padding: 12px 0;
            }
            .values-container {
                flex-direction: column;
                align-items: center;
            }
            .contact-info, .contact-form-wrapper {
                min-width: 100%;
            }
            .contact-info {
                padding: 30px;
            }
            .contact-form-wrapper {
                padding: 30px;
            }
            .contact-section {
                padding: 80px 0;
            }
            
            .contact-title {
                font-size: 2.4rem;
            }
            
            .contact-subtitle {
                font-size: 1.15rem;
            }
            
            .contact-form-container {
                padding: 35px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 70px 0;
            }
            .section-title {
                font-size: 2rem;
            }
            .section-sub {
                font-size: 1rem;
            }
            .about-card {
                padding: 30px;
            }
            .footer-top {
                padding: 24px;
            }
            .contact-section {
                padding: 70px 0;
            }
            
            .contact-title {
                font-size: 2.2rem;
            }
            
            .contact-header {
                margin-bottom: 50px;
            }
            
            .contact-form-container {
                padding: 30px 25px;
            }
            
            .contact-info-card {
                padding: 25px;
            }
            
            .captcha-container {
                flex-direction: column;
                align-items: stretch;
            }
            
            .captcha-code {
                min-width: auto;
                order: 1;
            }
            
            .captcha-refresh {
                order: 2;
                width: 100%;
                margin-top: 10px;
            }
            
            .captcha-input {
                order: 3;
                margin-top: 10px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            .nav-link {
                font-size: .95rem;
            }
            .navbar-brand {
                font-size: 1.05rem;
            }
            .about-card {
                padding: 24px;
            }
            .footer-links a {
                font-size: 0.9rem;
            }
            .contact-title {
                font-size: 1.9rem;
            }
            
            .contact-form-container {
                padding: 25px 20px;
            }
            
            .form-title {
                font-size: 1.7rem;
            }
        }




















        
