 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #0B6DAA;
            --secondary-color: #3282B8;
            --accent-color: #00A8E8;
            --dark-color: #1A202C;
            --light-color: #F7FAFC;
            --white: #FFFFFF;
            --gray-100: #F7FAFC;
            --gray-200: #EDF2F7;
            --gray-300: #E2E8F0;
            --gray-400: #CBD5E0;
            --gray-500: #A0AEC0;
            --gray-600: #718096;
            --gray-700: #4A5568;
            --gray-800: #2D3748;
            --gray-900: #1A202C;
            --success-color: #48BB78;
            --warning-color: #ED8936;
            --error-color: #F56565;
            --border-radius: 8px;
            --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--gray-700);
            background-color: var(--white);
        } 

        .banner {
            width: 100%;
            max-width: 1920px;
            height: 200px;
            background: linear-gradient(135deg, #0f4c75 0%, #3282b8 50%, #0f4c75 100%);
            position: relative;
            overflow: hidden;
            margin: 0 auto;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .content { 
            z-index: 2;
            height: 100%;
            display: flex; text-align:center;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
        }
        .left-section {  text-align:center;
            display: flex;  vertical-align:middle; color:#fff;  
            gap: 20px;
        }
        .circuit-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: radial-gradient(circle at 20% 30%, #ffffff 2px, transparent 2px), radial-gradient(circle at 80% 70%, #ffffff 2px, transparent 2px), radial-gradient(circle at 40% 80%, #ffffff 2px, transparent 2px), radial-gradient(circle at 60% 20%, #ffffff 2px, transparent 2px);
            background-size: 200px 200px, 300px 300px, 250px 250px, 180px 180px;
        }

        .circuit-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.15;
        }

            .circuit-lines::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 0;
                width: 100%;
                height: 1px;
                background: linear-gradient(90deg, transparent 0%, #ffffff 20%, #ffffff 80%, transparent 100%);
            }

            .circuit-lines::after {
                content: '';
                position: absolute;
                top: 30%;
                left: 0;
                width: 100%;
                height: 1px;
                background: linear-gradient(90deg, transparent 0%, #ffffff 10%, transparent 30%, #ffffff 70%, transparent 100%);
            }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        .top-bar {
            background: var(--gray-800);
            color: var(--white);
            padding: 8px 0;
            font-size: 14px;
        }

            .top-bar .container {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

        .contact-info {
            display: flex;
            gap: 30px;
        }

            .contact-info a {
                color: var(--white);
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: 8px;
                transition: var(--transition);
            }

                .contact-info a:hover {
                    color: var(--accent-color);
                }

        .main-header {
            background: var(--white);
            box-shadow: var(--box-shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

            .logo i {
                font-size: 32px;
                color: var(--secondary-color);
            }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

            .nav-menu a {
                color: var(--gray-700);
                text-decoration: none;
                font-weight: 500;
                padding: 8px 16px;
                border-radius: var(--border-radius);
                transition: var(--transition);
                position: relative;
            }

                .nav-menu a:hover,
                .nav-menu a.active {
                    color: var(--primary-color);
                    background: var(--gray-100);
                }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            box-shadow: var(--box-shadow);
            border-radius: var(--border-radius);
            min-width: 250px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: var(--transition);
            z-index: 100;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            color: var(--gray-700);
            border-radius: 0;
        }

            .dropdown-menu a:hover {
                background: var(--gray-100);
                color: var(--primary-color);
            }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-color);
            cursor: pointer;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--gray-100);
            padding: 15px 0;
            border-bottom: 1px solid var(--gray-200);
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

            .breadcrumb-nav a {
                color: var(--gray-600);
                text-decoration: none;
                transition: var(--transition);
            }

                .breadcrumb-nav a:hover {
                    color: var(--primary-color);
                }

            .breadcrumb-nav span {
                color: var(--gray-500);
            }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

            .hero::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
                animation: float 20s ease-in-out infinite;
            }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content */
        .about-content {
            padding: 80px 0px 20px 0px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            margin-bottom: 80px;
        }

        .content-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

            .content-text h2 {
                font-family: 'Poppins', sans-serif;
                font-size: 2.5rem;
                color: var(--primary-color);
                margin-bottom: 30px;
                font-weight: 600;
            }

            .content-text p {
                margin-bottom: 25px;
                text-align: justify;
            }

        .content-image {
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--gray-100);
            border-radius: var(--border-radius);
            padding: 60px;
            box-shadow: var(--box-shadow);
        }

            .content-image i {
                font-size: 150px;
                color: var(--secondary-color);
                opacity: 0.8;
            }

        /* Leadership Section */
        .leadership-section {
            background: var(--gray-100);
            padding: 80px 0;
        }

        .leadership-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--box-shadow);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .leader-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 60px;
            color: var(--white);
        }

        .leader-info h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .leader-title {
            color: var(--gray-600);
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .leader-bio {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
            color: var(--gray-700);
        }

            .leader-bio p {
                margin-bottom: 20px;
            }

        /* Vision Mission Section */
        .vision-mission {
            padding: 80px 0;
        }

        .vm-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .vm-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--box-shadow);
            text-align: center;
            border-top: 4px solid var(--primary-color);
        }

        .vm-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: var(--white);
        }

        .vm-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .vm-card p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--gray-700);
        }

        /* Core Values Section */
        .core-values {
            background: var(--gray-100);
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }

            .section-header h2 {
                font-family: 'Poppins', sans-serif;
                font-size: 2.5rem;
                color: var(--dark-color);
                margin-bottom: 15px;
            }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .value-item {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

            .value-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .value-item h4 {
                font-size: 1.25rem;
                color: var(--primary-color);
                margin-bottom: 15px;
                font-weight: 600;
            }

            .value-item p {
                color: var(--gray-700);
                line-height: 1.7;
            }

        /* Footer */
        .footer {
            background: var(--gray-800);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.25rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-section p,
        .footer-section a {
            color: var(--gray-400);
            text-decoration: none;
            line-height: 1.8;
        }

            .footer-section a:hover {
                color: var(--accent-color);
            }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-700);
            padding-top: 20px;
            text-align: center;
            color: var(--gray-500);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }

            .contact-info {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .content-text h2 {
                font-size: 2rem;
            }

            .vm-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 60px 0;
            }

                .hero h1 {
                    font-size: 2rem;
                }

            .about-content,
            .leadership-section,
            .vision-mission,
            .core-values {
                padding: 60px 0;
            }

            .content-text h2 {
                font-size: 1.75rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

            .fade-in.visible {
                opacity: 1;
                transform: translateY(0);
            }

        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-color);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }

            .scroll-to-top.visible {
                opacity: 1;
                visibility: visible;
            }

            .scroll-to-top:hover {
                background: var(--secondary-color);
                transform: translateY(-2px);
            }
        @media (max-width: 1200px) {
            .content {
                padding: 0 30px;
            }

            .stats {
                gap: 20px;
            }

            .right-section {
                gap: 20px;
            }
        }
         .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    max-width: 100%;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1e90ff;
    box-shadow: 0 0 5px rgba(30, 144, 255, 0.3);
    outline: none;
}

.contact-form .btn {
    padding: 0.8rem 1.5rem;
    background-color: #1e90ff;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #187bcd;
}

