@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --secondary: #a855f7; /* Purple accent */
    
    /* Light Theme Colors (Default for body) */
    --bg-main: #FAFAFA;
    --bg-card: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    
    /* Dark Theme Colors (For specific sections) */
    --bg-dark: #0B1121; /* Very dark navy */
    --bg-dark-secondary: #0F172A;
    --text-light: #F8FAFC;
    --text-muted-light: #94A3B8;
    --border-dark: #334155;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-dark);
}
.btn-outline:hover {
    border-color: var(--primary);
    background-color: rgba(37, 99, 235, 0.1);
}

/* Typography Headings */
.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}
.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
}

/* Top Bar */
.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 101;
    background-color: var(--bg-dark);
    color: var(--text-muted-light);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-dark);
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    gap: 20px;
}
.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.top-bar-left a:hover {
    color: white;
}
.top-bar-right {
    display: flex;
    gap: 16px;
}
.top-bar-right a {
    transition: var(--transition);
}
.top-bar-right a:hover {
    color: white;
}

/* Navbar (Dark) */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 100;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(11, 17, 33, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
    padding: 16px 0;
    top: 0;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .navbar {
        top: 0;
    }
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}
.logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-img-footer {
    height: 56px;
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Sections Base */
.section { padding: 100px 0; }
.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}
.section-dark .section-desc { color: var(--text-muted-light); }

/* ===================
   NEW HERO SECTION
=================== */
.hero {
    position: relative;
    background-color: #030712; /* Very deep dark bg */
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Animated Background Orbs */
.hero-bg-orbs {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 10s ease-in-out infinite alternate;
}
.orb-1 {
    top: -10%; left: -5%;
    width: 600px; height: 600px;
    background: #3B82F6; /* Blue */
}
.orb-2 {
    bottom: -20%; right: -10%;
    width: 700px; height: 700px;
    background: #8B5CF6; /* Purple */
    animation-delay: -5s;
}
.orb-3 {
    top: 40%; left: 40%;
    width: 400px; height: 400px;
    background: #EC4899; /* Pink */
    opacity: 0.2;
    animation-delay: -2s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -50px) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 7px 16px;
    border-radius: 100px;
    color: #CBD5E1;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 10px #10B981;
}

.hero-title {
    font-size: clamp(36px, 4.2vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
.hero-title .text-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #A855F7 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 480px;
    font-weight: 400;
}

/* Hero CTA Panel */
.hero-cta-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 520px;
    padding: 22px 24px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Hero Actions */
.hero-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-secondary-btn {
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    border-color: rgba(255,255,255,0.2);
}
.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563EB, #4F46E5);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.5);
    transition: all 0.3s ease;
}
.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px -5px rgba(37, 99, 235, 0.6);
}

.hero-trust-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    list-style: none;
}
.hero-trust-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(226, 232, 240, 0.92);
}
.hero-trust-points i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.15);
    color: #34D399;
    font-size: 9px;
}

.hero-users {
    display: flex;
    align-items: center;
    gap: 16px;
}
.user-avatars { display: flex; }
.user-avatars img {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid #030712;
    margin-left: -12px;
}
.user-avatars img:first-child { margin-left: 0; }
.user-avatar-more {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #1F2937;
    border: 2px solid #030712;
    margin-left: -12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 12px; font-weight: bold;
    z-index: 10;
}
.user-text .stars { color: #F59E0B; font-size: 12px; margin-bottom: 2px; }
.user-text span { color: #94A3B8; font-size: 13px; font-weight: 500; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 36px;
    perspective: 1200px;
}
.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    transform: rotateY(-8deg) rotateX(4deg);
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.visual-wrapper:hover {
    transform: rotateY(-2deg) rotateX(1deg) scale(1.02);
}
.visual-glow {
    position: absolute;
    inset: 8% -8% -8%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.32), transparent 70%);
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}
.visual-wrapper:hover .visual-glow {
    opacity: 1.25;
}
.main-visual-img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 60px -18px rgba(0, 0, 0, 0.65);
    transform: translateZ(20px);
    transition: box-shadow 0.55s ease, border-color 0.55s ease;
}
.visual-wrapper:hover .main-visual-img {
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 36px 70px -16px rgba(37, 99, 235, 0.35), 0 28px 60px -18px rgba(0, 0, 0, 0.65);
}

.float-card {
    position: absolute;
    z-index: 3;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 8px 12px 8px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    color: white;
    white-space: nowrap;
    min-height: 48px;
    transform: translateZ(50px);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.float-card:hover {
    border-color: rgba(96, 165, 250, 0.45);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.25);
}
.float-card-1 {
    top: 6%;
    left: -28px;
    animation: floatUpDown 6s ease-in-out infinite;
}
.float-card-2 {
    bottom: 16%;
    left: -32px;
    animation: floatUpDown 5s ease-in-out infinite reverse;
}
.float-card-3 {
    bottom: -18px;
    left: 50%;
    animation: floatUpDownCenter 7s ease-in-out infinite;
}
.float-card-4 {
    top: 2%;
    right: -24px;
    animation: floatUpDown 6.5s ease-in-out infinite reverse;
}
.float-card-5 {
    top: 42%;
    right: -30px;
    animation: floatUpDown 5.5s ease-in-out infinite;
}
.float-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(59, 130, 246, 0.12);
    color: #3B82F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.float-info {
    display: flex;
    align-items: center;
}
.float-info span,
.float-info h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0;
    color: #F8FAFC;
}
.float-info p { display: none; }

@keyframes floatUpDown {
    0%, 100% { transform: translateZ(50px) translateY(0); }
    50% { transform: translateZ(50px) translateY(-10px); }
}
@keyframes floatUpDownCenter {
    0%, 100% { transform: translateZ(50px) translateX(-50%) translateY(0); }
    50% { transform: translateZ(50px) translateX(-50%) translateY(-10px); }
}

/* Initial Animation States */
.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-fade-left {
    opacity: 0;
    animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Trusted Logos (Dark) */
.trusted-section {
    background-color: var(--bg-dark-secondary);
    padding: 40px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}
.trusted-title {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted-light);
    margin-bottom: 30px;
    font-weight: 600;
}
.trusted-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.trusted-logos img, .trusted-logos .logo-text-only {
    opacity: 0.6;
    transition: var(--transition);
    height: 30px;
    filter: grayscale(100%) brightness(200%); /* Make them white-ish */
}
.trusted-logos img:hover, .trusted-logos .logo-text-only:hover {
    opacity: 1;
}
.logo-text-only { font-size: 20px; font-weight: 700; color: white; display:flex; align-items:center; gap:8px;}

/* Services Section (Light) */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.service-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-main);
}
.service-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Projects (Light) */
.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.project-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.project-img {
    height: 220px;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: transform 0.5s ease; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}
.project-info { padding: 24px; }
.project-info h3 { font-size: 18px; margin-bottom: 8px; }
.project-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; height: 40px;}
.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.project-tech { color: var(--text-muted); font-weight: 500;}
.project-link { color: var(--primary); font-weight: 600; display:flex; align-items:center; gap:4px;}

/* Founder Section */
.founder-section {
    background: white;
    border-bottom: 1px solid var(--border-color);
}
.founder-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: center;
}
.founder-avatar {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.founder-avatar-inner {
    width: 180px;
    height: 180px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(168,85,247,0.12));
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--primary);
}
.founder-badge-pill {
    margin-top: -14px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
}
.founder-role {
    color: var(--text-muted);
    font-weight: 500;
    margin: -8px 0 20px;
}

/* About Section */
.about-section {
    background: #F1F5F9;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

/* Why Choose Us */
.why-section {
    background: white;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.25);
}
.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}
.why-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Portfolio cards */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.portfolio-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
}
.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}
.portfolio-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.portfolio-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.portfolio-tags li {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    background: #F1F5F9;
    border: 1px solid var(--border-color);
    padding: 6px 10px;
    border-radius: 999px;
}

/* Commitment Section (replaces fake stats) */
.stats-section,
.commitment-section {
    background: var(--bg-dark-secondary);
    padding: 60px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}
.commitment-header {
    text-align: center;
    margin-bottom: 40px;
}
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.commitment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 18px 20px;
}
.commitment-item i {
    color: #34D399;
}

/* Process Timeline (Light) */
.process-section { text-align: center; }
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    gap: 8px;
}
.process-timeline-7 .process-step {
    padding: 0 4px;
}
.process-timeline-7 .process-step p {
    font-size: 12px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 24px; left: 5%; right: 5%;
    height: 2px;
    background: var(--border-color);
    border-top: 2px dashed #CBD5E1;
    z-index: 0;
}
.process-step {
    position: relative;
    z-index: 1;
    flex: 1;
    background: var(--bg-main);
    padding: 0 10px;
}
.step-icon {
    width: 48px; height: 48px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 16px;
    box-shadow: var(--shadow-sm);
}
.step-num {
    font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 4px;
}
.process-step h4 { font-size: 16px; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* Tech Stack Pills (Light) */
.tech-stack-section { text-align: center; }
.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.tech-category h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.tech-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Industries */
.industries-section {
    background: white;
    text-align: center;
}
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F8FAFC;
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}
.industry-pill i { color: var(--primary); }
.industry-pill:hover {
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.tech-pill {
    background: white;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.tech-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.tech-pill img, .tech-pill i { font-size: 18px; }

/* Testimonials (Light) */
.testimonials-section { text-align: center; background: #F1F5F9; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    text-align: left;
}
.testi-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}
.testi-quote { font-size: 24px; color: var(--primary); margin-bottom: 16px; opacity: 0.2; }
.testi-text { font-size: 14px; color: var(--text-main); margin-bottom: 24px; font-weight: 500;}
.testi-stars { color: #F59E0B; font-size: 12px; margin-bottom: 24px;}
.testi-author { display: flex; align-items: center; justify-content: space-between; }
.testi-author-info { display: flex; align-items: center; gap: 12px; }
.testi-author-info img { width: 40px; height: 40px; border-radius: 50%; }
.testi-author-info h4 { font-size: 14px; }
.testi-author-info p { font-size: 12px; color: var(--text-muted); }

/* FAQ & CTA (Dark & Purple) */
.bottom-sections {
    background: var(--bg-dark);
    padding: 80px 0;
}
.faq-container {
    display: flex;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}
.faq-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.faq-left img { max-width: 100%; height: auto; }
.faq-right {
    flex: 1;
    padding: 60px 60px 60px 0;
}
.faq-item {
    border-bottom: 1px solid var(--border-dark);
    padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}
.faq-question i { color: var(--text-muted-light); transition: transform 0.3s ease; }
.faq-answer {
    color: var(--text-muted-light);
    font-size: 14px;
    padding-top: 12px;
    display: none;
}

.cta-box {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    border-radius: 20px;
    padding: 48px 40px 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-content { position: relative; z-index: 2; max-width: 480px; flex-shrink: 0; }
.cta-content h2 { font-size: 32px; margin-bottom: 16px; }
.cta-content p { font-size: 16px; opacity: 0.9; margin-bottom: 32px; }
.cta-image {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 520px;
}
.cta-image-glow {
    position: absolute;
    inset: 8% 5%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.28) 0%, rgba(147, 197, 253, 0.18) 35%, transparent 70%);
    filter: blur(18px);
    pointer-events: none;
    z-index: 0;
}
.cta-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(15, 10, 40, 0.35);
    animation: floating 4s ease-in-out infinite;
}

/* Footer */
footer {
    background: #050811;
    padding: 80px 0 30px;
    color: var(--text-muted-light);
    border-top: 1px solid var(--border-dark);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-about { grid-column: span 2; }
.cta-buttons { display: flex; gap: 16px; }
.footer-title { color: white; font-weight: 600; font-size: 14px; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: white; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { color: var(--text-muted-light); font-size: 18px; transition: var(--transition); }
.social-links a:hover { color: white; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
}

/* Animations */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animate-on-scroll { opacity: 0; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-up { transform: translateY(30px); }
.fade-left { transform: translateX(30px); }
.animate-on-scroll.visible { opacity: 1; transform: translate(0, 0); }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid, .testimonials-grid, .portfolio-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .founder-grid, .about-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .founder-avatar { margin: 0 auto; }
    .commitment-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* New Hero specific responsive */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-title { font-size: 36px; }
    .hero-subtitle { margin: 0 auto 28px; }
    .hero-cta-panel { margin: 0 auto; text-align: left; }
    .hero-action { justify-content: center; }
    .hero-badge { margin: 0 auto 20px; }
    .hero-trust-points { justify-content: flex-start; }
    .hero-visual { padding: 20px 24px 28px; }
    .visual-wrapper {
        max-width: 460px;
        transform: none;
    }
    .visual-wrapper:hover { transform: none; }
    .float-card {
        min-height: 44px;
        padding: 7px 10px 7px 7px;
        gap: 8px;
        transform: none;
    }
    .float-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    .float-info span,
    .float-info h4 { font-size: 12px; }
    .float-card-1 { top: 4%; left: -10px; }
    .float-card-2 { bottom: 12%; left: -12px; }
    .float-card-3 { bottom: -14px; left: 50%; }
    .float-card-4 { top: 0; right: -10px; }
    .float-card-5 { top: 40%; right: -12px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { flex-direction: column; gap: 40px; }
    .process-timeline::before { display: none; }
    .faq-container, .cta-box { flex-direction: column; }
    .faq-right { padding: 40px; }
    .cta-box { padding: 40px 32px; text-align: center; }
    .cta-content { max-width: 100%; }
    .cta-image {
        max-width: 360px;
        width: 100%;
        margin: 12px auto 0;
    }
    .cta-image img { max-width: 320px; }
}
@media (max-width: 768px) {
    .nav-links, .navbar .btn { display: none; }
    .mobile-menu-btn { display: block; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); }
    .navbar .container { position: relative; display: flex; justify-content: center; align-items: center; }
    .logo { margin: 0 auto; }
    .navbar.menu-active .nav-links {
        display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%;
        background: var(--bg-dark); padding: 24px; border-bottom: 1px solid var(--border-dark); text-align: center;
    }
    .projects-grid, .testimonials-grid, .portfolio-grid, .why-grid { grid-template-columns: 1fr; }
    .commitment-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); text-align: left; }
    .footer-about { grid-column: span 2; text-align: center; }
    .footer-grid > div:last-child { grid-column: span 2; text-align: center; }
    
    /* New Hero specific mobile */
    .hero-title { font-size: 30px; }
    .hero-cta-panel { padding: 18px 16px; }
    .hero-trust-points { grid-template-columns: 1fr; }
    .float-card { display: none; }
    
    /* General Mobile Centering */
    .section-title { font-size: 28px; text-align: center; }
    .section-subtitle { text-align: center; }
    .section-desc { text-align: center; margin-left: auto; margin-right: auto; }
    .services-header { flex-direction: column; text-align: center; align-items: center; }
    .projects-header { flex-direction: column; text-align: center; align-items: center; gap: 20px; }
    
    .service-card { flex-direction: column; text-align: center; align-items: center; padding: 24px; }
    .stat-item { flex-direction: column; text-align: center; justify-content: center; gap: 12px; }
    
    .logo, .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
    
    .process-timeline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; flex-direction: unset; }
    .process-step { text-align: center; padding: 0; margin-bottom: 0; }
    
    .project-img img, .cta-image img, .main-visual-img { margin: 0 auto; display: block; }
    
    .cta-content { text-align: center; margin: 0 auto; }
    .cta-content > div { justify-content: center; }
    .faq-left { padding: 40px 20px; text-align: center; }
    .faq-right { padding: 20px; }
}

@media (max-width: 480px) {
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; text-align: center; justify-content: center; }
    .hero-title { font-size: 28px; }
    .hero-action { flex-direction: column; width: 100%; }
    .hero-action .btn, .hero-action .btn-primary-lg { width: 100%; text-align: center; justify-content: center; }
    .faq-left { padding: 30px 10px; }
    .faq-right { padding: 10px; }
    .cta-box { padding: 28px 18px; }
    .cta-image { max-width: 260px; }
    .cta-image img { max-width: 240px; border-radius: 14px; }
    .section { padding: 60px 0; }
    .bottom-sections { padding: 40px 0; }
    .footer-grid { gap: 30px; }
}
