﻿/* ================================
   CAMPUSVERSE GLOBAL STYLE
================================ */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', Arial, sans-serif;
    background:#ffffff;
    color:#333;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


ul{
    list-style:none;
    margin:0;
    padding:0;
}

section{
    width:100%;
}

.text-center{
    text-align:center;
}

/* ================================
   HEADER
================================ */

.cv-header{

    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    background:#ffffff;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}


.cv-header .container{

    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;

}


/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-img{
    width:70px;
    height:auto;
}

.logo-text h2{
    margin:0;
    font-size:28px;
}

.logo-text span{
    display:block;
    font-size:14px;
    color:#666;
    white-space:nowrap;
}


/* MENU */

.menu ul{

    display:flex;
    list-style:none;
    gap:25px;

}


.menu ul li a{

    position:relative;

    color:#123b85;

    font-weight:600;

    transition:.3s;

}

.menu ul li a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:#ff8400;

    transition:.3s;

}

.menu ul li a:hover::after{

    width:100%;

}

.menu ul li a:hover{

    color:#ff8a00;

}



/* BUTTONS */

.header-buttons a{

    padding:10px 20px;
    border-radius:25px;
    margin-left:10px;
    font-size:14px;

}


.btn-login{

    background:#123b85;
    color:white;

}


.btn-demo{

    background:#ff8a00;
    color:white;
}

.btn-demo,
.btn-login,
.btn-primary{
    transition:.3s;
}

.btn-demo:hover,
.btn-login:hover,
.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/* ================================
   HERO SECTION
================================ */

.hero{
    padding:100px 0;
    background:linear-gradient(135deg,#f5f9ff,#ffffff);
}

.hero .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-left{

    flex:1;

}

.hero-right{
    width:420px;
    display:flex;
    justify-content:flex-end;
}

.hero-badge{
    display:inline-block;
    background:#eef5ff;
    color:#123b85;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
    font-weight:600;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    letter-spacing:-1px;
}

.primary{
    color:#ff8a00;
}

.hero p{
    font-size:18px;
    color:#555;
    line-height:1.7;
    margin-bottom:30px;
}

.hero-buttons{
    margin-bottom:30px;
}

.hero-buttons a{
    display:inline-block;
    margin-right:12px;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.hero-features div{

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    min-height:70px;

    border:1px solid #eef3fa;

    transition:.35s;

}

.hero-features div:hover{

    background:#123b85;

    color:#fff;

}

/* ================================
   LOGIN CARD
================================ */

.login-card{
    width:100%;
    max-width:380px;
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    position:relative;
    overflow:hidden;
}

.login-card:before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(90deg,#123b85,#ff8400);

}
.login-card h2{
    margin-bottom:20px;
    color:#123b85;
}

.input{

    outline:none;

    transition:.3s;

}

.input:focus{

    border-color:#123b85;

    box-shadow:0 0 0 4px rgba(18,59,133,.12);

}

@media(max-width:992px){

.hero .container{

    flex-direction:column;

}

.hero-left,
.hero-right{

    width:100%;

}

.hero-right{

    margin-top:40px;

}

.menu{

    display:none;

}

.hero h1{

    font-size:48px;

}

.hero-features{

    grid-template-columns:1fr;

}

}

@media(max-width:576px){

.container{

    width:95%;

}

.hero{

    padding:70px 0;

}

.hero h1{

    font-size:38px;

}

.logo-text{
    display:block;
}

.header-buttons{

    display:none;

}

}

.login-card .btn-primary{
    width:100%;
    border:none;
    cursor:pointer;
    padding:14px;
    border-radius:10px;
    background:#123b85;
    color:#fff;
    font-size:16px;
}

.login-links{
    margin-top:15px;
    display:flex;
    justify-content:space-between;
}

.login-links a{
    color:#123b85;
    font-size:14px;
}

@media (max-width:991px){

    .statistics .container{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:576px){

    .statistics .container{

        grid-template-columns:1fr;

    }

    .stat-card h2{

        font-size:44px;

    }

}
/* ==========================================================
   PART 2
   FEATURES
========================================================== */

.features-section{

    padding:100px 0;
    background:#ffffff;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    color:#123b85;
    font-weight:700;
    margin-bottom:15px;

}

.section-title p{

    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;

}


/* FEATURE GRID */

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}


/* FEATURE CARD */

.feature-card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    border:1px solid #edf2f8;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    transition:.35s;
    text-align:center;

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}


/* ICON */

.feature-icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:linear-gradient(135deg,#123b85,#2f79ff);

    color:#ffffff;

    font-size:34px;

}

.feature-card h3{

    color:#123b85;

    font-size:24px;

    margin-bottom:15px;

}

.feature-card p{

    color:#666;

    line-height:1.8;

}


/* ================================
   STATISTICS
================================ */

.statistics{

    padding:90px 0;

    background:linear-gradient(135deg,#123b85,#2957b8);

}

.statistics .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

    color:#fff;

    padding:25px;

}

.stat-card h2{

    font-size:60px;

    font-weight:800;

    color:#ffffff;

    margin-bottom:15px;

}

.stat-card p{

    font-size:20px;

    color:rgba(255,255,255,.9);

    font-weight:500;

}


/* ==========================================================
   STUDENT JOURNEY
========================================================== */

.journey{

    padding:100px 0;

    background:#f7faff;

}

.journey-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.journey-card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

display:flex;
flex-direction:column;
align-items:center;

}

.journey-card:hover{

    transform:translateY(-10px);

}

.step-number{

    width:70px;
    height:70px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#123b85,#2f79ff);

    color:#ffffff;

    font-size:28px;

    box-shadow:0 20px 45px rgba(18,59,133,.25);

}

.journey-card h3{

    color:#123b85;

    margin-bottom:15px;

    font-size:22px;

}

.journey-card p{

    color:#666;

    line-height:1.8;

}


/* ==========================================================
   SECTION BUTTON
========================================================== */

.section-btn{

    text-align:center;

    margin-top:60px;

}

.section-btn a{

    display:inline-block;

    padding:14px 35px;

    background:#123b85;

    color:#ffffff;

    border-radius:30px;

    transition:.3s;

}

.section-btn a:hover{

    background:#ff8400;

}

/* ================================
   SCHOOL / COACHING PARTNER
================================ */

.partner-section{

    padding:100px 0;
    background:#f8fbff;

}

.partner-title{

    text-align:center;
    margin-bottom:60px;

}

.partner-title h2{

    font-size:42px;
    color:#123b85;
    margin-bottom:15px;
    font-weight:700;

}

.partner-title p{

    max-width:750px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;

}

/* GRID */

.partner-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:70px;

}

/* CARD */

.partner-card{

    background:#ffffff;
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.35s;

}

.partner-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(18,59,133,.18);

}

/* ICON */

.partner-icon{

    width:85px;
    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#123b85,#2f79ff);

    color:#ffffff;

    font-size:36px;

    box-shadow:0 20px 45px rgba(18,59,133,.25);

}

.partner-card h3{

    color:#123b85;
    margin-bottom:15px;
    font-size:24px;

}

.partner-card p{

    color:#666;
    line-height:1.8;

}

/* CTA */

.virtual-campus{

    background:linear-gradient(135deg,#123b85,#245cc5);

    color:#ffffff;

    text-align:center;

    padding:70px 50px;

    border-radius:25px;
    box-shadow:0 20px 45px rgba(18,59,133,.20);


}

.virtual-campus h2{

    color:#ffffff;
    font-size:42px;
    margin-bottom:20px;

}

.virtual-campus p{

    max-width:760px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.9);

}

/* BUTTON */

.btn-partner{

    display:inline-block;

    background:#ff8a00;
    color:#ffffff;

    padding:16px 38px;

    border-radius:40px;

    font-size:17px;
    font-weight:600;
letter-spacing:.4px;
    transition:.3s;

}

.btn-partner:hover{

    background:#ff9f2e;

    transform:translateY(-3px);

    box-shadow:0 20px 45px rgba(0,0,0,.20);

}

.learning-box{

    margin-top:70px;
    text-align:center;

    padding:70px 50px;

    text-align:center;

    background:#ffffff;

    border-radius:20px;

}

.learning-box h2{

    font-size:42px;

    color:#123b85;

    margin-bottom:20px;

    font-weight:700;

}

.learning-box p{

    max-width:800px;

    margin:0 auto;

    font-size:18px;

    line-height:1.8;

    color:#666;

}
/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.feature-grid{

    grid-template-columns:repeat(2,1fr);

}

.statistics .container{

    grid-template-columns:repeat(2,1fr);

}

.journey-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.feature-grid{

    grid-template-columns:1fr;

}

.statistics .container{

    grid-template-columns:1fr;

}

.journey-grid{

    grid-template-columns:1fr;

}

.section-title h2{

    font-size:34px;

}

}

/* ==========================================================
   PART 3
   AI KNOWLEDGE BASE
========================================================== */

.knowledge-base{

    padding:100px 0;

    background:#ffffff;

}

.kb-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.kb-card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    border:1px solid #eef2f8;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.kb-card:before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#123b85,#ff8400);

}

.kb-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 45px rgba(0,0,0,.12);

}

.kb-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:linear-gradient(135deg,#123b85,#347dff);

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

}

.kb-card h3{

    color:#123b85;

    font-size:24px;

    margin-bottom:15px;

}

.kb-card p{

    color:#666;

    line-height:1.8;

}


/* ==========================================================
   DASHBOARD PREVIEW
========================================================== */

.dashboard-preview{

    padding:110px 0;

    background:#f7faff;

}

.dashboard-layout{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.dashboard-content{

    flex:1;

}

.dashboard-content h2{

    font-size:46px;

    color:#123b85;

    margin-bottom:20px;

}

.dashboard-content p{

    font-size:18px;

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.dashboard-content ul{

    margin-top:20px;

}

.dashboard-content li{

    padding:10px 0;

    color:#123b85;

    font-weight:600;

}


/* ==========================================================
   DASHBOARD IMAGE
========================================================== */

.dashboard-image{

    flex:1;

    text-align:center;

}

.dashboard-image img{

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}


/* ==========================================================
   DASHBOARD CARDS
========================================================== */

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:70px;

}

.dashboard-card{

    background:#ffffff;

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.dashboard-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.dashboard-card i{

    font-size:38px;

    color:#123b85;

    margin-bottom:20px;

}

.dashboard-card h4{

    font-size:22px;

    color:#123b85;

    margin-bottom:12px;

}

.dashboard-card p{

    color:#666;

    line-height:1.7;

}


/* ==========================================================
   FEATURE LIST
========================================================== */

.dashboard-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.dashboard-features div{

    background:#ffffff;

    padding:18px;

    border-radius:14px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    color:#123b85;

    font-weight:600;

    transition:.3s;

}

.dashboard-features div:hover{

    background:#123b85;

    color:#ffffff;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.dashboard-layout{

    flex-direction:column;

}

.dashboard-grid{

    grid-template-columns:repeat(2,1fr);

}

.kb-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.dashboard-grid{

    grid-template-columns:1fr;

}

.kb-grid{

    grid-template-columns:1fr;

}

.dashboard-features{

    grid-template-columns:1fr;

}

.dashboard-content h2{

    font-size:34px;

}

}

/* ==========================================================
   PART 4
   TEACHER DASHBOARD
========================================================== */

.teacher-section{

    padding:110px 0;
    background:#ffffff;

}

.teacher-layout{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

}

.teacher-image{

    flex:1;

}

.teacher-image img{

    width:100%;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.teacher-content{

    flex:1;

}

.teacher-content h2{

    font-size:46px;
    color:#123b85;
    margin-bottom:20px;
    font-weight:700;

}

.teacher-content p{

    font-size:18px;
    color:#666;
    line-height:1.9;
    margin-bottom:35px;

}

.teacher-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;

}

.teacher-list div{

    background:#f7faff;
    padding:18px;
    border-radius:14px;
    color:#123b85;
    font-weight:600;
    transition:.3s;

}

.teacher-list div:hover{

    background:#123b85;
    color:#ffffff;

}


/* ==========================================================
   PARENT DASHBOARD
========================================================== */

.parent-section{

    padding:110px 0;
    background:#f8fbff;

}

.parent-layout{

    display:flex;
    align-items:center;
    gap:70px;

}

.parent-content{

    flex:1;

}

.parent-image{

    flex:1;

}

.parent-image img{

    width:100%;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.parent-content h2{

    font-size:46px;
    color:#123b85;
    margin-bottom:20px;

}

.parent-content p{

    color:#666;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;

}

.parent-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.parent-features div{

    background:#ffffff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;

}

.parent-features div:hover{

    transform:translateY(-6px);

}


/* ==========================================================
   SCHOOL ERP
========================================================== */

.school-section{

    padding:110px 0;
    background:#ffffff;

}

.school-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.school-card{

    background:#ffffff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    border:1px solid #edf2f8;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;

}

.school-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.school-card i{

    font-size:40px;
    color:#123b85;
    margin-bottom:20px;

}

.school-card h3{

    color:#123b85;
    margin-bottom:15px;
    font-size:22px;

}

.school-card p{

    color:#666;
    line-height:1.7;

}


/* ==========================================================
   MOBILE APP
========================================================== */

.mobile-app{

    padding:110px 0;
    background:linear-gradient(135deg,#123b85,#2b6ff2);

    color:#ffffff;

}

.mobile-layout{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

}

.mobile-content{

    flex:1;

}

.mobile-content h2{

    font-size:48px;
    margin-bottom:20px;

}

.mobile-content p{

    font-size:19px;
    line-height:1.9;
    opacity:.95;
    margin-bottom:35px;

}

.mobile-buttons{

    display:flex;
    gap:20px;

}

.mobile-buttons a{

    background:#ffffff;
    color:#123b85;
    padding:15px 28px;
    border-radius:35px;
    font-weight:600;
    transition:.3s;

}

.mobile-buttons a:hover{

    transform:translateY(-4px);

}

.mobile-image{

    flex:1;
    text-align:center;

}

.mobile-image img{

    max-width:340px;

}


/* ==========================================================
   FEATURE PANELS
========================================================== */

.feature-panels{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;

}

.panel{

    background:#ffffff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;

}

.panel:hover{

    transform:translateY(-8px);

}

.panel h3{

    color:#123b85;
    margin-bottom:15px;

}

.panel p{

    color:#666;
    line-height:1.8;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.teacher-layout,
.parent-layout,
.mobile-layout{

    flex-direction:column;

}

.school-grid{

    grid-template-columns:repeat(2,1fr);

}

.feature-panels{

    grid-template-columns:repeat(2,1fr);

}

.teacher-list,
.parent-features{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.school-grid,
.feature-panels{

    grid-template-columns:1fr;

}

.teacher-content h2,
.parent-content h2,
.mobile-content h2{

    font-size:34px;

}

.mobile-buttons{

    flex-direction:column;

}

}

/* ==========================================================
   PART 5
   PRICING SECTION
========================================================== */

.pricing{

    padding:110px 0;
    background:#f7faff;

}

.pricing-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;

}

.pricing-card{

    background:#ffffff;
    border-radius:25px;
    padding:45px 35px;
    text-align:center;
    border:1px solid #edf2f8;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;

}

.pricing-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.pricing-card.featured{

    border:3px solid #ff8400;
    transform:scale(1.04);

}

.popular{

    position:absolute;
    top:20px;
    right:20px;

    background:#ff8400;
    color:#ffffff;

    padding:8px 16px;
    border-radius:30px;

    font-size:12px;
    font-weight:600;

}

.plan-name{

    font-size:28px;
    color:#123b85;
    margin-bottom:15px;
    font-weight:700;

}

.plan-price{

    font-size:56px;
    color:#123b85;
    font-weight:800;
    margin:20px 0;

}

.plan-price span{

    font-size:18px;
    color:#777;

}

.plan-features{

    margin:35px 0;

}

.plan-features li{

    padding:12px 0;
    color:#555;
    border-bottom:1px solid #eeeeee;

}

.plan-btn{

    display:inline-block;
    padding:14px 35px;
    background:#123b85;
    color:#ffffff;
    border-radius:35px;
    transition:.3s;

}

.plan-btn:hover{

    background:#ff8400;

}


/* ==========================================================
   TESTIMONIALS
========================================================== */

.testimonials{

    padding:110px 0;
    background:#ffffff;

}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;

}

.testimonial-card{

    background:#ffffff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card p{

    color:#666;
    line-height:1.9;
    margin-bottom:25px;

}

.testimonial-user{

    display:flex;
    align-items:center;
    gap:15px;

}

.testimonial-user img{

    width:65px;
    height:65px;
    border-radius:50%;

}

.testimonial-user h4{

    color:#123b85;

}

.stars{

    color:#ffb400;
    margin-bottom:15px;

}


/* ==========================================================
   FAQ
========================================================== */

.faq{

    padding:110px 0;
    background:#f7faff;

}

.faq-item{

    background:#ffffff;
    margin-bottom:20px;
    padding:28px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.faq-item h3{

    color:#123b85;
    margin-bottom:12px;

}

.faq-item p{

    color:#666;
    line-height:1.8;

}


/* ==========================================================
   CALL TO ACTION
========================================================== */

.cta{

    padding:100px 0;

    background:linear-gradient(135deg,#123b85,#2c70f2);

    color:#ffffff;
    text-align:center;

}

.cta h2{

    font-size:48px;
    margin-bottom:20px;

}

.cta p{

    max-width:750px;
    margin:0 auto 40px;
    font-size:20px;
    line-height:1.8;

}

.cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;

}

.cta-buttons a{

    padding:16px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;

}

.cta-primary{

    background:#ffffff;
    color:#123b85;

}

.cta-secondary{

    border:2px solid #ffffff;
    color:#ffffff;

}

.cta-buttons a:hover{

    transform:translateY(-4px);

}


/* ==========================================================
   FOOTER
========================================================== */

.footer{

    background:#0e1d40;
    color:#dbe4ff;
    padding:90px 0 25px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;

}

.footer h3,
.footer h4{

    color:#ffffff;
    margin-bottom:20px;

}

.footer p{

    line-height:1.9;

}

.footer ul{

    list-style:none;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#dbe4ff;
    transition:.3s;

}

.footer ul li a:hover{

    color:#ff8400;

}

.social-icons{

    display:flex;
    gap:15px;
    margin-top:20px;

}

.social-icons a{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:rgba(255,255,255,.12);

    color:#ffffff;

    transition:.3s;

}

.social-icons a:hover{

    background:#ff8400;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.12);
    margin-top:60px;
    padding-top:25px;
    text-align:center;
    color:#b7c5ea;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.pricing-grid,
.testimonial-grid,
.footer-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.pricing-grid,
.testimonial-grid,
.footer-grid{

    grid-template-columns:1fr;

}

.cta-buttons{

    flex-direction:column;

}

.cta h2{

    font-size:34px;

}

.plan-price{

    font-size:42px;

}

}

/* ==========================================================
   PART 6
   PREMIUM ANIMATIONS & UTILITIES
========================================================== */

/* Smooth scrolling */
html{
    scroll-behavior:smooth;
}

/* Selection */
::selection{
    background:#123b85;
    color:#ffffff;
}

/* Custom Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eef3f9;
}

::-webkit-scrollbar-thumb{
    background:#123b85;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#ff8400;
}


/* ==========================================================
   IMAGE EFFECTS
========================================================== */

img
{
    max-width:100%;
display:block;
    transition:.35s;
}

.card:hover img,
.feature-card:hover img,
.dashboard-card:hover img,
.teacher-image:hover img,
.parent-image:hover img{
    transform:scale(1.03);
}


/* ==========================================================
   BUTTON EFFECTS
========================================================== */

.btn-login,
.btn-demo,
.plan-btn,
.cta-buttons a{

    position:relative;
    overflow:hidden;

}

.btn-login:before,
.btn-demo:before,
.plan-btn:before,
.cta-buttons a:before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:rgba(255,255,255,.18);

    transition:.45s;

}

.btn-login:hover:before,
.btn-demo:hover:before,
.plan-btn:hover:before,
.cta-buttons a:hover:before{

    left:100%;

}


/* ==========================================================
   SECTION FADE ANIMATION
========================================================== */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.hero,
.features,
.statistics,
.journey,
.knowledge-base,
.dashboard-preview,
.teacher-section,
.parent-section,
.school-section,
.mobile-app,
.pricing,
.testimonials,
.faq,
.cta{

    animation:fadeUp .8s ease both;

}


/* ==========================================================
   FLOAT ANIMATION
========================================================== */

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

.hero-right,
.mobile-image{

    animation:floating 5s ease-in-out infinite;

}


/* ==========================================================
   CARD HOVER
========================================================== */

.feature-card,
.dashboard-card,
.teacher-list div,
.parent-features div,
.school-card,
.pricing-card,
.testimonial-card,
.panel{

    transition:.35s;

}

.feature-card:hover,
.dashboard-card:hover,
.teacher-list div:hover,
.parent-features div:hover,
.school-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.panel:hover{

    transform:translateY(-10px);

}


/* ==========================================================
   FORM ELEMENTS
========================================================== */

input,
textarea,
select{

    transition:.3s;

}

input:focus,
textarea:focus,
select:focus{

    border-color:#123b85;

    box-shadow:0 0 8px rgba(18,59,133,.18);

}


/* ==========================================================
   TABLE
========================================================== */

table{

    width:100%;
    border-collapse:collapse;

}

table th{

    background:#123b85;
    color:#ffffff;
    padding:15px;

}

table td{

    padding:14px;
    border-bottom:1px solid #eeeeee;

}


/* ==========================================================
   ALERT BOXES
========================================================== */

.alert-success{

    background:#e8fff2;
    color:#0a7d3f;
    border-left:5px solid #0a7d3f;
    padding:15px 20px;
    border-radius:10px;

}

.alert-warning{

    background:#fff9e5;
    color:#c78500;
    border-left:5px solid #ffb400;
    padding:15px 20px;
    border-radius:10px;

}

.alert-danger{

    background:#ffecec;
    color:#c62828;
    border-left:5px solid #e53935;
    padding:15px 20px;
    border-radius:10px;

}


/* ==========================================================
   LOADER
========================================================== */

.loader{

    width:50px;
    height:50px;

    border:5px solid #eeeeee;
    border-top:5px solid #123b85;

    border-radius:50%;

    animation:spin 1s linear infinite;

    margin:auto;

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}


/* ==========================================================
   BACK TO TOP
========================================================== */

.back-to-top{

    position:fixed;

    right:30px;
    bottom:30px;

    width:50px;
    height:50px;

    background:#123b85;

    color:#ffffff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.back-to-top:hover{

    background:#ff8400;

}


/* ==========================================================
   PRINT
========================================================== */

@media print{

    .cv-header,
    .footer,
    .btn-demo,
    .btn-login,
    .cta,
    .back-to-top{

        display:none;

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:576px){

.container{

    width:95%;

}

.hero h1{

    font-size:36px;

}

.section-title h2{

    font-size:30px;

}

.logo-text{

    display:none;

}

.hero-buttons a,
.mobile-buttons a,
.cta-buttons a{

    display:block;
    margin-bottom:15px;

}

}

  /* =================================
   CAMPUSVERSE MOBILE HEADER FIX
================================= */


.mobile-menu-btn{

    display:none;
    font-size:32px;
    color:#123b85;
    cursor:pointer;
    user-select:none;

}



@media(max-width:992px){


.cv-header .container{

    height:80px;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;

}



.logo{

    display:flex;
    align-items:center;
    gap:10px;

}



.logo-img{

    width:55px;

}



.logo-text{

    display:block;

}



.logo-text h2{

    font-size:22px;

}


.logo-text span{

    font-size:11px;

}



/* SHOW HAMBURGER */

.mobile-menu-btn{

    display:block;

}



/* HIDE DESKTOP BUTTON */

.header-buttons{

    display:none;

}



/* MOBILE NAV */

.menu{

    display:none;

    position:absolute;

    top:80px;

    left:0;

    width:100%;

    background:#ffffff;

    z-index:9999;

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}


.menu ul{

    display:flex;

    flex-direction:column;

    padding:20px 0;

    gap:20px;

}


.menu ul li{

    text-align:center;

}


/* OPEN MENU */

.menu.active{

    display:block !important;

}


/* SMALL MOBILE */

@media(max-width:576px){

    .logo-text h2{

        font-size:20px;

    }


    .logo-text span{

        font-size:10px;

    }

}

/* ==============================
   MOBILE HAMBURGER ANIMATION
============================== */

.mobile-menu-btn{

    display:none;
    width:35px;
    height:28px;
    cursor:pointer;
    position:relative;

}


.mobile-menu-btn span{

    display:block;
    height:3px;
    width:35px;
    background:#123b85;
    margin:6px 0;
    border-radius:5px;
    transition:0.3s;

}


/* OPEN STATE */

.mobile-menu-btn.active span:nth-child(1){

    transform:rotate(45deg);
    position:absolute;
    top:12px;

}


.mobile-menu-btn.active span:nth-child(2){

    opacity:0;

}


.mobile-menu-btn.active span:nth-child(3){

    transform:rotate(-45deg);
    position:absolute;
    top:12px;

}


/* MOBILE SHOW */

@media(max-width:768px){

    .mobile-menu-btn{

        display:block;

    }

}