        :root {
            --primary: #4a00e0;
            --secondary: #8e2de2;
            --accent: #f12711;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden
        }
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
        }
        .logo {
            display: flex;
            align-items: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none
        }
        .logo img {
            height: 40px;
            margin-right: 10px
        }
        .nav-links {
            display: flex;
            list-style: none
        }
        .nav-links li {
            margin-left: 2rem
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: white;
            bottom: -5px;
            left: 0;
            transition: width 0.3s
        }
        .nav-links a:hover:after {
            width: 100%
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer
        }
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 1rem
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5)
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin-bottom: 2rem
        }
        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(241, 39, 17, 0.3)
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(241, 39, 17, 0.4)
        }
        .btn-outline {
            background: transparent;
            border: 2px solid white;
            margin-left: 1rem
        }
        .btn-outline:hover {
            background: white;
            color: var(--primary)
        }
        .stats {
            display: flex;
            justify-content: space-around;
            padding: 4rem 5%;
            background: white;
            flex-wrap: wrap
        }
        .stat-item {
            text-align: center;
            padding: 1rem;
            flex: 1;
            min-width: 200px
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent
        }
        .about {
            display: flex;
            padding: 5rem 5%;
            align-items: center;
            background: var(--light)
        }
        .about-text {
            flex: 1;
            padding-right: 3rem
        }
        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary)
        }
        .about p {
            margin-bottom: 1.5rem;
            color: var(--gray)
        }
        .about-image {
            flex: 1;
            position: relative
        }
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
        }
        .about-image:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 5px solid var(--primary);
            border-radius: 10px;
            top: -20px;
            left: -20px;
            z-index: -1
        }
        .programs {
            padding: 5rem 5%;
            background: white
        }
        .section-title {
            text-align: center;
            margin-bottom: 3rem
        }
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary)
        }
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto
        }
        .program-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem
        }
        .program-card {
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
        }
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2)
        }
        .program-img {
            height: 200px;
            overflow: hidden
        }
        .program-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s
        }
        .program-card:hover .program-img img {
            transform: scale(1.1)
        }
        .program-content {
            padding: 1.5rem
        }
        .program-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--primary)
        }
        .program-content p {
            color: var(--gray);
            margin-bottom: 1rem
        }
        .faculty {
            padding: 5rem 5%;
            background: var(--light)
        }
        .faculty-slider {
            position: relative;
            overflow: hidden;
            padding: 2rem 0
        }
        .faculty-container {
            display: flex;
            transition: transform 0.5s ease
        }
        .faculty-member {
            min-width: 300px;
            margin: 0 1rem;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
        }
        .faculty-img {
            height: 300px;
            overflow: hidden
        }
        .faculty-img img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }
        .faculty-info {
            padding: 1.5rem;
            text-align: center
        }
        .faculty-info h3 {
            margin-bottom: 0.5rem;
            color: var(--primary)
        }
        .faculty-info p {
            color: var(--gray)
        }
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem
        }
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--gray);
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: all 0.3s
        }
        .slider-dot.active {
            background: var(--primary);
            opacity: 1
        }
        .news {
            padding: 5rem 5%;
            background: white
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem
        }
        .news-card {
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s
        }
        .news-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1)
        }
        .news-date {
            background: var(--primary);
            color: white;
            padding: 0.5rem 1rem;
            display: inline-block;
            position: absolute;
            top: 1rem;
            left: 1rem;
            border-radius: 5px
        }
        .news-img {
            height: 200px;
            overflow: hidden;
            position: relative
        }
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }
        .news-content {
            padding: 1.5rem
        }
        .news-content h3 {
            margin-bottom: 0.5rem;
            color: var(--primary)
        }
        .news-content p {
            margin-bottom: 1rem;
            color: var(--gray)
        }
        .news-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center
        }
        .news-link i {
            margin-left: 5px;
            transition: transform 0.3s
        }
        .news-link:hover i {
            transform: translateX(5px)
        }
        .cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 5rem 1rem;
            text-align: center;
            color: white
        }
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem
        }
        .cta p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem
        }
        .footer {
            background: var(--dark);
            color: white;
            padding: 4rem 5% 2rem
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem
        }
        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px
        }
        .footer-col h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--accent);
            bottom: 0;
            left: 0
        }
        .footer-links {
            list-style: none
        }
        .footer-links li {
            margin-bottom: 0.8rem
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s
        }
        .footer-links a:hover {
            color: white
        }
        .social-links {
            display: flex;
            margin-top: 1rem
        }
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            margin-right: 10px;
            color: white;
            transition: all 0.3s
        }
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px)
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
            font-size: 0.9rem
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 999
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(241, 39, 17, 0.4)
        }
        @media(max-width:992px) {
            .about {
                flex-direction: column
            }
            .about-text {
                padding-right: 0;
                margin-bottom: 3rem
            }
            .about-image:after {
                display: none
            }
        }
        @media(max-width:768px) {
            .navbar {
                padding: 1rem
            }
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s
            }
            .nav-links.active {
                left: 0
            }
            .nav-links li {
                margin: 1rem 0
            }
            .mobile-menu-btn {
                display: block
            }
            .hero h1 {
                font-size: 2.5rem
            }
            .hero p {
                font-size: 1rem
            }
            .stats {
                flex-direction: column
            }
            .stat-item {
                margin-bottom: 2rem
            }
            .section-title h2 {
                font-size: 2rem
            }
        }
        @keyframes float {
            0%,
            100% {
                transform: translateY(0)
            }
            50% {
                transform: translateY(-20px)
            }
        }
        .floating {
            animation: float 3s ease-in-out infinite
        }
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none
        }