  <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.5;
        }

        /* modern container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            
        }

        /* hero section with bg */
        .hero-section {
            background:#0b3d91;
            padding: 48px 0 56px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 1200" opacity="0.05"><path fill="white" d="M0,0 L1200,0 L1200,1200 L0,1200 Z M600,200 L800,600 L600,1000 L400,600 Z"/></svg>');
            background-repeat: repeat;
            background-size: 40px;
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            border-radius: 40px;
            padding: 6px 18px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #ffecb3;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .hero-section h1 {
            font-size: 2.7rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero-section p {
            font-size: 1.1rem;
            color: #e2e8f0;
            max-width: 700px;
            margin: 0 auto 28px;
        }
        .btn-group-hero {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary-custom {
            background: #f59e0b;
            color: #0f172a;
            border: none;
            padding: 12px 28px;
            font-weight: 700;
            border-radius: 40px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary-custom:hover {
            background: #fbbf24;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            color: #0f172a;
        }
        .btn-outline-light {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 12px 28px;
            font-weight: 700;
            border-radius: 40px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s;
        }
        .btn-outline-light:hover {
            background: white;
            color: #0b2b44;
        }

        /* stats bar */
        .stats-bar {
            background: white;
            border-radius: 30px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            padding: 20px 30px;
            margin-top: -30px;
            position: relative;
            z-index: 5;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        .stat-item {
            flex: 1;
            text-align: center;
            border-right: 1px solid #e2e8f0;
        }
        .stat-item:last-child {
            border-right: none;
        }
        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0f3b5c;
        }
        .stat-label {
            font-size: 0.85rem;
            color: #475569;
            font-weight: 500;
        }

        /* main content grid */
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 0.38fr;
            gap: 48px;
            margin: 60px 0;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        /* left content cards */
        .card-modern {
            background: white;
            border-radius: 28px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
            padding: 28px 32px;
            margin-bottom: 32px;
            border: 1px solid #eef2f6;
            transition: all 0.2s;
        }
        .card-modern h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: #0f3b5c;
            margin-bottom: 20px;
            border-left: 5px solid #f59e0b;
            padding-left: 18px;
        }
        .card-modern h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e293b;
            margin: 20px 0 12px 0;
        }
        .job-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 20px 0;
        }
        .job-tag {
            background: #eef2ff;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #1e40af;
        }
        .btn-prospectus {
            background: #1e293b;
            border: none;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            color: white;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 6px 6px 6px 0;
        }
        .btn-prospectus:hover {
            background: #f59e0b;
            color: #0f172a;
        }
        .grid-o {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
        }
        .contact-card {
            background: #f1f5f9;
            border-radius: 24px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }
        .note-box {
            background: #fff9e6;
            border-left: 6px solid #f59e0b;
            padding: 16px 20px;
            border-radius: 20px;
            margin: 20px 0;
        }
        .grid-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }

        /* right sidebar */
        .sidebar-card {
            background: white;
            border-radius: 28px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.05);
            padding: 28px 24px;
            margin-bottom: 32px;
            border: 1px solid #eef2f6;
        }
        .sidebar-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0f3b5c;
            margin-bottom: 16px;
            border-bottom: 3px solid #f59e0b;
            display: inline-block;
        }
        .eligibility-text {
            background: #f8fafc;
            padding: 16px;
            border-radius: 20px;
            margin-top: 15px;
        }
        .video-wrapper {
            border-radius: 24px;
            overflow: hidden;
            margin: 20px 0;
        }
        iframe {
            width: 100%;
            border-radius: 20px;
        }
        .award-img {
            border-radius: 20px;
            margin: 15px 0;
            width: 100%;
            object-fit: cover;
        }

        /* gallery modern */
        .gallery-modern {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin: 30px 0 10px;
        }
        .gallery-modern img {
            width: calc(50% - 10px);
            border-radius: 24px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 6px 14px rgba(0,0,0,0.1);
        }
        .gallery-modern img:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        @media (max-width: 600px) {
            .gallery-modern img {
                width: 100%;
            }
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }
        .modal-content {
            position: relative;
            max-width: 85%;
            max-height: 85%;
        }
        .modal img {
            width: 100%;
            height: auto;
            border-radius: 20px;
        }
        .close-modal {
            position: absolute;
            top: -30px;
            right: -30px;
            font-size: 32px;
            color: white;
            cursor: pointer;
            background: rgba(0,0,0,0.6);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* scholarship highlight */
        .scholarship-badge {
            background: linear-gradient(120deg, #fef3c7, #fde68a);
            border-radius: 20px;
            padding: 15px;
            text-align: center;
            font-weight: 700;
        }

        /* floating action for mobile */
        .floating-apply {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #f59e0b;
            color: #0f172a;
            border-radius: 60px;
            padding: 12px 24px;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 100;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }
        @media (min-width: 769px) {
            .floating-apply {
                display: none;
            }
        }
        hr {
            margin: 20px 0;
            border-color: #e2e8f0;
        }
        .footer-removed {
            /* no footer / nav bars */
        }
        .btn-online {
            background-color: #244668;
            color: white;
            border: none;
            border-radius: 40px;
            padding: 12px 24px;
            font-weight: 600;
            margin: 12px 0;
        }
    </style>
