/* =========================================================
   KUSHWAHA & GROUPS
   SCHOOL GROWTH & MARKETING AGENCY
   ========================================================= */


/* ================= ROOT ================= */

:root {

    --primary: #3157ff;
    --primary-dark: #2343d6;
    --secondary: #6c63ff;

    --dark: #0b1020;
    --dark-2: #11182c;
    --dark-3: #18213b;

    --text: #172033;
    --text-light: #697386;

    --white: #ffffff;
    --off-white: #f7f9fc;
    --border: #e7eaf0;

    --success: #16a36a;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow:
        0 20px 60px rgba(16, 27, 61, 0.10);

    --transition:
        all 0.35s cubic-bezier(.4, 0, .2, 1);
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background:
        var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* ================= PRELOADER ================= */

#preloader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: var(--dark);

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        opacity .5s ease,
        visibility .5s ease;
}

#preloader.hide {

    opacity: 0;

    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {

    font-family: "Manrope", sans-serif;

    font-size: 45px;

    font-weight: 800;

    color: white;
}

.loader-logo span {
    color: #6c8cff;
}

.loader-line {

    width: 160px;

    height: 2px;

    margin: 15px auto;

    background: rgba(255,255,255,.15);

    position: relative;

    overflow: hidden;
}

.loader-line::after {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background: #6681ff;

    animation: loading 1.3s infinite;
}

.loader-content p {

    color: #8e99b5;

    font-size: 12px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

@keyframes loading {

    to {
        left: 100%;
    }
}


/* ================= HEADER ================= */

.header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    transition: var(--transition);
}

.header.scrolled {

    background: rgba(255,255,255,.93);

    backdrop-filter: blur(18px);

    box-shadow:
        0 5px 30px rgba(0,0,0,.06);
}

.nav-container {

    height: 86px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;
}

.logo-mark {

    width: 42px;

    height: 42px;

    border-radius: 12px;

    background:
        linear-gradient(135deg,#3157ff,#6b62ff);

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-family: "Manrope", sans-serif;

    font-weight: 800;

    font-size: 14px;

    box-shadow:
        0 8px 20px rgba(49,87,255,.25);
}

.logo-mark small {
    font-size: 8px;
    opacity: .7;
    margin: 0 2px;
}

.logo-text {

    display: flex;

    flex-direction: column;

    font-family: "Manrope", sans-serif;

    line-height: 1;
}

.logo-text strong {

    font-size: 17px;

    color: var(--dark);

    font-weight: 800;
}

.logo-text span {

    font-size: 12px;

    color: var(--text-light);

    margin-top: 4px;
}


/* NAV */

.navbar {

    display: flex;

    align-items: center;

    gap: 31px;
}

.nav-link {

    color: #5d6678;

    font-size: 14px;

    font-weight: 600;

    position: relative;

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {

    color: var(--primary);
}

.nav-cta {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 18px;

    color: white;

    background: var(--dark);

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.nav-cta:hover {

    background: var(--primary);

    transform: translateY(-2px);
}

.nav-cta i {
    font-size: 11px;
}


/* MOBILE MENU */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border-radius: 10px;

    background: var(--dark);

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.menu-toggle span {

    width: 19px;

    height: 2px;

    background: white;

    border-radius: 5px;

    transition: var(--transition);
}


/* ================= HERO ================= */

.hero {

    min-height: 760px;

    background:

        radial-gradient(
            circle at 75% 35%,
            rgba(85,105,255,.17),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #f9fbff 0%,
            #eef2ff 100%
        );

    position: relative;

    overflow: hidden;

    padding-top: 86px;
}

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .45;

    background-image:

        linear-gradient(
            rgba(49,87,255,.06) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(49,87,255,.06) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );
}

.hero-container {

    min-height: 610px;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 70px;

    align-items: center;

    position: relative;

    z-index: 2;
}

.hero-content {
    max-width: 650px;
}


/* EYEBROW */

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border: 1px solid #dce2ff;

    background: rgba(255,255,255,.65);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    color: #4c5a77;

    text-transform: uppercase;

    letter-spacing: .5px;

    margin-bottom: 25px;
}

.eyebrow-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #3157ff;

    box-shadow:
        0 0 0 5px rgba(49,87,255,.1);
}


/* HERO TITLE */

.hero-title {

    font-family: "Manrope", sans-serif;

    font-size: clamp(45px, 6vw, 76px);

    line-height: 1.03;

    letter-spacing: -3px;

    color: var(--dark);

    font-weight: 800;

    margin-bottom: 25px;
}

.hero-title span {

    display: block;

    background:
        linear-gradient(
            100deg,
            #3157ff,
            #775dff
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}

.hero-description {

    color: #657087;

    font-size: 17px;

    max-width: 600px;

    line-height: 1.8;

    margin-bottom: 32px;
}


/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 13px;

    flex-wrap: wrap;
}

.btn {

    min-height: 51px;

    padding: 0 21px;

    border-radius: 10px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {

    color: white;

    background: var(--primary);

    box-shadow:
        0 12px 25px rgba(49,87,255,.22);
}

.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

    box-shadow:
        0 17px 30px rgba(49,87,255,.28);
}

.btn-secondary {

    background: white;

    border: 1px solid #dfe3ed;

    color: var(--dark);
}

.btn-secondary:hover {

    border-color: var(--primary);

    color: var(--primary);

    transform: translateY(-3px);
}

.btn-secondary i {
    font-size: 9px;
}


/* TRUST */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 40px;
}

.trust-avatars {

    display: flex;

    align-items: center;
}

.trust-avatars div {

    width: 30px;

    height: 30px;

    border-radius: 50%;

    margin-left: -7px;

    border: 2px solid white;

    background:
        linear-gradient(135deg,#3157ff,#7182ff);

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 9px;

    font-weight: 700;
}

.trust-avatars div:first-child {
    margin-left: 0;
}

.trust-avatars div:nth-child(2) {
    background: #202b4c;
}

.trust-avatars div:nth-child(3) {
    background: #6a5ee9;
}

.trust-avatars div:nth-child(4) {
    background: #e9edff;
    color: var(--primary);
}

.hero-trust strong {

    display: block;

    font-size: 12px;

    color: var(--dark);
}

.hero-trust span {

    display: block;

    color: #7c8597;

    font-size: 11px;

    margin-top: 2px;
}


/* HERO VISUAL */

.hero-visual {

    min-height: 500px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}

.visual-orbit {

    position: absolute;

    border: 1px solid rgba(49,87,255,.1);

    border-radius: 50%;
}

.orbit-one {

    width: 510px;
    height: 510px;
}

.orbit-two {

    width: 360px;
    height: 360px;
}


/* GROWTH CARD */

.growth-card {

    width: 400px;

    min-height: 315px;

    background: rgba(255,255,255,.88);

    backdrop-filter: blur(20px);

    border: 1px solid white;

    border-radius: 23px;

    box-shadow:
        0 35px 80px rgba(40,57,112,.16);

    padding: 25px;

    position: relative;

    z-index: 3;
}

.card-header {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}

.mini-label {

    font-size: 9px;

    letter-spacing: 1.5px;

    color: #7e889e;

    font-weight: 800;
}

.card-header h3 {

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    color: var(--dark);

    margin-top: 5px;
}

.growth-icon {

    width: 38px;

    height: 38px;

    border-radius: 11px;

    background: #edf1ff;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;
}

.growth-number {

    margin-top: 28px;
}

.growth-number strong {

    font-family: "Manrope", sans-serif;

    display: block;

    font-size: 42px;

    line-height: 1;

    color: var(--dark);
}

.growth-number span {

    font-size: 11px;

    color: #8992a5;
}


/* CHART */

.chart {

    height: 100px;

    position: relative;

    margin-top: 25px;

    border-bottom: 1px solid #e8ebf2;

    overflow: hidden;
}

.chart::before,
.chart::after {

    content: "";

    position: absolute;

    left: 0;

    width: 100%;

    border-top: 1px dashed #edf0f5;
}

.chart::before {
    top: 30%;
}

.chart::after {
    top: 65%;
}

.chart-line {

    position: absolute;

    width: 115%;

    height: 70px;

    left: -5%;

    bottom: 0;

    border-top: 3px solid var(--primary);

    transform:
        rotate(-7deg)
        skewX(-18deg);

    border-radius: 50%;
}

.chart-point {

    width: 8px;

    height: 8px;

    background: var(--primary);

    border: 2px solid white;

    border-radius: 50%;

    position: absolute;

    z-index: 2;
}

.p1 {
    left: 5%;
    top: 74%;
}

.p2 {
    left: 22%;
    top: 62%;
}

.p3 {
    left: 39%;
    top: 68%;
}

.p4 {
    left: 56%;
    top: 42%;
}

.p5 {
    left: 73%;
    top: 32%;
}

.p6 {
    left: 90%;
    top: 10%;
}

.chart-months {

    display: flex;

    justify-content: space-between;

    color: #9aa2b2;

    font-size: 9px;

    margin-top: 9px;
}


/* FLOATING CARDS */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    background: white;

    padding: 13px 16px;

    border-radius: 13px;

    box-shadow:
        0 15px 35px rgba(33,47,93,.12);

    z-index: 5;

    animation:
        float 4s ease-in-out infinite;
}

.floating-icon {

    width: 35px;

    height: 35px;

    border-radius: 10px;

    background: #eff2ff;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;
}

.floating-card strong {

    display: block;

    font-size: 11px;

    color: var(--dark);
}

.floating-card span {

    display: block;

    font-size: 9px;

    color: #8a93a4;

    margin-top: 2px;
}

.admissions-card {

    left: -20px;

    top: 100px;
}

.website-card {

    right: -10px;

    bottom: 80px;

    animation-delay: 1s;
}

.hero-circle {

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: var(--dark);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 4;

    box-shadow:
        0 15px 35px rgba(11,16,32,.2);
}

@keyframes float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* HERO BOTTOM */

.hero-bottom {

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    border-top: 1px solid rgba(37,57,108,.08);

    background: rgba(255,255,255,.45);

    backdrop-filter: blur(10px);
}

.hero-bottom-inner {

    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.hero-bottom-inner > span {

    font-size: 9px;

    letter-spacing: 1.5px;

    color: #8a93a6;

    font-weight: 800;
}

.hero-services {

    display: flex;

    align-items: center;

    gap: 30px;
}

.hero-services span {

    font-size: 11px;

    color: #667187;

    font-weight: 600;
}

.hero-services i {

    color: var(--primary);

    margin-right: 5px;
}


/* ================= SECTIONS ================= */

.section {

    padding: 120px 0;
}

.section-tag {

    display: inline-block;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 18px;
}

.section-tag::before {

    content: "";

    display: inline-block;

    width: 20px;

    height: 2px;

    background: var(--primary);

    vertical-align: middle;

    margin-right: 8px;
}

.section-title {

    font-family: "Manrope", sans-serif;

    font-size: clamp(34px, 4vw, 53px);

    line-height: 1.1;

    letter-spacing: -2px;

    color: var(--dark);

    font-weight: 800;
}

.section-title span {

    display: block;

    color: var(--primary);
}

.section-description {

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.8;
}

.centered {
    text-align: center;
}

.section-heading {

    max-width: 750px;

    margin: 0 auto 65px;
}

.section-heading .section-description {

    max-width: 600px;

    margin: 20px auto 0;
}


/* ================= ABOUT ================= */

.about {
    background: white;
}

.section-grid {

    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap: 100px;

    align-items: center;
}

.about-visual {

    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.about-main-card {

    width: 440px;

    min-height: 380px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #111a32,
            #202c52
        );

    padding: 35px;

    color: white;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(20,32,70,.18);
}

.about-main-card::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background:
        rgba(78,103,255,.12);

    right: -100px;

    bottom: -90px;
}

.about-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.about-card-top > span {

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 800;

    color: #8e9abb;
}

.mission-icon {

    width: 42px;

    height: 42px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #7f93ff;
}

.about-main-card h3 {

    font-family: "Manrope", sans-serif;

    font-size: 32px;

    line-height: 1.15;

    margin-top: 65px;

    position: relative;

    z-index: 2;
}

.about-main-card h3 span {

    display: block;

    color: #8496ff;
}

.about-main-card p {

    color: #aab4ca;

    font-size: 13px;

    line-height: 1.8;

    margin-top: 18px;

    max-width: 330px;

    position: relative;

    z-index: 2;
}

.mission-progress {

    margin-top: 38px;

    position: relative;

    z-index: 2;
}

.progress-info {

    display: flex;

    justify-content: space-between;

    font-size: 10px;

    color: #a7b0c7;

    margin-bottom: 9px;
}

.progress-info strong {
    color: white;
}

.progress-bar {

    height: 5px;

    border-radius: 20px;

    background: rgba(255,255,255,.08);

    overflow: hidden;
}

.progress-bar span {

    display: block;

    height: 100%;

    width: 92%;

    background:
        linear-gradient(
            90deg,
            #5570ff,
            #9a8aff
        );

    border-radius: 20px;
}

.about-small-card {

    position: absolute;

    bottom: 15px;

    right: 5px;

    background: white;

    padding: 15px 18px;

    border-radius: 14px;

    box-shadow:
        0 15px 35px rgba(30,43,86,.13);

    display: flex;

    align-items: center;

    gap: 11px;

    z-index: 3;
}

.about-small-card > i {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: #eff2ff;

    color: var(--primary);

    font-size: 13px;
}

.about-small-card strong {

    display: block;

    font-size: 11px;

    color: var(--dark);
}

.about-small-card span {

    display: block;

    font-size: 9px;

    color: #8a93a5;
}

.about-content .section-description {

    margin-top: 20px;

    max-width: 600px;
}

.about-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-top: 30px;
}

.about-point {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 12px;

    color: #4e586d;

    font-weight: 600;
}

.about-point i {

    width: 20px;

    height: 20px;

    border-radius: 50%;

    background: #eaf8f1;

    color: var(--success);

    font-size: 9px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* ================= STATS ================= */

.stats-section {

    background: var(--dark);

    color: white;
}

.stats-grid {

    min-height: 210px;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    align-items: center;
}

.stat-item {

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.09);

    padding: 20px;
}

.stat-item:last-child {
    border: none;
}

.stat-item strong {

    font-family: "Manrope", sans-serif;

    font-size: 45px;

    line-height: 1;

    font-weight: 800;
}

.stat-item > span {

    color: #7184ff;

    font-size: 28px;

    font-weight: 800;
}

.stat-item p {

    margin-top: 8px;

    color: #7f8aa4;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* ================= SERVICES ================= */

.services {

    background: #f8f9fc;
}

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}

.service-card {

    background: white;

    border: 1px solid #e9ebf1;

    border-radius: 18px;

    padding: 28px;

    position: relative;

    overflow: hidden;

    transition: var(--transition);
}

.service-card:hover {

    transform: translateY(-8px);

    border-color: #d4dcff;

    box-shadow:
        0 25px 55px rgba(27,43,89,.10);
}

.service-card.featured {

    background:
        linear-gradient(
            145deg,
            #3157ff,
            #635dff
        );

    border: none;

    color: white;
}

.service-number {

    position: absolute;

    right: 20px;

    top: 15px;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    color: #c0c7d5;

    font-weight: 800;
}

.featured .service-number {
    color: rgba(255,255,255,.45);
}

.service-icon {

    width: 48px;

    height: 48px;

    border-radius: 13px;

    background: #eef2ff;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;

    margin-bottom: 25px;
}

.featured .service-icon {

    background: rgba(255,255,255,.12);

    color: white;
}

.service-card h3 {

    font-family: "Manrope", sans-serif;

    font-size: 19px;

    line-height: 1.3;

    color: var(--dark);

    margin-bottom: 12px;
}

.featured h3 {
    color: white;
}

.service-card > p {

    color: #737d90;

    font-size: 12px;

    line-height: 1.8;

    min-height: 65px;
}

.featured > p {
    color: rgba(255,255,255,.72);
}

.service-card ul {

    list-style: none;

    margin-top: 18px;

    padding-top: 18px;

    border-top: 1px solid #eef0f4;
}

.featured ul {
    border-color: rgba(255,255,255,.15);
}

.service-card li {

    font-size: 11px;

    color: #657086;

    margin-bottom: 8px;

    display: flex;

    align-items: center;

    gap: 8px;
}

.service-card li::before {

    content: "✓";

    color: var(--primary);

    font-weight: 800;
}

.featured li {
    color: rgba(255,255,255,.8);
}

.featured li::before {
    color: white;
}

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    margin-top: 14px;
}

.featured .service-link {
    color: white;
}

.service-link i {

    font-size: 9px;

    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}


/* ================= WHY ================= */

.why-section {

    padding: 120px 0;

    background: white;
}

.why-wrapper {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;
}

.why-content > p {

    margin-top: 22px;

    color: #697386;

    font-size: 14px;

    line-height: 1.8;

    max-width: 530px;
}

.why-list {

    margin-top: 35px;
}

.why-item {

    display: flex;

    gap: 14px;

    padding: 17px 0;

    border-bottom: 1px solid #edf0f4;
}

.why-icon {

    flex: 0 0 40px;

    height: 40px;

    border-radius: 11px;

    background: #eef2ff;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;
}

.why-item h4 {

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    color: var(--dark);

    margin-bottom: 3px;
}

.why-item p {

    color: #7c8596;

    font-size: 11px;

    line-height: 1.7;
}


/* DASHBOARD */

.why-visual {

    display: flex;

    justify-content: center;
}

.dashboard {

    width: 450px;

    background: #10182c;

    border-radius: 24px;

    padding: 27px;

    box-shadow:
        0 30px 70px rgba(17,27,58,.18);
}

.dashboard-header {

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.dashboard-header span {

    font-size: 8px;

    color: #77829e;

    letter-spacing: 1.4px;

    font-weight: 800;
}

.dashboard-header h3 {

    color: white;

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    margin-top: 5px;
}

.dashboard-status {

    font-size: 9px;

    color: #80d5ae;

    display: flex;

    gap: 5px;

    align-items: center;
}

.dashboard-status span {

    width: 6px;

    height: 6px;

    background: #38c78c;

    border-radius: 50%;
}


.dashboard-stats {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 25px;
}

.dashboard-stats > div {

    padding: 14px;

    border-radius: 12px;

    background: rgba(255,255,255,.05);
}

.dashboard-stats span {

    display: block;

    font-size: 9px;

    color: #7f89a3;
}

.dashboard-stats strong {

    display: block;

    color: white;

    font-size: 24px;

    font-family: "Manrope", sans-serif;

    margin-top: 4px;
}

.dashboard-stats small {

    font-size: 8px;

    color: #54c895;
}


/* DASHBOARD CHART */

.dashboard-chart {

    height: 170px;

    display: flex;

    align-items: flex-end;

    gap: 13px;

    padding: 20px 10px 5px;

    border-bottom: 1px solid rgba(255,255,255,.08);

    margin-top: 20px;
}

.bar {

    flex: 1;

    border-radius: 5px 5px 0 0;

    background:
        linear-gradient(
            to top,
            #3157ff,
            #7a7aff
        );

    opacity: .85;
}

.b1 {
    height: 35%;
}

.b2 {
    height: 45%;
}

.b3 {
    height: 40%;
}

.b4 {
    height: 58%;
}

.b5 {
    height: 55%;
}

.b6 {
    height: 72%;
}

.b7 {
    height: 68%;
}

.b8 {
    height: 92%;
}

.dashboard-footer {

    display: flex;

    justify-content: space-between;

    margin-top: 14px;

    font-size: 9px;

    color: #7f89a3;
}

.dashboard-footer i {

    color: #5f74ff;

    margin-right: 4px;

    font-size: 7px;
}

.dashboard-footer strong {

    color: #a7afc2;

    font-weight: 500;
}


/* ================= PROCESS ================= */

.process {

    background: #f8f9fc;
}

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 25px;

    position: relative;
}

.process-line {

    position: absolute;

    top: 36px;

    left: 11%;

    right: 11%;

    border-top: 1px dashed #ccd2e0;

    z-index: 0;
}

.process-item {

    text-align: center;

    position: relative;

    z-index: 2;
}

.process-circle {

    width: 72px;

    height: 72px;

    border-radius: 50%;

    margin: auto;

    background: white;

    border: 7px solid #eef1f8;

    box-shadow:
        0 10px 25px rgba(25,40,80,.08);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary);

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;
}

.process-item h3 {

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    margin-top: 22px;

    color: var(--dark);
}

.process-item p {

    font-size: 11px;

    color: #7a8395;

    line-height: 1.7;

    margin-top: 8px;

    padding: 0 10px;
}


/* ================= RESULTS ================= */

.results {

    background: white;
}

.results-heading {

    display: grid;

    grid-template-columns: 1fr .7fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 55px;
}

.results-heading > p {

    color: #747e91;

    font-size: 14px;

    line-height: 1.8;
}

.results-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top: 1px solid #e9ecf2;

    border-bottom: 1px solid #e9ecf2;
}

.result-card {

    padding: 35px 28px;

    border-right: 1px solid #e9ecf2;

    transition: var(--transition);
}

.result-card:last-child {
    border-right: none;
}

.result-card:hover {
    background: #fafbff;
}

.result-icon {

    width: 43px;

    height: 43px;

    border-radius: 11px;

    background: #eff2ff;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;
}

.result-card strong {

    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    color: var(--dark);

    margin-bottom: 9px;
}

.result-card p {

    font-size: 11px;

    color: #7a8394;

    line-height: 1.8;
}


/* ================= TESTIMONIAL ================= */

.testimonial-section {

    padding: 100px 0;

    background: #f8f9fc;
}

.testimonial-box {

    max-width: 850px;

    margin: auto;

    text-align: center;

    padding: 60px 30px;
}

.quote-icon {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    background: #e9edff;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto auto 28px;

    font-size: 17px;
}

blockquote {

    font-family: "Manrope", sans-serif;

    font-size: clamp(24px,3vw,36px);

    line-height: 1.35;

    letter-spacing: -1px;

    font-weight: 700;

    color: var(--dark);
}

.quote-author {

    margin-top: 32px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    text-align: left;
}

.author-avatar {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,#3157ff,#765fff);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 10px;

    font-weight: 800;
}

.quote-author strong {

    display: block;

    font-size: 12px;

    color: var(--dark);
}

.quote-author span {

    display: block;

    color: #8a93a4;

    font-size: 9px;

    margin-top: 2px;
}


/* ================= CTA ================= */

.cta-section {

    background:
        linear-gradient(
            135deg,
            #10172b,
            #1c2750
        );

    position: relative;

    overflow: hidden;

    padding: 110px 0;
}

.cta-pattern {

    position: absolute;

    inset: 0;

    opacity: .18;

    background-image:

        linear-gradient(
            rgba(255,255,255,.1) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.1) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}

.cta-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(77,97,255,.16);

    right: -200px;

    top: -250px;

    filter: blur(20px);
}

.cta-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: auto;

    text-align: center;
}

.section-tag.light {
    color: #8495ff;
}

.section-tag.light::before {
    background: #8495ff;
}

.cta-content h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(38px,5vw,62px);

    line-height: 1.05;

    letter-spacing: -2px;

    color: white;

    margin-bottom: 22px;
}

.cta-content h2 span {

    display: block;

    color: #8495ff;
}

.cta-content > p {

    color: #8d98b1;

    font-size: 14px;

    max-width: 580px;

    margin: auto;

    line-height: 1.8;
}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 32px;

    flex-wrap: wrap;
}

.btn-white {

    background: white;

    color: var(--dark);
}

.btn-white:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.2);
}

.btn-outline-white {

    color: white;

    border: 1px solid rgba(255,255,255,.18);

    background: rgba(255,255,255,.05);
}

.btn-outline-white:hover {

    background: white;

    color: var(--dark);
}


/* ================= CONTACT ================= */

.contact {

    background: white;
}

.contact-grid {

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 100px;

    align-items: start;
}

.contact-info > p {

    color: #727d91;

    font-size: 14px;

    line-height: 1.8;

    max-width: 450px;

    margin-top: 20px;
}

.contact-details {

    margin-top: 35px;
}

.contact-detail {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;
}

.contact-icon {

    width: 42px;

    height: 42px;

    border-radius: 11px;

    background: #eff2ff;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;
}

.contact-detail span {

    display: block;

    font-size: 9px;

    color: #8a93a5;

    text-transform: uppercase;

    letter-spacing: .8px;
}

.contact-detail strong {

    display: block;

    color: var(--dark);

    font-size: 12px;

    margin-top: 3px;
}


/* FORM */

.contact-form-wrapper {

    background: #f8f9fc;

    border: 1px solid #e9ecf2;

    border-radius: 22px;

    padding: 32px;
}

.contact-form {

    width: 100%;
}

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.form-group {

    margin-bottom: 18px;
}

.form-group label {

    display: block;

    color: #3c465a;

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #e0e4ec;

    background: white;

    border-radius: 9px;

    outline: none;

    padding: 13px 14px;

    color: var(--dark);

    font-size: 12px;

    transition: var(--transition);
}

.form-group input,
.form-group select {
    height: 45px;
}

.form-group textarea {

    resize: vertical;

    min-height: 115px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #a4abb9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: #9daeff;

    box-shadow:
        0 0 0 3px rgba(49,87,255,.07);
}

.form-submit {

    width: 100%;

    height: 49px;

    border-radius: 9px;

    color: white;

    background: var(--primary);

    font-size: 12px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    transition: var(--transition);
}

.form-submit:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);
}

.form-submit i {
    font-size: 10px;
}

.form-message {

    text-align: center;

    font-size: 11px;

    margin-top: 12px;

    min-height: 16px;
}


/* ================= FOOTER ================= */

.footer {

    background: #080d19;

    color: white;

    padding-top: 70px;
}

.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr .7fr .9fr 1fr;

    gap: 50px;

    padding-bottom: 55px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo .logo-text strong {
    color: white;
}

.footer-logo .logo-text span {
    color: #707b94;
}

.footer-brand > p {

    max-width: 280px;

    color: #737d94;

    font-size: 11px;

    line-height: 1.8;

    margin-top: 20px;
}

.social-links {

    display: flex;

    gap: 8px;

    margin-top: 23px;
}

.social-links a {

    width: 33px;

    height: 33px;

    border-radius: 8px;

    border: 1px solid rgba(255,255,255,.1);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #8892a8;

    font-size: 12px;

    transition: var(--transition);
}

.social-links a:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: white;

    transform: translateY(-3px);
}

.footer-column h4 {

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    margin-bottom: 18px;

    color: white;
}

.footer-column a,
.footer-column span {

    display: block;

    color: #707b92;

    font-size: 11px;

    margin-bottom: 10px;

    line-height: 1.5;

    transition: var(--transition);
}

.footer-column a:hover {
    color: #8191ff;
}

.footer-bottom {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #59647a;

    font-size: 9px;
}


/* ================= WHATSAPP ================= */

.whatsapp-float {

    position: fixed;

    right: 22px;

    bottom: 22px;

    height: 48px;

    padding: 0 16px;

    border-radius: 50px;

    background: #19b96b;

    color: white;

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 11px;

    font-weight: 700;

    z-index: 900;

    box-shadow:
        0 12px 30px rgba(25,185,107,.25);

    transition: var(--transition);
}

.whatsapp-float i {
    font-size: 20px;
}

.whatsapp-float:hover {

    transform: translateY(-4px);

    background: #12a95f;
}


/* ================= BACK TO TOP ================= */

.back-to-top {

    position: fixed;

    right: 22px;

    bottom: 83px;

    width: 40px;

    height: 40px;

    border-radius: 10px;

    background: var(--dark);

    color: white;

    z-index: 800;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: var(--transition);
}

.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
}


/* ================= REVEAL ANIMATION ================= */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.active {

    opacity: 1;

    transform: translateY(0);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1050px) {

    .navbar {
        gap: 18px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero-title {
        font-size: 58px;
    }

    .section-grid,
    .why-wrapper {
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }

}


@media (max-width: 850px) {

    .nav-container {
        height: 74px;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {

        position: fixed;

        top: 74px;

        left: 20px;

        right: 20px;

        padding: 20px;

        border-radius: 15px;

        background: white;

        box-shadow:
            0 25px 60px rgba(14,25,55,.15);

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--transition);
    }

    .navbar.open {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }

    .nav-link {

        padding: 12px;

        border-radius: 8px;
    }

    .nav-link:hover {
        background: #f5f7ff;
    }

    .nav-cta {
        justify-content: center;
        margin-top: 5px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-container {

        grid-template-columns: 1fr;

        padding-top: 65px;

        padding-bottom: 80px;

        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-bottom {
        display: none;
    }

    .section-grid,
    .why-wrapper,
    .contact-grid {

        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 430px;
    }

    .about-content {
        text-align: center;
    }

    .about-points {
        text-align: left;
    }

    .about-content .section-description {
        margin-left: auto;
        margin-right: auto;
    }

    .why-content {
        text-align: center;
    }

    .why-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .why-item {
        text-align: left;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info > p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-details {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.09);
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 45px;
    }

    .process-line {
        display: none;
    }

    .results-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .result-card:nth-child(2) {
        border-right: none;
    }

    .result-card:nth-child(-n+2) {
        border-bottom: 1px solid #e9ecf2;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding-top: 74px;
    }

    .hero-container {
        padding-top: 50px;
    }

    .hero-title {

        font-size: 43px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .eyebrow {
        font-size: 9px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 350px;
    }

    .growth-card {
        width: 90%;
        min-height: 270px;
        padding: 20px;
    }

    .growth-number strong {
        font-size: 34px;
    }

    .visual-orbit {
        display: none;
    }

    .admissions-card {
        left: 0;
        top: 50px;
    }

    .website-card {
        right: 0;
        bottom: 30px;
    }

    .hero-circle {
        display: none;
    }

    .about-main-card {
        width: 100%;
        min-height: 390px;
        padding: 27px;
    }

    .about-main-card h3 {
        font-size: 27px;
        margin-top: 55px;
    }

    .about-small-card {
        right: -3px;
        bottom: -5px;
    }

    .section-title {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item strong {
        font-size: 33px;
    }

    .stat-item > span {
        font-size: 20px;
    }

    .stat-item p {
        font-size: 8px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .dashboard {
        width: 100%;
        padding: 20px;
    }

    .dashboard-chart {
        gap: 7px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-card {
        border-right: none;
        border-bottom: 1px solid #e9ecf2;
    }

    .result-card:last-child {
        border-bottom: none;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: 1 / 3;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 5px;
        padding: 18px 0;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float span {
        display: none;
    }

    .back-to-top {
        right: 16px;
        bottom: 73px;
    }

}


@media (max-width: 380px) {

    .hero-title {
        font-size: 37px;
    }

    .growth-card {
        width: 95%;
    }

    .floating-card {
        padding: 9px 11px;
    }

    .floating-card strong {
        font-size: 9px;
    }

    .floating-card span {
        font-size: 8px;
    }

}