﻿:root {
    --primary: #5F33F1;
    --secondary: #7213D8;
    --white: #ffffff;
    --light-bg: #f7f5ff;
    --light-2: #ede9fd;
    --dark: #0d0b1a;
    --text: #2a2540;
    --muted: #6b6788;
    --grad: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: sans-serif;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 99px;
}

/* ── UTILITY ── */
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary-custom {
    background: var(--grad);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .7rem 1.8rem;
    font-weight: 600;
    font-family: sans-serif;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(95,51,241,.35);
}

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(95,51,241,.5);
        color: #fff;
    }

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: .65rem 1.8rem;
    font-weight: 600;
    font-family: sans-serif;
    background: transparent;
    transition: all .3s;
}

    .btn-outline-custom:hover {
        background: var(--grad);
        color: #fff;
        border-color: transparent;
    }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--light-2);
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

    .section-label i {
        font-size: .75rem;
    }

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
}

.section-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 560px;
}

/* ─────────────────────────────────────────
       HEADER
    ───────────────────────────────────────── */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: .85rem 0;
    transition: all .4s;
    background: rgba(255,255,255,0);
}

    #mainNav.scrolled {
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 20px rgba(95,51,241,.1);
        padding: .6rem 0;
    }

.nav-logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--grad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: sans-serif;
    flex-shrink: 0;
}

.logo-text-main {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--dark);
    line-height: 1;
}

    .logo-text-main span {
        color: var(--primary);
    }

.logo-text-sub {
    font-size: .68rem;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--grad);
    color: #fff !important;
    border-radius: 50px;
    padding: .6rem 1.4rem;
    font-weight: 700;
    font-family: sans-serif;
    font-size: .9rem;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(95,51,241,.35);
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(95,51,241,.5);
        color: #fff !important;
    }

    .nav-cta i {
        font-size: .85rem;
    }

.navbar-toggler {
    border: none;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2895, 51, 241, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    font-size: .92rem;
    padding: .4rem .85rem !important;
    transition: color .2s;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary) !important;
    }

/* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d0b1a 0%, #1a0d3d 50%, #0f082a 100%);
    position: relative;
    overflow: hidden;
    padding: 7rem 0 4rem;
}

    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(95,51,241,.25) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 15% 80%, rgba(114,19,216,.2) 0%, transparent 60%);
    }

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(95,51,241,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(95,51,241,.07) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(95,51,241,.2);
    border: 1px solid rgba(95,51,241,.4);
    color: #c4b2ff;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

    .hero-badge .dot {
        width: 6px;
        height: 6px;
        background: #7aff8f;
        border-radius: 50%;
        box-shadow: 0 0 8px #7aff8f;
        animation: pulse-dot 2s infinite;
    }

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.4);
    }
}

#hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 1.2rem;
}

    #hero h1 span {
        background: linear-gradient(135deg, #a78bfa, #7c3aed, #c084fc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    color: rgba(255,255,255,.7);
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .hero-bullets li {
        color: rgba(255,255,255,.85);
        font-size: .97rem;
        padding: .45rem 0;
        display: flex;
        align-items: flex-start;
        gap: .65rem;
    }

        .hero-bullets li .check {
            width: 22px;
            height: 22px;
            background: rgba(95,51,241,.3);
            border: 1px solid rgba(95,51,241,.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: .1rem;
        }

            .hero-bullets li .check i {
                color: #a78bfa;
                font-size: .7rem;
            }

/* HERO FORM */
.hero-form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2rem 1.8rem;
}

    .hero-form-card h4 {
        color: #fff;
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: .4rem;
    }


    .hero-form-card p {
        color: rgba(255,255,255,.6);
        font-size: .88rem;
        margin-bottom: 1.4rem;
    }

    .hero-form-card .form-control,
    .hero-form-card .form-select {
        /* background: rgba(255, 255, 255, 0.06); */
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 10px;
        color: #000;
        font-size: .92rem;
        padding: .7rem 1rem;
        margin-bottom: .85rem;
        transition: all .3s;
    }

        .hero-form-card .form-control:focus,
        .hero-form-card .form-select:focus {
            /* background: rgba(255,255,255,.1); */
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(95,51,241,.2);
            color: #0e0e0e;
            outline: none;
        }

        .hero-form-card .form-control::placeholder {
            color: rgba(2, 2, 2, 1);
        }

        .hero-form-card .form-select option {
            background: #ffffff;
            color: #000000;
        }

    .hero-form-card textarea {
        resize: none;
    }

.btn-hero-submit {
    width: 100%;
    background: linear-gradient(135deg, #5F33F1, #7213D8);
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: .9rem;
    font-weight: 700;
    font-family: sans-serif;
    font-size: 1rem;
    letter-spacing: .03em;
    transition: all .3s;
    box-shadow: 0 6px 24px rgba(95,51,241,.45);
}

.btn-hero-submit {
    color: #fff;
}

    .btn-hero-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(95,51,241,.6);
        color: #fff;
    }

/* ─────────────────────────────────────────
       LOGOS STRIP
    ───────────────────────────────────────── */
#logos {
    background: var(--light-bg);
    padding: 1.8rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(95,51,241,.08);
    border-bottom: 1px solid rgba(95,51,241,.08);
}

.logos-label {
    color: var(--muted);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    padding-right: 2.5rem;
    flex-shrink: 0;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: scroll-logos 28s linear infinite;
    width: max-content;
}

@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--white);
    border: 1px solid rgba(95,51,241,.12);
    border-radius: 50px;
    padding: .5rem 1.2rem;
    margin: 0 .5rem;
    font-weight: 700;
    font-size: .88rem;
    color: var(--text);
    white-space: nowrap;
    transition: border-color .3s;
}

    .logo-chip:hover {
        border-color: var(--primary);
    }

    .logo-chip i {
        font-size: 1.1rem;
    }

/* ─────────────────────────────────────────
       SERVICES
    ───────────────────────────────────────── */
#services {
    padding: 5rem 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(95,51,241,.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad);
        transform: scaleX(0);
        transition: transform .35s;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(95,51,241,.12);
        border-color: rgba(95,51,241,.3);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--light-2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all .35s;
}

    .service-icon i {
        font-size: 1.5rem;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.service-card:hover .service-icon {
    background: var(--grad);
}

    .service-card:hover .service-icon i {
        background: #fff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.service-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .6rem;
    color: var(--dark);
}

.service-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    transition: gap .3s;
}

    .service-link:hover {
        gap: .6rem;
        color: var(--secondary);
    }

/* ─────────────────────────────────────────
       STATS STRIP
    ───────────────────────────────────────── */
#stats {
    background: var(--grad);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

    #stats::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.stat-item {
    text-align: center;
    position: relative;
}

    .stat-item + .stat-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: rgba(255,255,255,.25);
    }

.stat-number {
    font-family: sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
/*    display: block;*/
}

.stat-label {
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    margin-top: .4rem;
    font-weight: 500;
}

.stat-icon {
    color: rgba(255,255,255,.5);
    font-size: 1rem;
    margin-bottom: .5rem;
}

.stat-value {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
}

.stat-symbol {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

/* ─────────────────────────────────────────
       PROCESS
    ───────────────────────────────────────── */
#process {
    padding: 5rem 0;
    background: var(--light-bg);
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

    .process-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, var(--primary), var(--secondary));
        transform: translateX(-50%);
    }

.process-step {
    display: flex;
    align-items: flex-start;
    /* margin-bottom: 3rem; */
    position: relative;
    width: 100%;
}

    .process-step:nth-child(odd) {
        /* flex-direction: row; */
        justify-content: flex-start;
    }

    .process-step:nth-child(even) {
        /* flex-direction: row-reverse; margin-left: auto;  */
        justify-content: flex-end;
    }

.process-content {
    /* width: calc(50% - 60px); */
    width: 45%;
    background: var(--white);
    border-radius: 16px;
    padding: 1.6rem;
    border: 1px solid rgba(95,51,241,.1);
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    transition: all .3s;
}

    .process-content:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 36px rgba(95,51,241,.1);
        border-color: rgba(95,51,241,.25);
    }

    .process-content h5 {
        font-weight: 700;
        color: var(--dark);
        margin-bottom: .5rem;
    }

    .process-content p {
        color: var(--muted);
        font-size: .9rem;
        line-height: 1.65;
        margin: 0;
    }

.process-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 0 6px rgba(95,51,241,.15);
    z-index: 1;
}

.process-spacer {
    /* width: calc(50% - 60px); */
    width: 45%;
}

@media (max-width: 767px) {
    .process-timeline::before {
        left: 28px;
    }

    .process-step {
        flex-direction: column !important;
        padding-left: 70px;
    }

    .process-content {
        width: 100%;
    }

    .process-spacer {
        display: none;
    }

    .process-node {
        left: 28px;
        transform: none;
        top: 0;
    }
}

/* ─────────────────────────────────────────
       FAQ
    ───────────────────────────────────────── */
#faq {
    padding: 5rem 0;
    background: var(--white);
}

.faq-item {
    border: 1px solid rgba(95,51,241,.1);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all .3s;
}

    .faq-item:has(.collapse.show) {
        border-color: rgba(95,51,241,.3);
        box-shadow: 0 4px 20px rgba(95,51,241,.08);
    }

.faq-btn {
    background: var(--white) !important;
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
    border: none;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    font-family: sans-serif;
}

    .faq-btn:not(.collapsed) {
        color: var(--primary) !important;
    }

    .faq-btn .faq-icon {
        width: 28px;
        height: 28px;
        background: var(--light-2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--primary);
        font-size: .75rem;
        transition: all .3s;
    }

    .faq-btn:not(.collapsed) .faq-icon {
        background: var(--grad);
        color: #fff;
        transform: rotate(45deg);
    }

.faq-body {
    padding: 0 1.5rem 1.2rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ─────────────────────────────────────────
       TESTIMONIALS
    ───────────────────────────────────────── */
#testimonials {
    padding: 5rem 0;
    background: var(--light-bg);
}

.testi-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(95,51,241,.1);
    height: 100%;
    position: relative;
}

.testi-quote {
    font-size: 3rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: .5rem;
    font-family: Georgia, serif;
}

.testi-text {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.testi-stars {
    color: #f59e0b;
    font-size: .85rem;
    margin-bottom: 1rem;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-family: sans-serif;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--dark);
}

.testi-role {
    color: var(--muted);
    font-size: .8rem;
}

.swiper-pagination-bullet {
    background: var(--primary);
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
}

/* ─────────────────────────────────────────
       WHY US
    ───────────────────────────────────────── */
#why-us {
    padding: 5rem 0;
    background: var(--white);
}

.why-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(95,51,241,.08);
    transition: all .3s;
    height: 100%;
}

    .why-card:hover {
        border-color: rgba(95,51,241,.25);
        box-shadow: 0 8px 30px rgba(95,51,241,.08);
        transform: translateY(-3px);
    }

.why-icon {
    width: 52px;
    height: 52px;
    background: var(--light-2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .why-icon i {
        font-size: 1.3rem;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.why-content h5 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: .4rem;
}

.why-content p {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.65;
    margin: 0;
}

/* ACHIEVEMENTS */
.achievement-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: var(--light-bg);
    border: 1px solid rgba(95,51,241,.1);
    transition: all .3s;
}

    .achievement-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(95,51,241,.12);
        border-color: rgba(95,51,241,.3);
    }

    .achievement-card .num {
        font-family: sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .achievement-card .label {
        color: var(--muted);
        font-size: .88rem;
        font-weight: 500;
    }

/* ABOUT PUNIT */
.punit-card {
    background: linear-gradient(135deg, var(--dark) 0%, #1a0d3d 100%);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

    .punit-card::before {
        content: '';
        position: absolute;
        right: -60px;
        top: -60px;
        width: 240px;
        height: 240px;
        background: radial-gradient(circle, rgba(95,51,241,.3) 0%, transparent 70%);
    }

.punit-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    border: 3px solid rgba(255,255,255,.2);
}

.punit-card h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: .3rem;
}

.punit-card .title-role {
    color: #a78bfa;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.punit-card p {
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.punit-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    padding: .35rem .9rem;
    color: rgba(255,255,255,.8);
    font-size: .8rem;
    font-weight: 600;
    margin: .25rem;
}

.social-links-punit a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    text-decoration: none;
    transition: all .3s;
    margin: .2rem;
}

    .social-links-punit a:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

/* ─────────────────────────────────────────
       CONTACT
    ───────────────────────────────────────── */
#contact {
    padding: 9rem 0;
    background: var(--light-bg);
}

.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(95,51,241,.1);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(95,51,241,.06);
}

    .contact-item:last-child {
        border-bottom: none;
    }

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--light-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-item-icon i {
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.1rem;
    }

.contact-item-label {
    font-size: .75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.contact-item-value {
    color: var(--dark);
    font-weight: 600;
    font-size: .95rem;
}

    .contact-item-value a {
        color: var(--dark);
        text-decoration: none;
        transition: color .2s;
    }

        .contact-item-value a:hover {
            color: var(--primary);
        }

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(95,51,241,.1);
    height: 320px;
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(95,51,241,.1);
}

    .contact-form-card .form-control,
    .contact-form-card .form-select {
        border: 1.5px solid rgba(95,51,241,.15);
        border-radius: 10px;
        padding: .75rem 1rem;
        font-size: .92rem;
        transition: all .3s;
    }

        .contact-form-card .form-control:focus,
        .contact-form-card .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(95,51,241,.12);
            outline: none;
        }

/* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
#footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 0;
}

.footer-logo .logo-text-main {
    color: #fff;
}

.footer-logo .logo-text-sub {
    color: rgba(255,255,255,.45);
}

#footer p {
    font-size: .9rem;
    line-height: 1.7;
}

.footer-heading {
    color: #fff;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: .6rem;
    }

    .footer-links a {
        color: rgba(255,255,255,.6);
        text-decoration: none;
        font-size: .9rem;
        transition: color .2s;
        display: inline-flex;
        align-items: center;
        gap: .4rem;
    }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-links a i {
            font-size: .7rem;
        }

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    text-decoration: none;
    transition: all .3s;
    margin: .2rem;
}

    .footer-social a:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.4rem 0;
    margin-top: 3rem;
}

    .footer-bottom p {
        font-size: .82rem;
        margin: 0;
    }

/* ─────────────────────────────────────────
       BACK TO TOP
    ───────────────────────────────────────── */
#backTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--grad);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(95,51,241,.4);
    z-index: 999;
    transition: all .3s;
}

    #backTop:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(95,51,241,.55);
    }

/* ─────────────────────────────────────────
       MISC
    ───────────────────────────────────────── */
.divider-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--light-2);
    color: var(--primary);
    border-radius: 50px;
    padding: .3rem .9rem;
    font-size: .8rem;
    font-weight: 600;
}

@media (max-width: 767px) {
    #mainNav .navbar-collapse {
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(16px);
        border-radius: 16px;
        padding: 1rem;
        margin-top: .5rem;
        box-shadow: 0 8px 30px rgba(0,0,0,.1);
    }

    .stat-item + .stat-item::before {
        display: none;
    }

    .punit-card {
        padding: 2rem 1.5rem;
    }
}

/* FADE IN on load */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-fade {
    animation: fadeUp .8s ease forwards;
}

.hero-fade-1 {
    animation-delay: .1s;
    opacity: 0;
}

.hero-fade-2 {
    animation-delay: .25s;
    opacity: 0;
}

.hero-fade-3 {
    animation-delay: .4s;
    opacity: 0;
}

.hero-fade-4 {
    animation-delay: .55s;
    opacity: 0;
}
