/* ============================================================
   File: style.css
   vertex IS – 2026 homepage styles (Enhanced)
   ============================================================ */


/* ── Google Fonts Import ─────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=Cabinet+Grotesk:wght@400;500;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── Variables ─────────────────────────────────────────────── */

:root {
    --purple: #1E0038;
    --purple-mid: #310052;
    --purple-light: #4a0078;
    --purple-glow: rgba(49, 0, 82, 0.6);
    --gold: #E8B000;
    --gold-light: #F5C842;
    --gold-pale: rgba(232, 176, 0, 0.12);
    --gold-border: rgba(232, 176, 0, 0.35);
    --white: #ffffff;
    --off-white: #FAF8FF;
    --light: #F3F0FA;
    --muted: #6b6880;
    --dark-text: #1a1325;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2.25rem;
    --radius-pill: 100px;
    --shadow-sm: 0 2px 12px rgba(30, 0, 56, 0.08);
    --shadow-md: 0 8px 32px rgba(30, 0, 56, 0.12);
    --shadow-lg: 0 20px 60px rgba(30, 0, 56, 0.18);
    --shadow-gold: 0 8px 32px rgba(232, 176, 0, 0.25);
    --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ── Auth Pages ────────────────────────────────────────────── */

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(232, 176, 0, 0.2);
    overflow: hidden;
}

.auth-tabs {
    border-bottom: 1px solid rgba(49, 0, 82, 0.1);
    padding: 0 1rem;
    background: rgba(243, 240, 250, 0.6);
}

.auth-tabs .nav-link {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    color: var(--muted);
    border: none;
    padding: 1rem 1.5rem;
    margin: 0;
    transition: color var(--transition);
}

.auth-tabs .nav-link.active {
    color: var(--gold);
    background: transparent;
    border-bottom: 3px solid var(--gold);
}

.auth-form {
    padding: 0.5rem 0;
}

.auth-input {
    background: var(--off-white);
    border: 1.5px solid rgba(49, 0, 82, 0.15);
    border-radius: var(--radius-md);
    padding: 0.7rem 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.auth-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 176, 0, 0.2);
    outline: none;
    background: var(--white);
}

.alert {
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    border-left: 4px solid;
}

.alert-danger {
    border-left-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
    color: #b02a37;
}

.alert-success {
    border-left-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
    color: #1e7e34;
}


/* ── Base ───────────────────────────────────────────────────── */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--white);
    color: var(--dark-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


/* ── Typography ────────────────────────────────────────────── */

h1,
h2,
h3,
h4,
.display-font {
    font-family: 'Clash Display', sans-serif;
    letter-spacing: -0.02em;
}

.label-font {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-pill);
    padding: 0.3rem 1rem;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.6);
    }
}

.section-heading {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--purple);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.accent-gold {
    color: var(--gold);
}

.accent-white {
    color: var(--white);
}


/* Underline decoration */

.underline-gold {
    position: relative;
    display: inline-block;
}

.underline-gold::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: width var(--transition);
}

.underline-gold:hover::after {
    width: 100%;
}


/* ── Buttons ────────────────────────────────────────────────── */

.btn {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    border-radius: var(--radius-pill);
    padding: 0.7rem 1.9rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary-custom {
    background: var(--purple-mid);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(49, 0, 82, 0.3);
}

.btn-primary-custom:hover {
    background: var(--purple-light);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(49, 0, 82, 0.35);
}

.btn-gold-custom {
    background: var(--gold);
    color: var(--purple);
    box-shadow: 0 4px 16px rgba(232, 176, 0, 0.35);
}

.btn-gold-custom:hover {
    background: var(--gold-light);
    color: var(--purple);
    box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
    background: transparent;
    border-radius: var(--radius-pill) !important;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--purple) !important;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill) !important;
    backdrop-filter: blur(6px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--white) !important;
}


/* Arrow icon animation */

.btn .bi-arrow-right {
    transition: transform var(--transition);
}

.btn:hover .bi-arrow-right {
    transform: translateX(4px);
}


/* ── Navbar ─────────────────────────────────────────────────── */

#mainNavbar {
    background: rgba(30, 0, 56, 0.96) !important;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 176, 0, 0.1);
    padding: 0.7rem 0;
    transition: box-shadow var(--transition), background var(--transition);
}

#mainNavbar.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
    background: rgba(20, 0, 40, 0.98) !important;
}

.navbar-brand-text {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.04em;
}

.navbar-brand-accent {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.04em;
}


/* Animated underline on nav links */

.navbar-nav .nav-link {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0.15rem;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    position: relative;
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.01em;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
    background: rgba(232, 176, 0, 0.07);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}


/* ── Scroll-reveal ──────────────────────────────────────────── */

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(48px);
}

.reveal-left {
    transform: translateX(-48px);
}

.reveal-right {
    transform: translateX(48px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: none;
}


/* ── HERO ───────────────────────────────────────────────────── */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(140deg, #0E0020 0%, #1E0038 40%, #2C004F 70%, #3A005E 100%);
    padding: 7rem 0 5rem;
}


/* Dot-grid background */

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(232, 176, 0, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: dotDrift 25s linear infinite;
    z-index: 0;
}

@keyframes dotDrift {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 40px;
    }
}


/* Luminous blobs */

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.28;
    pointer-events: none;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #E8B000 0%, transparent 65%);
    top: -200px;
    right: -150px;
    animation: blobFloat 10s ease-in-out infinite alternate;
}

.hero-blob-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #7b00c2 0%, transparent 65%);
    bottom: -120px;
    left: -100px;
    animation: blobFloat 13s ease-in-out infinite alternate-reverse;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #E8B000 0%, transparent 65%);
    top: 50%;
    left: 40%;
    opacity: 0.1;
    animation: blobFloat 8s ease-in-out infinite alternate;
}

@keyframes blobFloat {
    from {
        transform: scale(1) translate(0, 0);
    }
    to {
        transform: scale(1.15) translate(25px, -25px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}


/* Eyebrow pill */

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(232, 176, 0, 0.1);
    border: 1px solid rgba(232, 176, 0, 0.3);
    border-radius: var(--radius-pill);
    padding: 0.4rem 1.1rem;
    margin-bottom: 1.5rem;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}


/* Hero heading */

.hero-heading {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(3rem, 6.5vw, 5rem);
    font-weight: 700;
    line-height: 1.02;
    color: var(--white);
    margin-bottom: 1.4rem;
    letter-spacing: -0.03em;
}

.hero-heading-accent {
    color: var(--gold);
}

.hero-heading-outline {
    -webkit-text-stroke: 2px var(--gold);
    color: transparent;
}

.hero-subtext {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.8;
}


/* Floating tech chips */

.hero-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    pointer-events: none;
    animation: chipFloat 5s ease-in-out infinite alternate;
}

.hero-chip-1 {
    top: 18%;
    right: 8%;
    background: rgba(232, 176, 0, 0.18);
    border: 1px solid rgba(232, 176, 0, 0.5);
    color: var(--gold);
    animation-duration: 5s;
}

.hero-chip-2 {
    bottom: 22%;
    right: 14%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    animation-duration: 7s;
    animation-direction: alternate-reverse;
}

@keyframes chipFloat {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-12px);
    }
}


/* Hero image wrapper */

.hero-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-main-img {
    border-radius: var(--radius-xl);
    border: 2px solid rgba(232, 176, 0, 0.35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    width: 100%;
    display: block;
}


/* Glowing ring around hero image */

.hero-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: calc(var(--radius-xl) + 10px);
    background: conic-gradient(from 0deg, transparent, var(--gold), transparent, var(--purple-light), transparent);
    opacity: 0.4;
    animation: rotateBorder 6s linear infinite;
    z-index: -1;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* Trust badges */

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-pill);
    padding: 0.3rem 0.9rem;
    backdrop-filter: blur(4px);
    transition: background var(--transition), border-color var(--transition);
}

.trust-badge:hover {
    background: rgba(232, 176, 0, 0.12);
    border-color: var(--gold-border);
}

.trust-badge i {
    color: var(--gold);
    font-size: 0.8rem;
}


/* CTA row */

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}


/* ── ABOUT ──────────────────────────────────────────────────── */

.section-about {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.section-about::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 176, 0, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-img-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
}

.about-img-wrapper:hover img {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--purple-mid);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 1rem 1.4rem;
    box-shadow: var(--shadow-gold);
    text-align: center;
    min-width: 120px;
}

.about-badge-num {
    font-family: 'Clash Display', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-badge-label {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
    display: block;
    margin-top: 0.15rem;
}


/* Feature list */

.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.about-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--muted);
}

.about-feature-list li i {
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}


/* Social icons */

.social-row {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(49, 0, 82, 0.06);
    border: 1.5px solid rgba(49, 0, 82, 0.15);
    color: var(--purple-mid);
    font-size: 1rem;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.social-icon:hover {
    background: var(--purple-mid);
    color: var(--gold);
    border-color: var(--purple-mid);
    transform: translateY(-3px);
}


/* ── SERVICES ───────────────────────────────────────────────── */

.section-services {
    background: var(--white);
    position: relative;
}


/* Service cards grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1.5px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--gold-pale);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-icon {
    background: var(--purple-mid);
    color: var(--gold);
}

.service-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

.services-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.services-divider {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(49, 0, 82, 0.1), transparent);
}


/* ── PROJECTS ───────────────────────────────────────────────── */

.section-projects {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.section-projects::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(49, 0, 82, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.projects-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.projects-img-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
}

.projects-img-wrapper:hover img {
    transform: scale(1.02);
}

.projects-chip {
    position: absolute;
    bottom: -18px;
    left: -18px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    background: var(--purple-mid);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1.1rem;
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
}


/* Filter pills */

.project-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-pill {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(49, 0, 82, 0.18);
    color: var(--muted);
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
}

.project-pill:hover,
.project-pill.active {
    background: var(--purple-mid);
    color: var(--gold);
    border-color: var(--purple-mid);
    box-shadow: 0 4px 12px rgba(49, 0, 82, 0.2);
}


/* Stat strip */

.project-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(49, 0, 82, 0.1);
}

.project-stat-num {
    font-family: 'Clash Display', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
}

.project-stat-num span {
    color: var(--gold);
}

.project-stat-label {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}


/* ── NEWS LIST (announcement section) ──────────────────────── */

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid rgba(49, 0, 82, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.news-item {
    padding: 1.1rem 1.4rem;
    border-bottom: 1.5px solid rgba(49, 0, 82, 0.07);
    transition: background var(--transition);
    cursor: default;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: rgba(232, 176, 0, 0.04);
}

.news-item-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.news-item-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--purple);
    margin: 0;
    line-height: 1.4;
}


/* ── ANNOUNCEMENT ───────────────────────────────────────────── */

.section-announcement {
    background: var(--white);
}

.announcement-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    border: 1.5px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.announcement-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.announcement-card-featured {
    border-left: 4px solid var(--gold);
    background: linear-gradient(135deg, rgba(49, 0, 82, 0.03) 0%, var(--off-white) 100%);
}

.ann-badge {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.ann-badge-new {
    background: rgba(232, 176, 0, 0.12);
    color: #946e00;
}

.ann-badge-event {
    background: rgba(49, 0, 82, 0.08);
    color: var(--purple-mid);
}

.ann-badge-update {
    background: rgba(20, 160, 80, 0.1);
    color: #0f7a38;
}

.ann-date {
    font-size: 0.77rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.announcement-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.announcement-title {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.announcement-body {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}


/* ── TEAM ───────────────────────────────────────────────────── */

.section-team {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.team-img-wrapper {
    position: relative;
}

.team-img-wrapper img {
    border-radius: var(--radius-xl);
    border: 3px solid rgba(232, 176, 0, 0.2);
    box-shadow: var(--shadow-lg);
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
}

.team-img-wrapper:hover img {
    transform: scale(1.02);
}


/* Stat chips */

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.5rem 0;
}

.team-stat {
    background: var(--white);
    border: 1.5px solid rgba(232, 176, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.3rem;
    min-width: 110px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.team-stat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.team-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-border);
}

.team-stat:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: 'Clash Display', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
    display: block;
}

.stat-number span {
    color: var(--gold);
}

.stat-label {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-top: 0.2rem;
}


/* ── FOOTER ─────────────────────────────────────────────────── */

.footer {
    background: var(--purple);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 0, 120, 0.5) 0%, transparent 65%);
    pointer-events: none;
}


/* Wave top */

.footer-wave {
    line-height: 0;
    overflow: hidden;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

.footer-brand {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: 0.6rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social-row {
    display: flex;
    gap: 0.55rem;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: var(--gold);
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(232, 176, 0, 0.2);
    transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.footer-social-icon:hover {
    background: var(--gold);
    color: var(--purple);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-col-heading {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}


/* Subscribe form */

.footer-subscribe-form {
    display: flex;
    overflow: hidden;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(232, 176, 0, 0.35);
    transition: border-color var(--transition);
}

.footer-subscribe-form:focus-within {
    border-color: var(--gold);
}

.footer-email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    outline: none;
    padding: 0.65rem 1.1rem;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.86rem;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.footer-subscribe-btn {
    background: var(--gold);
    color: var(--purple);
    border: none;
    padding: 0.65rem 1.25rem;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}

.footer-subscribe-btn:hover {
    background: var(--gold-light);
}

.footer-divider {
    border-color: rgba(232, 176, 0, 0.12);
    margin: 1.5rem 0 1rem;
}

.footer-bottom {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
}

.footer-cert-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-cert {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    padding: 0.2rem 0.65rem;
}

.footer-cert i {
    color: var(--gold);
}


/* ── Utility ────────────────────────────────────────────────── */

img.rounded-4 {
    border-radius: var(--radius-lg) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-purple {
    color: var(--purple-mid) !important;
}


/* Section spacing */

.py-section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}


/* ── Page transitions ───────────────────────────────────────── */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}


/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 992px) {
    .hero-chip {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 5.5rem 0 4rem;
        text-align: center;
    }
    .hero-subtext {
        margin: 0 auto 1.75rem;
    }
    .hero-cta-row,
    .hero-trust-row {
        justify-content: center;
    }
    .section-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-badge {
        display: none;
    }
    .projects-chip {
        display: none;
    }
    .team-stats {
        justify-content: center;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-cert-badges {
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .project-stats {
        gap: 1.2rem;
    }
}