        :root {
            --primary: #0f0f3d;
            --secondary: #5a189a;
            --accent: #ff007c;
            --success: #00f5d4;
            --light: #e0e0e0;
            --dark: #0a0a0a;
            --gradient-primary: linear-gradient(135deg, #0f0f3d 0%, #5a189a 100%);
            --gradient-secondary: linear-gradient(135deg, #5a189a 0%, #c77dff 100%);
            --gradient-accent: linear-gradient(135deg, #ff007c 0%, #ff4d6d 100%);
            --gradient-light: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 0;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        /* TOP BAR */
        .top-bar {
            background: var(--gradient-primary);
            color: white;
            font-size: 0.9rem;
        }
        
        .top-bar a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .top-bar a:hover {
            color: var(--success);
        }
        
        /* HEADER */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* NAVIGATION */
        .main-nav {
            background: var(--gradient-primary);
            padding: 0;
        }
        
        .main-nav .navbar-nav {
            gap: 5px;
        }
        
        .main-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 10px 15px !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .main-nav .nav-link:hover,
        .main-nav .nav-link.active {
            color: white !important;
            background: rgba(255, 255, 255, 0.15);
        }
        
        /* HERO SECTION */
        .hero-section {
            background: linear-gradient(135deg, rgba(15,15,61,0.9) 0%, rgba(90,24,154,0.9) 100%), url('/frontend/Image/banner.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--success);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .hero-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .hero-badge:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }
        
        .hero-badge i {
            color: var(--success);
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* CIRCULARS SECTION */
        .circulars-section {
            background: var(--gradient-light);
            padding: 15px 0;
            margin: 20px 0;
            border-radius: 10px;
        }
        
        .circulars-header {
            background: var(--gradient-primary);
            color: white;
            padding: 12px 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            white-space: nowrap;
            text-align: center;
            box-shadow: 0 3px 10px rgba(15, 15, 61, 0.2);
        }
        
        .marquee-container {
            background: white;
            padding: 12px 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .marquee-container a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            margin: 0 12px;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .marquee-container a:hover {
            color: var(--accent);
            background: rgba(255, 0, 124, 0.1);
        }
        
        /* MAIN CONTENT */
        .content-section {
            padding: 60px 0;
        }
        
        .section-title {
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }
        
        /* INTRODUCTION SECTION */
        .intro-section {
            margin-bottom: 50px;
        }
        
        .intro-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-left: 8px solid var(--secondary);
            transition: all 0.3s ease;
        }
        
        .intro-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .intro-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .intro-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-secondary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            flex-shrink: 0;
        }
        
        .intro-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .intro-content p {
            color: #666;
            margin: 0;
        }
        
        .key-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .key-point {
            background: rgba(90, 24, 154, 0.05);
            border-radius: 12px;
            padding: 20px;
            border-left: 4px solid var(--accent);
        }
        
        .key-point h5 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        /* GRADUATE ATTRIBUTES */
        .attributes-section {
            background: linear-gradient(135deg, rgba(15,15,61,0.05) 0%, rgba(90,24,154,0.05) 100%);
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
        }
        
        .attributes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .attribute-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .attribute-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .attribute-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-accent);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        
        .attribute-card h5 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        /* COURSES TABLE */
        .courses-section {
            margin: 50px 0;
        }
        
        .courses-table-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }
        
        .courses-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .courses-table thead {
            background: var(--gradient-primary);
        }
        
        .courses-table th {
            color: white;
            font-weight: 600;
            padding: 20px 15px;
            text-align: left;
            font-size: 1rem;
        }
        
        .courses-table tbody tr {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .courses-table tbody tr:hover {
            background: rgba(90, 24, 154, 0.05);
            transform: translateX(5px);
        }
        
        .courses-table td {
            padding: 18px 15px;
            color: var(--primary);
        }
        
        .course-number {
            font-weight: 600;
            color: var(--secondary);
            text-align: center;
        }
        
        .course-name {
            font-weight: 500;
        }
        
        .course-credits, .course-semester {
            text-align: center;
        }
        
        .course-availability {
            text-align: center;
        }
        
        .availability-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .available {
            background: rgba(0, 245, 212, 0.1);
            color: #00a896;
        }
        
        .upcoming {
            background: rgba(255, 0, 124, 0.1);
            color: var(--accent);
        }
        
        .course-material {
            text-align: center;
        }
        
        /* DOWNLOADS SECTION */
        .downloads-section {
            margin: 50px 0;
        }
        
        .downloads-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .download-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 5px solid var(--accent);
        }
        
        .download-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .download-header {
            background: var(--gradient-primary);
            color: white;
            padding: 20px;
            text-align: center;
        }
           
        .download-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
        }
        
        .download-body {
            padding: 25px;
        }
        
        .download-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px;
            background: rgba(90, 24, 154, 0.05);
            border-radius: 10px;
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .download-link:hover {
            background: rgba(90, 24, 154, 0.1);
            transform: translateX(5px);
            color: var(--accent);
        }
        
        .download-link i {
            color: var(--accent);
            font-size: 1.2rem;
        }
        
        /* BUTTON STYLES */
        .btn {
            background: var(--gradient-primary);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.4s ease;
            color: white;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
            cursor: pointer;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(90, 24, 154, 0.3);
            color: white;
        }
        
        .btn-accent {
            background: var(--gradient-accent);
        }
        
        /* FOOTER */
        footer.bg-dark {
            background: var(--gradient-primary) !important;
            color: white;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer.bg-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-accent);
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        
        .footer-links a:hover {
            color: var(--success);
            transform: translateX(10px);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-3px) rotate(10deg);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-badges {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .intro-card {
                padding: 30px;
            }
            
            .courses-table {
                display: block;
                overflow-x: auto;
            }
            
            .attributes-grid {
                grid-template-columns: 1fr;
            }
            
            .downloads-grid {
                grid-template-columns: 1fr;
            }
            
            .circulars-header {
                width: 100%;
                text-align: center;
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .main-nav .nav-link {
                padding: 8px 12px !important;
                font-size: 0.9rem;
            }
            
            .hero-section {
                padding: 80px 0 40px;
            }
            
            .intro-header {
                flex-direction: column;
                text-align: center;
            }
            
            .courses-table th,
            .courses-table td {
                padding: 12px 8px;
                font-size: 0.9rem;
            }
        }
 