/* ==========================================================================
   CSS Variables – Light Colorful Theme
   ========================================================================== */
:root {
    --bg-main: #ffffff;
    --bg-alt: #f7f9ff;
    --bg-card: #ffffff;
    --bg-gradient: linear-gradient(135deg, #f0f4ff 0%, #ffffff 60%, #f7f9ff 100%);

    --text-primary: #1a1a2e;
    --text-secondary: #5a6a8a;
    --text-muted: #9aa5bf;

    --accent-primary: #4361ee;
    --accent-hover: #3451d1;
    --accent-glow: rgba(67, 97, 238, 0.25);

    --accent-orange: #f77f00;
    --accent-coral: #f72585;
    --accent-purple: #7209b7;
    --accent-teal: #4cc9f0;

    --border-color: rgba(67, 97, 238, 0.1);
    --shadow-sm: 0 2px 12px rgba(67, 97, 238, 0.08);
    --shadow-md: 0 8px 30px rgba(67, 97, 238, 0.12);
    --shadow-lg: 0 20px 60px rgba(67, 97, 238, 0.15);

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --section-padding: 100px 0;

    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* Gradient label above headings */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-coral));
    border-radius: 2px;
}

.section-label.no-line::after {
    display: none;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 560px;
}

.section-header {
    margin-bottom: 56px;
}

.section-header.text-center {
    text-align: center;
}

.section-header.text-center .section-subtitle {
    margin: 0 auto;
}

.section-header.text-center .section-label {
    margin: 0 auto 12px;
}

.highlight-text {
    color: var(--accent-primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #7b2ff7);
    color: #fff;
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-xl);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: #fff;
}

.btn .arrow {
    margin-left: 8px;
    transition: transform var(--transition-fast);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(67, 97, 238, 0.07);
    transition: padding var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-list {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-coral));
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--accent-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Decorative background blobs */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.08), transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 9, 183, 0.05), transparent 70%);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

/* Particle dots (generated by JS) */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.3);
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.5);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(67, 97, 238, 0.08);
    border: 1.5px solid rgba(67, 97, 238, 0.18);
    color: var(--accent-primary);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: -1.5px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.hero-title-line {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-title .highlight-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-sparkle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    animation: spin-slow 8s linear infinite;
    filter: drop-shadow(0 0 6px rgba(67, 97, 238, 0.5));
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(27, 27, 50, 0.15);
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-ghost:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Right visual with 3D Float Effect */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    perspective: 1000px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    width: 95%;
    max-width: 540px;
    animation: float3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    /* Smooth JS tilt */
}

.hero-section:hover .hero-image-wrapper {
    animation-play-state: paused;
}

.hero-image {
    width: 100%;
    display: block;
    /* Soft blending with the background */
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 95%);
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 95%);
    filter: drop-shadow(0 30px 60px rgba(67, 97, 238, 0.2));
    transition: filter var(--transition-normal);
}

.hero-image-wrapper:hover .hero-image {
    filter: drop-shadow(0 40px 80px rgba(67, 97, 238, 0.3));
}

@keyframes float3D {

    0%,
    100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }

    33% {
        transform: translateY(-15px) rotateX(2deg) rotateY(2deg);
    }

    66% {
        transform: translateY(-5px) rotateX(-1deg) rotateY(-2deg);
    }
}



/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
    opacity: 0.4;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.reveal.active {
    opacity: 1;
    pointer-events: all;
}

/* Fade Up (Default) */
.reveal-up {
    transform: translateY(40px);
}

.reveal-up.active {
    transform: translateY(0);
}

/* Fade Left */
.reveal-left {
    transform: translateX(-40px);
}

.reveal-left.active {
    transform: translateX(0);
}

/* Fade Right */
.reveal-right {
    transform: translateX(40px);
}

.reveal-right.active {
    transform: translateX(0);
}

/* Zoom In */
.reveal-zoom {
    transform: scale(0.95);
}

.reveal-zoom.active {
    transform: scale(1);
}

/* Sequential Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Speed Variants */
.reveal-slow {
    transition-duration: 1.8s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Hero Responsive */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        padding: 40px 24px;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        border-bottom: 1px solid rgba(67, 97, 238, 0.08);
        box-shadow: 0 10px 30px rgba(67, 97, 238, 0.1);
        z-index: 1000;
    }

    .nav-menu.nav-active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .nav-link {
        font-size: 16px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
        gap: 40px;
    }

    .hero-visual {
        min-height: auto;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .hero-image-wrapper {
        max-width: 380px;
        width: 85%;
    }

    .hero-content {
        align-items: center;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-title-line {
        justify-content: center;
    }

    .hero-subtitle {
        text-align: center;
        margin: 0 auto;
    }

    .hero-cta-group {
        justify-content: center;
        width: 100%;
    }



    .hero-visual {
        min-height: 340px;
    }


}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .hero-stat-card {
        display: none;
    }
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
/* Already defined in Utilities above */

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(67, 97, 238, 0.08);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(67, 97, 238, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.icon-blue {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.15), rgba(123, 47, 247, 0.1));
    color: var(--accent-primary);
}

.icon-orange {
    background: linear-gradient(135deg, rgba(247, 127, 0, 0.15), rgba(247, 37, 133, 0.08));
    color: var(--accent-orange);
}

.icon-purple {
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.12), rgba(67, 97, 238, 0.1));
    color: var(--accent-purple);
}

.icon-teal {
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.15), rgba(67, 97, 238, 0.1));
    color: var(--accent-teal);
}

.service-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-us-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.why-us-content {
    flex: 1;
}

.benefits-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text-secondary);
}

.benefit-item strong {
    color: var(--text-primary);
}

.check-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-primary), #7b2ff7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    stroke: #fff;
}

.why-us-visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Circular glow behind visual */
.abstract-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.12), transparent 70%);
    filter: blur(30px);
    top: 0;
    right: 5%;
    animation: pulse 8s infinite alternate;
}

.shape-2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.08), transparent 70%);
    filter: blur(30px);
    bottom: 0;
    left: 10%;
    animation: pulse 6s infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .5
    }

    100% {
        transform: scale(1.15);
        opacity: 1
    }
}

.stats-card {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(67, 97, 238, 0.1);
    text-align: center;
    box-shadow: var(--shadow-md);
    animation: float 5s ease-in-out infinite;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}

@media (max-width: 992px) {
    .why-us-container {
        flex-direction: column;
        gap: 48px;
    }

    .why-us-visual {
        width: 100%;
    }
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    background-color: var(--bg-alt);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(67, 97, 238, 0.85) 0%, rgba(67, 97, 238, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.view-btn {
    width: 56px;
    height: 56px;
    background: #fff;
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.view-btn:hover {
    background: var(--accent-primary);
    color: #fff;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.06);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover .view-btn {
    transform: translateY(0);
}

.portfolio-info {
    padding: 20px 0;
}

.portfolio-title {
    font-size: 20px;
    margin-bottom: 6px;
    transition: color var(--transition-fast);
}

.portfolio-card:hover .portfolio-title {
    color: var(--accent-primary);
}

.portfolio-category {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.2), transparent);
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.process-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-primary), #7b2ff7);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    position: relative;
    box-shadow: 0 8px 24px var(--accent-glow);
    transition: all var(--transition-normal);
}

.process-card:hover .process-number {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px var(--accent-glow);
}

.process-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .process-grid::before {
        display: none;
    }

    .process-card {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
    }

    .process-number {
        width: 52px;
        height: 52px;
        font-size: 18px;
        margin: 0;
        flex-shrink: 0;
    }
}



/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(67, 97, 238, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-icon {
    font-size: 22px;
    font-weight: 400;
    transition: transform var(--transition-normal);
    color: var(--text-muted);
}

.faq-item.faq-active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 22px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================================================
   About Section — Bold Gradient
   ========================================================================== */
.about {
    position: relative;
    background: #050b24;
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.about-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
}

.about-bg-shape.shape-a {
    width: 500px;
    height: 500px;
    background: #6c63ff;
    top: -120px;
    left: -100px;
}

.about-bg-shape.shape-b {
    width: 400px;
    height: 400px;
    background: #f97316;
    bottom: -100px;
    right: -80px;
}

.about-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.about-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 100px;
    padding: 6px 20px;
    margin-bottom: 24px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-title span {
    background: linear-gradient(90deg, #4cc9f0, #4361ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-body {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 32px;
}

.about-stats-row {
    display: flex;
    gap: 24px;
    margin-top: 56px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    flex: 1;
    min-width: 160px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.16);
}

.asc-num {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.asc-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .about-stats-row {
        flex-direction: column;
        gap: 16px;
    }

    .about-stat-card {
        padding: 24px 28px;
    }
}



/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-container {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-desc {
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text-secondary);
}

.method-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(123, 47, 247, 0.08));
    color: var(--accent-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(67, 97, 238, 0.08);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--bg-alt);
    border: 1.5px solid rgba(67, 97, 238, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: #fff;
}

.contact-form .btn {
    width: 100%;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--text-primary);
    padding-top: 72px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 56px;
}

/* Success Message Styling */
.success-message {
    display: none;
    text-align: center;
    padding: 48px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.5s ease forwards;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.2);
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    margin: 14px 0 22px;
    font-size: 14px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

.footer-links-group {
    display: flex;
    gap: 80px;
}

.footer-links h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    text-align: center;
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 36px;
    }

    .footer-links-group {
        flex-wrap: wrap;
        gap: 36px;
    }
}