
        :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('https://adityasaini.com/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-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        @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);
        }
        
        /* ACCORDION STYLES */
        .accordion-section {
            padding: 60px 0;
        }
        
        .accordion-item {
            border: none;
            border-radius: 10px !important;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .accordion-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .accordion-button {
            background: var(--gradient-primary);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 20px 25px;
            border: none;
            border-radius: 10px !important;
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--gradient-accent);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transform: scale(1.2);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-body {
            padding: 25px;
            background: white;
            border-radius: 0 0 10px 10px;
        }
        
        .module-card {
            background: rgba(90, 24, 154, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            border-left: 4px solid var(--secondary);
            transition: all 0.3s ease;
        }
        
        .module-card:hover {
            transform: translateX(10px);
            background: rgba(90, 24, 154, 0.1);
        }
        
        .module-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .module-title {
            color: var(--primary);
            font-weight: 600;
            margin: 0;
        }
        
        .module-hours {
            background: var(--gradient-accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* VIDEO GRID */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .video-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .video-thumbnail {
            position: relative;
            overflow: hidden;
            height: 180px;
        }
        
        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .video-card:hover .video-thumbnail img {
            transform: scale(1.1);
        }
        
      
        .video-card:hover .video-play {
            opacity: 1;
        }
        
        .video-content {
            padding: 20px;
        }
        
        .video-title {
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            min-height: 50px;
        }
        
        /* DOWNLOAD LINKS */
        .download-links {
            margin: 20px 0;
        }
        
        .download-link {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            background: white;
            border-radius: 10px;
            margin-bottom: 10px;
            text-decoration: none;
            color: var(--primary);
            border-left: 4px solid var(--secondary);
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .download-link:hover {
            transform: translateX(10px);
            color: var(--accent);
            background: rgba(255, 0, 124, 0.05);
            border-left-color: var(--accent);
        }
        
        .download-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-secondary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .download-info {
            flex-grow: 1;
        }
        
        .download-title {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .download-desc {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* 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);
        }
        
        /* BACK TO TOP */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-accent);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(255, 0, 124, 0.3);
        }
        
        #backToTop.show {
            opacity: 1;
            visibility: visible;
        }
        
        #backToTop:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 0, 124, 0.4);
        }

        .implist{
            padding-left: 5rem;
     
        }
        
        /* 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-stats {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .accordion-button {
                padding: 15px 20px;
                font-size: 1rem;
            }
            
            .video-grid {
                grid-template-columns: 1fr;
            }
            
            .circulars-header {
                width: 100%;
                text-align: center;
                margin-bottom: 10px;
            }
            .implist{
            padding: 0rem;
            }
        }
        
        @media (max-width: 576px) {
            .main-nav .nav-link {
                padding: 8px 12px !important;
                font-size: 0.9rem;
            }
            
            .hero-section {
                padding: 80px 0 40px;
            }
            
            .module-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .module-hours {
                align-self: flex-start;
            }
            
            #backToTop {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
        }
   