/* ========================
   Global Styles & Reset
   ======================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-light: #a78bfa;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --accent-2: #06b6d4;
    --accent-3: #10b981;
    --dark-bg: #0a0a1a;
    --dark-gray: #111827;
    --medium-gray: #1f2937;
    --light-gray: #e2e8f0;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%);
    --gradient-4: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a0533 50%, #0d1b4b 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(124, 58, 237, 0.15);
    --shadow-lg: 0 10px 40px rgba(124, 58, 237, 0.2);
    --shadow-xl: 0 20px 60px rgba(124, 58, 237, 0.3);
    --glow: 0 0 30px rgba(124, 58, 237, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Mesh gradient background for sections */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(236, 72, 153, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

section, footer, nav { position: relative; z-index: 1; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================
   Utility Classes
   ======================== */

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 8px 22px;
    background: var(--gradient-1);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    margin: 15px 0;
    color: var(--text-dark);
    background: linear-gradient(135deg, #0f172a 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================
   Buttons
   ======================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.7);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* ========================
   Navigation
   ======================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(124, 58, 237, 0.12);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo i {
    color: var(--primary-color);
    font-size: 28px;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.5));
}

.logo strong {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ========================
   Hero Section
   ======================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 120px;
    overflow: visible;
    isolation: isolate;
}

.hero .hero-background + * {
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite;
}

.animated-bg::before {
    width: 600px;
    height: 600px;
    background: rgba(124, 58, 237, 0.35);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.animated-bg::after {
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.3);
    bottom: -150px;
    right: -100px;
    animation-delay: 7s;
}

/* Extra orb */
.hero-background::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 15s infinite;
    animation-delay: 3s;
    z-index: 0;
}

/* Grid overlay */
.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(100px, -50px); }
    66% { transform: translate(-50px, 100px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    padding: 15px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 110px;
}

.stat-item h3 {
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 32px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.6));
}

.floating-card span {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}

.card-1 {
    top: 50px;
    left: 0;
}

.card-2 {
    top: 200px;
    right: 50px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 100px;
    left: 80px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========================
   Services Overview
   ======================== */

.services-overview {
    padding: 110px 0;
    background: #f8f5ff;
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.services-overview::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(236,72,153,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(124, 58, 237, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.6);
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* ========================
   Why Choose Us
   ======================== */

.why-choose-us {
    padding: 110px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    left: -150px; top: 50%;
    transform: translateY(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text h2 {
    font-size: 42px;
    margin: 15px 0 25px;
}

.features-list {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item i {
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
    background: var(--gradient-1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-light);
}

.stats-box {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0533 100%);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
    border: 1px solid rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-box::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-box h4 {
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--white);
}

.stat-box-item {
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-box-item:hover {
    background: rgba(124,58,237,0.2);
    border-color: rgba(124,58,237,0.4);
    transform: translateY(-3px);
}

.stat-box-item:last-child {
    margin-bottom: 0;
}

.stat-box-item h3 {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-box-item p {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ========================
   Testimonials
   ======================== */

.testimonials {
    padding: 110px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0533 50%, #0d1b4b 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(236,72,153,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials .section-header h2 {
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.7);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px; left: 30px;
    font-size: 80px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.5;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.stars i {
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    padding-top: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--white);
}

.author-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* ========================
   CTA Section
   ======================== */

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #06b6d4 100%);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* ========================
   Footer
   ======================== */

.footer {
    background: linear-gradient(135deg, #050510 0%, #0d0520 50%, #050510 100%);
    color: var(--light-gray);
    padding: 90px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0; height: 2px;
    background: var(--gradient-1);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

.footer-bottom a {
    color: var(--primary-light);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================
   Page Header
   ======================== */

.page-header {
    padding: 190px 0 90px;
    background: var(--gradient-hero);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.35) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 58px;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 20px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

/* ========================
   About Page
   ======================== */

.our-story {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--gradient-1);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -46px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.timeline-content h4 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-light);
}

.mission-vision {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(124, 58, 237, 0.08);
    position: relative;
    overflow: hidden;
}

.mv-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    right: 0; height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.2);
}

.mv-card:hover::after {
    transform: scaleX(1);
}

.mv-card i {
    font-size: 52px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 22px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(124, 58, 237, 0.3));
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(124, 58, 237, 0.08);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0533 100%);
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.25);
}

.member-image {
    margin-bottom: 20px;
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid var(--white);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    position: relative;
    z-index: 1;
}

.member-avatar i {
    font-size: 48px;
    color: var(--white);
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-social a:hover {
    background: var(--primary-dark);
}

.stats-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0533 50%, #0d1b4b 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 45px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0; height: 3px;
    background: var(--gradient-1);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
}

.stat-card i {
    font-size: 50px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.5));
}

.stat-card h3 {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-card p {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ========================
   Services Page
   ======================== */

.service-detail {
    padding: 80px 0;
}

.service-detail.alt {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-icon-large {
    width: 90px;
    height: 90px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon-large i {
    font-size: 42px;
    color: var(--white);
}

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-detail-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0 40px;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.service-features i {
    color: var(--primary-color);
    font-size: 18px;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.platform-icon:hover {
    transform: translateY(-5px);
}

.platform-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.content-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.content-type-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.content-type-card:hover {
    transform: translateY(-5px);
}

.content-type-card i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.content-type-card p {
    font-weight: 600;
    color: var(--text-dark);
}

.branding-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.brand-element {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.brand-element:hover {
    transform: translateY(-5px);
}

.brand-element i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.brand-element p {
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================
   Portfolio Page
   ======================== */

.portfolio-filter {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.portfolio-grid-section {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(124, 58, 237, 0.08);
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.25);
}

.portfolio-image {
    position: relative;
    height: 250px;
    background: var(--gradient-1);
    overflow: hidden;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.portfolio-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.5);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.view-case-btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
}

.portfolio-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.portfolio-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.portfolio-stats {
    display: flex;
    gap: 30px;
}

.portfolio-stats .stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
}

.case-studies {
    padding: 100px 0;
}

.featured-case-study {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.case-study-header {
    padding: 40px;
    background: var(--gradient-1);
    color: var(--white);
}

.case-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.case-info h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.case-meta {
    opacity: 0.9;
}

.case-study-content {
    padding: 40px;
}

.case-section {
    margin-bottom: 40px;
}

.case-section h4 {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.case-section i {
    color: var(--primary-color);
}

.case-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.result-item {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.result-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.result-item p {
    color: var(--text-dark);
}

.client-logos {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
}

.client-logos h3 {
    font-size: 28px;
    margin-bottom: 40px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.logo-item {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================
   Contact Page
   ======================== */

.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(124, 58, 237, 0.15);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #faf8ff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

.contact-info-card {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0533 100%);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
    height: fit-content;
    border: 1px solid rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.contact-info-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-info-card > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
}

.info-items {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: var(--white);
}

.info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--white);
}

.info-text p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.6;
}

.social-connect h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-box {
    background: var(--gradient-1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    margin-top: 30px;
}

.cta-box i {
    font-size: 48px;
    margin-bottom: 15px;
}

.cta-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cta-box p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.map-section {
    height: 400px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.05);
}

.faq-question h4 {
    font-size: 18px;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================
   Responsive Design
   ======================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        box-shadow: var(--shadow-xl);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content,
    .why-content,
    .story-content,
    .service-detail-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-header h2,
    .why-text h2 {
        font-size: 32px;
    }
    
    .hero-image {
height: 400px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .hero-buttons,
    .form-row {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .testimonials-slider,
    .team-grid,
    .stats-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .social-platforms,
    .content-types,
    .branding-elements {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================
   Animations
   ======================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial state for scroll-animated elements — hidden until scrolled into view */
.service-card,
.testimonial-card,
.team-member,
.portfolio-card,
.stat-card,
.mv-card {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}
