:root {
    --bg-footer: rgba(30, 41, 59, 0.8);
    --border-primary: rgba(56, 189, 248, 0.3);
    --gradient-primary: linear-gradient(135deg, #38bdf8, #3b82f6);
    --text-secondary: #94a3b8;
    --primary-color: #38bdf8;
}

/* Reset & base */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-navbar: rgba(255, 255, 255, 0.9);
    --bg-footer: rgba(255, 255, 255, 0.8);

    --text-primary: #0f172a;
    --text-secondary: #475569;

    --primary-color: #0284c7;
    --border-primary: rgba(2, 132, 199, 0.3);

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(2, 132, 199, 0.1);

    --gradient-primary: linear-gradient(135deg, #0284c7, #0ea5e9);
    --gradient-card: linear-gradient(145deg, #ffffff, #f1f5f9);

    --shadow-glow: 0 0 30px rgba(2, 132, 199, 0.25);
}

:root,
body[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #1e293b;
    --bg-navbar: rgba(30, 41, 59, 0.9);
    --bg-footer: rgba(30, 41, 59, 0.8);

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;

    --primary-color: #38bdf8;
    --border-primary: rgba(56, 189, 248, 0.3);

    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(56, 189, 248, 0.1);

    --gradient-primary: linear-gradient(135deg, #38bdf8, #3b82f6);
    --gradient-card: linear-gradient(145deg, #1e293b, #0f172a);

    --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.3);
}


body[data-theme="light"] .stat-card {
    padding: 6px;
    background: linear-gradient(145deg,
            rgba(226, 238, 255, 0.95),
            rgba(255, 255, 255, 0.98));
    border: 1.5px solid rgba(2, 132, 199, 0.35);
    box-shadow:
        0 12px 30px rgba(2, 132, 199, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    color: #0f172a;
    border-radius: 10px;
}

body[data-theme="light"] .stat-card::before {
    background: radial-gradient(circle at top,
            rgba(2, 132, 199, 0.18),
            transparent 65%);
}

body[data-theme="dark"] .stat-card {
    padding: 6px;
    background: linear-gradient(145deg,
            rgba(30, 41, 59, 0.95),
            rgba(15, 23, 42, 0.98));
    border: 1.5px solid rgba(56, 189, 248, 0.45);
    box-shadow:
        0 14px 36px rgba(15, 23, 42, 0.8),
        inset 0 0 0 1px rgba(56, 189, 248, 0.12);
    color: #e5e7eb;
    border-radius: 10px;
}

.stat-card {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* LIGHT MODE HOVER */
body[data-theme="light"] .stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(2, 132, 199, 0.7);
    box-shadow:
        0 16px 36px rgba(2, 132, 199, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

/* DARK MODE HOVER */
body[data-theme="dark"] .stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.85);
    box-shadow:
        0 20px 44px rgba(8, 47, 73, 0.95),
        inset 0 0 0 1px rgba(56, 189, 248, 0.18);
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent);
    opacity: 0;
    transform: translateX(-20%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.stat-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}


body[data-theme="dark"] .stat-card::before {
    background: radial-gradient(circle at top,
            rgba(56, 189, 248, 0.22),
            transparent 65%);
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}



@keyframes fadeInBody {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

.about-wrapper {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3.5rem;
}

/* =========================================
   NAVBAR STYLES (UPDATED)
   ========================================= */
.navbar {
    position: sticky;
    top: 20px;
    z-index: 1000;
    /* Use variables here so it changes with the theme */
    background: linear-gradient(to bottom,
            var(--glass-bg),
            var(--navbar-gradient-bottom));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 40px auto;
    transition: all 0.3s ease;
    box-shadow: var(--navbar-shadow);
    /* Uses the new shadow variable */
}

/* Update hover to keep the shadow looking good */
.navbar:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Fix for Navbar links in Light Mode */
body.light-mode .nav-links a {
    color: var(--text-primary);
    font-weight: 600;
    /* Slightly bolder for readability */
}

body.light-mode .nav-logo {
    color: var(--primary-color);
}

.nav-logo {
    color: var(--primary-color);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Desktop Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.nav-links a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.6);
}

.scroll-to-top.show {
    display: flex;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    width: 30px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* =========================================
   THEME TOGGLE BUTTON
   ========================================= */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    gap: 8px;
}

.theme-toggle:hover {
    background-color: var(--primary-color);
    color: var(--bg-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        margin: 20px auto 30px;
        border-radius: 12px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    /* Mobile menu */
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        right: 20px;
        width: 220px;
        padding: 14px 16px;
        flex-direction: column;
        gap: 6px;
        background: rgba(30, 41, 59, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid var(--glass-border);
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
        animation: dropdownFade 0.25s ease forwards;
        z-index: 1100;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 10px 8px;
        text-align: left;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }

    .nav-links li:hover {
        background: rgba(56, 189, 248, 0.08);
    }

    .nav-links a {
        width: 100%;
        display: block;
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1100;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .theme-toggle {
        padding: 6px 14px;
        font-size: 1rem;
    }
}

/* Background accents with slow floating animation */
.bg-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), transparent 55%),
        radial-gradient(circle at bottom right, rgba(244, 114, 182, 0.12), transparent 55%);
    pointer-events: none;
    z-index: -2;
    animation: glowPulse 8s ease-in-out infinite alternate;
}

.bg-orbit {
    position: fixed;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.6;
    z-index: -3;
}

.bg-orbit-1 {
    width: 260px;
    height: 260px;
    background: rgba(37, 99, 235, 0.6);
    top: 8%;
    right: 12%;
    animation: floatOrb1 18s ease-in-out infinite alternate;
}

.bg-orbit-2 {
    width: 220px;
    height: 220px;
    background: rgba(16, 185, 129, 0.55);
    bottom: 6%;
    left: 10%;
    animation: floatOrb2 20s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from {
        opacity: 0.9;
    }

    to {
        opacity: 0.6;
    }
}

@keyframes floatOrb1 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-30px, 40px);
    }
}

@keyframes floatOrb2 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(40px, -35px);
    }
}

/* Back pill with hover + tiny wiggle on load */
.back-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.7);
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(16px);

}

.back-pill:hover {
    border-color: #38bdf8;
    background: rgba(15, 23, 42, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
}

.pill {
    cursor: default;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


@keyframes backPillPop {
    0% {
        transform: translateY(-4px);
        opacity: 0;
    }

    60% {
        transform: translateY(1px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
    }
}

/* Hero section */
.about-hero {
    text-align: left;
    margin-bottom: 3.2rem;
}

/* Pills row */
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.pill {
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(6px);
    animation: pillIn 0.5s ease-out forwards;
}

.pill-open {
    border-color: rgba(56, 189, 248, 0.8);
    color: #7dd3fc;
    padding: 10px 15px;
    animation-delay: 0.1s;
}


.pill-beginner {
    border-color: rgba(52, 211, 153, 0.8);
    color: #6ee7b7;
    padding: 10px 15px;
    animation-delay: 0.25s;
}

.pill-community {
    border-color: rgba(244, 114, 182, 0.8);
    color: #f9a8d4;
    padding: 10px 15px;
    animation-delay: 0.4s;
}

@keyframes pillIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

.about-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.about-hero h1 span {
    background: linear-gradient(135deg, #38bdf8, #a855f7, #fb7185);
    -webkit-background-clip: text;
    color: transparent;
}

body[data-theme="dark"] .hero-subtitle {
    max-width: 640px;
    line-height: 1.6;
    color: #cbd5f5;
    margin-bottom: 1.8rem;
}

body[data-theme="light"] .hero-subtitle {
    max-width: 640px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.8rem;
}

/* Stats cards with hover lift + soft shimmer */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}



.stat-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.35rem;
}

.stat-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* Steps / timeline */
.about-steps {
    margin-bottom: 3.2rem;
}

.about-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(260px, 1fr));
    gap: 1.4rem;
}

body[data-theme="light"] .steps-grid .step-card {
    position: relative;
    padding: 1.6rem 1.4rem 1.5rem 1.4rem;
    border-radius: 1rem;
    background: radial-gradient(circle at top left, rgba(2, 132, 199, 0.18), transparent 55%),
        rgba(240, 247, 255, 0.95);
    border: 1px solid rgba(2, 132, 199, 0.35);
    box-shadow: 0 14px 32px rgba(2, 132, 199, 0.15);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    color: #0f172a;

}

body[data-theme="light"] .steps-grid .step-card:hover {
    transform: translateY(-4px) translateX(1px);
    box-shadow: 0 18px 36px rgba(2, 132, 199, 0.25);
    border-color: rgba(2, 132, 199, 0.6);
}

body[data-theme="light"] .steps-grid .step-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, transparent, rgba(2, 132, 199, 0.18), transparent);
    opacity: 0;
    transform: translateX(-20%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

body[data-theme="light"] .steps-grid .step-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

body[data-theme="dark"] .steps-grid .step-card {
    position: relative;
    padding: 1.4rem 1.2rem 1.3rem 1.2rem;
    border-radius: 1rem;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.28), transparent 55%),
        rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(56, 189, 248, 0.4);
    box-shadow: 0 18px 40px rgba(8, 47, 73, 0.8);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    color: #e5e7eb;
}

body[data-theme="dark"] .steps-grid .step-card:hover {
    transform: translateY(-3px) translateX(1px);
    box-shadow: 0 20px 44px rgba(8, 47, 73, 0.95);
    border-color: rgba(129, 230, 217, 0.8);
}

body[data-theme="dark"] .steps-grid .step-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, transparent, rgba(59, 130, 246, 0.18), transparent);
    opacity: 0;
    transform: translateX(-20%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

body[data-theme="dark"] .steps-grid .step-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.step-index {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 0.4rem;
}

.step-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

body[data-theme="dark"] .step-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #d1d5db;
}

body[data-theme="light"] .step-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #374151;
}

/* Callout */
.about-callout {
    margin-bottom: 2.4rem;
}

.callout-content {
    border-radius: 1.4rem;
    padding: 1.8rem 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.65);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(147, 51, 234, 0.15));
    box-shadow: 0 22px 55px rgba(30, 64, 175, 0.85);
    position: relative;
    overflow: hidden;
}

/* Subtle glowing animated border line */
.callout-content::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid transparent;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.7), rgba(147, 51, 234, 0.7)) border-box;
    mask:
        linear-gradient(#000 0 0) padding-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0.6;
    animation: borderGlow 3s linear infinite;

    /* Allow clicks to pass through the decorative pseudo-element */
    pointer-events: none;
}

@keyframes borderGlow {
    0% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.65;
    }

    100% {
        opacity: 0.25;
    }
}

.callout-content h2 {
    margin: 0 0 0.6rem;
}

.callout-content p {
    margin: 0 0 1.3rem;
    max-width: 540px;
    line-height: 1.6;
}

/* Buttons */
.callout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
}

.primary-btn {
    color: #f9fafb;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.75);
}

.primary-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.9);
}

.ghost-btn {
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.85);
}

.ghost-btn:hover {
    background: rgba(15, 23, 42, 1);
    border-color: #38bdf8;
    transform: translateY(-2px) scale(1.01);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f172a, #020617);
    color: #e5e7eb;
    padding: 60px 80px 20px;
    font-family: "Inter", sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.footer-brand p {
    margin: 12px 0 20px;
    color: #9ca3af;
    font-size: 14px;
}

.footer-social-icons {
    display: flex;
    gap: 14px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: #2563eb;
    color: #ffffff;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 14px;
    position: relative;
    color: #ffffff;
}

.footer-links h4::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #2563eb;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 50px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 50px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}


/* =========================
   LIGHT MODE FOOTER STYLES
   ========================= */

body[data-theme="light"] .footer {
    background: linear-gradient(180deg, #f8fafc, #e5e7eb);
    color: #1f2933;
}

body[data-theme="light"] .footer-brand h3 {
    color: #111827;
}

body[data-theme="light"] .footer-brand p {
    color: #4b5563;
}

body[data-theme="light"] .footer-social-icons a {
    background: #e5e7eb;
    color: #1f2933;
}

body[data-theme="light"] .footer-social-icons a:hover {
    background: #2563eb;
    color: #ffffff;
}

body[data-theme="light"] .footer-links h4 {
    color: #111827;
}

body[data-theme="light"] .footer-links h4::after {
    background: #2563eb;
}

body[data-theme="light"] .footer-links ul li a {
    color: #4b5563;
}

body[data-theme="light"] .footer-links ul li a:hover {
    color: #111827;
}

body[data-theme="light"] .footer-bottom {
    border-top: 1px solid #d1d5db;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 640px) {
    .about-wrapper {
        padding-top: 1.8rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .callout-content {
        padding: 1.5rem 1.1rem;
    }
}

.circle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.circle {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle,
            rgba(73, 232, 247, 0.466),
            rgba(141, 38, 172, 0.5));
    transition: transform 0.1s, left 0.1s, top 0.1s;
}


.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.4rem;

}

.testimonial-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;

    gap: 16px;
    ;
}

/* SAME SIZE FOR INPUT & BUTTON */
.testimonial-form input,
.testimonial-form button {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    font-size: 16px;
    border-radius: 8px;
    box-sizing: border-box;
}

/* FEEDBACK TEXTAREA (slightly taller) */
.testimonial-form textarea {
    width: 100%;
    height: 90px;
    /* fixed comfortable height */
    padding: 10px 14px;
    font-size: 16px;
    border-radius: 8px;
    box-sizing: border-box;
    line-height: 1.5;
    resize: vertical;
    display: block;
    border: 1px solid #ccc;
}

/* BUTTON STYLE */
.testimonial-form button {
    border: none;
    background: #2c5364;
    color: white;
    cursor: pointer;
}

.testimonial-form button:hover {
    background: #203a43;
}

/* FOCUS EFFECT */
.testimonial-form input:focus,
.testimonial-form textarea:focus {
    outline: none;
    border-color: #2c5364;
    box-shadow: 0 0 0 2px rgba(44, 83, 100, 0.2);
}

.social-links a[aria-label="Instagram"]:hover {
    color: #e1306c;
}

.social-links a[aria-label="Facebook"]:hover {
    color: #1877f2;
}

.social-links a[aria-label="LinkedIn"]:hover {
    color: #0a66c2;
}

.social-links a[aria-label="GitHub"]:hover {
    color: #fff;
}

.social-links a[aria-label="Twitter"]:hover {
    color: #1da1f2;
}



@import url('navbar.css');
@import url('footer.css');
@import url('themes.css');
@import url('scroll-to-top.css');
@import url('testimonial.css');
@import url('footer.css');

/* Scroll to Top Button */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #3b82f6;
  color: #ffffff;
  border: none;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #2563eb;
  transform: translateY(-3px);
}