
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
        scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            background: #000;
            color: #fff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

          .program-container {
            max-width: 2080px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Tech Grid Background */
        .tech-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(rgba(0,123,255,0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,123,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            z-index: 0;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #000 0%, #1a1a2e 50%, #16213e 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(0,123,255,0.2) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(0,123,255,0.15) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(0,123,255,0.1) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite;
        }

        /* Navigation Styles */
      .hero-navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 1rem 2rem;
        background: transparent; /* Always transparent */
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        max-width: 100vw;
        overflow-x: hidden;
    }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
        }

        .hero-nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
            align-items: center;
            padding: 0;
            margin: 0;
        }

        .hero-nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 0.75rem 1.25rem;
            border-radius: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        

        /* Login Button Styling */
        .hero-nav-links .login-btn {
            background: linear-gradient(45deg, #00d4ff, #007bff);
            color: #fff;
            font-weight: bold;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .hero-nav-links .login-btn::before {
            background: linear-gradient(45deg, #007bff, #00d4ff);
        }

        .hero-nav-links .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
            background: linear-gradient(45deg, #007bff, #00d4ff);
        }

        /* Toggle button */
        .nav-toggle {
            display: none;
            font-size: 1.5rem;
            color: #00d4ff;
            cursor: pointer;
            background: rgba(0, 212, 255, 0.1);
            border: 2px solid #00d4ff;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            width: 40px;
            height: 40px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .nav-toggle:hover {
            background: rgba(0, 212, 255, 0.2);
            transform: scale(1.05);
        }

        /* Hamburger animation */
        .nav-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: #00d4ff;
            margin: 3px 0;
            transition: 0.3s;
            transform-origin: center;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-overlay.show {
            display: block;
            opacity: 1;
        }

        /* Demo content */
        .demo-content {
            margin-top: 100px;
            text-align: center;
            color: white;
        }

        .demo-section {
            padding: 4rem 2rem;
            margin: 2rem 0;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

    
        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }

             .hero-nav-links {
             position: fixed;
            top: 70px;
            right: 0;
            width: 100vw;
            max-width: 100vw;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.95);
            flex-direction: column;
            gap: 1rem;
            border-radius: 0 0 0 15px;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
            z-index: 2000;

            display: flex; /* always flex */
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .hero-nav-links.show {
            transform: translateX(0);
        }

            .hero-nav-links li {
                width: 100%;
            }

            .hero-nav-links li a {
                font-size: 1.1rem;
                padding: 1rem;
                width: 100%;
                text-align: center;
                border-radius: 8px;
            }

            .hero-nav-links .login-btn {
                margin-top: 1rem;
                padding: 1rem 1.5rem;
            }

            .hero-navbar {
                padding: 1rem;
            }

            .nav-container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-navbar {
                padding: 0.75rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .hero-nav-links {
                max-width: 280px;
                padding: 1.5rem;
            }

            .hero-nav-links li a {
                font-size: 1rem;
                padding: 0.875rem;
            }
        }

        /* Tablet styles */
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero-nav-links {
                gap: 1.5rem;
            }

            .hero-nav-links li a {
                font-size: 0.9rem;
                padding: 0.6rem 1rem;
            }
        }

        /* Large screen optimization */
        @media (min-width: 1200px) {
            .hero-nav-links {
                gap: 2.5rem;
            }

            .hero-nav-links li a {
                font-size: 1.1rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Focus styles for accessibility */
        .hero-nav-links li a:focus,
        .nav-toggle:focus,
        .login-btn:focus {
            outline: 2px solid #00d4ff;
            outline-offset: 2px;
        }


        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            animation: fadeInUp 1.5s ease-out;
        }

               
        .dost-logo-container {
            perspective: 1000px;
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
        }
        
        .dost-logo {
            width: 150px;
            height: 150px;
            position: relative;
            transform-style: preserve-3d;
            animation: spinY 8s linear infinite;
            filter: drop-shadow(0 0 30px rgba(0,123,255,0.8));
        }
        
        @keyframes spinY {
            0%   { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }
        

        .dost-logo svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .dost-logo:hover {
            animation-duration: 2s;
            filter: drop-shadow(0 0 50px rgba(0,123,255,1));
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            /* background: linear-gradient(45deg, #007bff, #00d4ff, #ffffff); */
            /* -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
            background-clip: text;
            position: relative;
            text-shadow: 0 0 30px rgba(0,123,255,0.5);
        }

        .hero h1::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(0,123,255,0.2), transparent);
            animation: scanline 2s linear infinite;
        }

        @keyframes scanline {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .hero .tagline {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: #00d4ff;
            font-weight: 300;
            letter-spacing: 2px;
            position: relative;
        }

        .hero .tagline::before,
        .hero .tagline::after {
            content: '>';
            color: #007bff;
            font-weight: bold;
            animation: blink 1.5s infinite;
        }

        .hero .tagline::before {
            margin-right: 10px;
        }

        .hero .tagline::after {
            margin-left: 10px;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.3; }
        }

        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: linear-gradient(45deg, #007bff, #0056b3);
            color: white;
            text-decoration: none;
            border: 2px solid #007bff;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0,123,255,0.3);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover {
            background: linear-gradient(45deg, #0056b3, #007bff);
            box-shadow: 0 0 30px rgba(0,123,255,0.6);
            transform: translateY(-2px);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Floating Tech Elements */
        .tech-element {
            position: absolute;
            color: rgba(0,123,255,0.3);
            font-size: 2rem;
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
        }

        .tech-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .tech-element:nth-child(2) {
            top: 30%;
            right: 15%;
            animation-delay: 2s;
        }

        .tech-element:nth-child(3) {
            bottom: 25%;
            left: 20%;
            animation-delay: 4s;
        }

        .tech-element:nth-child(4) {
            top: 60%;
            right: 25%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.7; }
        }

        /* Services Section */
        .services {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #007bff, transparent);
        }


        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #007bff;
            margin-bottom: 4rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .service-card {
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0,123,255,0.3);
            border-radius: 10px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #007bff, #00d4ff);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #007bff;
            box-shadow: 0 20px 40px rgba(0,123,255,0.2);
            background: rgba(0,123,255,0.05);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 0rem;
            color: #007bff;
            position: relative;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0rem;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-card p {
            color: #cccccc;
            line-height: 1.8;
        }

       /* Programs Section */
        .programs {
            padding: 120px 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            position: relative;
        }

        .programs::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00d4ff, transparent);
        }

  
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #cccccc;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Category Filter Buttons */
        .category-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.8rem 1.5rem;
            background: rgba(0,0,0,0.5);
            border: 2px solid rgba(0,212,255,0.3);
            color: #ffffff;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .filter-btn:hover::before {
            left: 100%;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: rgba(0,212,255,0.2);
            border-color: #00d4ff;
            color: #00d4ff;
            transform: translateY(-2px);
        }

        /* Program Categories */
        .program-category {
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .category-title {
            font-size: 2rem;
            color: #00d4ff;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .category-title::before {
            content: '';
            width: 4px;
            height: 40px;
            background: linear-gradient(135deg, #00d4ff, #007bff);
            border-radius: 2px;
        }

        .category-description {
            color: #cccccc;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            max-width: 800px;
        }

        .program-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 2.5rem;
        }

        .program-card {
            background: rgba(0,0,0,0.7);
            border: 1px solid rgba(0,212,255,0.2);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,123,255,0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .program-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #00d4ff, #007bff, #00d4ff);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .program-card:hover::before {
            opacity: 1;
        }

        .program-card:hover::after {
            transform: scaleX(1);
        }

        .program-card:hover {
            transform: translateY(-10px);
            border-color: #00d4ff;
            box-shadow: 0 20px 40px rgba(0,212,255,0.3);
        }

        .program-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .program-img {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            object-fit: contain;
            object-position: center;
            border: 2px solid rgba(0,212,255,0.3);
            transition: all 0.3s ease;
            flex-shrink: 0;
            background: rgba(255,255,255,0.1);
            padding: 8px;
        }

        .program-card:hover .program-img {
            border-color: #00d4ff;
            box-shadow: 0 0 20px rgba(0,212,255,0.5);
            transform: scale(1.05);
        }

        .program-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.3;
            margin: 0;
            flex: 1;
        }

        .program-description {
            color: #cccccc;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            position: relative;
            z-index: 2;
        }

        .program-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #00d4ff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .program-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .program-link:hover {
            color: #ffffff;
            transform: translateX(5px);
        }

        .program-link:hover::after {
            transform: translateX(5px);
        }

        /* Hide/Show Categories */
        .program-category.hidden {
            display: none;
        }

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .program-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .program-card {
                padding: 2rem;
            }
            
            .program-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .program-img {
                width: 60px;
                height: 60px;
                padding: 6px;
            }
            
            .program-title {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }

            .category-filters {
                gap: 0.5rem;
            }

            .filter-btn {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            
            .program-card {
                padding: 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        /* end of programs */

        
        /* Tech Stats Section */
        .tech-stats {
            padding: 80px 0;
            background: rgba(0,0,0,0.9);
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
            border: 1px solid rgba(0,123,255,0.2);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            border-color: #007bff;
            background: rgba(0,123,255,0.05);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #007bff;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #cccccc;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            padding: 120px 0;
            background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #007bff, transparent);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .contact-item {
            background: rgba(0,0,0,0.8);
            border: 1px solid rgba(0,123,255,0.3);
            border-radius: 10px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
        }

        .contact-item:hover {
            border-color: #007bff;
            background: rgba(0,123,255,0.05);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,123,255,0.2);
        }

        .contact-icon {
            font-size: 3rem;
            color: #007bff;
            margin-bottom: 1.5rem;
        }

        .contact-item h4 {
            color: #ffffff;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-item p {
            color: #cccccc;
            line-height: 1.6;
        }

         @media (max-width: 908px) {
        

            .hero .tagline {
                font-size: 20px;
            }

        }
        

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
                font-weight: 600;
            }

            .hero .tagline {
                font-size: 15px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .services-grid,
            .program-cards {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading Animation */
        .loading-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #007bff, #00d4ff);
            transform: translateX(-100%);
            animation: loadingBar 2s ease-out;
            z-index: 1000;
        }

        @keyframes loadingBar {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(0); }
        }
 

   .mission-vision {
            padding: 120px 0;
            background: linear-gradient(135deg, #000 0%, #0a0a0a 25%, #1a1a2e 50%, #000 100%);
            position: relative;
            overflow: hidden;
        }

        /* Animated background particles */
        .mission-vision::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
            animation: backgroundShift 20s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: translateX(0) translateY(0); }
            33% { transform: translateX(-20px) translateY(-10px); }
            66% { transform: translateX(20px) translateY(10px); }
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00d4ff, #0099cc, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            from { text-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }
            to { text-shadow: 0 0 50px rgba(0, 212, 255, 0.5); }
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #cccccc;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
            opacity: 0.9;
        }

        .about-row {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 3rem 0;
            position: relative;
            z-index: 2;
        }

        .mission-vision {
            padding: 5rem 0;
            position: relative;
        }

        .section-title {
            font-size: 3.5rem;
            text-align: center;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #00d4ff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #a0a0a0;
            margin-bottom: 4rem;
            font-weight: 300;
        }

        .about-row {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        /* Enhanced card design */
        .about-card {
            background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 46, 0.6));
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 212, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        /* Hover glow effect */
        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            transition: left 0.8s;
        }

        .about-card:hover::before {
            left: 100%;
        }

        .about-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(0, 212, 255, 0.6);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .about-card h3 {
            font-size: 1.8rem;
            color: #00d4ff;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .about-card h3 img {
            width: 40px !important;
            height: 40px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .about-card h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00d4ff, transparent);
            border-radius: 2px;
        }

        .about-card p {
            color: #e0e0e0;
            line-height: 1.8;
            text-align: center;
            font-size: 1.05rem;
            position: relative;
            z-index: 2;
        }

        .about-card.full {
            width: 100%;
            margin-bottom: 2rem;
        }

        .about-card.half {
            flex: 1 1 48%;
            min-width: 320px;
        }

        .technologies h3{
            text-align: left;
        }

         .technologies p{
            text-align: left;
        }

        /* Enhanced mandate card */
        .mandate-card {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 0, 0, 0.8));
            border: 2px solid rgba(0, 212, 255, 0.4);
        }

        /* Core Values Enhancement */
        .core-values {
            list-style: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            position: relative;
            z-index: 2;
        }

        .core-values li {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 0, 0, 0.6));
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 15px;
            padding: 1rem;
            text-align: center;
            color: #ffffff;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .core-values li::before {
            content: "✦";
            color: #00d4ff;
            font-size: 1.2rem;
            margin-right: 8px;
            transition: all 0.3s ease;
        }

        .core-values li:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 0, 0, 0.8));
            border-color: rgba(0, 212, 255, 0.8);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
        }

        .core-values li:hover::before {
            color: #ffffff;
            transform: scale(1.2) rotate(360deg);
        }

        /* Floating animation for cards */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .about-card:nth-child(odd) {
            animation: float 6s ease-in-out infinite;
            animation-delay: 0s;
        }

        .about-card:nth-child(even) {
            animation: float 6s ease-in-out infinite;
            animation-delay: 3s;
        }

        /* Animation for scroll effects */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }

            .about-row {
                flex-direction: column;
            }

            .about-card.half {
                width: 100%;
            }

            .about-card {
                padding: 2rem;
            }

            .core-values {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem;
            }

            .about-card {
                padding: 1.5rem;
            }

            .core-values {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Scroll animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease forwards;
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

           /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #000 0%, #0a0a0a 25%, #1a1a2e 50%, #000 100%);
            border-top: 2px solid rgba(0, 212, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.08) 0%, transparent 50%);
            animation: footerGlow 15s ease-in-out infinite;
        }

        @keyframes footerGlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .footer-main {
            padding: 50px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #00d4ff;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #00d4ff, transparent);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            color: #000;
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
        }

        .footer-logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, #00d4ff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: #00d4ff;
            transform: translateX(5px);
        }

        .footer-links a::before {
            content: "▶";
            font-size: 0.7rem;
            color: #00d4ff;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .footer-info {
            list-style: none;
        }

        .footer-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #cccccc;
        }

        .footer-icon {
            width: 20px;
            height: 20px;
            background: rgba(0, 212, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #00d4ff;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00d4ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(0, 212, 255, 0.2);
            border-color: #00d4ff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 212, 255, 0.2);
            padding: 10px 0;
            text-align: center;
            background: rgba(0, 0, 0, 0.3);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: center;        
            align-items: center;
            flex-direction: column;         
            text-align: center;            
            padding: 1rem;
            gap: 0.5rem;
        }
        .footer-credit {
            color: #cccccc;
            font-size: 0.9rem;
            text-align: center;
        }

        .footer-credit strong {
            color: #00d4ff;
            font-weight: 600;
        }

        .footer-date {
            color: #999;
            font-size: 0.85rem;
            font-style: italic;
        }

        .footer-tech-badge {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 0, 0, 0.6));
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 0.8rem;
            color: #00d4ff;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .footer-tech-badge::before {
            content: "⚡";
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-logo {
                justify-content: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-main {
                padding: 30px 0 20px;
            }

            .footer-logo-text {
                font-size: 1.5rem;
            }

            .footer-section h3 {
                font-size: 1.1rem;
            }
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            border: none;
            border-radius: 50%;
            color: #000;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
            display: none;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
        }

        .scroll-to-top.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .map-container {
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
        margin-top: 2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .map-container:hover {
        transform: scale(1.01);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
        }

        .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
        }

        .login-btn {
        background: #00d4ff;
        color: #000;
        padding: 10px 18px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.3s ease;
        }

        .login-btn:hover {
        background: #00aacc;
        color: #fff;
        }

         /* Highlights Section */
        .highlights {
            padding: 120px 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            position: relative;
            overflow: hidden;
        }

        .highlights::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00d4ff, transparent);
        }

        .highlights::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
            animation: backgroundShift 20s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: translateX(0) translateY(0); }
            33% { transform: translateX(-20px) translateY(-10px); }
            66% { transform: translateX(20px) translateY(10px); }
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00d4ff, #0099cc, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            from { text-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }
            to { text-shadow: 0 0 50px rgba(0, 212, 255, 0.5); }
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #cccccc;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
            opacity: 0.9;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .highlight-card {
            background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 46, 0.6));
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(10px);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 212, 255, 0.1);
        }

        .highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            transition: left 0.8s;
            z-index: 1;
        }

        .highlight-card:hover::before {
            left: 100%;
        }

        .highlight-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(0, 212, 255, 0.6);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(0, 212, 255, 0.3);
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
            background: #000;
        }

        .video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            transition: transform 0.3s ease;
        }

        .highlight-card:hover .video-container iframe {
            transform: scale(1.05);
        }

        .card-content {
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .card-title {
            font-size: 1.5rem;
            color: #00d4ff;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .card-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00d4ff, transparent);
            border-radius: 2px;
        }

        .card-description {
            color: #cccccc;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .card-meta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #999;
            font-size: 0.9rem;
        }

        .meta-icon {
            width: 20px;
            height: 20px;
            background: rgba(0, 212, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #00d4ff;
        }

        .social-indicator {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 20px;
            padding: 5px 12px;
            font-size: 0.8rem;
            color: #00d4ff;
            backdrop-filter: blur(10px);
            z-index: 3;
        }

        .facebook-indicator {
            background: rgba(24, 119, 242, 0.2);
            border-color: rgba(24, 119, 242, 0.5);
            color: #1877f2;
        }

        .youtube-indicator {
            background: rgba(255, 0, 0, 0.2);
            border-color: rgba(255, 0, 0, 0.5);
            color: #ff0000;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
            pointer-events: none;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(0, 212, 255, 0.9);
            border: none;
            border-radius: 50%;
            color: #000;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
        }

        .play-button:hover {
            background: rgba(0, 212, 255, 1);
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
        }

        /* Stats Section */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .stat-item:hover {
            border-color: #00d4ff;
            background: rgba(0, 212, 255, 0.05);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #00d4ff;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #cccccc;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }

            .highlights-grid {
                grid-template-columns: 1fr;
            }

            .video-container {
                height: 200px;
            }

            .card-content {
                padding: 1.5rem;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem;
            }

            .card-content {
                padding: 1rem;
            }

            .stats-section {
                grid-template-columns: 1fr;
            }
        }

        /* Animation for cards */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .highlight-card:nth-child(odd) {
            animation: float 6s ease-in-out infinite;
            animation-delay: 0s;
        }

        .highlight-card:nth-child(even) {
            animation: float 6s ease-in-out infinite;
            animation-delay: 3s;
        }

        /* Scroll animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* LOGIN MODAL */

        .loginModal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        }

        .loginModal-content {
        background-color: #111;
        margin: 10% auto;
        padding: 2rem;
        border: 1px solid #00d4ff;
        width: 90%;
        max-width: 400px;
        border-radius: 10px;
        color: #fff;
        text-align: center;
        }

        .modal-content-program {
        background-color: #111;
        margin: 10% auto;
        padding: 2rem;
        border: 1px solid #00d4ff;
        width: 200%;
        max-width: 1000px;
        border-radius: 10px;
        color: #fff;
        text-align: center;
        }


        .loginModal-content input {
        padding: 0.6rem;
        width: 100%;
        margin-top: 1rem;
        border-radius: 5px;
        border: none;
        }

        .loginModal-content button {
        margin-top: 1rem;
        padding: 0.6rem 1.5rem;
        background-color: #00d4ff;
        border: none;
        font-weight: bold;
        color: #000;
        cursor: pointer;
        border-radius: 5px;
        }

        .close {
        float: right;
        font-size: 24px;
        color: #ccc;
        cursor: pointer;
        }
 .success-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .testimonial-section {
            margin: 2rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, #090909 0%, lab(9.61% 5.88 -23.13) 100%);
            border-radius: 12px;
        }
        
        .testimonial-card {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            border-left: 4px solid #007bff;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            color: #555;
        }

        .testimonial-section h3{
              font-size: 1.8rem;
            color: #00d4ff;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #007bff;
        }
        
        .application-process {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .process-step {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: 20px;
            background: #007bff;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .step-title {
            margin-top: 0.5rem;
            color: #333;
            font-weight: bold;
        }
        
        .step-description {
            color: #666;
            margin-top: 0.5rem;
        }
        
        .faq-section {
            margin: 2rem 0;
        }
        
        .faq-item {
            background: white;
            margin: 1rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        
        
        .faq-question {
            padding: 1rem 1.5rem;
            background: #f8f9fa;
            cursor: pointer;
            font-weight: bold;
            color: #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #e9ecef;
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer p {
            margin: 0.5rem 0;
            color: #05044c;
        }
        
        .faq-answer.active {
            padding: 1rem 1.5rem;
            max-height: 200px;
        }
        
        .faq-toggle {
            transition: transform 0.3s ease;
        }
        
        .faq-toggle.active {
            transform: rotate(180deg);
        }
        
        .notification-banner {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem;
            border-radius: 12px;
            margin: 1rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .notification-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.1) 10px,
                rgba(255,255,255,0.1) 20px
            );
            animation: shine 3s linear infinite;
        }
        
        @keyframes shine {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        .notification-content {
            position: relative;
            z-index: 1;
        }
        
        .contact-info-enhanced {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .contact-card {
            background: black;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            color:#007bff
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        
        .contact-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        
        
        .close {
            position: absolute;
            right: 1rem;
            top: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            transition: color 0.3s ease;
        }
        
        .close:hover {
            color: #000;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #333;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #007bff;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0,123,255,0.3);
        }
        
        .resource-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .resource-link {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            text-decoration: none;
            color: #333;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .resource-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            color: #007bff;
        }
        
        .progress-tracker {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 2rem 0;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 12px;
        }
        
        .progress-step {
            flex: 1;
            text-align: center;
            position: relative;
        }
        
        .progress-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: #dee2e6;
            transform: translateY(-50%);
        }
        
        .progress-step:last-child::after {
            display: none;
        }
        
        .progress-step.active::after {
            background: #007bff;
        }
        
        .progress-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #dee2e6;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.5rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .progress-step.active .progress-circle {
            background: #007bff;
            color: white;
        }

        .progress-text{
            color: black;
        }

        /* ≤ 780px: Two columns, slightly reduced sizes */
@media (max-width: 780px) {
  .progress-tracker {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .progress-step {
    flex: 1 1 45%;
    max-width: 45%;
    margin-bottom: 1rem;
  }

  .progress-step::after {
    display: none;
  }
}

/* ≤ 600px: Stack into full-width rows, smaller elements */
@media (max-width: 600px) {
  .progress-step {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0.5rem;
  }

  .progress-circle {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .progress-text {
    font-size: 0.9rem;
  }
}

/* ≤ 400px: Reduce spacing and font sizes */
@media (max-width: 400px) {
  .progress-step {
    padding: 0.4rem;
  }

  .progress-circle {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .progress-text {
    font-size: 0.85rem;
  }
}

/* ≤ 300px: Ultra-compact view */
@media (max-width: 300px) {
  .progress-tracker {
    padding: 0.5rem 0.2rem;
  }

  .progress-step {
    padding: 0.3rem;
  }

  .progress-circle {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .progress-text {
    font-size: 0.75rem;
  }
}


        /* learn more  */

        .learn-more-highlight:hover,
        .learn-more-highlight:focus {
            transform: scale(1.07);
            box-shadow: 0 0 24px 6px #00d4ffcc, 0 0 0 4px #007bff44;
            animation: pulseGlow 1s infinite alternate;
        }

        @keyframes pulseGlow {
            0% { box-shadow: 0 0 16px 2px #00d4ff88; }
            100% { box-shadow: 0 0 32px 8px #00d4ffcc; }
        }

        .video-carousel-section h3 {
            font-size: 1.8rem;
            color: #00d4ff;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

         .video-cards-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            position: relative;
            overflow: hidden;
        }

        .video-cards-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

         .video-cards-section h3 {

               font-size: 1.8rem;
            color: #00d4ff;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
         }
        .video-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .video-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 212, 255, 0.5);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(0, 212, 255, 0.3);
        }

        .video-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }

        .video-card video {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .video-card:hover video {
            transform: scale(1.05);
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                rgba(0, 0, 0, 0.05) 50%,
                rgba(0, 0, 0, 0.4) 100%
            );
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-card:hover .video-overlay {
            opacity: 1;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(0, 212, 255, 0.2);
            border: 3px solid rgba(0, 212, 255, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            opacity: 0;
            z-index: 10;
        }

        .video-card:hover .play-button {
            opacity: 1;
        }

        .play-button:hover {
            background: rgba(0, 212, 255, 0.4);
            border-color: #00d4ff;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 18px solid #00d4ff;
            border-top: 11px solid transparent;
            border-bottom: 11px solid transparent;
            margin-left: 3px;
        }

        .video-info {
            padding: 1.5rem;
            position: relative;
        }

        .video-title {
            color: #00d4ff;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
        }

        .video-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .video-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .video-duration {
            background: rgba(0, 212, 255, 0.2);
            padding: 4px 12px;
            border-radius: 12px;
            border: 1px solid rgba(0, 212, 255, 0.3);
            font-weight: 500;
        }

        .video-category {
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 12px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .video-status {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: #00d4ff;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .video-card video {
                height: 250px;
            }
        
            
            .video-info {
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .video-card video {
                height: 200px;
            }
            
            .play-button {
                width: 60px;
                height: 60px;
            }
            
            .play-button::after {
                border-left: 15px solid #00d4ff;
                border-top: 9px solid transparent;
                border-bottom: 9px solid transparent;
            }
        }

        .custom-tabs .nav-link {
    font-weight: bold;
    font-size: 1.05rem;
    color: #00d4ff;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease-in-out;
}

.custom-tabs .nav-link:hover {
    background-color: #e6faff;
    color: #007bff;
    border-color: #00d4ff;
}

.custom-tabs .nav-link.active {
    background: linear-gradient(90deg, #00d4ff, #007bff);
    color: white;
    border-color: #007bff;
    box-shadow: 0 0 10px #00d4ff88;
}
