: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;
        }
        
        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);
        }
        
        header h4 {
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        /* 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: var(--gradient-primary);
            color: white;
            padding: 100px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }
        
        .hero-title {
            font-size: 3rem;
            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;
        }
        
        @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: 40px;
            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;
        }
        
        /* DOCUMENT CARD */
        .document-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
         
        }
        
        .document-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .download-btn {
            background: var(--gradient-accent);
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 25px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
        }
        
        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 124, 0.3);
            color: white;
        }
        
        /* QUOTE CARD */
        .quote-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-top: 5px solid var(--secondary);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .quote-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        .quote-icon {
            color: var(--accent);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .quote-text {
            font-style: italic;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .quote-author {
            color: var(--primary);
            font-weight: 600;
            text-align: right;
        }
        
        /* MATERIALS SECTION */
        .materials-section {
            background: var(--gradient-light);
            padding: 60px 0;
            border-radius: 15px;
        }
        
        .material-item {
            background: white;
            padding: 20px;
            margin: 15px 0;
            border-radius: 10px;
            border-left: 4px solid var(--secondary);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .material-item:hover {
            transform: translateX(10px);
            border-left-color: var(--accent);
        }
        
        .material-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            flex-grow: 1;
        }
        
        .material-link:hover {
            color: var(--accent);
        }
        
        /* VIDEO SECTION */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .video-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .video-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .video-item iframe {
            width: 100%;
            height: 250px;
            border: none;
        }
        
        /* CUSTOM BUTTONS */
        .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;
        }
        
        .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: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .video-grid {
                grid-template-columns: 1fr;
            }
            
            .circulars-header {
                width: 100%;
                text-align: center;
                margin-bottom: 10px;
            }
            
            .marquee-container {
                overflow-x: auto;
                white-space: nowrap;
            }
            
            marquee {
                animation: none !important;
            }
        }
        
        @media (max-width: 576px) {
            .main-nav .nav-link {
                padding: 8px 12px !important;
                font-size: 0.9rem;
            }
            
            .document-card {
                padding: 20px;
            }
            
            .material-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }