/* ==========================
   INTERNNOVA DESIGN SYSTEM
========================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #6C63FF;
    --secondary: #8B5CF6;
    --bg-dark: #0F172A;
    --card-bg: #111827;
    --text-main: #FFFFFF;
    --text-muted: #94a3b8;
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body.light-theme {
    --bg-dark: #F8FAFC;
    --card-bg: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; transition: background-color 0.3s, color 0.3s; }
body { background-color: var(--bg-dark); color: var(--text-main); overflow-x: hidden; }

/* REUSABLE UI COMPONENTS */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn { padding: 12px 24px; border-radius: 12px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: 0.3s; }
.btn.primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #FFF; border: none; }
.btn.primary.glow:hover { box-shadow: 0 0 20px rgba(108, 99, 255, 0.5); transform: translateY(-3px); }
.btn.secondary { background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text-main); }
.btn.secondary:hover { border-color: var(--primary); }
.full-width { width: 100%; text-align: center; }

/* HEADER & LOGO FIX */
.header { position: fixed; width: 100%; padding: 8px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: var(--glass-bg); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); }
.logo { display: flex; align-items: center; gap: 15px; font-size: 1.8rem; font-weight: 700; }
.logo img{
    height: 95px;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(124,92,255,0.25));
}

/* HERO SECTION */
.hero { min-height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; position: relative; padding: 0 5%; }
.shape { position: absolute; filter: blur(100px); z-index: -1; border-radius: 50%; }
.shape-1 { width: 400px; height: 400px; background: rgba(108, 99, 255, 0.3); top: 10%; left: 10%; animation: float 6s infinite ease-in-out; }
.shape-2 { width: 300px; height: 300px; background: rgba(139, 92, 246, 0.3); bottom: 10%; right: 10%; animation: float 8s infinite ease-in-out reverse; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-40px); } }
.hero-content h1 { font-size: 4rem; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* SECTIONS & GRIDS */
.section-title { text-align: center; margin-bottom: 50px; padding-top: 80px; }
.section-title h2 { font-size: 2.5rem; }
.section-title p { color: var(--text-muted); margin-top: 10px; }

.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 40px 5%; margin-top: -50px; }
.stat-box { padding: 30px; text-align: center; width: 220px; }
.stat-box h2 { font-size: 2.5rem; color: var(--primary); }

.program-grid, .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 0 5%; }
.program-card, .why-card { padding: 30px; cursor: pointer; transition: 0.4s; }
.program-card:hover, .why-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.card-icon { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.program-card h3, .why-card h3 { margin-bottom: 10px; }
.program-card p { color: var(--text-muted); margin-bottom: 20px; }
.duration-badge { background: rgba(108, 99, 255, 0.1); color: var(--primary); padding: 5px 12px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; }

.about{
    padding:100px 8%;
}

.about-container{
    display:flex;
    align-items:center;
    gap:50px;
    padding:40px;
    border-radius:25px;
}

.founder-photo img{
    width:260px;
    height:260px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #6c63ff;
    box-shadow:0 0 30px rgba(108,99,255,.4);
}

.founder-info{
    flex:1;
}

.founder-info h2{
    font-size:2.5rem;
    margin-bottom:10px;
}

.founder-info h3{
    font-size:1.8rem;
    margin-bottom:5px;
}

.founder-role{
    color:#8b5cf6;
    font-weight:600;
    display:block;
    margin-bottom:20px;
}

.founder-info p{
    line-height:1.8;
    margin-bottom:15px;
}

/* Mobile */

@media(max-width:768px){

.about-container{
    flex-direction:column;
    text-align:center;
}

.founder-photo img{
    width:180px;
    height:180px;
}

}
.verify-box { max-width: 500px; margin: auto; padding: 40px; }
.verify-box input { width: 100%; padding: 15px; margin-bottom: 20px; border-radius: 12px; border: 1px solid var(--glass-border); background: transparent; color: var(--text-main); font-size: 1rem; outline: none; }

/* TESTIMONIALS */
.testimonials { padding: 20px 5% 60px; overflow: hidden; }
.testimonial-slider { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; }
.testimonial-slider::-webkit-scrollbar { height: 8px; }
.testimonial-slider::-webkit-scrollbar-track { background: var(--glass-bg); border-radius: 10px; }
.testimonial-slider::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.testi-card { min-width: 320px; max-width: 350px; padding: 30px; scroll-snap-align: start; display: flex; flex-direction: column; justify-content: space-between; }
.testi-card .stars { color: #fbbf24; margin-bottom: 15px; font-size: 0.9rem; }
.testi-card p { color: var(--text-muted); font-style: italic; margin-bottom: 20px; line-height: 1.6; }
.student-info h4 { color: var(--text-main); margin-bottom: 5px; }
.student-info span { color: var(--primary); font-size: 0.85rem; font-weight: 600; }

/* FAQ */
.faq { padding: 20px 5% 100px; }
.faq-container { max-width: 800px; margin: auto; }
.faq-item { margin-bottom: 15px; border-radius: 16px; overflow: hidden; transition: 0.3s; border: 1px solid var(--glass-border); }
.faq-item:hover { border-color: var(--primary); }
.faq-question { width: 100%; text-align: left; padding: 20px 25px; background: var(--glass-bg); border: none; color: var(--text-main); font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; background: rgba(0,0,0,0.1); }
.faq-answer p { padding: 0 25px 20px; color: var(--text-muted); line-height: 1.6; }
.faq-item.active .faq-answer { max-height: 200px; padding-top: 10px; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }

/* FOOTER */
footer { padding: 60px 5% 20px; border-top: 1px solid var(--glass-border); margin-top: 50px; background: var(--glass-bg); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.socials { display: flex; gap: 15px; margin-top: 15px; }
.socials i { font-size: 1.5rem; color: var(--text-muted); transition: 0.3s; cursor: pointer; }
.socials i:hover { color: var(--primary); }

/* MODALS (DOMAIN DETAILS) */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); z-index: 2000; display: none; justify-content: center; align-items: center; padding: 20px; }
.modal-content { width: 100%; max-width: 600px; padding: 40px; position: relative; max-height: 90vh; overflow-y: auto; }
.close-btn { position: absolute; top: 20px; right: 25px; font-size: 1.5rem; cursor: pointer; color: var(--text-main); }
.modal-hero h2 { font-size: 1.8rem; margin-bottom: 10px; }
.modal-body { margin-top: 30px; }
.modal-body h3 { margin: 20px 0 10px; color: var(--primary); border-bottom: 1px solid var(--glass-border); padding-bottom: 5px; }
.modal-body p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.roadmap-week { background: rgba(108, 99, 255, 0.05); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--glass-border); }
.roadmap-week h4 { margin-bottom: 10px; }
.roadmap-week ul { list-style: none; }
.roadmap-week li { color: var(--text-muted); margin-bottom: 8px; font-size: 0.95rem; }
.roadmap-week i { color: #10b981; margin-right: 8px; }

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .navbar { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: var(--card-bg); flex-direction: column; padding: 20px; text-align: center; border-bottom: 1px solid var(--glass-border); }
    .navbar.active { display: flex; }
    .navbar a { margin: 15px 0; }
    .menu-btn { display: block; }
    .hero-content h1 { font-size: 2.8rem; }
}
.hero-badge{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(124,92,255,.12);
    border:1px solid rgba(124,92,255,.25);
    margin-bottom:20px;
    font-weight:600;
}
.hero{
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content{
    text-align: center;
    max-width: 850px;
    z-index: 5;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(124,92,255,.1);
    border:1px solid rgba(124,92,255,.25);
    margin-bottom:20px;
    font-weight:600;
}

.floating-cards{
    position:absolute;
    display:flex;
    flex-direction:column;
    gap:30px;
    z-index:2;
}

.left-cards{
    left:8%;
    top:50%;
    transform:translateY(-50%);
}

.right-cards{
    right:8%;
    top:50%;
    transform:translateY(-50%);
}

.float-card{
    width:220px;
    padding:24px;
    border-radius:20px;
    background: var(--card-bg);
    border:1px solid var(--glass-border);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    text-align:center;
    animation:float 5s ease-in-out infinite;
}

.float-card:nth-child(2){
    animation-delay:2s;
}

.float-card i{
    font-size:32px;
    color:#7c5cff;
    margin-bottom:12px;
}

.float-card span{
    font-size:18px;
    font-weight:600;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@media(max-width:1100px){
    .floating-cards{
        display:none;
    }
}
@media(max-width:768px){
    .logo img{
        height: 45px;
        max-width: 180px;
    }
}
/* Desktop */
.navbar{
    display:flex;
    align-items:center;
    gap:30px;
}

.menu-btn{
    display:none;
}

@media (max-width:991px){

    .navbar{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:var(--card-bg);
        flex-direction:column;
        padding:20px;
        text-align:center;
        border-bottom:1px solid var(--glass-border);
    }

    .navbar.active{
        display:flex;
    }

    .navbar a{
        margin:12px 0;
    }

    .menu-btn{
        display:block;
        font-size:1.5rem;
        cursor:pointer;
        color:var(--text-main);
    }
}
.theme-btn{
    background:none;
    border:none;
    font-size:1.6rem;
    cursor:pointer;
    color:var(--text-main);
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:15px;
}
/* DESKTOP FIX */
@media (min-width: 992px){

    .navbar{
        display:flex !important;
        position:static !important;
        width:auto !important;
        flex-direction:row !important;
        background:transparent !important;
        padding:0 !important;
    }

    .menu-btn{
        display:none !important;
    }
}
.navbar a{
    color:var(--text-main);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.navbar a:hover{
    color:var(--primary);
}


.footer-grid a{
    text-decoration:none;
    color:var(--text-muted);
    transition:.3s;
}

.footer-grid a:hover{
    color:var(--primary);
}

.msme-badge{
    color:#10b981;
    font-weight:600;
}

@media(max-width:768px){

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}
.certificate-section{
    padding:80px 5%;
    text-align:center;
}

.certificate-card{
    max-width:900px;
    margin:40px auto;
    padding:20px;
    border-radius:20px;
    overflow:hidden;
}

.certificate-card img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    transition:.4s;
}

.certificate-card img:hover{
    transform:scale(1.02);
}
.process-section{
    padding:80px 5%;
    text-align:center;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.process-card{
    position:relative;
    padding:35px 25px;
    transition:.3s ease;
}

.process-card:hover{
    transform:translateY(-8px);
}

.step-number{
    position:absolute;
    top:-15px;
    left:20px;
    width:40px;
    height:40px;
    border-radius:50%;
    background:linear-gradient(135deg,#7c5cff,#9d7bff);
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.process-card i{
    font-size:2.2rem;
    color:var(--primary);
    margin-bottom:15px;
}

.process-card h3{
    margin-bottom:12px;
}

.process-card p{
    color:var(--text-muted);
    line-height:1.7;
}

@media(max-width:768px){

    .process-grid{
        grid-template-columns:1fr;
    }

}
.announcement-bar{
    width:90%;
    max-width:1200px;
    margin:30px auto;
    overflow:hidden;
    border-radius:15px;
    background:linear-gradient(135deg,#7c5cff,#9f6fff);
    box-shadow:0 8px 25px rgba(124,92,255,.25);
}

.announcement-content{
    color:#fff;
    font-weight:600;
    padding:14px 20px;
    white-space:nowrap;
    animation:scrollText 18s linear infinite;
}

@keyframes scrollText{
    0%{
        transform:translateX(100%);
    }
    100%{
        transform:translateX(-100%);
    }
}
@media(max-width:768px){

    .hero{
        min-height:auto;
        padding-top:120px;
        padding-bottom:30px;
    }

    .hero-content{
        margin-top:0;
    }

    .hero-badge{
        margin-top:0;
        margin-bottom:20px;
        font-size:14px;
        padding:10px 18px;
    }

    .hero-content h1{
        font-size:3.2rem;
        line-height:1.1;
    }

}
@media(max-width:768px){
    .hero-content h1{
        font-size:2.8rem;
        line-height:1.15;
    }
}
@media(max-width:768px){

    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .hero-buttons .btn{
        width:260px;
    }

}
@media (max-width:768px){

    .logo img{
        height: 60px;
        max-width: 220px;
        width: auto;
    }

    .header{
        padding: 12px 18px;
    }

}
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    padding:14px 18px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 8px 25px rgba(37,211,102,.4);
    z-index:9999;
    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:translateY(-3px);
}

.whatsapp-float i{
    font-size:28px;
}

.whatsapp-float span{
    font-size:15px;
    white-space:nowrap;
}

@media(max-width:768px){
    .whatsapp-float span{
        display:none;
    }

    .whatsapp-float{
        width:60px;
        height:60px;
        padding:0;
        justify-content:center;
        border-radius:50%;
    }
}

.msme-info{
    margin-top:15px;
    color:#6c63ff;
    font-size:15px;
    font-weight:600;
    line-height:1.6;
}

.msme-info i{
    margin-right:6px;
}
.footer-bottom{
    width:100%;
    text-align:center;
    padding:8px 0;
    margin-top:5px;
    border-top:1px solid rgba(0,0,0,0.08);
    font-size:0.95rem;
}

.footer-bottom p{
    margin:0;
}
html{
    scroll-behavior:smooth;
    scroll-padding-top:120px;
}

section{
    scroll-margin-top:120px;
}
