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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        .top-bar {
            background: #1a237e;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            flex-wrap: wrap;
        }

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

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

        .top-bar a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .top-bar a:hover {
            opacity: 0.8;
        }

        /* Scrolling Banner */
        .scrolling-banner {
            background: #ff6f00;
            color: white;
            padding: 12px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .banner-content {
            display: inline-block;
            animation: scroll 30s linear infinite;
            font-weight: 600;
            font-size: 15px;
        }

        .banner-content span {
            margin-right: 50px;
            display: inline-block;
        }

        @keyframes scroll {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        .banner-content:hover {
            animation-play-state: paused;
        }

        /* Navigation */
        .navbar {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #1a237e;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            flex-wrap: wrap;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: #1a237e;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #1a237e;
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-primary {
            background: #1a237e;
            color: white;
        }

        .btn-primary:hover {
            background: #283593;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #ff6f00;
            color: white;
        }

        .btn-secondary:hover {
            background: #ff8f00;
            transform: translateY(-2px);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s;
        }

        /* Hero Carousel */
        .hero-carousel {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.75), rgba(40, 53, 147, 0.75));
            z-index: 1;
        }

        .carousel-slide.active {
            opacity: 1;
            z-index: 1;
        }

        /* Slide 1 - You can replace with your image URL */
        .carousel-slide.slide1 {
            background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1200&h=500&fit=crop');
        }

        /* Slide 2 - You can replace with your image URL */
        .carousel-slide.slide2 {
            background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1200&h=500&fit=crop');
        }

        /* Slide 3 - You can replace with your image URL */
        .carousel-slide.slide3 {
            background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1200&h=500&fit=crop');
        }

        .carousel-content {
            max-width: 1200px;
            padding: 0 20px;
            z-index: 2;
            position: relative;
        }

        .carousel-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }

        .carousel-content p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.95;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        }

        .carousel-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .carousel-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid white;
        }

        .carousel-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.3);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-arrow:hover {
            background: rgba(255,255,255,0.6);
        }

        .carousel-arrow.prev {
            left: 20px;
        }

        .carousel-arrow.next {
            right: 20px;
        }

        /* Courses Section */
        .courses-section {
            padding: 80px 20px;
            background: #f5f5f5;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: #1a237e;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #ff6f00;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .course-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }

        .course-card h3 {
            color: #1a237e;
            margin-bottom: 15px;
            font-size: 24px;
        }

        .course-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .course-date {
            color: #ff6f00;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Statistics Section */
        .stats-section {
            background: #1a237e;
            color: white;
            padding: 60px 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h2 {
            font-size: 48px;
            margin-bottom: 10px;
            color: #ff6f00;
        }

        .stat-item p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* News Section */
        .news-section {
            padding: 80px 20px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: white;
            border-left: 4px solid #1a237e;
            padding: 25px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .news-card:hover {
            transform: translateX(5px);
        }

        .news-date {
            color: #ff6f00;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .news-card h3 {
            color: #1a237e;
            margin-bottom: 10px;
        }

        /* Footer */
        .footer {
            background: #1a237e;
            color: white;
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: #ff6f00;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-section a:hover {
            opacity: 1;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

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

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

            .nav-buttons {
                flex-direction: column;
                width: 100%;
                margin-top: 10px;
            }

            .hero-carousel {
                height: 400px;
            }

            .carousel-content h1 {
                font-size: 32px;
            }

            .carousel-content p {
                font-size: 18px;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .carousel-arrow.prev {
                left: 10px;
            }

            .carousel-arrow.next {
                right: 10px;
            }

            .section-title {
                font-size: 28px;
            }

            .courses-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }

            .top-bar-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .stat-item h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .hero-carousel {
                height: 350px;
            }

            .carousel-content h1 {
                font-size: 24px;
            }

            .carousel-content p {
                font-size: 16px;
            }

            .courses-section,
            .news-section {
                padding: 50px 20px;
            }

            .stats-section {
                padding: 40px 20px;
            }

            .scrolling-banner {
                font-size: 13px;
                padding: 10px 0;
            }
        }

        /* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    list-style: none;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.dropdown-menu li a {
    padding: 12px 18px;
    display: block;
    color: #333;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #1a237e;
}

/* Desktop hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile behavior */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-left: 10px;
    }

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


/* Apply Online Form */
.apply-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.apply-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a237e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a237e;
}

.full-width {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}


    </style>