body {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: 'Poppins', sans-serif;

    background-color: #02060c;

    overflow-x: hidden;

}



/* --- NAVIGATION --- */

header {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

}



.nav {

    width: 90%;

    height: 80px;

    margin: 20px auto;

    border-radius: 40px;

    align-items: center;

    border: 1px solid rgba(255, 255, 255, 0.5);

    display: flex;

    justify-content: space-between;

    background-color: rgba(255, 255, 255, 0.93);

    box-shadow: 10px 10px 10px rgba(105, 125, 252, 0.4), -5px -10px 15px rgba(106, 116, 251, 0.3);

    backdrop-filter: blur(15px);

    padding: 0 20px;

}



.nav .logo img { width: 200px; height: auto; }

.nav ul { display: flex; align-items: center; list-style: none; padding: 0; }

.nav ul li { margin: 0 15px; }



.nav ul li a {

    text-decoration: none;

    color: #444;

    font-size: 18px;

    font-weight: 600;

    position: relative;

    padding: 12px 28px;

    display: inline-block;

    z-index: 1;

    overflow: hidden;

    border-radius: 30px;

    transition: 0.4s;

}



.nav ul li a::before {

    content: "";

    position: absolute;

    top: 0; left: 0;

    width: 100%; height: 100%;

    background: linear-gradient(45deg, #00c6ff, #0072ff);

    z-index: -1;

    transform: translateY(100%);

    transition: transform 0.5s cubic-bezier(0.6, 0.01, 0, 1);

}



.nav ul li a:hover { color: #fff; transform: scale(1.15); }

.nav ul li a:hover::before { transform: translateY(0); }



.nav search input {

    width: 180px; height: 38px; border: none; background: transparent;

    box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff;

    border-radius: 20px; text-align: center; outline: none; transition: all 0.3s ease;

}

.nav search input:focus { width: 220px; }



:root {

    --orbit-color: rgba(0, 170, 255, 0.2);

    --planet-glow: #00aaff;

    --text-orange: #ff5e3a;

    --pink-glow: #00aaff;

    --ds-neon: #ff007f;

    --cs-cyan: #00f2ff;

    --da-gold: #ffcc00;

    --ai-purple: #8a2be2;

}



/* --- CAROUSEL STRUCTURE --- */

.hero-carousel {

    height: 100vh;

    position: relative;

    background: radial-gradient(circle at center, #0a192f 0%, #02060c 100%);

    overflow: hidden;

    z-index: 1;

}



.slider-track {

    display: flex;

    width: 600vw;

    height: 100%;

    transition: transform 1s cubic-bezier(0.7, 0, 0.3, 1);

}



.slide {

    width: 100vw;

    height: 100vh;

    display: flex;

    justify-content: space-between;

    align-items: center;

    position: relative;

    padding: 90px;

    box-sizing: border-box;

    padding-top: 60px;

    

}



/* --- FIXED ALIGNMENT FOR SLIDE 1 --- */

.slide-it {

    justify-content: flex-start !important;

}



.slide-it .hero-content {

    text-align: left;

    margin-left: 0;

    justify-content: space-between;

}



.slide-it .orbit-container {

    margin-left: auto; 

    margin-right: -100px; 



}



.slide-dm, .slide-cs, .slide-da, .slide-ai { justify-content: flex-end; text-align: right; padding-right: 2%; }

.slide-ds { justify-content: flex-start; text-align: left; padding-left: 2%; }



#coding-canvas {

    position: absolute;

    top: 0; left: 0;

    width: 100%; height: 100%;

    opacity: 0.12;

    pointer-events: none;

}



.hero-content {     
     color: #fff; 
     
     max-width: 600px; 
     
     position: relative; 
    
     z-index: 10; 
    
    justify-content: space-between;
}

.slide-dm .hero-content, .slide-cs .hero-content, .slide-da .hero-content, .slide-ai .hero-content { margin-right: -10%; }

.slide-ds .hero-content { margin-left: -10%; }



.hero-content h1 {

    font-family: 'Orbitron', sans-serif;

    font-size: 3.5rem;

    line-height: 1.2;

    letter-spacing: 2px;

    margin-bottom: 20px;

    

}



.typing-container {

    color: var(--text-orange);

    text-shadow: 0 0 20px rgba(255, 94, 58, 0.6);

}



/* --- ORBIT SYSTEM --- */

.orbit-container {

    position: relative;

    width: 650px;

    height: 650px;

    transform-style: preserve-3d;

    

}

.sun {

    position: absolute;

    top: 50%; left: 50%;

    transform: translate(-50%, -50%) rotateX(-45deg);

    z-index: 10;

    text-align: center;

}

.sun-label{
    color: white;
}



.sun img { width: 80px; filter: drop-shadow(0 0 20px var(--planet-glow)); }



.orbit-ring {

    position: absolute;

    top: 50%; left: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid var(--orbit-color);

    border-radius: 50%;

    transform-style: preserve-3d;

}

.ring-1 { width: 200px; height: 200px; animation: rotate 10s linear infinite; }

.ring-2 { width: 320px; height: 320px; animation: rotate 18s linear infinite reverse; }

.ring-3 { width: 440px; height: 440px; animation: rotate 28s linear infinite; }

.ring-4 { width: 550px; height: 550px; animation: rotate 35s linear infinite reverse; }

.ring-5 { width: 650px; height: 650px; animation: rotate 45s linear infinite; }



.planet {

    position: absolute;

    background: rgba(2, 11, 24, 0.9);

    border: 1px solid var(--planet-glow);

    backdrop-filter: blur(8px);

    padding: 10px 18px;

    border-radius: 30px;

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);

    transform: rotateX(-45deg);

}

.p1 { top: 0; left: 50%; transform: translate(-50%, -50%) rotateX(-45deg); }

.p2 { top: 50%; right: -30px; transform: translateY(-50%) rotateX(-45deg); }

.p3 { top: 50%; left: -30px; transform: translateY(-50%) rotateX(-45deg); }

.p4 { bottom: 0; left: 50%; transform: translate(-50%, 50%) rotateX(-45deg); }

.p5 { top: 15%; right: 15%; transform: rotateX(-45deg); }



@keyframes rotate {

    from { transform: translate(-50%, -50%) rotate(0deg); }

    to { transform: translate(-50%, -50%) rotate(360deg); }

}



.cursor { color: var(--text-orange); animation: blink 0.7s infinite; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }



/* --- VIDEO SLIDES --- */

.video-bg {

    position: absolute;

    top: 0; left: 0;

    width: 100%; height: 100%;

    object-fit: cover;

    z-index: 0;

    filter: brightness(0.4);

}



.pink-title { font-family: 'Orbitron'; color: var(--pink-glow); font-size: 4rem; text-shadow: 0 0 20px var(--pink-glow); line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }

.ds-title { font-family: 'Orbitron'; color: var(--ds-neon); font-size: 4rem; text-shadow: 0 0 25px var(--ds-neon); line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }

.cs-title { font-family: 'Orbitron'; color: var(--cs-cyan); font-size: 4rem; text-shadow: 0 0 25px var(--cs-cyan); line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }

.da-title { font-family: 'Orbitron'; color: var(--da-gold); font-size: 4rem; text-shadow: 0 0 25px var(--da-gold); line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }

.ai-title { font-family: 'Orbitron'; color: var(--ai-purple); font-size: 4rem; text-shadow: 0 0 25px var(--ai-purple); line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }



/* --- BUTTONS --- */

.pink-btn {

    background: transparent;

    color: white;

    border: 2px solid var(--pink-glow);

    padding: 15px 45px;

    border-radius: 40px;

    font-family: 'Orbitron';

    font-weight: bold;

    font-size: 1rem;

    cursor: pointer;

    margin-top: 20px;

    position: relative;

    transition: all 0.4s ease;

    text-transform: uppercase;

    letter-spacing: 2px;

    box-shadow: 0 0 15px var(--pink-glow);

    overflow: hidden;

    z-index: 1;

}



.pink-btn:hover {

    transform: scale(1.05);

    background: var(--pink-glow);

    color: #000;

    box-shadow: 0 0 30px var(--pink-glow), 0 0 60px var(--pink-glow);

}



.ds-btn { border-color: var(--ds-neon); box-shadow: 0 0 15px var(--ds-neon); }

.ds-btn:hover { background: var(--ds-neon); box-shadow: 0 0 30px var(--ds-neon), 0 0 60px var(--ds-neon); }



.cs-btn { border-color: var(--cs-cyan); box-shadow: 0 0 15px var(--cs-cyan); }

.cs-btn:hover { background: var(--cs-cyan); box-shadow: 0 0 30px var(--cs-cyan), 0 0 60px var(--cs-cyan); }



.da-btn { border-color: var(--da-gold); box-shadow: 0 0 15px var(--da-gold); }

.da-btn:hover { background: var(--da-gold); box-shadow: 0 0 30px var(--da-gold), 0 0 60px var(--da-gold); }



.ai-btn { border-color: var(--ai-purple); box-shadow: 0 0 15px var(--ai-purple); }

.ai-btn:hover { background: var(--ai-purple); box-shadow: 0 0 30px var(--ai-purple), 0 0 60px var(--ai-purple); }



/* Features Styling */

.dm-features, .ds-features, .cs-features, .da-features, .ai-features { list-style: none; padding: 0; margin: 25px 0; }

.dm-features li, .ds-features li, .cs-features li, .da-features li, .ai-features li { color: #fff; font-size: 1.3rem; margin-bottom: 12px; font-weight: 500; display: flex; align-items: center; }

.dm-features li, .cs-features li, .da-features li, .ai-features li { justify-content: flex-end; }

.ds-features li { justify-content: flex-start; }



.dm-features li::after { content: '✓'; color: #00aaff; margin-left: 15px; font-weight: bold; text-shadow: 0 0 10px #00aaff; }

.ds-features li::before { content: '✓'; color: var(--ds-neon); margin-right: 15px; font-weight: bold; text-shadow: 0 0 10px var(--ds-neon); }

.cs-features li::after { content: '🛡️'; margin-left: 15px; text-shadow: 0 0 10px var(--cs-cyan); }

.da-features li::after { content: '📊'; margin-left: 15px; text-shadow: 0 0 10px var(--da-gold); }

.ai-features li::after { content: '🤖'; margin-left: 15px; text-shadow: 0 0 10px var(--ai-purple); }



/* --- CAROUSEL NAVIGATION DOTS --- */

.carousel-nav {

    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 20px;

    z-index: 100;

}

.nav-btn {

    width: 50px; height: 5px;

    background: rgba(255,255,255,0.2);

    border: none; cursor: pointer;

    transition: 0.3s;

}

.nav-btn.active { background: #00aaff; box-shadow: 0 0 10px #00aaff; }

/* --- SECTION 2 DESIGN --- */
.expert-zone {
    padding: 80px 5%;
    background-color: #f8faff;
}

.expert-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 50px;
    align-items: flex-start;
}

.slider-side { flex: 2; min-width: 0; }

.expert-title {
    font-size: 32px;
    color: #0a192f;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
}

/* SLIDER MAIN BOX */
.slider-container {
    position: relative;
    width: 100%; 
    height: 500px; /* <--- Yahan se Slider ki Height set hogi */
    overflow: hidden;
    border-radius: 25px;
    background: #000;
}

/* CARDS STYLING (External Images Included) */
.course-card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* SMALL CARD SIZE */
    width: 200px;  /* <--- Yahan se card width badalna */
    height: 300px; /* <--- Yahan se card height badalna */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ACTIVE BIG CARDS (Positions 1 & 2) */
.course-card:nth-child(1),
.course-card:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;  
    height: 100%; 
    transform: none;
}

/* STACKED POSITIONS (Right Side) */
.course-card:nth-child(3) { left: 60%; }
.course-card:nth-child(4) { left: calc(60% + 230px); }
.course-card:nth-child(5) { left: calc(60% + 460px); }
.course-card:nth-child(n+6) { left: calc(60% + 690px); opacity: 0; }

/* --- IMAGES ATTACHED HERE --- */
.c1 { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('./image/AI.png'); }
.c2 { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('./image/CS.jpg'); }
.c3 { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('./image/da.jpg'); }
.c4 { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('./image/fullstack.jpg'); }
.c5 { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('./image/cc.jpg'); }
.c6 { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('./image/dm.jpg'); }
.c7 { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('./image/eh.jpg'); }
.c8 { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('./image/se.jpg'); }

/* CARD INFO */
.card-info { position: absolute; bottom: 30px; left: 30px; color: white; }
.card-info h3 { font-size: 28px; margin-bottom: 10px; text-shadow: 2px 2px 5px rgba(0,0,0,0.5); }
.view-btn { padding: 10px 20px; background: #00aaff; border: none; color: #fff; border-radius: 5px; cursor: pointer; }

/* ARROWS */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}
.slider-nav button {
    width: 50px; height: 50px; border-radius: 50%; border: none; background: #fff; color: #00aaff;
    cursor: pointer; font-size: 18px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: 0.3s;
}
.slider-nav button:hover { background: #00aaff; color: #fff; }

/* Is class ko dhoondo aur update karo */
#expertForm {
    display: flex;
    flex-direction: column;
    gap: 25px; /* <--- Ye har input box ke beech gap daal dega */
}

.input-box {
    width: 100%; /* Isey 100% rakho taaki gap sahi dikhe */
    margin-bottom: 0; /* Margin ki jagah humne 'gap' use kar liya hai */
}

/* 1. Pure Card par Hover Animation */
.expert-form-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.expert-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 170, 255, 0.15);
    border-color: #00aaff;
}

/* 2. Input Boxes ki smooth shifting */
.input-box input, .input-box select {
    width: 90%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease-in-out;
    background: #fdfdfd;
}

/* Jab input par click karoge (Focus) */
.input-box input:focus, .input-box select:focus {
    border-color: #00aaff;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
    transform: scale(1.02); /* Halkasa zoom effect */
}

.form-submit-btn {
  font-family: 'Poppins', sans-serif;
  background: #00aaff;
  color: white;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  position: relative;
}

.btn-text { transition: 0.3s; }

/* "SENT" Letters Container */
.sent-letters {
  position: absolute;
  display: flex;
  opacity: 0;
}

.sent-letters .l {
  transform: translateY(30px); /* Shuru mein niche hidden */
  opacity: 0;
  display: inline-block;
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bounce effect */
}

/* --- ACTIVE STATE ANIMATION --- */
.form-submit-btn.active { background: #2ecc71; }

.form-submit-btn.active .btn-text {
  transform: scale(0);
  opacity: 0;
}

.form-submit-btn.active .sent-letters { opacity: 1; }

/* Har letter ka delay (Yahi hai asli maza) */
.form-submit-btn.active .l:nth-child(1) { transition-delay: 0.3s; transform: translateY(0); opacity: 1; }
.form-submit-btn.active .l:nth-child(2) { transition-delay: 0.4s; transform: translateY(0); opacity: 1; }
.form-submit-btn.active .l:nth-child(3) { transition-delay: 0.5s; transform: translateY(0); opacity: 1; }
.form-submit-btn.active .l:nth-child(4) { transition-delay: 0.6s; transform: translateY(0); opacity: 1; }

/* Aeroplane Take-off */
.form-submit-btn.active .svg-wrapper-1 {
  animation: fly-away 0.8s ease-in forwards;
  animation-delay: 0.1s;
}

@keyframes fly-away {
  0% { transform: translateX(0) scale(1); }
  20% { transform: translateX(-10px); }
  100% { transform: translateX(300px) translateY(-100px) rotate(45deg); opacity: 0; }
}

/* Hover basic (Video wala) */
.form-submit-btn:hover .svg-wrapper {
  animation: bounce 0.5s infinite alternate;
}
@keyframes bounce {
  from { transform: translateY(2px); }
  to { transform: translateY(-2px); }
}

/* 4. Labels par subtle fade effect */
.input-box label {
    transition: 0.3s;
}

.input-box:focus-within label {
    color: #00aaff;
    transform: translateX(5px);
}



/* --- UPDATED STATS SECTION (Deep Navy & Fixed Height) --- */
.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center; /* Content vertically center karne ke liye */
    padding: 0 10%; /* Sirf left/right padding */
    background-color: #041021; /* Deep Navy Blue */
    color: #ffffff; /* White text */
    text-align: center;
    height: 180px; /* Fixed height, bhut kum kar di hai */
    margin-top: -1px; /* Koi gap na dikhe upar wale section se */
}

.stat-item {
    padding: 10px;
}

.stat-item h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem; /* Numbers bade rahenge taaki professional lagein */
    color: #00aaff; /* Bright Cyan Highlight for stats */
    margin: 0 0 10px 0; /* Margin niche space ke liye */
    line-height: 1;
}

.stat-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #e0e0e0; /* Off-White for description text */
    margin: 0;
}








/* --- IANT UNIVERSE SECTION --- */
.iant-universe {
    padding: 100px 10%;
    background-color: #ffffff; /* Pure White Background */
    overflow: hidden;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 150px;
    opacity: 0; /* Initially hidden for animation */
    transition: all 1s ease-out;
}

.info-block.reverse { flex-direction: row-reverse; }

.info-content { flex: 1.2; }

.tag {
    color: #00aaff;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.info-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #0a192f;
    line-height: 1.2;
    margin-bottom: 25px;
}

.blue-text { color: #00aaff; }

.info-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Media Animations */
.info-media { flex: 1; perspective: 1000px; }

.media-card {
    width: 650px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 25px 25px 50px #d1d1d1, -25px -25px 50px #ffffff;
    transform: rotateY(-10deg);
    transition: 0.5s;
}

.media-card:hover { transform: rotateY(0deg) scale(1.02); }

.feature-vid { width: 100%; display: block; border-radius: 30px; }

.overlay-stats {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #00aaff;
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0, 170, 255, 0.4);
    
}
.overlay-stats a{
    text-decoration: none;
    color: inherit;
}

/* 3D Glass Box for Partners */
.glass-box-3d {
    background: rgba(0, 170, 255, 0.05);
    border: 2px dashed #00aaff;
    padding: 50px;
    border-radius: 40px;
    text-align: center;
    transform: rotateY(15deg);
}

.partner-logos img {
    width: 120px;
    margin: 15px;
    filter: grayscale(100%);
    transition: 0.4s;
}
.partner-logos img:hover { filter: grayscale(0%); transform: scale(1.1); }

/* Reveal Classes */
.reveal-left { transform: translateX(-100px); }
.reveal-right { transform: translateX(100px); }
.show-me { opacity: 1 !important; transform: translateX(0) !important; }







/* --- FINAL FIX FOR AFFILIATIONS SLIDER --- */

.affiliations-container {
    width: 100%;
    max-width: 600px; 
    height: 180px; /* Standard height */
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.1);
    border: 1px solid rgba(0, 170, 255, 0.1);
    overflow: hidden; /* Bahar ka hide karne ke liye */
    position: relative;
    display: flex;
    align-items: center; /* Vertical center alignment */
}

/* Mask for smooth fade edges */
.affiliations-container::before,
.affiliations-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.affiliations-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}
.affiliations-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-track {
    display: flex;
    width: max-content; /* Content ke hisaab se width */
    align-items: center;
    gap: 50px; /* Space between logos */
    animation: scrollSlide 25s linear infinite; /* 25s is smooth speed */
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-shrink: 0;
}

.logo-group img {
    height: 70px !important; /* Uniform height for all */
    width: auto !important;
    object-fit: contain; /* Photo ko kharab nahi hone dega */
    transition: transform 0.4s ease;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.05)); /* Subtle shadow for depth */
}

/* Hover Effects */
.affiliations-container:hover .logo-track {
    animation-play-state: paused; /* Hover par slider ruk jayega padhne ke liye */
}

.logo-group img:hover {
    transform: scale(1.2);
}



.feature-vid-exact{

    width: 100%;
}

/* --- THE MOVEMENT LOGIC --- */
@keyframes scrollSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Isse humesha -50% hi rakhna seamless loop ke liye */
        transform: translateX(-50%);
    }
}


/* --- CINEMATIC FOOTER MAIN --- */
.cinematic-footer {
    background: #020814; /* Deep Black-Navy */
    padding: 80px 8% 30px;
    position: relative;
    border-top: 2px solid #00aaff33;
    overflow: hidden;
}

.footer-overlay-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 15% 50%, rgba(0, 170, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.footer-main-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* --- LOGO CIRCLE GLOW (AS PER IMAGE) --- */
.logo-glow-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-inner-circle {
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    z-index: 3;
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.5);
}

.logo-inner-circle img {
    width: 100%;
    object-fit: contain;
}

.glow-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid #00aaff;
    border-radius: 50%;
    animation: rotateRing 10s linear infinite;
    box-shadow: 0 0 15px #00aaff, inset 0 0 15px #00aaff;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); border-style: dashed; }
    100% { transform: rotate(360deg); border-style: dashed; }
}

/* --- NEON HEADINGS --- */
.neon-heading {
    font-family: 'Orbitron', sans-serif;
    color: #00aaff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.neon-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00aaff;
    box-shadow: 0 0 10px #00aaff;
}

.brand-info-text{
    color: white;
}
/* --- LINK LISTS --- */
.link-list { list-style: none; padding: 0; }
.link-list li { margin-bottom: 12px; }
.link-list a {
    color: #8892b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.link-list a:hover {
    color: #00aaff;
    text-shadow: 0 0 8px #00aaff;
    padding-left: 8px;
}

.highlight-link {
    color: #00f2ff !important;
    font-weight: bold;
}

/* --- SOCIAL NEON ICONS --- */
.social-neon-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-neon-icons a {
    width: 40px; height: 40px;
    border: 1px solid #00aaff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: 0.4s;
    background: rgba(0, 170, 255, 0.05);
}

.social-neon-icons a:hover {
    background: #00aaff;
    box-shadow: 0 0 20px #00aaff;
    transform: translateY(-5px);
}

/* --- CONTACT & BADGE --- */
.contact-neon p { color: #ccd6f6; margin-bottom: 15px; font-size: 0.9rem; }
.contact-neon i { color: #00aaff; margin-right: 12px; }

.platinum-partner-glow img {
    width: 140px;
    margin-top: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.3));
}

.copyright-bar {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #8892b0;
    font-size: 0.85rem;
}



.heart-pulse { color: #ff007f; display: inline-block; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

.footer-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.neon-wave, .neon-wave-alt {
    fill: none;
    stroke: #00aaff;
    stroke-width: 1.5;
    filter: url(#neonGlow); /* Yeh hai glow ka raaz */
    opacity: 0.4;
    stroke-dasharray: 1000;
}

.neon-wave {
    animation: neonFlow 12s linear infinite;
}

.neon-wave-alt {
    stroke: #0066ff;
    opacity: 0.2;
    animation: neonFlow 20s linear infinite reverse;
}

/* Cyber Dots Animation */
.cyber-dot, .cyber-dot-delayed {
    fill: #00f2ff;
    filter: drop-shadow(0 0 8px #00f2ff);
}

.cyber-dot { animation: pulseGlow 4s infinite; }
.cyber-dot-delayed { animation: pulseGlow 6s infinite 2s; }

/* Keyframes for Motion */
@keyframes neonFlow {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* --- POPUP MAIN STRUCTURE --- */
.popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 5, 15, 0.9); /* Darker backdrop */
    backdrop-filter: blur(12px);
    display: none; justify-content: center; align-items: center;
    z-index: 10000;
}

.popup-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px; /* Reduced padding for better text fit */
    border-radius: 25px;
    width: 90%; max-width: 380px; /* Constraints to prevent text overflow */
    border: 1px solid rgba(0, 170, 255, 0.25);
    box-shadow: 0 0 40px rgba(0, 170, 255, 0.2);
    text-align: center;
    position: relative;
    animation: popupSlideIn 0.4s ease-out;
    overflow: hidden; /* CRITICAL: Keeps everything inside the card */
}

@keyframes popupSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --- FIXED: TRANSPARENT CLOSE BUTTON --- */
.close-btn-clean {
    position: absolute;
    top: 10px; right: 15px;
    background: transparent !important; /* Forces transparent background */
    border: none;
    color: rgba(255, 255, 255, 0.6); /* Subtle color */
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
    line-height: 1;
    z-index: 10001; /* Above all content */
}

.close-btn-clean:hover {
    color: #ff007f; /* Cyber-pink hover */
    transform: rotate(90deg);
}

/* --- LOGO & TEXT FIX --- */
.popup-logo-fix { width: 100px; margin-bottom: 10px; filter: drop-shadow(0 0 5px rgba(255,255,255,0.3)); }
.popup-card h3 { color: #fff; font-family: 'Orbitron', sans-serif; font-size: 1.3rem; margin-bottom: 20px; }

/* --- INPUTS & SELECT FIX (PREVENTS OVERFLOW) --- */
.input-fix, .select-fix {
    width: 100%;
    box-sizing: border-box; /* Standard box sizing to keep borders inside */
    padding: 12px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 170, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
}

/* For long text in select dropdown */
.select-fix {
    appearance: none; /* Removes default browser style */
    color: #ffffff;
    cursor: pointer;
}
.select-fix option { background-color: #041021; color: #fff; } /* Dropdown style */

/* --- NEON SUBMIT BUTTON --- */
.submit-neon-fix {
    width: 100%; padding: 14px;
    background: #00aaff; color: #000;
    border: none; border-radius: 8px;
    font-weight: bold; text-transform: uppercase;
    cursor: pointer; transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
}

.submit-neon-fix:hover {
    background: #00f2ff;
    box-shadow: 0 0 30px #00f2ff;
}


/* --- AI LAUNCHER CORE --- */
.ai-expert-launcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999; /* Above everything */
    font-family: 'Poppins', sans-serif;
}

/* --- THE FULLY ANIMATED TRIGGER BUTTON --- */
.ai-trigger-animated {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
    background: transparent;
}

/* Central Robot Icon with Glowing Shadow */
.robot-glow {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00aaff, #0044ff);
    box-shadow: 0 5px 25px rgba(0, 170, 255, 0.6);
    z-index: 10;
    transition: 0.4s;
}

.robot-glow i {
    color: #fff;
    font-size: 30px;
    animation: iconShake 4s ease-in-out infinite;
}

/* Hover Interaction: Scale and Rotate slightly */
.ai-trigger-animated:hover .robot-glow {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 35px rgba(0, 170, 255, 0.9);
}

/* Animation Keyframes: Subtle Robot Icon Shake */
@keyframes iconShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* --- ANIMATION 1: The Main Pulsing Ring --- */
.launcher-pulse {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(0, 170, 255, 0.3);
    z-index: 1;
    animation: launcherPulseAnim 2s infinite;
}

@keyframes launcherPulseAnim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* --- ANIMATION 2: The Sweeping Orbiting Light --- */
.launcher-orbit {
    position: absolute;
    top: -5px; left: -5px;
    width: calc(100% + 10px); height: calc(100% + 10px);
    border-radius: 50%;
    border: 2px solid rgba(0, 242, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
    z-index: 2;
    animation: launcherOrbitAnim 5s linear infinite;
}

@keyframes launcherOrbitAnim {
    0% { transform: rotate(0deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1.1); }
}

/* Tooltip on Hover */
.tooltip-neon {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: rgba(0, 5, 15, 0.9);
    border: 1px solid rgba(0, 170, 255, 0.4);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
}

.ai-trigger-animated:hover .tooltip-neon {
    opacity: 1;
    visibility: visible;
    bottom: 85px;
}

/* --- THE FUTURISTIC GLASS-MORPHISM CHAT PANE --- */
.chat-pane-glass {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 320px;
    background: rgba(4, 16, 33, 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 170, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.6);
    display: none; /* Initially hidden */
    flex-direction: column;
    overflow: hidden;
    z-index: 100;
    animation: paneSlideUp 0.4s ease-out;
}

@keyframes paneSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.chat-header-futuristic {
    background: rgba(0, 170, 255, 0.08);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 170, 255, 0.15);
}

.ai-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00aaff;
    font-weight: bold;
    font-size: 0.85rem;
}

.online-pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.chat-body-neon {
    padding: 25px;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.greeting-text {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 12px;
}

.info-text {
    color: #ccd6f6;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Quick Actions Button Styling */
.chat-action-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.4s;
    color: #fff;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.wa-neon {
    background: transparent;
    border: 2px solid #25d366;
    color: #25d366;
}

.wa-neon:hover {
    background: #25d366;
    color: #000;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
    transform: translateY(-3px);
}

.call-neon {
    background: transparent;
    border: 2px solid #00aaff;
    color: #00aaff;
}

.call-neon:hover {
    background: #00aaff;
    color: #000;
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.5);
    transform: translateY(-3px);
}

.disclaimer-text {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #777;
    text-align: center;
}

.close-chat-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.close-chat-btn:hover {
    color: #fff;
}