 @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Inter:wght@300;400;600;700;900&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
        }
        html {
             scroll-behavior: smooth;
             scroll-padding-top: 60px;
        }

        :root {
            --color-dark: #111111;      
            --color-surface: #1f1f1f; 
            --color-accent: #364bc5; 
            --color-accent-glow: #4a62e0;
            --color-text-light: #f0f6fc;  
            --color-text-dim: #c8c8c8;    
            --color-modal-bg: #FFFFFF;   
            --color-footer-dark: #0d0d12; 
            --color-code-bg: #0d0d12;
            --color-code-text: #4d90f0; 
            --color-dsa: #F08D49;
            --color-genai: #4a62e0; 
            --color-sysd: #27c93f; 
            --color-loom: #8A2BE2;
            --color-login-gradient: linear-gradient(135deg, #007bff 0%, #0056b3 100%); 
        }

        body {
            background-color: var(--color-dark); 
            color: var(--color-text-light);
            min-height: 100vh;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }
    
        section {
            padding: 80px 0 60px ;
            border-bottom: 1px solid var(--color-surface);
        }
        
        .section-title {
            font-family: 'Inter', sans-serif; 
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 30px;
            color: var(--color-accent-glow);
            text-shadow: 0 0 5px rgba(54, 75, 197, 0.4); 
            font-weight: 900;
        }
        
        .section-subtitle {
             color: var(--color-text-dim);
             text-align: center;
             font-size: 1.1rem;
        
        }

.marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.marquee_header {
  font-size: 35px;
  font-weight: 800;
  text-align: center;
}
.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  animation-delay: 2s;
}

.marquee__group {
  display: flex;
}

.marquee__group span {
  margin: 0 1.0rem;
  white-space: nowrap;
  background:  #ffffff;
  color: rgb(6, 95, 238);
  padding: 2px 16px 2px 16px;
  border-radius: 6px;
  font-size: 1.0rem;
  margin-top: 10px;
}


@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

        @keyframes neon-pulse {
            0% { box-shadow: 0 0 5px rgba(54, 75, 197, 0.4); }
            50% { box-shadow: 0 0 15px var(--color-accent-glow); }
            100% { box-shadow: 0 0 5px rgba(54, 75, 197, 0.4); }
        }
        
        @keyframes border-glow {
            0% { border-color: rgba(54, 75, 197, 0.5); }
            50% { border-color: var(--color-accent-glow); }
            100% { border-color: rgba(54, 75, 197, 0.5); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
            100% { transform: translateY(0px); }
        }
 
        @keyframes letter-stagger-family {
            0%, 8% { opacity: 0; transform: translateY(20px); }
            10% { opacity: 1; transform: translateY(0); }
            45% { opacity: 1; transform: translateY(0); }
            50%, 100% { opacity: 0; transform: translateY(-20px); }
        }

        @keyframes letter-stagger-army {
            0%, 58% { opacity: 0; transform: translateY(20px); }
            60% { opacity: 1; transform: translateY(0); }
            95% { opacity: 1; transform: translateY(0); }
            100% { opacity: 0; transform: translateY(-20px); }
        }

        .word-cycler {
            position: relative;
            height: 3.5rem; 
            display: flex;
            align-items: center;
        }

        .word-animated {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-accent);
            display: inline-block;
            white-space: nowrap;
        }

        .word-animated span {
            display: inline-block;
            opacity: 0;
        }

        .family-word span { animation: letter-stagger-family 6s infinite; }
        .family-word span:nth-child(1) { animation-delay: 0.1s; }
        .family-word span:nth-child(2) { animation-delay: 0.2s; }
        .family-word span:nth-child(3) { animation-delay: 0.3s; }
        .family-word span:nth-child(4) { animation-delay: 0.4s; }
        .family-word span:nth-child(5) { animation-delay: 0.5s; }
        .family-word span:nth-child(6) { animation-delay: 0.6s; }
        .family-word span:nth-child(7) { animation-delay: 0.7s; }

        .army-word span { animation: letter-stagger-army 6s infinite; }
        .army-word span:nth-child(1) { animation-delay: 0.1s; } 
        .army-word span:nth-child(2) { animation-delay: 0.2s; }
        .army-word span:nth-child(3) { animation-delay: 0.3s; }
        .army-word span:nth-child(4) { animation-delay: 0.4s; }
        .army-word span:nth-child(5) { animation-delay: 0.5s; }
        .army-word span:nth-child(6) { animation-delay: 0.6s; }
        .army-word span:nth-child(7) { animation-delay: 0.7s; }
        .army-word span:nth-child(8) { animation-delay: 0.8s; }
        .army-word span:nth-child(9) { animation-delay: 0.9s; }
        .army-word span:nth-child(10) { animation-delay: 1.0s; }
        .army-word span:nth-child(11) { animation-delay: 1.1s; }

        header {
            background-color: var(--color-surface);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 2px solid var(--color-accent);
            animation: border-glow 5s infinite alternate ease-in-out; 
              box-shadow: 0 0 10px rgba(54, 75, 197, 0.8);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative; 
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--color-accent-glow);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
   
        .strike-logo-svg {
            height: 30px; 
            width: 150px;
            filter: drop-shadow(0 0 5px rgba(54, 75, 197, 0.5));
        }

        .strike-logo-svg text {
            fill: var(--color-accent-glow);
            font-family: 'Inter', sans-serif;
        }


        nav, .auth-actions {
            display: flex;
            align-items: center;
        }

        nav a, .auth-actions a {
            color: var(--color-text-dim);
            text-decoration: none;
            margin-left: 15px; 
            padding: 6px 10px; 
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        nav a:hover, .auth-actions a:hover:not(.primary-btn) {
            color: var(--color-text-light);
            background-color: rgba(54, 75, 197, 0.15); 
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }

        .search-bar {
            display: flex;
            align-items: center;
            margin-left: 20px;
            border: 1px solid var(--color-accent);
            border-radius: 10px; 
            overflow: hidden;
        }

        .search-bar input {
            background: rgba(255, 255, 255, 0.05);
            border: none;
            outline: none;
            padding: 8px 12px;
            width: 150px; 
            color: var(--color-text-light);
            border-radius: 0;
        }

        .search-btn {
            background-color: var(--color-accent);
            color: var(--color-dark);
            padding: 8px 10px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            font-size: 1rem;
            line-height: 1.2;
            font-weight: 700;
            flex-shrink: 0;
        }

        .search-btn:hover {
            background-color: var(--color-accent-glow);
            box-shadow: 0 0 5px var(--color-accent-glow);
        }


        .auth-actions a.primary-btn {
            background-color: var(--color-accent);
            color: var(--color-dark);
            padding: 8px 18px;
            font-weight: 700;
            margin-left: 15px;
        }

        .auth-actions a.primary-btn:hover {
            background-color: var(--color-accent-glow);
            box-shadow: 0 0 10px var(--color-accent-glow);
            color: #000;
            transform: scale(1.05);
        }
        
        #menu-toggle {
            display: none;
        }
        
        .menu-icon-label {
            display: none; 
            font-size: 1.75rem;
            cursor: pointer;
            color: var(--color-accent-glow);
            order: 3;
            z-index: 101;
        }

        nav {
            position: static;
            flex-direction: row;
        }

        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap; 
            }
            .menu-icon-label {
                display: block; 
            }
            
            nav {
                position: absolute;
                top: 100%; 
                left: 0;
                width: 100%;
                background-color: var(--color-surface);
                flex-direction: column;
                align-items: stretch;
                height: 0;
                overflow: hidden;
                opacity: 0;
                transition: all 0.3s ease-in-out;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
            }
            
            nav a {
                margin: 0;
                padding: 13px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                text-align: center;
            }

            #menu-toggle:checked ~ nav {
                height: 250px; 
                opacity: 1;
                overflow: visible;
            }
        }

        .hero-section {
            padding: 35px 10 60px 0;
            text-align: left;
            border-bottom: none; 
            background-color: var(--color-dark);
        }

        .hero-layout {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .hero-content {
            flex: 1;
            max-width: 50%;
        }
        
        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 50%;
        }

        .hero-section h1 {
            font-family: 'Inter', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #fff;
        }
        
        
        .animated-heading {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }

        @keyframes letter-stagger-family {
            0%, 8% { opacity: 0; transform: translateY(20px); }
            10% { opacity: 1; transform: translateY(0); }
            45% { opacity: 1; transform: translateY(0); }
            50%, 100% { opacity: 0; transform: translateY(-20px); }
        }

        @keyframes letter-stagger-army {
            0%, 58% { opacity: 0; transform: translateY(20px); }
            60% { opacity: 1; transform: translateY(0); }
            95% { opacity: 1; transform: translateY(0); }
            100% { opacity: 0; transform: translateY(-20px); }
        }

        .word-cycler {
            position: relative;
            height: 3.5rem; 
            display: flex;
            align-items: center;
        }

        .word-animated {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-accent);
            display: inline-block;
            white-space: nowrap;
        }

        .word-animated span {
            display: inline-block;
            opacity: 0;
        }

        .family-word span { animation: letter-stagger-family 6s infinite; }
        .family-word span:nth-child(1) { animation-delay: 0.1s; }
        .family-word span:nth-child(2) { animation-delay: 0.2s; }
        .family-word span:nth-child(3) { animation-delay: 0.3s; }
        .family-word span:nth-child(4) { animation-delay: 0.4s; }
        .family-word span:nth-child(5) { animation-delay: 0.5s; }
        .family-word span:nth-child(6) { animation-delay: 0.6s; }
        .family-word span:nth-child(7) { animation-delay: 0.7s; }

        .army-word span { animation: letter-stagger-army 6s infinite; }
        .army-word span:nth-child(1) { animation-delay: 0.1s; } 
        .army-word span:nth-child(2) { animation-delay: 0.2s; }
        .army-word span:nth-child(3) { animation-delay: 0.3s; }
        .army-word span:nth-child(4) { animation-delay: 0.4s; }
        .army-word span:nth-child(5) { animation-delay: 0.5s; }
        .army-word span:nth-child(6) { animation-delay: 0.6s; }
        .army-word span:nth-child(7) { animation-delay: 0.7s; }
        .army-word span:nth-child(8) { animation-delay: 0.8s; }
        .army-word span:nth-child(9) { animation-delay: 0.9s; }
        .army-word span:nth-child(10) { animation-delay: 1.0s; }
        .army-word span:nth-child(11) { animation-delay: 1.1s; }

        .hero-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--color-text-dim);
            font-weight: 300;
            max-width: 90%;
        }
    
        .hero-ctas {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap; 
        }

        .hero-cta {
            padding: 14px 30px;
            background-color: var(--color-accent);
            color: var(--color-dark);
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 8px;
            border: 2px solid var(--color-accent);
            animation: neon-pulse 2s infinite alternate ease-in-out;
        }

        .hero-cta:hover {
            animation: none;
            transform: scale(1.05);
            background-color: var(--color-accent-glow);
            box-shadow: 0 0 20px rgba(54, 75, 197, 0.8);
        }
        
        .hero-secondary-cta {
            padding: 14px 30px;
            background: none;
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 8px;
            border: 2px solid var(--color-accent);
        }
        
        .hero-secondary-cta:hover {
            background-color: rgba(54, 75, 197, 0.15);
            color: var(--color-accent-glow);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat-box {
            text-align: left;
        }

        .stat-box h4 {
            font-family: 'Inter', sans-serif; 
            font-size: 2rem;
            color: var(--color-accent-glow);
            margin-bottom: 5px;
            line-height: 1;
        }

        .stat-box p {
            font-size: 0.9rem;
            color: var(--color-text-dim);
            margin: 0;
        }
        
        @keyframes blink-cursor {
            50% { background-color: transparent; }
        }

        @keyframes typing {
            from { width: 0; }
        }

        .terminal-visual {
            width: 350px; 
            height: 350px; 
            background-color: var(--color-code-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(54, 75, 197, 0.4);
            animation: float 4s infinite alternate ease-in-out; 
            border: 1px solid var(--color-accent);
        }

        .terminal-header {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            background-color: var(--color-surface);
            border-bottom: 1px solid #333;
            position: relative;
        }

        .terminal-buttons {
            display: flex;
            gap: 6px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot.red { background-color: #ff5f56; }
        .dot.yellow { background-color: #ffbd2e; }
        .dot.green { background-color: #27c93f; }

        .terminal-title {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            color: var(--color-text-dim);
            font-size: 0.8rem;
            font-family: 'Roboto Mono', monospace; 
        }

        .terminal-body {
            padding: 15px;
            font-family: 'Roboto Mono', monospace; 
            font-size: 0.9rem;
            white-space: pre-wrap; 
            color: var(--color-text-light);
        }

        .terminal-line {
            margin: 0;
            line-height: 1.4;
        }
        
        .prompt {
            color: var(--color-accent-glow);
            font-weight: bold;
            margin-right: 5px;
        }
        
        .keyword { color: #f08d49; } 
        .function { color: #3a86ff; } 
        .comment { color: #6a9955; } 
        .variable { color: #cc6666; } 
        .string { color: #a9b7c6; } 

        .cursor {
            display: inline-block;
            width: 8px;
            height: 14px;
            background-color: var(--color-accent-glow);
            margin-left: 2px;
            animation: blink-cursor 0.7s steps(1) infinite;
        }
        
        .animated-text {
            width: 0;
            overflow: hidden;
            white-space: nowrap;
            opacity: 0; 
            animation-fill-mode: forwards;
        }

        .typing-dsa { animation: typing 1.5s steps(20) 1.5s forwards; }
        .typing-dsa-2 { animation: typing 2.0s steps(30) 3.5s forwards; }
        .typing-ai { animation: typing 3.0s steps(40) 6.0s forwards; }
        .typing-ai-2 { animation: typing 2.0s steps(35) 9.5s forwards; }
        .typing-ai-3 { animation: typing 0.5s steps(6) 12.0s forwards; }
        .typing-dsa-3 { animation: typing 0.5s steps(6) 13.0s forwards; }
        .typing-dsa, .typing-dsa-2, .typing-ai, .typing-ai-2, .typing-ai-3, .typing-dsa-3 { opacity: 1; }
        .terminal-body pre { opacity: 1; }

        .placement-section {
            background-color: var(--color-dark); 
            padding: 60px 0 80px 0;
        }

        .placement-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            padding-top: 20px;
        }

        .student-card {
            background-color: var(--color-surface); 
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 2px solid #333;
            transition: all 0.3s ease-in-out;
        }

        .student-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 0 15px var(--color-accent-glow);
            border-color: var(--color-accent-glow);
        }

        .photo-container {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 15px;
            border: 4px solid var(--color-accent);
            box-shadow: 0 0 10px rgba(54, 75, 197, 0.5);
        }

        .student-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .student-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-text-light);
            margin-bottom: 5px;
        }

        .company-section {
            margin-top: 15px;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }

        .company-logo-img {
            height: 30px;
            max-width: 100px;
            margin: 5px auto;
            display: block;
            filter: grayscale(10%) brightness(1.2); 
        }

        .placement-role {
            font-size: 0.9rem;
            color: var(--color-text-dim);
            margin-top: 5px;
        }

        .placement-badge {
            display: inline-block;
            background-color: var(--color-accent);
            color: var(--color-dark);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-top: 8px;
        }

        .courses-section {
            background-color: var(--color-dark);
        }

        .course-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            perspective: 1000px;
        }

        .flip-card-container {
            width: 300px; 
            height: 350px;
            margin: 20px;
            perspective: 1000px;
        }

        .flip-card {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.6s, box-shadow 0.3s; 
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }

        .flip-card-container:hover .flip-card {
            transform: rotateY(180deg) scale(1.03); 
            background-color: #333;
            box-shadow: 0 0 15px #5c5656;
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 12px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-around;
            border: 2px solid var(--color-surface);
        }

        .flip-card-front {
            background-color: #1f1f1f;
            color: var(--color-text-light);
            box-shadow: 0 0 10px #0078D4;
            z-index: 2;
        }

        .flip-card-back {
            background-color: #1f1f1f;
            color: var(--color-dark);
            transform: rotateY(180deg);
            padding-top: 15px;
            justify-content: flex-start;
        }
        
        .card-thumbnail {
            font-size: 5rem;
            margin-bottom: 10px;
            font-family: 'Inter', sans-serif; 
            font-weight: 700;
            width: 100%;
            height: 120px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            color: var(--color-text-light); 
        }

        .card-thumbnail.dsa { 
            background-image: url('https://placehold.co/300x120/F08D49/000000?text=DSA+FUNDAMENTALS');
            background-color: var(--color-dsa);
        }
        .card-thumbnail.genai { 
            background-image: url('https://placehold.co/300x120/4A62E0/FFFFFF?text=GEN+AI+LLM'); 
            background-color: var(--color-genai);
        }
        .card-thumbnail.sysd { 
            background-image: url('https://placehold.co/300x120/27C93F/000000?text=SYSTEM+DESIGN'); 
            background-color: var(--color-sysd);
        }

        .card-front-title {
            font-size: 1.4rem;
            color:var(--color-accent-glow);
            text-align: center;
            font-family: 'Inter', sans-serif;
        }
        
        .back-title {
            font-size: 1.6rem;
            color: var(--color-accent-glow);
            margin-bottom: 15px;
            text-align: center;
        }

        .back-features {
            list-style: none;
            padding-left: 0;
            margin: 0;
            color: var(--color-dark);
            text-align: left;
            width: 100%;
        }

        .back-features li {
            padding: 5px 0;
            font-size: 0.95rem;
            color: white;
        }
        .back-features li::before {
            content: '➤'; 
            color: white;
            font-weight: 700;
            margin-right: 10px;
        }
        
        .back-cta {
            display: block;
            width: 90%;
            padding: 10px;
            background-color: var(--color-dark);
            color: var(--color-text-light);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 700;
            text-align: center;
            margin-top: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        }
        
        .back-cta:hover {
            background-color: #333;
            color: var(--color-text-light);
            box-shadow: 0 0 10px #0078D4;
            transform: scale(1.02);
        }
     
        @keyframes play-pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
            70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
        }

        .tutorial-grid {
            display: flex; 
            gap: 30px;
            margin-top: 20px;
            overflow-x: auto; 
            overflow-y: hidden;
            flex-wrap: nowrap; 
            padding-bottom: 20px; 
        }

        .video-card {
            display: block;
            background-color: var(--color-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: var(--color-text-light);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #333;
            flex-shrink: 0; 
            width: 300px; 
        }

        .video-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 0 10px var(--color-accent);
            border-color: var(--color-accent);
        }

        .video-thumb {
            height: 160px;
            width: 100%;
            background-color: #0d0d12;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 3rem;
            font-weight: 900;
            color: var(--color-text-light);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }
    
        .dsa-thumb { background-image: url('https://img.youtube.com/vi/WOyZid8OkkI/mqdefault.jpg'); background-color: var(--color-dsa); }
        .genai-thumb { background-image: url('https://img.youtube.com/vi/Nivn_-2huK4/mqdefault.jpg'); background-color: var(--color-genai); }
        .sysd-thumb { background-image: url('https://img.youtube.com/vi/nvYFFp-Af08/mqdefault.jpg'); background-color: var(--color-sysd); }
        .mern-thumb { background-image: url('https://img.youtube.com/vi/shrD2GiF2ng/mqdefault.jpg'); background-color: var(--color-dsa); }
        .loom-thumb { background-image: url('https://img.youtube.com/vi/OWp3F9VlUT0/mqdefault.jpg'); background-color: var(--color-loom); }
        .placement-thumb { background-image: url('https://img.youtube.com/vi/RgTQNL5jvAo/mqdefault.jpg'); background-color: var(--color-loom);}
        
        .video-thumb::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.7); 
            border-radius: 50%;
            border: 3px solid var(--color-text-light);
            opacity: 0.9;
            transition: all 0.3s;
            z-index: 2; 
        }
        
        .video-thumb::before {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 12px 0 12px 20px;
            border-color: transparent transparent transparent var(--color-text-light);
            z-index: 5;
            transition: all 0.3s;
            transform: translateX(2px); 
        }
   
        .video-card:hover .video-thumb::after {
            opacity: 1;
            transform: scale(1.1);
            animation: play-pulse 1.5s infinite; 
        }
        
        .video-card:hover .video-thumb::before {
            border-color: transparent transparent transparent var(--color-accent-glow);
            transform: scale(1.2) translateX(2px);
        }

        .video-card h4 {
            padding: 15px 15px 5px;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .video-card p {
            padding: 0 15px 15px;
            font-size: 0.85rem;
            color: var(--color-text-dim);
        }

        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 300;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .video-modal:target {
            display: flex;
            opacity: 1;
        }
        
        .modal-video-content {
            background-color: var(--color-dark);
            border-radius: 15px;
            width: 90%;
            max-width: 900px;
            padding: 20px;
            box-shadow: 0 0 30px rgba(54, 75, 197, 0.5);
            transform: scale(0.8); 
            opacity: 0;
            transition: transform 0.4s ease-out, opacity 0.4s ease-out;
            position: relative;
        }
        
        .video-modal:target .modal-video-content {
            transform: scale(1);
            opacity: 1;
        }

        .video-player {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; 
            height: 0;
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
        }
        
        .video-player iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .modal-close-btn {
            position: absolute;
            top: -10px;
            right: -10px;
            color: var(--color-accent-glow);
            background: var(--color-dark);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            line-height: 26px;
            text-align: center;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            border: 2px solid var(--color-accent-glow);
            box-shadow: 0 0 10px var(--color-accent-glow);
            transition: transform 0.2s, box-shadow 0.2s;
            z-index: 301;
        }
        
        .modal-close-btn:hover {
            transform: rotate(90deg) scale(1.1);
            color: #fff;
        }

        .modal-video-content h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: var(--color-accent-glow);
        }
        
        .modal-video-content p {
            color: var(--color-text-dim);
            font-size: 1rem;
        }
        
        .about-us-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .profile-anchor {
            position: absolute;
            top: -70px; 
            width: 1px;
            height: 1px;
            overflow: hidden;
            z-index: -1;
          scroll-margin-top: 11vh;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden; 
            border-radius: 12px;
            background-color: var(--color-surface);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .carousel-track {
            display: flex;
            width: 300%;
            transition: transform 0.6s ease-in-out; 
        }

        .profile-card {
            width: 33.333%; 
            flex-shrink: 0;
            padding: 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 400px;
            position: relative;
        }

        .profile-image-container {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 20px;
            border: 3px solid var(--color-accent);
            box-shadow: 0 0 15px rgba(54, 75, 197, 0.5);
            transition: transform 0.4s ease-out, border-color 0.4s;
        }

        .profile-image-container:hover {
            transform: scale(1.05) rotate(2deg);
            border-color: var(--color-text-light);
        }

        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .profile-card h4 {
            font-size: 1.8rem;
            color: var(--color-accent-glow);
            margin-bottom: 5px;
            transition: color 0.3s, text-shadow 0.3s;
        }
        .profile-card h4:hover {
             color: #fff; 
             text-shadow: 0 0 5px var(--color-accent-glow);
             cursor: pointer;
        }

        .profile-card h5 {
            font-size: 1rem;
            color: var(--color-text-dim);
            margin-bottom: 20px;
            font-weight: 400;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .profile-card h5:hover {
            color: var(--color-accent-glow);
        }

        .profile-card p {
            color: var(--color-text-light);
            font-size: 1rem;
            font-weight: 300;
        }

        .carousel-wrapper:has(#profile-1:target) .carousel-track,
        .carousel-wrapper:not(:target) .carousel-track {
            transform: translateX(0%); 
        }

        .carousel-wrapper:has(#profile-2:target) .carousel-track {
            transform: translateX(-33.333%); 
        }

        .carousel-wrapper:has(#profile-3:target) .carousel-track {
            transform: translateX(-66.666%); 
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            padding: 0;
            pointer-events: none; 
        }
        
        .carousel-nav a {
            position: absolute;
            color: var(--color-accent-glow);
            text-decoration: none;
            font-size: 2.5rem;
            padding: 5px 10px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.4);
            pointer-events: all; 
            line-height: 1;
            cursor: pointer;
            transition: all 0.3s, opacity 0.3s;
            opacity: 0;
            visibility: hidden;
            top: 50%;
            transform: translateY(-50%);
        }

        .carousel-nav a:hover {
            background: rgba(54, 75, 197, 0.6);
            color: #fff;
            box-shadow: 0 0 15px var(--color-accent-glow);
        }
        
        .carousel-nav .prev-btn {
            left: 10px;
        }
        .carousel-nav .next-btn {
            right: 10px;
        }
        
        .carousel-wrapper:has(#profile-1:target) .nav-p1.prev-btn,
        .carousel-wrapper:has(#profile-1:target) .nav-p1.next-btn,
        .carousel-wrapper:not(:target) .nav-p1.prev-btn,
        .carousel-wrapper:not(:target) .nav-p1.next-btn {
            opacity: 1;
            visibility: visible;
        }

        .carousel-wrapper:has(#profile-2:target) .nav-p2.prev-btn,
        .carousel-wrapper:has(#profile-2:target) .nav-p2.next-btn {
            opacity: 1;
            visibility: visible;
        }

        .carousel-wrapper:has(#profile-3:target) .nav-p3.prev-btn,
        .carousel-wrapper:has(#profile-3:target) .nav-p3.next-btn {
            opacity: 1;
            visibility: visible;
        }

        .dot-indicators {
            text-align: center;
            padding-top: 20px;
        }

        .dot-indicator {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--color-text-dim);
            border-radius: 50%;
            margin: 0 5px;
            text-decoration: none;
            transition: background 0.3s, transform 0.3s;
        }

        .carousel-wrapper:has(#profile-1:target) ~ .dot-indicators .dot-1,
        .carousel-wrapper:not(:target) ~ .dot-indicators .dot-1 {
            background: var(--color-accent-glow);
            transform: scale(1.2);
        }
        .carousel-wrapper:has(#profile-2:target) ~ .dot-indicators .dot-2 {
            background: var(--color-accent-glow);
            transform: scale(1.2);
        }
        .carousel-wrapper:has(#profile-3:target) ~ .dot-indicators .dot-3 {
            background: var(--color-accent-glow);
            transform: scale(1.2);
        }

        @media (max-width: 600px) {
            .profile-card {
                padding: 20px 10px;
            }
            .profile-card h4 {
                font-size: 1.5rem;
            }
            .profile-card p {
                font-size: 0.9rem;
            }
            .nav-button {
                font-size: 1.8rem;
            }
        }

        .faq-section {
            background-color: var(--color-dark);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            list-style: none;
            padding: 0;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            background-color: var(--color-surface);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid #333;
        }

        .faq-question-link {
            display: block;
            padding: 20px;
            color: var(--color-text-light);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            position: relative;
            cursor: pointer;
            background-color: var(--color-surface);
            transition: background-color 0.3s;
        }

        .faq-question-link:hover {
            background-color: rgba(54, 75, 197, 0.1);
        }

        .faq-question-link::after {
            content: '+';
            position: absolute;
            right: 20px;
            font-size: 1.5rem;
            line-height: 1;
            transition: transform 0.3s;
            color: var(--color-accent-glow);
        }

        .faq-answer {
            max-height: 0;
            padding: 0 20px;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
            background-color: #1a1a1a; 
        }

        .faq-answer p {
            padding: 15px 0;
            color: var(--color-text-dim);
            font-size: 1rem;
        }

        .faq-item:target .faq-answer {
            max-height: 200px; 
            padding: 15px 20px;
        }

        .faq-item:target .faq-question-link::after {
            content: '-';
            transform: rotate(0deg);
        }

        .contact-section {
             background-color: var(--color-dark);
             padding: 70px; 
        }
        
        .contact-form-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-description {
            font-size: 1.1rem;
            color: var(--color-text-dim);
            text-align: center;
            margin-bottom: 40px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-full-width {
            grid-column: 1 / -1; 
        }

        .contact-form-group {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .contact-form-group label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-text-light);
            margin-bottom: 8px;
        }

        .contact-form-group input,
        .contact-form-group textarea {
            background-color: #1a1a1a; 
            border: 1px solid #333;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            color: var(--color-text-light);
            outline: none;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
        }

        .contact-form-group textarea {
            resize: vertical;
            min-height: 150px;
            padding: 15px;
        }

        .contact-form-group input:focus,
        .contact-form-group textarea:focus {
            border-color: var(--color-accent-glow);
            box-shadow: 0 0 0 2px rgba(54, 75, 197, 0.4);
        }

        .send-message-btn {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            color: #fff;
            background: var(--color-accent); 
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            margin-top: 20px;
            transition: all 0.3s;
        }

        .send-message-btn:hover {
            background-color: var(--color-accent-glow);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 15px var(--color-accent-glow);
        }
 
        @media (max-width: 600px) {
            .form-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .contact-form-group input,
            .contact-form-group textarea {
                padding: 10px 12px;
            }
        }
        
        .social-stats-container {
             padding-top: 60px; 
             text-align: center;
        }

        .social-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .stat-card {
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s, box-shadow 0.3s;
          
        }

         #youtube:hover{
            transform: translateY(-5px);
             box-shadow: 0 10px 20px rgba(255, 0, 0, 0.7);
         }
          #twitter:hover{
            transform: translateY(-5px);
             box-shadow: 0 10px 20px rgba(79, 65, 65, 0.7);
         }
          #instagram:hover{
            transform: translateY(-5px);
             box-shadow: 0 10px 20px rgba(242, 2, 122, 0.833);
         }
          #linkedin:hover{
            transform: translateY(-5px);
             box-shadow: 0 10px 20px rgba(0, 30, 255, 0.7);
         }

        .stat-card h3 {
             font-size: 2.2rem;
             font-weight: 900;
             margin-bottom: 5px;
             color: var(--color-text-light);
        }

        .stat-card p {
             font-size: 1rem;
             color: var(--color-text-dim);
             font-weight: 600;
        }
        
        .stat-card a{
              text-decoration: none;
        }

        #site-footer {
            background-color: var(--color-footer-dark);
            padding: 50px 0;
            border-top: 5px solid;
          
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr; 
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #333;
            margin-bottom: 20px;
        }
        
        .footer-col h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-accent-glow);
            margin-bottom: 20px;
        }

        .footer-branding h4 {
            color: var(--color-accent-glow);
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 10px;
        }
        .footer-branding p {
            font-size: 0.9rem;
            color: var(--color-text-dim);
            margin-bottom: 20px;
        }

        .footer-link-list {
            list-style: none;
            padding: 0;
        }

        .footer-link-list a {
            color: var(--color-text-dim);
            text-decoration: none;
            display: block;
            padding: 5px 0;
            font-size: 0.9rem;
        }

        .footer-link-list a:hover {
            color: var(--color-text-light);
            transform: translateX(5px);
        }

        .footer-social-text {
            font-size: 0.9rem;
            color: var(--color-text-dim);
            margin-bottom: 20px;
        }

        .footer-social-text a{
            color: white;
            text-decoration: none;
        }
  
        .footer-copyright {
            text-align: center;
            font-size: 0.85rem;
            color: var(--color-text-dim);
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr; 
            }
            .footer-branding, .footer-social {
                grid-column: span 2; 
            }
            .footer-branding { order: 1; text-align: center; }
            .footer-social { order: 4; text-align: center; }
            
            .footer-col {
                padding-top: 20px;
            }
        }
        
        @media (max-width: 600px) {
             .footer-grid {
                grid-template-columns: 1fr; 
             }
             .footer-branding, .footer-social, .footer-col {
                 grid-column: span 1;
             }
        }
        
        .page-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 200;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease-in-out;
        }
        
        .page-modal:target {
            display: flex;
            opacity: 1;
            pointer-events: all;
        }

        .modal-content {
            background-color: var(--color-modal-bg); 
            padding: 40px;
            border-radius: 15px;
            width: 100%;
            max-width: 400px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); 
            transform: translateY(-50px);
            transition: transform 0.4s ease-in-out;
            color: var(--color-dark); 
            border: none; 
        }
        
        .page-modal:target .modal-content {
            transform: translateY(0);
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            color: var(--color-dark); 
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            line-height: 1;
        }
        
        .close-btn:hover {
            color: var(--color-accent);
        }

        .modal-content h2 {
            font-size: 2rem;
            margin-bottom: 30px; 
            text-align: center;
            font-family: 'Inter', sans-serif; 
            color: var(--color-dark);
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 20px; 
        }
        
        .modal-content input[type="email"],
        .modal-content input[type="password"],
        .modal-content input[type="text"] {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px; 
            background-color: #f8f8f8; 
            color: var(--color-dark);
            font-size: 1rem;
            outline: none;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 
        }

        .modal-content input:focus {
            box-shadow: 0 0 0 2px var(--color-accent); 
        }
    
        .tab-selector {
            display: flex;
            background-color: #f0f0f0; 
            border-radius: 10px;
            padding: 5px;
            margin-bottom: 30px;
            border: none;
        }
        
        .tab-selector a {
            flex-grow: 1;
            text-align: center;
            padding: 10px 0;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            color: var(--color-dark); 
        }
        
        .tab-selector .active-tab {
            background: var(--color-login-gradient); 
            color: var(--color-text-light); 
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transform: scale(1.01);
        }
        
        .tab-selector .inactive-tab:hover {
            color: var(--color-accent);
            background-color: transparent;
        }

        .forgot-password {
            text-align: left;
            margin-bottom: 30px; 
            font-size: 0.9rem;
        }
        .forgot-password a {
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 600;
        }

        .modal-submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--color-login-gradient); 
            color: var(--color-text-light);
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .modal-submit-btn:hover {
            opacity: 0.95;
            box-shadow: 6px 20px rgba(0, 0, 0, 0.3);
            transform: translateY(-1px);
        }
        
        .modal-footer-link {
            text-align: center;
            margin-top: 30px; 
            font-size: 0.9rem;
            color: var(--color-dark);
        }
        .modal-footer-link a {
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 600;
        }

        @media (min-width: 993px) {
            .search-bar { display: flex; }
            .menu-icon-label { display: none; }
            nav {
                position: static; flex-direction: row; height: auto !important; opacity: 1 !important; box-shadow: none;
                justify-content: center; gap: 10px; flex-grow: 1;
            }
            nav a { border-bottom: none; margin-left: 15px; padding: 6px 10px; text-align: left; }
            .course-grid { justify-content: space-around; }
            .flip-card-container { width: 30%; max-width: 300px; margin: 20px 0; }
        }

        @media (max-width: 992px) {   
            .header-content { flex-wrap: wrap; justify-content: space-between; align-items: center; }
            .logo { margin-bottom: 0; }
            .auth-actions { width: 100%; justify-content: space-around; margin-top: 10px; margin-bottom: 10px; order: 3; }
            .search-bar { display: none; }
            .menu-icon-label { display: block; }
            
            nav {
                position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--color-surface);
                flex-direction: column; align-items: stretch; height: 0; overflow: hidden; opacity: 0;
                transition: all 0.3s ease-in-out; box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
            }
            #menu-toggle:checked ~ nav { height: 250px; opacity: 1; overflow: visible; }

            .hero-layout { flex-direction: column; text-align: center; }
            .hero-content, .hero-visual { max-width: 100%; }
            .hero-section h1 { font-size: 2.5rem; }
            .animated-heading { justify-content: center; margin-top: 0; margin: 0 auto; margin-right:350px}
            .hero-ctas { justify-content: center; }
            .hero-stats { justify-content: center; gap: 20px; }
            .stat-box { text-align: center; }
            .hero-visual { display: flex; margin-top: 20px; margin-bottom: 20px; justify-content: center; }
            .terminal-visual { width: 90vw; height: 90vw; max-width: 350px; max-height: 350px; }
            .course-grid { flex-direction: column; gap: 20px; }
            .flip-card-container { width: 95%; max-width: 350px; height: 320px; margin: 10px auto; }
            .section-title { font-size: 2rem; }
     
            .placement-grid {
                grid-template-columns: 1fr; 
                max-width: 350px;
                margin: 20px auto 0 auto;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
           
            .social-stats-grid {
                 grid-template-columns: 1fr;
                 max-width: 350px;
                 margin: 40px auto 0 auto;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                text-align: center;
            }
            .footer-branding, .footer-social {
                grid-column: span 2;
                text-align: center;
            }
            .footer-link-list a {
                padding: 5px 0;
            }
            .footer-branding p {
                padding: 0 10%;
            }
        }

        @media(max-width:400px){
            .hero-section h1{
                font-size: 2.2rem;
            }
           .animated-heading{
           margin-right: 307px;
           }
           
            }
        
        @keyframes autoRun3d {
  from {
    transform: perspective(800px) rotateY(-360deg);
  }
  to {
    transform: perspective(800px) rotateY(0deg);
  }
}

@keyframes animateBrightness {
  10% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(0.1);
  }
  90% {
    filter: brightness(1);
  }
}

.card-3d {
  position: relative;
  width: 992;
  height: 150px;
  transform-style: preserve-3d;
  transform: perspective(900px);
  animation: autoRun3d 20s linear infinite;
  will-change: transform;
  display: flex;
}

.card-3d div {
  position: absolute;
  width: 120px;
  height: 180px;
  background-color: rgb(199, 199, 199);
  border: solid 1px lightgray;
  border-radius: 0.5rem;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transition-duration: 200ms;
  will-change: transform, filter;
  justify-content: center;
}

.card-3d:hover {
  animation-play-state: paused !important;  
}

.card-3d:hover div {
  animation-play-state: paused !important;
     box-shadow: 0 0 15px #0078D4;
      animation:forwards;
}

.card-3d div:nth-child(1) {
  transform: translate(-50%, -50%) rotateY(0deg) translateZ(150px);
  animation-delay: -0s;
   background-image:url('https://image2url.com/images/1759943895873-99a965b5-f84a-4df6-b158-367ac55efe0f.png');
    background-size: 120px 180px;
}

.card-3d div:nth-child(2) {
  transform: translate(-50%, -50%) rotateY(60deg) translateZ(150px);
  animation-delay: -2s;
    background-image:url('https://image2url.com/images/1759943955808-a2e8713b-c2e1-4ac0-abb9-2071e396f5e6.png');
     background-size: 120px 180px;
}

.card-3d div:nth-child(3) {
  transform: translate(-50%, -50%) rotateY(120deg) translateZ(150px);
  animation-delay: -4s;
     background-image:url('https://image2url.com/images/1759943986866-f30d6fff-55d7-4ac1-8254-e24dbd51e37b.png');
      background-size: 120px 180px;
}

.card-3d div:nth-child(4) {
  transform: translate(-50%, -50%) rotateY(180deg) translateZ(150px);
  animation-delay: -6s;
    background-image:url('https://image2url.com/images/1759943895873-99a965b5-f84a-4df6-b158-367ac55efe0f.png');
     background-size: 120px 180px;
}

.card-3d div:nth-child(5) {
  transform: translate(-50%, -50%) rotateY(240deg) translateZ(150px);
  animation-delay: -8s;
    background-image:url('https://image2url.com/images/1759940593200-cde71c5e-4921-4023-996c-a8e18dae7c8e.png');
   background-size: 120px 180px;
}

.card-3d div:nth-child(6) {
  transform: translate(-50%, -50%) rotateY(300deg) translateZ(150px);
  animation-delay: -10s;
    background-image:url('https://image2url.com/images/1759943986866-f30d6fff-55d7-4ac1-8254-e24dbd51e37b.png') ;
    background-size: 120px 180px;
}

.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: center;
  padding: 40px;
 background-color: (--color-dark);
}

.review-card {
  width: 250px;
  height: 300px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px; 
     border: 2px solid #333;
}

.review-card:hover{
    box-shadow: rgb(0, 120, 212) 0px 0px 20px;
}

.review-card::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 150%;
  transform-origin: center;
}

.review-card::after {
  content: "";
  position: absolute;
  inset: 5px;
  background:#1f1f1f;
  border-radius: 15px;
  z-index: 1;
}

.review-h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  pointer-events: none;
  z-index: 2;
}

.live1{
    margin-left: 22px;  
}

.live2{
    margin-left: 35px;
}

.live3{
    margin-left: 33px;
}

.review-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  transform: translateY(100%);
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.review-content .review-h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.review-content p {
  font-size: 14px;
  line-height: 1.4em;
}

.review-card:hover .review-content {
  transform: translateY(0);
  opacity: 1;
  
}

.review-card:hover .review-h4 {
  opacity: 0;
}

