/* ========================================
   GTSz - Guruvardhan Training Solutionz
   Complete Stylesheet - FULLY RESPONSIVE
======================================== */

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

:root {
    --teal: #2ec4b6;
    --teal-dark: #1a9e96;
    --dark: #0d1117;
    --dark2: #111827;
    --navy: #0f1c2e;
    --light: #f5f4f0;
    --light2: #eae9e4;
    --text-dark: #1a1a2e;
    --muted: #8899aa;
    --white: #ffffff;
    --orange: #f4a228;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 62px;
}


/* ===== NAVBAR ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.second-logo {
    height: 40px;
}

.logo-sub {
    font-size: .6rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
}

/* ===== NAV LINKS ===== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-left: auto;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: .3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: .3s;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ── HERO ────────────────────────────────── */
#home {
    min-height: 100vh;
    background: var(--light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(46, 196, 182, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 196, 182, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    border: 1.5px solid var(--teal);
    color: var(--teal);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: .4rem 1.3rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
    background: rgba(46, 196, 182, 0.06);
    animation: fadeDown .6s ease both;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    max-width: 850px;
    margin-bottom: 1.2rem;
    animation: fadeDown .6s .1s ease both;
}

.typewriter {
    display: inline-block;
    border-right: 3px solid var(--teal);
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(40, end) 0.5s both, blink .75s step-end infinite;
    max-width: 100%;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--teal);
    }
}

.hero-sub {
    font-size: 1rem;
    color: #556;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 3rem;
    animation: fadeDown .6s .2s ease both;
}

.hero-sub strong {
    color: var(--teal);
    font-weight: 700;
}

.hero-steps {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeDown .6s .3s ease both;
    flex-wrap: wrap;
}

.hero-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--text-dark);
    color: #fff;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
}

.step-icon-wrap {
    width: 110px;
    height: 100px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.step-icon-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(46, 196, 182, 0.15);
}

.step-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-connector {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
    margin-top: 68px;
    opacity: .4;
}

.btn-build {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: var(--text-dark);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: .25s;
    animation: fadeDown .6s .4s ease both;
}

.btn-build:hover {
    background: #1a2a3a;
    transform: translateY(-2px);
}

.btn-build .lightning {
    font-size: 1.1rem;
}

.hero-note {
    font-size: .75rem;
    color: var(--muted);
    margin-top: .8rem;
    animation: fadeDown .6s .5s ease both;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SERVICES SECTION (dark) ──────────────── */
#services {
    background: var(--dark);
    color: #fff;
    padding: 100px 5%;
}

.wo {
    text-align:  -webkit-center;
}

.section-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.section-title-lg {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-underline {
    width: 50px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 780px;
    width: 100%;
}

.srv-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: .3s;
}

.srv-card:hover {
    background: rgba(46, 196, 182, 0.06);
    border-color: rgba(46, 196, 182, 0.2);
}

.srv-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--teal);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .8rem;
    color: #fff;
}

.srv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.srv-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    color: #aab;
}

.srv-list li::before {
    content: '●';
    color: var(--teal);
    font-size: .5rem;
    margin-top: .35rem;
    flex-shrink: 0;
}

.srv-tags {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.srv-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .25rem .7rem;
    border-radius: 20px;
    border: 1px solid var(--orange);
    color: var(--orange);
}

.srv-badge-teal {
    border-color: var(--teal);
    color: var(--teal);
}

/* ── ABOUT (FEATURES) SECTION ──────────────── */
#about {
    padding: 100px 5%;
    background: var(--light);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: .3s;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(46, 196, 182, 0.1);
}

.acard-icon {
    width: 44px;
    height: 44px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.acard-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.acard-desc {
    font-size: .85rem;
    color: #667;
    line-height: 1.6;
    margin-bottom: .8rem;
}

.acard-link {
    font-size: .8rem;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
    cursor: pointer;
}

.acard-link:hover {
    text-decoration: underline;
}

/* ── FEATURES (DARK TEAL) ───────────────── */
#features {
    background: var(--navy);
    padding: 100px 5%;
    color: #fff;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header .section-title-lg {
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.8rem;
    transition: .3s;
}

.feat-card:hover {
    background: rgba(46, 196, 182, 0.08);
    border-color: rgba(46, 196, 182, 0.25);
}

.feat-icon {
    font-size: 1.4rem;
    margin-bottom: .8rem;
}

.feat-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}

.feat-desc {
    font-size: .83rem;
    color: #8899bb;
    line-height: 1.55;
    margin-bottom: .8rem;
}

.feat-link {
    font-size: .78rem;
    font-weight: 700;
    color: var(--teal);
    cursor: pointer;
}

.feat-link:hover {
    text-decoration: underline;
}

/* ── EDGE SECTION ─────────── */
#edge {
    padding: 100px 5%;
    background: #fff;
}

.edge-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.edge-image {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f4f3, #d4eeed);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.edge-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8e6e4 0%, #a8d4d1 50%, #88c4c0 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.edge-photo-placeholder::after {
    content: '👥';
    font-size: 8rem;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: .4;
    filter: grayscale(1);
}

.nep-badge {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: .5rem .9rem;
    font-size: .7rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1px;
    z-index: 1;
}

.nep-badge span {
    display: block;
    font-size: .6rem;
    color: #888;
    font-weight: 400;
    margin-top: .1rem;
}

.edge-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.edge-eyebrow::before {
    content: '——';
    color: #ddd;
}

.edge-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.edge-title .teal {
    color: var(--teal);
}

.edge-points {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.edge-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ep-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ep-icon.teal-bg {
    background: var(--teal);
}

.ep-title {
    font-family: 'Sora', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.ep-desc {
    font-size: .82rem;
    color: #667;
    line-height: 1.5;
}

/* ── contact ─────────────────────────────── */

.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.contact-card {
    max-width: 900px;
    width: 100%;
    background: #ffffff10;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.contact-card h1 {
    font-size: 32px;
    color: #ffd369;
    margin-bottom: 10px;
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.tagline {
    font-size: 18px;
    color: #00e6e6;
    margin-bottom: 30px;
    font-weight: bold;
}

.programs {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
}

.contact-details {
    margin-top: 20px;
    font-size: 16px;
    line-height: 2;
}

.contact-details a {
    color: #ffd369;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

@media(max-width:768px) {
    .contact-card {
        padding: 30px;
    }
}


/* ── FOOTER ─────────────────────────────── */
footer {
    background: #0f172a;
    color: #fff;
    padding: 70px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo-brand {
    font-size: 2rem;
    font-weight: 800;
}

.footer-brand .logo-sub {
    font-size: .65rem;
    letter-spacing: 2px;
    color: #00b894;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: .9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1rem;
}

.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    font-size: .85rem;
    transition: .3s;
}

.footer-contact a:hover {
    color: #00b894;
}

.footer-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #00b894;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

.footer-title {
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00b894;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    padding: 0;
}

.footer-links li {
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    font-size: .85rem;
    color: #94a3b8;
    transition: .3s;
}

.footer-links a:hover {
    color: #00b894;
}

.msme-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.msme-label {
    font-size: .7rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: .4rem;
}

.msme-number {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
    word-break: break-all;
}

.msme-status {
    font-size: .75rem;
    color: #00b894;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: .8rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* ── SCROLL REVEAL ─────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}


/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ── TABLET: 769px – 1024px ─────────────── */
@media (max-width: 1024px) {
    nav {
        padding: 10px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .edge-layout {
        gap: 2.5rem;
    }

    .about-grid,
    .features-grid {
        max-width: 100%;
    }
}

/* ── MOBILE: up to 768px ────────────────── */
@media (max-width: 768px) {

    /* NAVBAR */
    nav {
        padding: 10px 16px;
    }

    .nav-logo {
        height: 38px;
    }

    .second-logo {
        height: 30px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        text-align: center;
        padding: 20px 0 30px;
        gap: 1.5rem;
        transform: translateY(-130%);
        transition: .4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.show {
        transform: translateY(0);
    }

    /* HERO */
    #home {
        padding: 100px 6% 60px;
    }

    .hero-badge {
        font-size: .65rem;
        padding: .35rem 1rem;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }

    .typewriter {
        white-space: normal;
        border-right: none;
        animation: fadeDown .6s .1s ease both;
    }

    .hero-sub {
        font-size: .92rem;
    }

    .hero-sub br {
        display: none;
    }

    .hero-steps {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .hero-connector {
        display: none;
    }

    .step-icon-wrap {
        width: 90px;
        height: 80px;
        font-size: 1.8rem;
    }

    .btn-build {
        font-size: .9rem;
        padding: .9rem 2rem;
        width: 100%;
        justify-content: center;
    }

    /* SERVICES */
    #services {
        padding: 70px 6%;
    }

    .srv-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    /* ABOUT */
    #about {
        padding: 70px 6%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* FEATURES */
    #features {
        padding: 70px 6%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    /* EDGE */
    #edge {
        padding: 70px 6%;
    }

    .edge-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .edge-image {
        height: 260px;
    }

    .edge-title {
        font-size: 2rem;
    }

    /* FOOTER */
    footer {
        padding: 50px 16px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .msme-number {
        font-size: .9rem;
    }
}

/* ── SMALL MOBILE: up to 480px ──────────── */
@media (max-width: 480px) {
    body {
        padding-top: 58px;
    }

    .hero-title {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }

    .section-title-lg {
        font-size: 1.5rem;
    }

    .step-icon-wrap {
        width: 80px;
        height: 70px;
        font-size: 1.6rem;
        border-radius: 14px;
    }

    .about-card {
        padding: 1.4rem;
    }

    .feat-card {
        padding: 1.4rem;
    }

    .srv-card {
        padding: 1.2rem;
    }

    .edge-image {
        height: 220px;
    }

    .ep-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .footer-brand .logo-brand {
        font-size: 1.6rem;
    }
}