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

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 15%, rgba(82, 55, 180, 0.18), transparent 25%),
        radial-gradient(circle at 20% 10%, rgba(40, 80, 180, 0.12), transparent 25%),
        #03050b;

    font-family: Arial, Helvetica, sans-serif;
    padding: 60px 0;
}

.heading1{

  display: flex;
  justify-content: center;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 88%;
    max-width: 1130px;
    height: 90px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    padding: 0 22px;

    /* ===== GLASS ===== */
    background: rgba(20, 24, 45, 0.18);

    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);

    /* Reference image jaisa thin border */
    border: 1px solid rgba(210, 215, 255, 0.32);

    border-radius: 14px;

    /* Soft glass depth */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05),
        0 8px 30px rgba(0, 0, 0, 0.25);

    position: relative;
    overflow: hidden;
}

/* Top glass shine */

.navbar::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,0.08),
            transparent 25%,
            transparent 70%,
            rgba(120,100,255,0.06)
        );

    pointer-events: none;
}


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

.logo-area {
    height: 100%;
    width: 265px;

    display: flex;
    align-items: center;

    gap: 13px;

    border-right: 1px solid rgba(255,255,255,0.10);
}
.logoimaage{
    height: 80px;
    width: 300px;
    
}

/* CPIT Logo */

.cpit-logo {
    width: 10px;
    height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;
}
/* Outer hexagon */

.logo-outer {
    width: 43px;
    height: 43px;

    position: relative;

    border: 4px solid #7767ff;

    transform: rotate(30deg);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 0 10px rgba(117, 96, 255, 0.9),
        0 0 25px rgba(117, 96, 255, 0.35);

    clip-path: polygon(
        25% 6%,
        75% 6%,
        100% 50%,
        75% 94%,
        25% 94%,
        0 50%
    );
}


/* Inner hexagon */

.logo-inner {
    width: 20px;
    height: 20px;

    background: linear-gradient(
        135deg,
        #9b7cff,
        #4d8dff
    );

    clip-path: polygon(
        25% 6%,
        75% 6%,
        100% 50%,
        75% 94%,
        25% 94%,
        0 50%
    );

    box-shadow: 0 0 15px #7466ff;
}


/* Logo text */

.logo-text {
    line-height: 1;
}

.logo-text h2 {
    font-size: 21px;
    letter-spacing: 2px;

    color: #f4f4ff;

    font-weight: 700;

    margin-bottom: 5px;
}

.logo-text span {
    font-size: 11px;

    letter-spacing: 2.5px;

    color: #aeb4d9;

    font-weight: 500;
}


/* =========================
   NAV LINKS
========================= */

.nav-links {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 2px;

    margin-left: 15px;
}

.nav-links a {
    color: #e2e4f1;

    text-decoration: none;

    font-size: 14px;

    white-space: nowrap;

    transition: 0.3s ease;

    position: relative;
}


/* Hover underline */

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        #6975ff,
        #b66cff
    );

    box-shadow: 0 0 8px #756cff;

    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;

    text-shadow:
        0 0 12px rgba(130, 120, 255, 0.8);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links span {
    color: rgba(255,255,255,0.45);

    font-size: 9px;
}


/* =========================
   STUDENT PORTAL
========================= */

.student-btn {
    text-decoration: none;

    color: white;

    font-size: 14px;
    font-weight: 600;

    padding: 11px 19px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #6564ee,
        #7654e9
    );

    border: 1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 0 15px rgba(103, 88, 255, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.2);

    transition: 0.3s ease;

    white-space: nowrap;
}

.student-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 20px rgba(110, 90, 255, 0.7),
        0 0 40px rgba(110, 90, 255, 0.25);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 950px) {

    .navbar {
        width: 94%;
    }

    .logo-area {
        width: 220px;
    }

    .nav-links {
        gap: 7px;
    }

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

    .student-btn {
        padding: 10px 13px;
        font-size: 12px;
    }
}


@media (max-width: 750px) {

    .navbar {
        height: auto;
        min-height: 80px;

        padding: 15px 18px;

        flex-wrap: wrap;
        gap: 15px;
    }

    .logo-area {
        width: auto;
        border: none;
    }

    .nav-links {
        order: 3;
        width: 100%;

        margin: 0;

        padding-top: 12px;

        border-top: 1px solid rgba(255,255,255,0.08);

        flex-wrap: wrap;
    }

    .student-btn {
        margin-left: auto;
    }
}


@media (max-width: 480px) {

    body {
        padding-top: 25px;
    }

    .navbar {
        width: 94%;
    }

    .logo-text h2 {
        font-size: 18px;
    }

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

    .cpit-logo {
        width: 45px;
    }

    .logo-outer {
        width: 36px;
        height: 36px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links span {
        display: none;
    }
}

/* =========================================
   CPIT HERO SECTION
========================================= */

.cpit-hero {

    min-height: 760px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(75, 55, 190, 0.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(40, 80, 210, 0.18),
            transparent 30%
        ),
        #02040b;

    color: white;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.hero-container {

    width: 88%;
    max-width: 1150px;

    min-height: 760px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    position: relative;

    z-index: 5;
}


/* =========================================
   LEFT CONTENT
========================================= */

.hero-content {

    width: 49%;

    padding-top: 25px;
}


.hero-content h1 {

    font-size: 49px;

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.5px;

    margin-bottom: 14px;

    color: #ffffff;

    text-shadow:
        0 0 20px rgba(255,255,255,0.08);
}


.hero-content h1 span {

    display: inline;

    color: #ffffff;
}


.hero-content h2 {

    font-size: 20px;

    line-height: 1.45;

    font-weight: 500;

    margin-bottom: 21px;

    background:
        linear-gradient(
            90deg,
            #9caeff,
            #8d83ff,
            #a6a0ff
        );

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


.hero-content p {

    color: #b6bde1;

    font-size: 15px;

    line-height: 1.65;

    margin-bottom: 30px;
}


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

.hero-buttons {

    display: flex;

    gap: 24px;

    margin-bottom: 57px;
}


.explore-btn {

    width: 245px;

    height: 53px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: white;

    font-size: 16px;

    font-weight: 600;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #6266ff,
            #7450ee
        );

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 0 20px rgba(92,85,255,0.55),
        0 0 45px rgba(92,85,255,0.18);

    transition: 0.35s ease;
}


.explore-btn span {

    font-size: 21px;

    transition: 0.3s ease;
}


.explore-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 0 30px rgba(103,93,255,0.75),
        0 0 60px rgba(103,93,255,0.25);
}


.explore-btn:hover span {

    transform: translateX(5px);
}


/* Demo button */

.demo-btn {

    width: 235px;

    height: 53px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #aebfff;

    font-size: 16px;

    font-weight: 600;

    border-radius: 10px;

    background: rgba(100,110,160,0.10);

    border: 1px solid rgba(220,225,255,0.38);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10);

    transition: 0.35s ease;
}


.demo-btn:hover {

    color: white;

    background: rgba(100,110,160,0.18);

    border-color: rgba(150,150,255,0.65);

    box-shadow:
        0 0 20px rgba(100,100,255,0.25);

    transform: translateY(-3px);
}


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

.stats-box {

    width: 510px;

    height: 81px;

    display: flex;

    align-items: center;

    padding: 0 15px;

    border-radius: 10px;

    background: rgba(30,35,60,0.30);

    border: 1px solid rgba(200,205,240,0.25);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08);
}


.stat {

    flex: 1;

    display: flex;

    align-items: center;

    gap: 11px;
}


.stat-icon {

    width: 32px;

    height: 32px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 21px;

    color: #668dff;

    filter:
        drop-shadow(0 0 7px rgba(90,110,255,0.8));
}


.stat strong {

    display: block;

    font-size: 17px;

    color: #a59aff;

    margin-bottom: 3px;
}


.stat span {

    display: block;

    color: #8991b9;

    font-size: 12px;
}


.stat-line {

    width: 1px;

    height: 42px;

    background:
        rgba(220,225,255,0.17);

    margin: 0 10px;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.hero-visual {

    width: 51%;

    height: 650px;

    position: relative;
}


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

.laptop {

    position: absolute;

    width: 245px;

    height: 160px;

    z-index: 1;

    transform: rotate(14deg);
}


.laptop-one {

    right: 5px;

    top: 65px;
}


.laptop-screen {

    width: 220px;

    height: 137px;

    margin: auto;

    padding: 17px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #151a34,
            #252b53
        );

    border: 4px solid #565d82;

    box-shadow:
        0 0 30px rgba(70,90,255,0.25);
}


.code-line {

    width: 70%;

    height: 4px;

    border-radius: 10px;

    margin-bottom: 8px;

    background: #668cff;

    box-shadow:
        0 0 8px rgba(80,110,255,0.6);
}


.code-line.purple {

    width: 52%;

    background: #9c68ff;
}


.code-line.short {

    width: 38%;

    background: #5b6cff;
}


.code-line.small {

    width: 45%;

    background: #7f5fff;
}


.chart {

    position: absolute;

    right: 32px;

    bottom: 42px;

    display: flex;

    align-items: end;

    gap: 5px;
}


.chart-bar {

    width: 8px;

    background: #657dff;

    border-radius: 3px;
}


.bar1 { height: 18px; }
.bar2 { height: 32px; }
.bar3 { height: 23px; }
.bar4 { height: 42px; }


.laptop-base {

    width: 270px;

    height: 9px;

    margin-left: -12px;

    background:
        linear-gradient(
            90deg,
            #343957,
            #858aa5,
            #343957
        );

    border-radius: 0 0 8px 8px;

    box-shadow:
        0 5px 10px rgba(0,0,0,0.4);
}


/* =========================================
   COURSE CARDS
========================================= */

.course-card {

    position: absolute;

    width: 300px;

    min-height: 165px;

    padding: 23px;

    display: flex;

    align-items: flex-start;

    gap: 13px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(145,150,190,0.25),
            rgba(45,50,90,0.18)
        );

    border: 1px solid rgba(230,235,255,0.45);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.15),
        0 20px 45px rgba(0,0,0,0.35),
        0 0 25px rgba(100,90,255,0.12);

    z-index: 4;

    transition: 0.4s ease;
}


.course-card:hover {

    transform:
        translateY(-8px)
        scale(1.02);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.20),
        0 25px 55px rgba(0,0,0,0.4),
        0 0 35px rgba(105,90,255,0.28);
}


/* Card 1 */

.card-one {

    top: 115px;

    left: 40px;

    transform: rotate(11deg);

    animation: cardFloat1 5s ease-in-out infinite;
}


/* Card 2 */

.card-two {

    top: 300px;

    left: 55px;

    transform: rotate(9deg);

    animation: cardFloat2 5.5s ease-in-out infinite;
}


/* Card 3 */

.card-three {

    top: 470px;

    left: 130px;

    transform: rotate(13deg);

    animation: cardFloat3 6s ease-in-out infinite;
}


/* =========================================
   CARD CONTENT
========================================= */

.course-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    font-size: 28px;

    background:
        rgba(100,100,255,0.15);

    box-shadow:
        0 0 20px rgba(100,90,255,0.2);
}


.course-info {

    padding-top: 3px;
}


.course-info h3 {

    font-size: 17px;

    margin-bottom: 8px;

    color: white;
}


.course-info p {

    font-size: 12px;

    line-height: 1.6;

    color: #d0d2e8;
}


.course-tag {

    position: absolute;

    left: 23px;

    bottom: 15px;

    padding: 7px 12px;

    border-radius: 8px;

    font-size: 11px;

    font-weight: 600;

    color: white;

    background:
        linear-gradient(
            135deg,
            #6371ff,
            #8056ed
        );

    box-shadow:
        0 0 15px rgba(90,90,255,0.35);
}


.cloud-tag {

    background:
        linear-gradient(
            135deg,
            #5794dc,
            #627fd1
        );
}


.cyber-tag {

    background:
        linear-gradient(
            135deg,
            #6964e7,
            #8556dc
        );
}


/* =========================================
   CARD ANIMATIONS
========================================= */

@keyframes cardFloat1 {

    0%,100% {
        margin-top: 0;
    }

    50% {
        margin-top: -12px;
    }
}


@keyframes cardFloat2 {

    0%,100% {
        margin-top: 0;
    }

    50% {
        margin-top: 13px;
    }
}


@keyframes cardFloat3 {

    0%,100% {
        margin-top: 0;
    }

    50% {
        margin-top: -10px;
    }
}


/* =========================================
   GLOWING PARTICLES
========================================= */

.particle {

    position: absolute;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #6c72ff;

    box-shadow:
        0 0 8px #6974ff,
        0 0 18px rgba(100,100,255,0.7);

    animation:
        particleMove 5s ease-in-out infinite;
}


.p1 {
    left: 48%;
    top: 18%;
    animation-delay: 0s;
}

.p2 {
    left: 56%;
    top: 10%;
    animation-delay: 1s;
}

.p3 {
    left: 68%;
    top: 25%;
    animation-delay: 2s;
}

.p4 {
    left: 75%;
    top: 45%;
    animation-delay: 1.5s;
}

.p5 {
    left: 59%;
    top: 55%;
    animation-delay: 3s;
}

.p6 {
    left: 83%;
    top: 65%;
    animation-delay: 2.5s;
}

.p7 {
    left: 70%;
    top: 75%;
    animation-delay: 1s;
}

.p8 {
    left: 91%;
    top: 33%;
    animation-delay: 4s;
}

.p9 {
    left: 51%;
    top: 70%;
    animation-delay: 2s;
}

.p10 {
    left: 87%;
    top: 82%;
    animation-delay: 3s;
}

.p11 {
    left: 64%;
    top: 15%;
    animation-delay: 4s;
}

.p12 {
    left: 79%;
    top: 18%;
    animation-delay: 2s;
}


@keyframes particleMove {

    0%,100% {

        transform:
            translate(0,0)
            scale(1);

        opacity: 0.4;
    }

    25% {

        transform:
            translate(12px,-18px)
            scale(1.5);

        opacity: 1;
    }

    50% {

        transform:
            translate(-10px,-30px)
            scale(0.7);

        opacity: 0.5;
    }

    75% {

        transform:
            translate(18px,-10px)
            scale(1.3);

        opacity: 0.9;
    }
}


/* =========================================
   BIG FLOATING CIRCLES
========================================= */

.floating-circle {

    position: absolute;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #9e9eff,
            #4444a7 45%,
            #161a50 75%
        );

    border: 1px solid rgba(150,160,255,0.35);

    box-shadow:
        0 0 15px rgba(100,100,255,0.7),
        0 0 35px rgba(80,70,255,0.3);

    z-index: 2;

    animation:
        bigCircleFloat 5s ease-in-out infinite;
}


.circle-one {

    width: 28px;
    height: 28px;

    top: 260px;
    right: 30px;
}


.circle-two {

    width: 42px;
    height: 42px;

    top: 500px;
    right: 40px;

    animation-delay: 1s;
}


.circle-three {

    width: 19px;
    height: 19px;

    top: 180px;
    right: 170px;

    animation-delay: 2s;
}


.circle-four {

    width: 32px;
    height: 32px;

    top: 570px;
    left: 20px;

    animation-delay: 1.5s;
}


.circle-five {

    width: 15px;
    height: 15px;

    top: 90px;
    left: 180px;

    animation-delay: 3s;
}


@keyframes bigCircleFloat {

    0%,100% {

        transform:
            translateY(0)
            scale(1);
    }

    50% {

        transform:
            translateY(-22px)
            scale(1.12);
    }
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}


.glow-one {

    width: 300px;
    height: 300px;

    right: 10%;

    top: 20%;

    background:
        rgba(83,70,255,0.16);
}


.glow-two {

    width: 240px;
    height: 240px;

    right: 25%;

    bottom: 10%;

    background:
        rgba(42,100,255,0.13);
}


.glow-three {

    width: 180px;
    height: 180px;

    left: 45%;

    top: 5%;

    background:
        rgba(150,70,255,0.10);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h2 {
        font-size: 17px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .stats-box {
        width: 100%;
    }

    .hero-visual {
        transform: scale(0.85);
        transform-origin: center;
    }
}


@media (max-width: 800px) {

    .cpit-hero {
        min-height: auto;
    }

    .hero-container {

        flex-direction: column;

        padding-top: 70px;
        padding-bottom: 80px;
    }

    .hero-content {

        width: 100%;

        text-align: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h2 br,
    .hero-content p br {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats-box {
        margin: auto;
    }

    .hero-visual {

        width: 100%;

        margin-top: 40px;

        transform: scale(0.85);
    }
}


@media (max-width: 550px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content h2 {
        font-size: 16px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: center;

        gap: 12px;
    }

    .explore-btn,
    .demo-btn {
        width: 260px;
    }

    .stats-box {

        width: 100%;

        height: auto;

        padding: 15px;

        flex-direction: column;

        gap: 14px;
    }

    .stat {

        width: 100%;

        justify-content: center;
    }

    .stat-line {

        width: 80%;

        height: 1px;

        margin: 0;
    }

    .hero-visual {

        height: 600px;

        transform: scale(0.65);

        transform-origin: top center;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
*{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif}
body{
    background:#060711;
    background-image: radial-gradient(1px 1px at 20% 30%, #fff 100%, transparent),
                      radial-gradient(circle at 50% 50%, rgba(80,50,180,0.2), transparent 60%);
    background-size: 600px 600px, 100% 100%;
    min-height:100vh; color:#fff; overflow-x:hidden;
}
.section-title{text-align:center;padding:60px 0 10px}
.section-title h1{font-size:42px;font-weight:800}
.section-title p{color:#9aa0ff;opacity:.8;margin-top:8px;font-size:14px}

/* CIRCULAR 3D SETUP */
.circular-wrapper{
    width:100%;
    height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    perspective: 1800px;
    perspective-origin: 50% 50%;
    overflow:hidden;
    
    /* starting ending ko hide karne ke liye circular fade */
    mask-image: radial-gradient(ellipse at center, black 60%, transparent 95%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 95%);
}

.circular-track{
    position:relative;
    width:320px;
    height:200px;
    transform-style: preserve-3d;
    animation: rotateCircle 40s linear infinite;
}

.circular-wrapper:hover .circular-track{
    animation-play-state: paused;
}

@keyframes rotateCircle{
    0%{ transform: rotateY(0deg); }
    100%{ transform: rotateY(-360deg); }
}

.glass-card{
    position:absolute;
    left:0;top:0;
    width:320px;
    padding:18px;
    border-radius:18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 0 8px 32px rgba(0,0,0,0.6), 0 0 30px rgba(109,78,255,0.15);
    
    /* Har card ko circle pe lagao */
    transform: rotateY(calc(var(--i) * 36deg)) translateZ(550px);
    /* 36deg = 360/10 cards */
}

.glass-card::before{
    content:'';position:absolute;bottom:0;left:10%;right:10%;height:1.5px;
    background: linear-gradient(90deg, transparent, #a78bfa, #7c5cff, transparent);
    box-shadow: 0 0 12px #7c5cff;
}

.icon-box{
    width:44px;height:44px;border-radius:11px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    border:1px solid rgba(255,255,255,0.15);
    display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:10px;
}
.glass-card h3{font-size:14px;font-weight:700}
.glass-card span{display:block;font-size:11.5px;opacity:.8;margin-top:3px;color:#8e9aff}
.tag{
    display:inline-block;margin-top:12px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    padding:5px 12px;border-radius:20px;font-size:10px;font-weight:700;
    box-shadow: 0 0 15px rgba(99,102,241,0.6);
}

/* Jo card piche hai wo halka blur + dark ho jayega - asli circular feel */
.glass-card{
    backface-visibility: hidden;
}

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

:root {
  --bg: #050611;
  --bg-soft: #090b1b;
  --panel: rgba(16, 18, 39, 0.76);
  --panel-strong: #11142c;
  --line: rgba(145, 153, 207, 0.24);
  --text: #f7f7ff;
  --muted: #aeb4d4;
  --purple: #6d5dfc;
  --purple-2: #927dff;
  --blue: #628cff;
  --shadow: 0 25px 80px rgba(64, 58, 255, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 25%, rgba(89, 75, 255, 0.15), transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(66, 109, 255, 0.08), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.glow-one {
  top: 20%;
  right: -160px;
  background: rgba(102, 83, 255, 0.18);
}

.glow-two {
  bottom: 5%;
  left: -180px;
  background: rgba(64, 105, 255, 0.12);
}

.navbar {
  width: min(90%, 1550px);
  min-height: 134px;
  margin: 30px auto 0;
  padding: 0 26px 0 36px;
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(25, 27, 51, .82), rgba(9, 10, 27, .78));
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 265px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  border: 1px solid rgba(135, 126, 255, .65);
  border-radius: 17px;
  background: linear-gradient(145deg, #7464ff, #3c4eff);
  box-shadow: 0 0 30px rgba(102, 86, 255, .3);
  transform: rotate(-4deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 29px;
  letter-spacing: 2px;
}

.brand small {
  margin-top: 4px;
  color: #a9b1d3;
  font-size: 12px;
  letter-spacing: 4px;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.nav-links a {
  color: #d6d8e9;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 0;
  position: relative;
  transition: .25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  transition: .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-cta,
.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 13px;
  font-weight: 700;
  transition: .25s ease;
}

.nav-cta {
  min-width: 185px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #7a68ff, #674ee8);
  box-shadow: 0 12px 35px rgba(104, 80, 255, .32);
}

.nav-cta:hover,
.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(104, 80, 255, .42);
}

.about-hero {
  width: min(90%, 1550px);
  min-height: 640px;
  margin: 80px auto 55px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 60px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: #a79cff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.8px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.eyebrow > span {
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
}

.hero-copy h1 {
  margin-top: 22px;
  font-size: clamp(48px, 5vw, 78px);
  line-height: .98;
  letter-spacing: -3px;
}

.hero-copy h1 span,
.section-heading h2 span,
.institute-copy h2 span,
.cta-section h2 span {
  background: linear-gradient(90deg, #7892ff, #9d7bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 620px;
  margin: 28px 0 30px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn {
  padding: 16px 25px;
  background: linear-gradient(135deg, #7261ff, #644ee6);
  box-shadow: 0 12px 35px rgba(104, 80, 255, .24);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 23px;
  border: 1px solid rgba(151, 159, 208, .35);
  border-radius: 13px;
  background: rgba(17, 19, 42, .5);
  color: #dce0f6;
  transition: .25s ease;
}

.secondary-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(131, 121, 255, .7);
  background: rgba(101, 84, 255, .1);
}

.mini-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #9fa7cb;
  font-size: 13px;
}

.mini-trust i {
  color: #7d8dff;
  margin-right: 6px;
}

.hero-visual {
  min-height: 540px;
  position: relative;
  display: grid;
  place-items: center;
}

.visual-grid {
  position: absolute;
  inset: 8% 0 7% 5%;
  opacity: .45;
  background-image:
    linear-gradient(rgba(119, 121, 255, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 121, 255, .1) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, #000 25%, transparent 72%);
}

.image-frame {
  width: min(100%, 760px);
  height: 455px;
  padding: 8px;
  border: 1px solid rgba(146, 153, 214, .38);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(115, 105, 255, .34), rgba(27, 29, 59, .55));
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
  overflow: hidden;
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 23px;
  filter: saturate(.88) contrast(1.02);
}

.image-overlay {
  position: absolute;
  inset: 8px;
  border-radius: 23px;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 5, 15, .72));
}

.building-tag {
  position: absolute;
  left: 34px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(159, 165, 218, .35);
  border-radius: 16px;
  background: rgba(12, 14, 34, .78);
  backdrop-filter: blur(14px);
}

.building-tag b,
.building-tag small {
  display: block;
}

.building-tag b {
  font-size: 15px;
}

.building-tag small {
  margin-top: 4px;
  color: #9ea7ca;
  font-size: 11px;
}

.tag-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(105, 90, 255, .18);
  color: #8d82ff;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #b5aaff, #5044da 60%, transparent 70%);
  filter: blur(.2px);
  box-shadow: 0 0 30px rgba(91, 77, 255, .55);
  animation: float 4s ease-in-out infinite;
}

.orb-a {
  width: 28px;
  height: 28px;
  top: 7%;
  right: 12%;
}

.orb-b {
  width: 18px;
  height: 18px;
  bottom: 10%;
  left: 7%;
  animation-delay: 1.2s;
}

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

.section-shell {
  width: min(90%, 1550px);
  margin-left: auto;
  margin-right: auto;
}

.intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.info-card,
.stat-card,
.benefit-card,
.cta-section {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(20, 23, 48, .84), rgba(10, 12, 28, .78));
  box-shadow: 0 15px 55px rgba(0, 0, 0, .18);
}

.info-card {
  min-height: 220px;
  padding: 32px;
  border-radius: 22px;
  display: flex;
  gap: 22px;
}

.card-icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #8d86ff;
  background: rgba(103, 88, 255, .12);
  border: 1px solid rgba(126, 117, 255, .18);
  font-size: 23px;
}

.card-label {
  color: #8f9aff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.info-card h2 {
  margin: 9px 0 10px;
  font-size: 21px;
}

.info-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.stats-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--line);
}

.stat-card {
  border: 0;
  border-radius: 0;
  padding: 27px 15px;
  text-align: center;
  min-height: 145px;
  background: #0d1024;
  transition: .25s ease;
}

.stat-card:hover {
  background: #131632;
  transform: translateY(-3px);
}

.stat-card i {
  display: block;
  margin-bottom: 12px;
  color: #7e8eff;
  font-size: 22px;
}

.stat-card strong {
  display: block;
  font-size: 29px;
}

.stat-card span {
  display: block;
  margin-top: 7px;
  color: #9fa6c8;
  font-size: 12px;
}

.why-section {
  padding: 125px 0 30px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading h2 {
  margin: 14px 0;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -1.5px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit-card {
  min-height: 220px;
  border-radius: 20px;
  padding: 27px;
  position: relative;
  overflow: hidden;
  transition: .3s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: rgba(111, 91, 255, .18);
  transition: .3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(126, 115, 255, .5);
  box-shadow: 0 20px 50px rgba(69, 55, 190, .2);
}

.benefit-card:hover::before {
  width: 180px;
  height: 180px;
}

.benefit-card > i {
  color: #8b82ff;
  font-size: 24px;
  margin-bottom: 24px;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.benefit-card p {
  color: #969fc4;
  font-size: 13px;
  line-height: 1.6;
}

.card-arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: #7785ff;
  opacity: 0;
  transform: translateX(-8px);
  transition: .25s ease;
}

.benefit-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.institute-section {
  margin-top: 110px;
  padding: 55px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: radial-gradient(circle at 100% 0%, rgba(99, 81, 255, .12), transparent 35%), #0a0c1e;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.institute-copy h2 {
  margin: 15px 0;
  font-size: clamp(32px, 4vw, 49px);
  line-height: 1.05;
}

.institute-copy > p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 590px;
}

.check-list {
  margin: 24px 0 30px;
  display: grid;
  gap: 13px;
  color: #c9cee5;
  font-size: 13px;
}

.check-list i {
  margin-right: 9px;
  color: #7d8bff;
}

.institute-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-auto-rows: 155px;
  gap: 14px;
}

.gallery-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #11142b;
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 4, 13, .8));
}

.gallery-card > span {
  position: absolute;
  left: 15px;
  bottom: 13px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #847cff;
  font-size: 35px;
  background:
    radial-gradient(circle at 50% 50%, rgba(104, 87, 255, .22), transparent 30%),
    linear-gradient(145deg, #171a3a, #0c0e22);
}

.cta-section {
  margin-top: 100px;
  margin-bottom: 80px;
  padding: 48px 55px;
  border-radius: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: linear-gradient(110deg, rgba(39, 37, 91, .9), rgba(12, 14, 32, .9));
}

.cta-section h2 {
  margin: 12px 0 7px;
  font-size: clamp(28px, 4vw, 45px);
}

.cta-section p {
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  background: #070918;
  padding: 42px max(5%, calc((100% - 1550px) / 2));
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-top p {
  color: #8e96b8;
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 9px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: #a6add0;
  transition: .2s ease;
}

.socials a:hover {
  color: #fff;
  border-color: #7468ff;
  background: rgba(104, 83, 255, .15);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(145, 153, 207, .12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #747d9f;
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: #a7a2ff;
}

/* TABLET */
@media (max-width: 1100px) {
  .navbar {
    min-height: 100px;
    padding: 0 20px;
  }

  .brand {
    min-width: auto;
  }

  .brand strong {
    font-size: 23px;
  }

  .brand-mark {
    width: 47px;
    height: 47px;
  }

  .nav-links {
    gap: 15px;
  }

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

  .nav-cta {
    min-width: auto;
    padding: 14px 16px;
    font-size: 13px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    padding-top: 25px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-description,
  .mini-trust {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .mini-trust {
    justify-content: center;
  }

  .hero-visual {
    min-height: 470px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .institute-section {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 760px) {
  .navbar {
    width: 94%;
    min-height: 78px;
    margin-top: 14px;
    padding: 0 14px;
    border-radius: 17px;
  }

  .brand {
    flex: 1;
    gap: 9px;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
    border-radius: 12px;
    font-size: 18px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-width: 115px;
    padding: 12px 11px;
    border-radius: 10px;
    font-size: 11px;
  }

  .about-hero {
    width: 94%;
    margin-top: 55px;
    gap: 25px;
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-visual {
    min-height: 280px;
  }

  .image-frame {
    height: 280px;
    border-radius: 22px;
  }

  .building-tag {
    left: 18px;
    bottom: 18px;
    padding: 10px 12px;
  }

  .intro-cards {
    width: 94%;
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 22px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-section {
    padding-top: 80px;
  }

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

  .benefit-card {
    min-height: 190px;
  }

  .institute-section {
    width: 94%;
    margin-top: 75px;
    padding: 28px 20px;
    gap: 35px;
  }

  .institute-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
  }

  .gallery-card.large {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .cta-section {
    width: 94%;
    margin-top: 70px;
    margin-bottom: 50px;
    padding: 30px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions a {
    flex: 1;
  }

  .footer {
    padding: 32px 5%;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
