/* =========================================================
   TANEJA COMPUTER INSTITUTE
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --primary: #635bff;
    --primary-dark: #5148e5;
    --secondary: #8b5cf6;
    --blue: #2563eb;
    --teal: #0d9488;
    --cyan: #06b6d4;
    --amber: #f59e0b;
    --coral: #fb7185;
    --pink: #d946ef;

    --dark: #070b17;
    --dark-2: #0d1324;
    --dark-3: #151d34;

    --white: #ffffff;

    --light: #f6f8fc;
    --light-2: #eef1f7;

    --text: #111827;
    --text-light: #667085;
    --text-muted: #8992a5;

    --border: #e6eaf1;

    --green: #22c55e;

    --shadow-small:
        0 10px 30px rgba(20, 30, 60, .06);

    --shadow:
        0 20px 60px rgba(20, 30, 60, .10);

    --shadow-large:
        0 35px 90px rgba(20, 30, 60, .16);

    --radius: 20px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: hidden;
    width: 100%;
}


body {

    font-family:
        "Outfit",
        sans-serif;

    background:
        var(--light);

    color:
        var(--text);

    overflow-x: hidden;
    width: 100%;
    position: relative;

}


img {

    max-width: 100%;
    display: block;

}


a {

    text-decoration: none;
    color: inherit;

}


button,
input,
select,
textarea {

    font-family: inherit;

}


button {

    cursor: pointer;

}


/* =========================================================
   CUSTOM SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 8px;

}


::-webkit-scrollbar-track {

    background: #edf0f6;

}


::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            var(--primary),
            var(--secondary)
        );

    border-radius: 20px;

}


::-webkit-scrollbar-thumb:hover {

    background:
        linear-gradient(
            var(--secondary),
            var(--primary)
        );

}


/* =========================================================
   LOADER
========================================================= */

.loader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        #070b17;

    transition:
        opacity .7s ease,
        visibility .7s ease;

}


.loader.hide {

    opacity: 0;

    visibility: hidden;

}


.loader-box {

    text-align: center;

    color: #fff;

}


.loader-logo {

    width: 72px;
    height: 72px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 20px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 0 0 0
        rgba(99,91,255,.5);

    animation:
        loaderPulse 1.5s infinite;

}


.loader-box p {

    margin-top: 16px;

    color: #9ca7bc;

    font-size: 11px;

    letter-spacing: 2px;

}


@keyframes loaderPulse {

    0% {

        transform: scale(1);

        box-shadow:
            0 0 0 0
            rgba(99,91,255,.5);

    }

    50% {

        transform: scale(1.08);

        box-shadow:
            0 0 0 20px
            rgba(99,91,255,0);

    }

    100% {

        transform: scale(1);

        box-shadow:
            0 0 0 0
            rgba(99,91,255,0);

    }

}


/* =========================================================
   HEADER
========================================================= */

header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 5000;

    transition:
        background .35s ease,
        box-shadow .35s ease,
        backdrop-filter .35s ease;

}


header.scrolled {

    background:
        rgba(7, 11, 23, .88);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 10px 40px rgba(0,0,0,.16);

}


.navbar {

    max-width: 1250px;

    height: 82px;

    margin: auto;

    padding:
        0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

}


.logo-icon {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-weight: 800;

    font-size: 14px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 8px 25px
        rgba(99,91,255,.35);

    transition:
        transform .3s ease;

}


.logo:hover .logo-icon {

    transform:
        rotate(-7deg)
        scale(1.05);

}


.logo-text strong {

    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 15px;

    letter-spacing: .3px;

}


.logo-text span {

    display: block;

    margin-top: 3px;

    color: #9ca6ba;

    font-size: 9px;

}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-links {

    display: flex;

    align-items: center;

    gap: 31px;

    list-style: none;

}


.nav-links a {

    position: relative;

    color: #dbe2f1;

    font-size: 14px;

    font-weight: 500;

    transition:
        color .3s ease;

}


.nav-links a:not(.nav-admission)::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );

    transition:
        width .3s ease;

}


.nav-links a:hover {

    color: #fff;

}


.nav-links a:hover::after {

    width: 100%;

}


.nav-admission {

    padding:
        11px 19px;

    border-radius: 10px;

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 8px 25px
        rgba(99,91,255,.25);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.nav-admission:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(99,91,255,.38);

}


.menu-btn {

    display: none;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 28px;

    line-height: 1;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    position: relative;

    overflow: hidden;

    color: #fff;

    display: flex;

    align-items: center;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(99,91,255,.28),
            transparent 30%
        ),

        radial-gradient(
            circle at 15% 80%,
            rgba(139,92,246,.18),
            transparent 30%
        ),

        #070b17;

}


/* =========================================================
   HERO PARTICLES
========================================================= */

.particle {

    position: absolute;

    border-radius: 50%;

    background:
        #8b7cff;

    opacity: .35;

    pointer-events: none;

}


.particle-1 {

    width: 5px;
    height: 5px;

    left: 12%;
    top: 25%;

    animation:
        particleMove 8s infinite;

}


.particle-2 {

    width: 8px;
    height: 8px;

    left: 75%;
    top: 18%;

    animation:
        particleMove 10s 1s infinite;

}


.particle-3 {

    width: 4px;
    height: 4px;

    left: 68%;
    top: 75%;

    animation:
        particleMove 7s 2s infinite;

}


.particle-4 {

    width: 6px;
    height: 6px;

    left: 30%;
    top: 70%;

    animation:
        particleMove 9s 1s infinite;

}


@keyframes particleMove {

    0%,
    100% {

        transform:
            translate(0,0);

    }

    50% {

        transform:
            translate(30px,-40px);

    }

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    width: 100%;

    max-width: 1250px;

    margin: auto;

    padding:
        150px 25px 100px;

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 60px;

    align-items: center;

    position: relative;

    z-index: 5;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    max-width: 760px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        8px 14px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 30px;

    color: #c9d0e2;

    background:
        rgba(255,255,255,.05);

    backdrop-filter:
        blur(10px);

    font-size: 12px;

    animation:
        fadeUp .8s ease both;

}


.hero-badge span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--green);

    box-shadow:
        0 0 12px
        var(--green);

    animation:
        greenPulse 1.5s infinite;

}


@keyframes greenPulse {

    0%,
    100% {

        transform: scale(1);

        box-shadow:
            0 0 5px
            var(--green);

    }

    50% {

        transform: scale(1.3);

        box-shadow:
            0 0 18px
            var(--green);

    }

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {

    margin-top: 25px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(56px, 6vw, 90px);

    line-height:
        .98;

    letter-spacing:
        -4px;

    animation:
        fadeUp .9s .1s ease both;

}


.hero h1 span {

    background:

        linear-gradient(
            90deg,
            #ffffff,
            #9c8cff,
            #72a7ff,
            #ffffff
        );

    background-size:
        300% auto;

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;

    animation:
        gradientMove 5s linear infinite;

}


@keyframes gradientMove {

    to {

        background-position:
            300% center;

    }

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 650px;

    margin-top: 25px;

    color: #aeb7cc;

    font-size: 18px;

    line-height: 1.7;

    animation:
        fadeUp .9s .2s ease both;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    margin-top: 35px;

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

    animation:
        fadeUp .9s .3s ease both;

}


.btn {

    min-height: 48px;

    padding:
        14px 22px;

    border-radius: 12px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}


.btn b {

    font-size: 18px;

}


.btn-primary {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 12px 35px
        rgba(99,91,255,.30);

}


.btn-primary:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 18px 45px
        rgba(99,91,255,.45);

}


.btn-outline {

    color: #fff;

    border:
        1px solid
        rgba(255,255,255,.14);

    background:
        rgba(255,255,255,.05);

    backdrop-filter:
        blur(10px);

}


.btn-outline:hover {

    transform:
        translateY(-4px);

    background:
        rgba(255,255,255,.10);

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    height: 520px;

    position: relative;

    animation:
        heroVisualFloat 6s ease-in-out infinite;

}


@keyframes heroVisualFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}


/* =========================================================
   VISUAL GLOW
========================================================= */

.visual-glow {

    position: absolute;

    width: 420px;
    height: 420px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(99,91,255,.45),
            transparent 65%
        );

    filter:
        blur(20px);

    animation:
        glowPulse 5s ease-in-out infinite;

}


@keyframes glowPulse {

    0%,
    100% {

        opacity: .65;

        transform:
            translate(-50%,-50%)
            scale(1);

    }

    50% {

        opacity: 1;

        transform:
            translate(-50%,-50%)
            scale(1.12);

    }

}


/* =========================================================
   LAPTOP
========================================================= */

.laptop {

    position: absolute;

    width: 450px;

    max-width: 90%;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    padding: 10px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #30384c,
            #111827
        );

    border:
        1px solid
        rgba(255,255,255,.12);

    box-shadow:
        0 35px 80px
        rgba(0,0,0,.45),

        inset 0 1px 1px
        rgba(255,255,255,.15);

}


.laptop-screen {

    height: 270px;

    border-radius: 15px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #10172a,
            #1e2a58
        );

    border:
        4px solid
        #090d18;

}


.screen-content {

    padding: 25px;

}


.browser-dots {

    display: flex;

    gap: 6px;

}


.browser-dots i {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #626b7f;

}


.screen-title {

    margin-top: 30px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 28px;

    line-height: 1.05;

    font-weight: 700;

}


.screen-line {

    width: 70%;

    height: 7px;

    margin-top: 15px;

    border-radius: 20px;

    background:
        #3e4d83;

}


.screen-cards {

    display: flex;

    gap: 10px;

    margin-top: 28px;

}


.screen-cards div {

    height: 65px;

    flex: 1;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #27356d,
            #182044
        );

    border:
        1px solid
        rgba(255,255,255,.07);

}


.laptop-base {

    width: 110%;

    height: 14px;

    margin-left: -5%;

    background:
        linear-gradient(
            #68738a,
            #242b3b
        );

    border-radius:
        0 0 15px 15px;

}


/* =========================================================
   FLOATING HERO CARDS
========================================================= */

.floating-card {

    position: absolute;

    z-index: 10;

    padding:
        14px 17px;

    border-radius: 15px;

    color: #fff;

    font-size: 12px;

    background:
        rgba(19,27,49,.80);

    backdrop-filter:
        blur(14px);

    border:
        1px solid
        rgba(255,255,255,.10);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.25);

}


.floating-card strong {

    display: block;

    margin-top: 3px;

    font-size: 18px;

}


.floating-left {

    top: 20%;
    left: 0;

    animation:
        floatingLeft 4s ease-in-out infinite;

}


.floating-right {

    right: 0;
    bottom: 18%;

    animation:
        floatingRight 5s ease-in-out infinite;

}


@keyframes floatingLeft {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(-3deg);

    }

    50% {

        transform:
            translateY(-15px)
            rotate(0);

    }

}


@keyframes floatingRight {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(3deg);

    }

    50% {

        transform:
            translateY(15px)
            rotate(0);

    }

}


/* =========================================================
   STATS
========================================================= */

.stats-container {

    position: relative;

    z-index: 20;

    margin-top: -50px;

    padding:
        0 20px;

}


.stats {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    background:
        #fff;

    border:
        1px solid
        #edf0f6;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        var(--shadow-large);

}


.stat {

    padding:
        32px 20px;

    text-align: center;

    border-right:
        1px solid
        #edf0f6;

}


.stat:last-child {

    border-right: 0;

}


.stat strong {

    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 40px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #315bdc,
            #8b5cf6
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;

}


.stat span {

    display: block;

    margin-top: 4px;

    color:
        #747d90;

    font-size: 13px;

}


/* =========================================================
   COMMON SECTION
========================================================= */

.section {

    max-width: 1250px;

    margin: auto;

    padding:
        110px 25px;

}


.section-heading {

    max-width: 760px;

    margin-bottom: 55px;

}


.section-heading.center {

    margin-left: auto;
    margin-right: auto;

    text-align: center;

}


.section-heading small,
.about-text > small,
.certificate-text > small {

    color:
        var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.section-heading h2 {

    margin-top: 12px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(42px,5vw,64px);

    line-height:
        1.05;

    letter-spacing:
        -2px;

}


.section-heading h2 span,
.about-text h2 span,
.certificate-text h2 span {

    color:
        var(--primary);

}


.section-heading p {

    margin-top: 18px;

    color:
        var(--text-light);

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================================
   COURSES
========================================================= */

.courses-section {

    background:
        #fff;

    max-width: none;

    padding-left:
        max(25px, calc((100vw - 1200px) / 2));

    padding-right:
        max(25px, calc((100vw - 1200px) / 2));

}


.course-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    align-items: start;

    gap: 22px;

}


.course-card {

    position: relative;

    padding: 30px;

    border:
        1px solid
        #a8b3c9;

    border-radius: 20px;

    background:
        #fff;

    overflow: hidden;

    transition:
        transform .4s
        cubic-bezier(.2,.8,.2,1),

        box-shadow .4s,

        border-color .4s;

}


.course-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(99,91,255,.15),
            transparent 70%
        );

    transition:
        transform .5s ease;

}


.course-card:hover {

    transform:
        translateY(-10px);

    border-color:
        #d8d4ff;

    box-shadow:
        var(--shadow);

}


.course-card:hover::before {

    transform:
        scale(2);

}


.course-icon {

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    border-radius: 17px;

    background:
        #f0f2ff;

    font-size: 29px;

    transition:
        transform .4s,
        background .4s;

}


.course-icon {
    color: #fff;
    animation: iconFloat 3.5s ease-in-out infinite;
}

.course-card:nth-child(1) .course-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.course-card:nth-child(2) .course-icon {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.course-card:nth-child(3) .course-icon {
    background: linear-gradient(135deg, var(--teal), var(--green));
}

.course-card:nth-child(4) .course-icon {
    background: linear-gradient(135deg, var(--amber), var(--coral));
}

.course-card:nth-child(5) .course-icon {
    background: linear-gradient(135deg, var(--pink), var(--secondary));
}

.course-card:hover .course-icon {

    animation-play-state: paused;

    transform:
        rotate(-7deg)
        scale(1.15);

    background:
        #e8e5ff;

}


.course-card h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 23px;

    line-height: 1.2;

}


.course-meta {

    display: flex;

    gap: 7px;

    margin-top: 14px;

    flex-wrap: wrap;

}


.course-meta span {

    padding:
        5px 10px;

    border-radius: 30px;

    background:
        #f3f5f9;

    color:
        #606a7d;

    font-size: 11px;

    font-weight: 600;

}


.course-card > p {

    margin-top: 12px;

    color:
        #70798c;

    font-size: 14px;

    line-height: 1.65;

}


/* =========================================================
   SYLLABUS
========================================================= */

.syllabus-btn {

    width: 100%;

    margin-top: 22px;

    padding:
        12px;

    border:
        0;

    border-radius: 10px;

    color:
        #4d48c9;

    background:
        #f1f3ff;

    font-weight: 700;

    transition:
        background .3s,
        color .3s,
        transform .3s;

}


.syllabus-btn:hover {

    background:
        var(--primary);

    color:
        #fff;

    transform:
        translateY(-2px);

}


.syllabus {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    border-top:
        1px solid
        transparent;

    transition:
        max-height .7s ease,
        opacity .4s ease,
        margin .4s ease,
        padding .4s ease;

}


.syllabus.active {

    max-height: 1500px;

    opacity: 1;

    margin-top: 20px;

    padding-top: 20px;

    border-top-color:
        #edf0f5;

}


.syllabus h4 {

    margin:
        14px 0 7px;

    font-size: 14px;

    color:
        #202638;

}


.syllabus ul {

    padding-left:
        18px;

    color:
        #747d90;

    font-size: 13px;

}


.syllabus li {

    margin:
        5px 0;

    line-height:
        1.4;

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background:
        #f7f9fc;

    max-width: none;

    padding-left:
        max(25px, calc((100vw - 1200px) / 2));

    padding-right:
        max(25px, calc((100vw - 1200px) / 2));

}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

}


.about-text h2 {

    margin-top: 12px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(42px,5vw,64px);

    line-height:
        1.05;

    letter-spacing:
        -2px;

}


.about-text p {

    max-width: 650px;

    margin-top: 18px;

    color:
        #687386;

    font-size: 16px;

    line-height: 1.75;

}


.check-list {

    margin-top: 25px;

    list-style: none;

}


.check-list li {

    margin:
        13px 0;

    font-weight: 600;

    color:
        #202638;

}


.check-list li::before {

    content:
        "✓";

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width: 23px;
    height: 23px;

    margin-right: 10px;

    border-radius: 50%;

    color:
        #514bc7;

    background:
        #e7e8ff;

}


/* =========================================================
   ABOUT VISUAL
========================================================= */

.about-visual {

    min-height: 450px;

    position: relative;

}


.about-main {

    position: absolute;

    width: 80%;
    height: 350px;

    left: 10%;
    top: 40px;

    padding: 45px;

    display: flex;

    align-items: center;

    border-radius: 28px;

    overflow: hidden;

    color: #fff;

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(139,92,246,.5),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #101735,
            #34247a
        );

    box-shadow:
        0 35px 80px
        rgba(31,30,90,.20);

}


.about-main::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.13),
            transparent 70%
        );

}


.about-main small {

    position: relative;

    color:
        #9da5ff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing:
        2px;

}


.about-main h3 {

    position: relative;

    margin-top: 15px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 42px;

    line-height: 1;

}


.about-main p {

    position: relative;

    margin-top: 15px;

    color:
        #bdc5db;

}


.mini-card {

    position: absolute;

    z-index: 5;

    padding: 18px;

    border-radius: 17px;

    background:
        #fff;

    box-shadow:
        var(--shadow);

    font-size: 13px;

}


.mini-card strong {

    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 25px;

    color:
        var(--primary);

}


.mini-card-1 {

    top: 10px;
    right: 0;

    animation:
        miniFloat 4s ease-in-out infinite;

}


.mini-card-2 {

    bottom: 10px;
    left: 0;

    animation:
        miniFloat 5s 1s ease-in-out infinite;

}


@keyframes miniFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;

}


.why-card {

    padding: 30px;

    border:
        1px solid
        #e9edf5;

    border-radius: 20px;

    background:
        #fff;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.why-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);

}


.why-card > div {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 16px;

    background:
        #f0f2ff;

    font-size: 28px;

    transition:
        transform .35s;

}


.why-card > div {
    color: #fff;
    animation: iconFloat 3.5s ease-in-out infinite;
}

.why-card:nth-child(1) > div {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.why-card:nth-child(2) > div {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.why-card:nth-child(3) > div {
    background: linear-gradient(135deg, var(--coral), var(--pink));
}

.why-card:nth-child(4) > div {
    background: linear-gradient(135deg, var(--teal), var(--green));
}

.why-card:nth-child(5) > div {
    background: linear-gradient(135deg, var(--amber), var(--coral));
}

.why-card:nth-child(6) > div {
    background: linear-gradient(135deg, var(--pink), var(--primary));
}

.why-card:hover > div {

    animation-play-state: paused;

    transform:
        rotate(-7deg)
        scale(1.12);

}


.why-card h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 21px;

}


.why-card p {

    margin-top: 8px;

    color:
        #747d90;

    font-size: 14px;

    line-height: 1.65;

}


/* =========================================================
   CERTIFICATE
========================================================= */

.certificate-section {

    max-width: none;

    position: relative;

    overflow: hidden;

    color: #fff;

    background:
        #070b17;

    padding-left:
        max(25px, calc((100vw - 1200px) / 2));

    padding-right:
        max(25px, calc((100vw - 1200px) / 2));

}


.certificate-section::before {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    top: -250px;
    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(99,91,255,.24),
            transparent 70%
        );

}


.certificate-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 60px;

    align-items: center;

}


.certificate-text h2 {

    margin-top: 12px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(40px,5vw,60px);

    line-height:
        1.05;

    letter-spacing:
        -2px;

}


.certificate-text h2 span {

    color:
        #8b7cff;

}


.certificate-text p {

    max-width: 550px;

    margin-top: 20px;

    color:
        #9da7bc;

    font-size: 16px;

    line-height: 1.75;

}


/* =========================================================
   CERTIFICATE CARD
========================================================= */

.certificate {

    padding: 40px;

    color:
        #111827;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #f4f5fb
        );

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.35);

    transform:
        rotate(1deg);

    transition:
        transform .5s ease;

}


.certificate:hover {

    transform:
        rotate(0)
        scale(1.02);

}


.certificate-border {

    padding:
        40px 25px;

    text-align: center;

    border:
        2px solid
        var(--primary);

}


.certificate-border > small {

    color:
        #687386;

    font-size: 10px;

    letter-spacing:
        3px;

}


.certificate-border h3 {

    margin:
        15px 0 5px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 34px;

}


.certificate-border p {

    color:
        #687386;

    font-size: 13px;

}


.certificate-border strong {

    display: block;

    margin:
        12px 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 25px;

    color:
        #4b45c4;

}


.certificate-border b {

    display: block;

    margin:
        10px 0 20px;

}


.certificate-border hr {

    height: 1px;

    border: 0;

    background:
        #dce0ea;

    margin:
        25px 0;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background:
        #fff;

    max-width: none;

    padding-left:
        max(25px, calc((100vw - 1200px) / 2));

    padding-right:
        max(25px, calc((100vw - 1200px) / 2));

}


.contact-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 25px;

}


.contact-grid > * {

    min-width: 0;

}


.contact-card {

    padding: 35px;

    border-radius: 22px;

    border:
        1px solid
        #cfd6e4;

    background:
        #f8f9fd;

}


.contact-card h3 {

    margin-bottom: 25px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 25px;

}


.contact-item {

    display: flex;

    gap: 14px;

    margin:
        22px 0;

}


.contact-icon {

    flex:
        0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        #e9e8ff;

}


.contact-item small {

    display: block;

    color:
        #8991a2;

    font-size: 10px;

    font-weight: 700;

}


.contact-item strong {

    display: block;

    margin-top: 3px;

    font-size: 14px;

    line-height: 1.55;

    overflow-wrap: break-word;

    word-break: break-word;

}


/* =========================================================
   FORM
========================================================= */

#enquiryForm {

    margin-top: 28px;

}


.form-group {

    margin-bottom: 15px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    font-size: 12px;

    font-weight: 700;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding:
        13px 14px;

    outline: none;

    border:
        1px solid
        #dfe3eb;

    border-radius: 10px;

    color:
        #111827;

    background:
        #fff;

    transition:
        border .25s,
        box-shadow .25s;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(99,91,255,.08);

}


.form-group textarea {

    min-height: 100px;

    resize: vertical;

}


.submit-btn {

    width: 100%;

    border: 0;

}


/* =========================================================
   MAP
========================================================= */

.map-container {

    min-height: 500px;

    position: relative;

    overflow: hidden;

    border:
        1px solid
        #e5e8f0;

    border-radius: 22px;

    box-shadow:
        var(--shadow);

}


.map-container iframe {

    width: 100%;

    height: 100%;

    min-height: 500px;

    display: block;

    border: 0;

}


.direction-btn {

    position: absolute;

    left: 20px;
    bottom: 20px;

    z-index: 10;

    padding:
        12px 17px;

    border-radius: 10px;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    background:
        var(--primary);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.25);

    transition:
        transform .3s,
        background .3s;

}


.direction-btn:hover {

    transform:
        translateY(-3px);

    background:
        var(--primary-dark);

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    max-width: 1200px;

    margin:
        0 auto 100px;

    padding:
        60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    color: #fff;

    border-radius: 28px;

    overflow: hidden;

    position: relative;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(139,92,246,.40),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #172052,
            #352278
        );

    box-shadow:
        0 30px 80px
        rgba(50,35,120,.20);

}


.cta-section::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    bottom: -150px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.10);

}


.cta-section h2 {

    position: relative;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(36px,5vw,55px);

    line-height:
        1;

    letter-spacing:
        -2px;

}


.cta-section p {

    position: relative;

    margin-top: 15px;

    color:
        #c5cce0;

}


.cta-section .btn {

    position: relative;

    flex-shrink: 0;

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    padding:
        70px 25px 25px;

    color: #fff;

    background:
        #070b17;

}


.footer-grid {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 50px;

}


.footer-grid h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 23px;

}


.footer-grid h4 {

    margin-bottom: 15px;

    font-family:
        "Space Grotesk",
        sans-serif;

}


.footer-grid p {

    margin-top: 10px;

    color:
        #8f99ad;

    font-size: 14px;

    line-height: 1.7;

}


.footer-grid > div > a {

    display: block;

    margin:
        10px 0;

    color:
        #8f99ad;

    font-size: 14px;

    transition:
        color .25s;

}


.footer-grid > div > a:hover {

    color:
        #fff;

}


.copyright {

    max-width: 1250px;

    margin:
        45px auto 0;

    padding-top:
        20px;

    border-top:
        1px solid
        #1e2638;

    text-align: center;

    color:
        #6f788c;

    font-size: 12px;

}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-buttons {

    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 4000;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.floating-buttons a {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #fff;

    font-size: 21px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.20);

    transition:
        transform .3s ease;

}


.floating-buttons a:hover {

    transform:
        scale(1.1)
        translateY(-3px);

}


.floating-call {

    background:
        #315bdc;

}


.floating-whatsapp {

    background:
        #22c55e;

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s
        cubic-bezier(.2,.8,.2,1);

}


.reveal.active {

    opacity: 1;

    transform:
        translateY(0);

}


.reveal-left {

    opacity: 0;

    transform:
        translateX(-50px);

    transition:
        opacity .9s ease,
        transform .9s ease;

}


.reveal-left.active {

    opacity: 1;

    transform:
        translateX(0);

}


.reveal-right {

    opacity: 0;

    transform:
        translateX(50px);

    transition:
        opacity .9s ease,
        transform .9s ease;

}


.reveal-right.active {

    opacity: 1;

    transform:
        translateX(0);

}


/* =========================================================
   GENERAL ANIMATIONS
========================================================= */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-container {

        grid-template-columns:
            1fr;

    }


    .hero-content {

        max-width: 850px;

    }


    .hero-visual {

        max-width: 700px;

        width: 100%;

        margin: auto;

    }


    .course-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .about-grid {

        grid-template-columns:
            1fr;

    }


    .about-text {

        max-width: 800px;

    }


    .certificate-grid {

        grid-template-columns:
            1fr;

    }


    .certificate-text {

        max-width: 800px;

    }


    .contact-grid {

        grid-template-columns:
            1fr;

    }


    .map-container {

        min-height: 450px;

    }


    .map-container iframe {

        min-height: 450px;

    }


    .why-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 800px) {

    .navbar {

        height: 72px;

    }


    .menu-btn {

        display: block;

    }


    .nav-links {

        position: absolute;

        top: 72px;

        left: 15px;
        right: 15px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        padding: 22px;

        border:
            1px solid
            rgba(255,255,255,.08);

        border-radius: 16px;

        background:
            rgba(12,17,32,.98);

        box-shadow:
            0 20px 50px
            rgba(0,0,0,.30);

    }


    .nav-links.active {

        display: flex;

        animation:
            mobileMenu .3s ease;

    }


    @keyframes mobileMenu {

        from {

            opacity: 0;

            transform:
                translateY(-10px);

        }

        to {

            opacity: 1;

            transform:
                translateY(0);

        }

    }


    .nav-admission {

        display: inline-block;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .navbar {

        padding:
            0 18px;

    }


    .logo-text strong {

        font-size: 13px;

    }


    .logo-text span {

        display: none;

    }


    .hero-container {

        padding:
            125px 18px 70px;

    }


    .hero h1 {

        font-size:
            50px;

        letter-spacing:
            -2.5px;

    }


    .hero-description {

        font-size:
            16px;

    }


    .hero-buttons {

        align-items:
            stretch;

    }


    .hero-buttons .btn {

        width:
            100%;

    }


    .hero-visual {

        height:
            390px;

    }


    .floating-card {

        display:
            none;

    }


    .laptop {

        width:
            380px;

    }


    .laptop-screen {

        height:
            220px;

    }


    .stats-container {

        margin-top:
            -25px;

        padding:
            0 15px;

    }


    .stats {

        grid-template-columns:
            repeat(2,1fr);

    }


    .stat {

        padding:
            23px 10px;

        border-bottom:
            1px solid
            #edf0f6;

    }


    .stat:nth-child(2) {

        border-right:
            0;

    }


    .stat strong {

        font-size:
            31px;

    }


    .section {

        padding:
            80px 18px;

    }


    .section-heading h2,
    .about-text h2,
    .certificate-text h2 {

        font-size:
            40px;

    }


    .course-grid,
    .why-grid {

        grid-template-columns:
            1fr;

    }


    .about-main {

        width:
            90%;

        left:
            5%;

    }


    .mini-card-1 {

        right:
            -5px;

    }


    .mini-card-2 {

        left:
            -5px;

    }


    .certificate {

        padding:
            15px;

    }


    .certificate-border {

        padding:
            30px 15px;

    }


    .certificate-border h3 {

        font-size:
            27px;

    }


    .cta-section {

        margin:
            0 15px 70px;

        padding:
            40px 25px;

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .cta-section h2 {

        font-size:
            36px;

    }


    .cta-section .btn {

        width:
            100%;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            35px;

    }


    .floating-buttons {

        right:
            15px;

        bottom:
            15px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .hero h1 {

        font-size:
            43px;

    }


    .hero-visual {

        height:
            330px;

    }


    .laptop {

        width:
            330px;

    }


    .laptop-screen {

        height:
            190px;

    }


    .screen-title {

        font-size:
            21px;

    }


    .screen-cards {

        margin-top:
            18px;

    }


    .section-heading h2,
    .about-text h2,
    .certificate-text h2 {

        font-size:
            34px;

    }


    .course-card {

        padding:
            25px;

    }


    .contact-card {

        padding:
            25px;

    }


    .about-main {

        height:
            320px;

        padding:
            30px;

    }


    .about-main h3 {

        font-size:
            34px;

    }


    .map-container,
    .map-container iframe {

        min-height:
            380px;

    }

}


/* =========================================================
   FOUNDER PHOTO (ABOUT TCI)
========================================================= */

.founder-block {

    grid-column: 1 / -1;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 16px;

    margin-top: 55px;

    padding-top: 45px;

    border-top:
        1px solid
        var(--border);

    text-align: center;

}


.founder-photo {

    position: relative;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    padding: 6px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        var(--shadow);

}


.founder-photo::after {

    content: "";

    position: absolute;

    inset: 5px;

    border-radius: 50%;

    background: var(--white);

    z-index: 1;

}


.founder-photo img {

    position: absolute;

    inset: 5px;

    z-index: 2;

    width: calc(100% - 10px);
    height: calc(100% - 10px);

    border-radius: 50%;

    object-fit: cover;

}


.founder-initials {

    position: relative;

    z-index: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;
    height: 100%;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 40px;

    font-weight: 700;

    color: var(--primary);

}


.founder-name {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 19px;

    font-weight: 700;

    letter-spacing: .5px;

    color: var(--text);

}


@media (max-width: 700px) {

    .founder-photo {

        width: 150px;
        height: 150px;

    }


    .founder-initials {

        font-size: 40px;

    }


    .founder-name {

        font-size: 17px;

    }

}


/* =========================================================
   READABILITY UPGRADE — LARGER, CLEARER TYPE
========================================================= */

body {

    font-size: 20px;

    line-height: 1.72;

    -webkit-font-smoothing: antialiased;

}


.loader-box p {
    font-size: 14px;
    letter-spacing: 2.5px;
}

.logo-text span {
    font-size: 13px;
}

.nav-links a {
    font-size: 19px;
}

.hero-badge {
    font-size: 16.5px;
}

.btn {
    font-size: 18.5px;
}

.stat span {
    font-size: 17.5px;
}

.section-heading small,
.about-text > small,
.certificate-text > small {
    font-size: 16px;
    letter-spacing: 2.5px;
}

.section-heading p {
    font-size: 21px;
}

.course-meta span {
    font-size: 15.5px;
}

.course-card > p {
    font-size: 18.5px;
    line-height: 1.75;
}

.course-card h3 {
    font-size: 24px;
}

.syllabus h4 {
    font-size: 18px;
}

.syllabus ul {
    font-size: 17.5px;
    line-height: 1.95;
}

.about-text p {
    font-size: 20.5px;
    line-height: 1.85;
}

.about-main small {
    font-size: 16px;
}

.about-main h3 {
    font-size: 48px;
}

.about-main p {
    font-size: 18.5px;
}

.mini-card {
    font-size: 17.5px;
}

.why-card h3 {
    font-size: 24px;
}

.why-card p {
    font-size: 18.5px;
    line-height: 1.75;
}

.certificate-text p {
    font-size: 20.5px;
    line-height: 1.85;
}

.certificate-border > small {
    font-size: 14.5px;
}

.certificate-border p {
    font-size: 17.5px;
}

.certificate-border h3 {
    font-size: 36px;
}

.certificate-border strong {
    font-size: 22px;
}

.contact-item small {
    font-size: 14.5px;
    letter-spacing: 1.5px;
}

.contact-item strong {
    font-size: 18.5px;
    line-height: 1.65;
}

.contact-card h3 {
    font-size: 28px;
}

.form-group label {
    font-size: 16.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 17.5px;
}

.direction-btn {
    font-size: 17.5px;
}

.footer-grid h3 {
    font-size: 24px;
}

.footer-grid h4 {
    font-size: 19px;
}

.footer-grid p {
    font-size: 18px;
    line-height: 1.75;
}

.footer-grid > div > a {
    font-size: 18px;
}

.copyright {
    font-size: 15.5px;
}

.check-list li {
    font-size: 18.5px;
}

.founder-name {
    font-size: 23px;
}


/* =========================================================
   EXTRA SMALL MOBILE (360px & below)
========================================================= */

@media (max-width: 380px) {

    body {
        font-size: 16.5px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-heading h2,
    .about-text h2,
    .certificate-text h2 {
        font-size: 32px;
    }

    .stat strong {
        font-size: 27px;
    }

    .navbar {
        padding: 0 14px;
    }

    .laptop {
        width: 290px;
    }

    .laptop-screen {
        height: 165px;
    }
}


/* =========================================================
   COLOR + ANIMATION UPGRADE
========================================================= */

@keyframes iconFloat {

    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }

}


@keyframes ringSpin {

    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }

}


@keyframes softPop {

    0% { transform: scale(.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }

}


@keyframes dashGlow {

    0%, 100% { box-shadow: 0 0 0 0 rgba(99,91,255,.35); }
    50% { box-shadow: 0 0 0 6px rgba(99,91,255,0); }

}


/* Card entrance stagger */

.course-grid .course-card:nth-child(1) { transition-delay: 0s; }
.course-grid .course-card:nth-child(2) { transition-delay: .1s; }
.course-grid .course-card:nth-child(3) { transition-delay: .2s; }
.course-grid .course-card:nth-child(4) { transition-delay: .3s; }
.course-grid .course-card:nth-child(5) { transition-delay: .4s; }

.why-grid .why-card:nth-child(1) { transition-delay: 0s; }
.why-grid .why-card:nth-child(2) { transition-delay: .08s; }
.why-grid .why-card:nth-child(3) { transition-delay: .16s; }
.why-grid .why-card:nth-child(4) { transition-delay: .24s; }
.why-grid .why-card:nth-child(5) { transition-delay: .32s; }
.why-grid .why-card:nth-child(6) { transition-delay: .4s; }

.stats .stat:nth-child(1) { transition-delay: 0s; }
.stats .stat:nth-child(2) { transition-delay: .1s; }
.stats .stat:nth-child(3) { transition-delay: .2s; }
.stats .stat:nth-child(4) { transition-delay: .3s; }


/* Colourful, animated checklist */

.check-list li {

    transition:
        transform .3s ease,
        color .3s ease;

}


.check-list li:hover {

    transform: translateX(6px);

    color: var(--primary-dark);

}


.check-list li:nth-child(1)::before { background: #e7e8ff; color: var(--primary); }
.check-list li:nth-child(2)::before { background: #dcf5ee; color: var(--teal); }
.check-list li:nth-child(3)::before { background: #fdeadd; color: var(--amber); }
.check-list li:nth-child(4)::before { background: #ffe4ea; color: var(--coral); }
.check-list li:nth-child(5)::before { background: #f6e2ff; color: var(--pink); }

.check-list li::before {

    transition:
        transform .3s ease;

}


.check-list li:hover::before {

    transform: scale(1.2) rotate(-10deg);

}


/* Contact icons — colourful + animated */

.contact-item {

    transition: transform .3s ease;

}


.contact-item:hover {

    transform: translateX(6px);

}


.contact-icon {

    transition:
        transform .35s ease,
        background .35s ease;

}


.contact-item:hover .contact-icon {

    transform: scale(1.12) rotate(-6deg);

}


.contact-item:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #e7e8ff, #d7d5ff);
}

.contact-item:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #dcf5ee, #c7ede0);
}

.contact-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #fdeadd, #fbdcc4);
}


/* Mini cards — second one gets a teal gradient number */

.mini-card-2 strong {

    background:
        linear-gradient(
            135deg,
            var(--teal),
            var(--cyan)
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}


/* Form — animated focus glow */

.form-group input,
.form-group select,
.form-group textarea {

    transition:
        border .25s ease,
        box-shadow .25s ease,
        transform .25s ease;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    transform: translateY(-2px);

    box-shadow:
        0 0 0 4px
        rgba(99,91,255,.12);

}


/* Founder photo — slow spinning gradient ring */

.founder-photo {

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary),
            var(--cyan)
        );

    transition: transform .35s ease;

}


.founder-photo:hover {

    transform: scale(1.06);

}


.founder-block {

    animation: softPop .6s ease both;

}


/* Hero badge dot — animated pulse */

.hero-badge span {

    animation: dashGlow 1.8s ease-in-out infinite;

}


/* Buttons — subtle animated gradient shift on hover */

.btn-primary {

    background-size: 160% 160%;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background-position .5s ease;

}


.btn-primary:hover {

    background-position: 100% 100%;

}


/* Nav admission — gentle breathing glow */

.nav-admission {

    animation: dashGlow 2.4s ease-in-out infinite;

}


/* Section headings — colour sweep on the highlighted span */

.section-heading h2 span,
.about-text h2 span,
.certificate-text h2 span {

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary),
            var(--cyan),
            var(--primary)
        );

    background-size: 300% 100%;

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    animation: gradientMove 6s ease infinite;

}


/* Floating action buttons — soft continuous pulse */

.floating-call,
.floating-whatsapp {

    animation: dashGlow 2.2s ease-in-out infinite;

}


/* =========================================================
   CUSTOM MOUSE CURSOR
========================================================= */

.cursor-dot,
.cursor-ring {

    position: fixed;

    top: 0;
    left: 0;

    z-index: 99998;

    pointer-events: none;

    border-radius: 50%;

    transform: translate(-50%, -50%);

}


.cursor-dot {

    width: 8px;
    height: 8px;

    background: var(--primary);

}


.cursor-ring {

    width: 34px;
    height: 34px;

    border: 2px solid var(--secondary);

    opacity: .55;

    transition:
        width .25s ease,
        height .25s ease,
        opacity .25s ease,
        border-color .25s ease,
        background .25s ease;

}


.cursor-ring.grow {

    width: 56px;
    height: 56px;

    background: rgba(99,91,255,.10);

    opacity: .9;

}


@media (hover: hover) and (pointer: fine) {

    body,
    a,
    button {

        cursor: none;

    }

}


@media (hover: none), (max-width: 900px) {

    .cursor-dot,
    .cursor-ring {

        display: none;

    }

}


/* =========================================================
   HERO PHOTO (RIGHT SIDE, REPLACES LAPTOP)
========================================================= */

.hero-photo-wrap {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    height: 100%;

    gap: 22px;

}


.hero-photo {

    position: relative;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    padding: 8px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary),
            var(--cyan)
        );

    box-shadow:
        0 35px 90px
        rgba(99,91,255,.35);

    transition:
        transform .4s ease;

}


.hero-photo:hover {

    transform: scale(1.04);

}


.hero-photo::after {

    content: "";

    position: absolute;

    inset: 8px;

    border-radius: 50%;

    background: var(--dark);

    z-index: 1;

}


.hero-photo img {

    position: absolute;

    inset: 8px;

    z-index: 2;

    width: calc(100% - 16px);
    height: calc(100% - 16px);

    border-radius: 50%;

    object-fit: cover;

}


.hero-photo-initials {

    position: relative;

    z-index: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;
    height: 100%;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 90px;

    font-weight: 700;

    color: #fff;

}


.hero-photo-name {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 22px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #fff;

    text-align: center;

}


@media (max-width: 1100px) {

    .hero-photo {

        width: 300px;
        height: 300px;

    }


    .hero-photo-initials {

        font-size: 78px;

    }

}


@media (max-width: 700px) {

    .hero-photo {

        width: 230px;
        height: 230px;

    }


    .hero-photo-initials {

        font-size: 60px;

    }


    .hero-photo-name {

        font-size: 18px;

    }

}


@media (max-width: 450px) {

    .hero-photo {

        width: 190px;
        height: 190px;

    }


    .hero-photo-initials {

        font-size: 50px;

    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;

    }

}