
        :root {
            --primary-color: #1a365d;
            --secondary-color: #2563eb;
            --accent-color: #f59e0b;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
            --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none !important;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        /* Top Bar */
        .top-bar {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 8px 0;
            font-size: 13px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-bar-left span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .top-bar-right a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .top-bar-right a:hover {
            color: var(--accent-color);
            opacity: 0.9;
        }

        .top-bar-right .social-icons {
            display: flex;
            gap: 10px;
        }

        .top-bar-right .social-icons a {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .top-bar-right .social-icons a:hover {
            background: var(--accent-color);
            color: var(--white);
        }

        /* Header */
        .main-header {
            background: var(--white);
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-section .logo-img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
        }

        .logo-text h1 {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 2px;
            font-family: 'Playfair Display', serif;
            border-bottom: 2px solid var(--accent-color);
            text-transform: uppercase;
        }

        .logo-text p {
            font-size: 12px;
            color: var(--secondary-color);
            font-weight: 500;
            letter-spacing: 1px;

        }

        .logo-text .p2 {
            font-size: 12px;
            color: var(--secondary-color);
            font-weight: 500;
            letter-spacing: 1px;

        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
        }

        .contact-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark-text);
            font-family: 'Poppins', sans-serif;
            margin: 0;
        }

        .contact-info p {
            font-size: 12px;
            color: #64748b;
            margin: 0;
        }

        .btn-apply {
            background: var(--gradient-accent);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            border: none;
            cursor: pointer;
            font-size: 14px;
            display: inline-block;
        }

        .btn-apply:hover {
            background: linear-gradient(135deg, #f59e0b 0%, #f59e0b 100%);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            color: var(--white);
            text-decoration: none;
        }

        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            color: var(--white);
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        /* Footer */
        .main-footer {
            background: #0f172a;
            color: #94a3b8;
            padding-top: 70px;
        }

        .footer-section {
            padding-bottom: 40px;
        }

        .footer-about h3 {
            color: var(--white);
            font-size: 22px;
            margin-bottom: 20px;
        }

        .footer-about p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 18px;
            margin-bottom: 25px;
            font-family: 'Poppins', sans-serif;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
            font-size: 14px;
        }

        .footer-links ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
            text-decoration: none;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            flex-shrink: 0;
        }

        .footer-contact-text h5 {
            color: var(--white);
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 4px;
        }

        .footer-contact-text p {
            font-size: 14px;
            margin: 0;
        }

        .footer-bottom {
            background: #020617;
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 14px;
        }

        .footer-bottom a {
            color: var(--accent-color);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            text-decoration: none;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            margin: auto;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            color: var(--white);
            text-decoration: none;
        }

        /* Modal Styles */
        .modal-content {
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }

        .modal-header {
            background: var(--gradient-primary);
            color: white;
            padding: 20px 30px;
            border: none;
        }

        .modal-header .close {
            color: white;
            opacity: 1;
            font-size: 28px;
        }

        .modal-header .close:hover {
            opacity: 0.8;
        }

        .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
        }

        .modal-body {
            padding: 30px;
        }

        .modal-footer {
            background: var(--light-bg);
            border: none;
            padding: 20px 30px;
        }

        .form-label {
            font-weight: 500;
            color: var(--dark-text);
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-control {
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            padding: 4px;
            font-size: 14px;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
            outline: none;
        }

        .text-danger {
            color: #dc2626;
        }

        .alert {
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .alert-success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }

        .card {
            border: none;
            box-shadow: var(--shadow-md);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .card-header {
            background: var(--light-bg);
            padding: 15px 20px;
            border: none;
        }

        .card-header h4 {
            margin: 0;
            font-size: 18px;
            color: var(--primary-color);
            font-family: 'Poppins', sans-serif;
        }

        .card-body {
            padding: 20px;
        }

        .form-check {
            padding: 15px;
            background: var(--light-bg);
            border-radius: 8px;
        }

        .btn-lg {
            padding: 15px;
            font-size: 16px;
            width: 100%;
        }

        .btn-secondary {
            background: #64748b;
            border: none;
            border-radius: 8px;
            padding: 10px 25px;
            color: white;
        }

        .btn-secondary:hover {
            background: #475569;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }

            .header-actions {
                margin: auto;
            }

            .top-bar-left,
            .top-bar-right {
                flex-wrap: wrap;
                justify-content: center;
            }

            .header-container {
                flex-wrap: wrap;
                gap: 15px;
            }

            .header-contact {
                display: none;
            }

            .mobile-toggle {
                display: block;
                margin: 10px;
                padding: 5px 12px;
            }



            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: rgba(0, 0, 0, 0.2);
                box-shadow: none;
                border-radius: 0;
                display: none;
                width: 100%;
                padding: 0;
            }

            .dropdown-menu.show {
                display: block;
            }

            .dropdown-menu li a {
                color: var(--white);
                padding-left: 40px;
            }

            .dropdown-menu li a:hover {
                background: rgba(255, 255, 255, 0.1);
                color: var(--white);
            }
        }

        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 18px;
            }

            .btn-apply {
                padding: 10px 20px;
                font-size: 12px;
            }

            .modal-body {
                padding: 20px;
            }

            .card-header h4 {
                font-size: 16px;
            }
        }

        /* Animation Classes */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }


        .main-container1 {
            width: 80%;
            margin: auto;
        }



        .programs-section .member {
            text-align: center;
            margin-bottom: 80px;
            position: relative
        }

        .programs-section .member .pic {
            border-radius: 4px;
            overflow: hidden
        }

        .programs-section .member img {
            transition: all ease-in-out .4s
        }

        .programs-section .member:hover img {
            transform: scale(1.1)
        }

        .programs-section .member .member-info {
            position: absolute;
            bottom: -48px;
            left: 20px;
            right: 20px;
            background: linear-gradient(360deg, #5c768d 0%, rgba(92, 118, 141, 0.9) 35%, rgba(140, 167, 191, 0.8) 100%);
            padding: 15px 0;
            border-radius: 4px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            -ms-border-radius: 4px;
            -o-border-radius: 4px;
        }

        .programs-section .member h4 {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 14px;
            color: #fff;
            position: relative;
            padding-bottom: 10px
        }

        .programs-section .member h4::after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 1px;
            background: #fff;
            bottom: 0;
            left: calc(50% - 25px)
        }

        .programs-section .member span {
            font-style: italic;
            display: block;
            font-size: 13px;
            color: #fff
        }

        .programs-section .member .social {
            margin-top: 15px
        }

        .programs-section .member .social a {
            transition: color .3s;
            color: #fff
        }

        .programs-section .member .social a:hover {
            color: #9eccf4
        }

        .programs-section .member .social i {
            font-size: 16px;
            margin: 0 2px
        }

        @media(max-width: 992px) {
            .programs-section .member {
                margin-bottom: 100px
            }
        }



        .services {

            text-align: center;

            background: linear-gradient(360deg, #5c768d 0%, rgba(92, 118, 141, 0.9) 35%, rgba(140, 167, 191, 0.8) 100%);
            padding: 15px 0;
            border-radius: 4px;
        }

        .services .icon-box {
            margin-bottom: 20px;
            text-align: center;
        }

        .services .icon {
            display: flex;
            justify-content: center;
        }

        .services .icon i {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            background: #fff;
            border-radius: 50%;
            transition: .5s;
            color: #333e48;
            font-size: 40px;
            overflow: hidden;
            padding-top: 20px;
            box-shadow: 0 0 25px rgba(0, 0, 0, .15);
        }

        .services .icon-box:hover .icon i {
            box-shadow: 0 0 30px rgba(66, 139, 202, .5);
        }

        .services .title {
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 18px;
            position: relative;
            padding-bottom: 15px;
        }

        .services .title a {
            color: #444;
            transition: .3s;
            -webkit-transition: .3s;
            -moz-transition: .3s;
            -ms-transition: .3s;
            -o-transition: .3s;
        }

        .services .title a:hover {
            color: #428bca;
        }

        .services .title::after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 2px;
            background: #428bca;
            bottom: 0;
            left: calc(50% - 25px);
        }

        .services .description {
            line-height: 24px;
            font-size: 14px;
        }


        /* Modern Hover Dropdown Navbar */
        .main-nav {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-menu>li {
            position: relative;
        }

        .nav-menu>li>a {
            color: #fff;
            padding: 15px 18px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
            display: block;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 0.3px;
        }

        .nav-menu>li>a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffd700;
        }

        .nav-menu>li>a .fas {
            font-size: 11px;
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .nav-menu>li:hover>a .fas {
            transform: rotate(180deg);
        }

        /* Navbar Actions (Search + Apply) */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .nav-search-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .nav-search-btn:hover {
            background: #ffd700;
            color: #1e3a5f;
        }

        .nav-apply-btn {
            background: #ffd700;
            color: #1e3a5f;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .nav-apply-btn:hover {
            background: #ffed4a;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            color: #1e3a5f;
        }

        /* Dropdown Menu */
        .nav-menu .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            padding: 10px 0;
            display: none;
            list-style: none;
            margin: 0;
            transition: all 0.3s ease;
        }

        /* Fix hover dropdown */
        .nav-menu .dropdown:hover>.dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-menu .dropdown-menu li {
            position: relative;
        }

        .nav-menu .dropdown-menu li a {
            color: #333;
            padding: 12px 25px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            border-left: 3px solid transparent;
        }

        .nav-menu .dropdown-menu li a:hover {
            background: linear-gradient(90deg, #1e3a5f 0%, #2d5a87 100%);
            color: #fff;
            padding-left: 30px;
            border-left-color: #ffd700;
        }

        /* Dropdown Arrow Indicator */
        .nav-menu>li>a.dropdown-toggle::after {
            display: inline-block;
            margin-left: 6px;
            vertical-align: middle;
            content: "\f107";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            border: none;
            font-size: 11px;
            transition: transform 0.3s ease;
        }

        .nav-menu>li:hover>a.dropdown-toggle::after {
            transform: rotate(180deg);
        }

        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            background: #ffd700;
            border: none;
            color: #1e3a5f;
            padding: 12px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
        }



        /* Responsive */
        @media (max-width: 991px) {
            .mobile-toggle {
                display: block;
                margin: 10px;
                padding: 5px 12px;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1e3a5f;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu>li {
                width: 100%;
            }

            .nav-menu>li>a {
                padding: 12px 15px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: rgba(255, 255, 255, 0.1);
                box-shadow: none;
                border-radius: 0;
                margin-left: 20px;
                margin-top: 5px;
                display: none;
            }

            .nav-menu .dropdown-menu li a {
                color: #fff;
                padding: 10px 15px;
            }

            .nav-menu .dropdown-menu li a:hover {
                background: rgba(255, 255, 255, 0.2);
                padding-left: 25px;
                border-left-color: #ffd700;
            }

            .nav-menu .dropdown-menu.active {
                display: block;
            }

            .nav-actions {
                display: none;
            }
        }
