/* ============================================================
   DIGITAL REACH MINDS — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --navy: #0A0F2C;
    --navy-mid: #0D1535;
    --navy-light: #111A42;
    --electric: #2563EB;
    --electric-light: #3B82F6;
    --electric-glow: rgba(37, 99, 235, 0.35);
    --orange: #F97316;
    --orange-light: #FB923C;
    --white: #FFFFFF;
    --gray-100: #F8FAFF;
    --gray-200: #E8EDF8;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --gray-800: #1E293B;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --shadow-blue: 0 10px 40px rgba(37, 99, 235, 0.3);
    --shadow-orange: 0 10px 40px rgba(249, 115, 22, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

/* ─── Utility Classes ───────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x)/ -2);margin-left:calc(var(--bs-gutter-x)/ -2)}
.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)/ 2);padding-left:calc(var(--bs-gutter-x)/ 2);margin-top:var(--bs-gutter-y)}
.col-md-1{flex:0 0 auto;width:8.3333333333%}
.col-md-2{flex:0 0 auto;width:16.6666666667%}
.col-md-3{flex:0 0 auto;width:25%}
.col-md-4{flex:0 0 auto;width:33.3333333333%}
.col-md-5{flex:0 0 auto;width:41.6666666667%}
.col-md-6{flex:0 0 auto;width:50%}
.col-md-7{flex:0 0 auto;width:58.3333333333%}
.col-md-8{flex:0 0 auto;width:66.6666666667%}
.col-md-9{flex:0 0 auto;width:75%}
.col-md-10{flex:0 0 auto;width:83.3333333333%}
.col-md-11{flex:0 0 auto;width:91.6666666667%}
.col-md-12{flex:0 0 auto;width:100%}
.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 70px 0;
}

.text-center {
    text-align: center;
}

.text-navy {
    color: var(--navy);
}

.text-electric {
    color: var(--electric);
}

.text-orange {
    color: var(--orange);
}

.text-white {
    color: var(--white);
}

.bg-navy {
    background: var(--navy);
}

.bg-light {
    background: var(--gray-100);
}

/* ─── Section Header ────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--electric);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--electric);
}

.section-title .accent {
    color: var(--orange);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 580px;
    line-height: 1.8;
}

.section-subtitle.centered {
    margin: 0 auto;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: var(--transition);
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric), #1d4ed8);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.45);
}

.btn-orange {
    background: linear-gradient(135deg, var(--orange), #ea6500);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.45);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-outline-blue {
    border: 2px solid var(--electric);
    color: var(--electric);
    padding: 12px 30px;
}

.btn-outline-blue:hover {
    background: var(--electric);
    color: var(--white);
    transform: translateY(-3px);
}

/* ─── Navbar ────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

#navbar.transparent {
    background: transparent;
    padding: 20px 0;
}

#navbar.scrolled {
    background: rgba(10, 15, 44, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--electric), var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 0.6rem;
    color: var(--gray-400);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--electric);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 50%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Mobile Menu ───────────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    padding: 12px 40px;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--electric);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

/* ─── Hero Section ──────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Animated gradient mesh */
.hero-bg::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

/* Grid overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Glowing orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse-orb 6s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.2);
    top: 10%;
    left: 55%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.12);
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.15);
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.4);
    color: var(--electric-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: slide-up 0.8s ease forwards;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--electric);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
}

.hero-headline {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    animation: slide-up 0.8s 0.2s ease both;
}

.hero-headline .highlight {
    background: linear-gradient(135deg, var(--electric), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: slide-up 0.8s 0.4s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: slide-up 0.8s 0.6s ease both;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    animation: slide-up 0.8s 0.8s ease both;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
}

.hero-meta-item .num {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-meta-item .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ─── Scroll Indicator ──────────────────────────────────── */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

/* ─── Stats Section ─────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 24px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num .counter {
    display: inline;
}

.stat-num .plus {
    color: var(--orange);
    font-size: 0.7em;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ─── Services Strip (Home) ─────────────────────────────── */
.services-strip {
    padding: 80px 0;
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    transition: var(--transition);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--electric), #1d4ed8);
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--electric);
    transition: var(--transition);
}

.service-card:hover .learn-more {
    gap: 12px;
}

/* ─── Why Choose Us ─────────────────────────────────────── */
.why-us {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.why-us-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.why-us-content .section-label {
    border-color: rgba(37, 99, 235, 0.5);
}

.why-us-content .section-title {
    color: var(--white);
}

.why-us-content .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.why-us-visual {
    position: relative;
}

.why-us-image-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.floating-badge {
    position: absolute;
    background: linear-gradient(135deg, var(--electric), #1d4ed8);
    color: white;
    border-radius: 12px;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-blue);
    animation: float 4s ease-in-out infinite;
}

.floating-badge:nth-child(1) {
    top: -15px;
    left: 20px;
    animation-delay: 0s;
}

.floating-badge:nth-child(2) {
    bottom: -15px;
    right: 20px;
    animation-delay: 2s;
}

/* ─── Process Section ───────────────────────────────────── */
.process {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    margin-top: 70px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--electric), var(--orange));
    z-index: 0;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.step-circle {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 3px solid var(--electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--electric);
    margin-bottom: 24px;
    transition: var(--transition);
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.08);
}

.process-step:hover .step-circle {
    background: var(--electric);
    color: white;
    box-shadow: 0 0 0 12px rgba(37, 99, 235, 0.12), var(--shadow-blue);
}

.step-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials {
    padding: 100px 0;
    background: var(--gray-100);
    position: relative;
}

.testimonials-carousel {
    position: relative;
    margin-top: 60px;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 20px;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    border: 1px solid var(--gray-200);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.quote-icon {
    font-size: 4rem;
    color: var(--electric);
    opacity: 0.2;
    line-height: 1;
    font-family: serif;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--navy);
}

.author-role {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 20px;
    color: #FCD34D;
    font-size: 1.2rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--electric);
    width: 30px;
    border-radius: 5px;
}

.carousel-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--electric);
    color: var(--electric);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
    cursor: pointer;
    background: transparent;
}

.carousel-btn:hover {
    background: var(--electric);
    color: white;
}

/* ─── CTA Banner ────────────────────────────────────────── */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

.cta-banner h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ─── Footer ────────────────────────────────────────────── */
footer {
    background: #060A1E;
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand .logo-name {
    font-size: 1.1rem;
}

.footer-brand .logo-tagline {
    margin-bottom: 0;
}

.footer-brand .nav-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--electric);
    border-color: var(--electric);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--electric);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail a,
.contact-detail span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    line-height: 1.5;
}

.contact-detail a:hover {
    color: var(--electric);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--electric);
}

/* ─── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
    padding: 160px 0 80px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: var(--electric);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.page-hero h1 {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Services Page ─────────────────────────────────────── */
.services-page {
    padding: 100px 0;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-full-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 44px 38px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-full-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--electric), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-full-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-full-card:hover::before {
    transform: scaleX(1);
}

.service-full-card .service-icon {
    width: 72px;
    height: 72px;
    font-size: 2rem;
    margin-bottom: 28px;
}

.service-full-card h3 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 14px;
}

.service-full-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-600);
}

.service-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── About Page ────────────────────────────────────────── */
.about-story {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* align-items: center; */
}

.about-visual-wrap {
    position: relative;
}

.about-card-main {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-card-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
}

.about-stat {
    position: absolute;
    background: linear-gradient(135deg, var(--orange), #ea6500);
    color: white;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-family: var(--font-primary);
    box-shadow: var(--shadow-orange);
    animation: float 5s ease-in-out infinite;
}

.about-stat:nth-child(1) {
    bottom: -20px;
    right: -20px;
    animation-delay: 0s;
}

.about-stat:nth-child(2) {
    top: -20px;
    left: -20px;
    animation-delay: 2.5s;
}

.about-stat .num {
    font-size: 1.8rem;
    font-weight: 900;
}

.about-stat .lbl {
    font-size: 0.75rem;
    opacity: 0.85;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.mv-card {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 32px;
    border-left: 4px solid;
}

.mv-card.mission {
    border-color: var(--electric);
}

.mv-card.vision {
    border-color: var(--orange);
}

.mv-card h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.mv-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Team */
.team-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-avatar-wrap {
    padding: 36px 36px 24px;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 16px;
}

.team-card h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.82rem;
    color: var(--electric);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card-footer {
    padding: 16px 20px;
    background: var(--navy);
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-card-footer .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
}

/* ─── Portfolio Page ────────────────────────────────────── */
.portfolio-page {
    padding: 100px 0;
}

.portfolio-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--electric);
    border-color: var(--electric);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.portfolio-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.portfolio-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.portfolio-thumb.web {
    background: linear-gradient(135deg, #0A0F2C, #2563EB);
}

.portfolio-thumb.app {
    background: linear-gradient(135deg, #1e1b4b, #7c3aed);
}

.portfolio-thumb.design {
    background: linear-gradient(135deg, #1a0a2e, #ec4899);
}

.portfolio-thumb.marketing {
    background: linear-gradient(135deg, #0c1a0a, #16a34a);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 15, 44, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-info-show {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(10, 15, 44, 0.85) 0%, transparent 100%);
}

.portfolio-tag {
    background: var(--electric);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.portfolio-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 8px;
}

.portfolio-subtitle {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ─── Contact Page ──────────────────────────────────────── */
.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.06));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-text label {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text span {
    color: var(--gray-600);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-detail-text a:hover {
    color: var(--electric);
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--electric);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.maps-wrap {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.maps-wrap iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ─── Animations ────────────────────────────────────────── */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-orb {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

.delay-7 {
    transition-delay: 0.7s;
}

/* ─── Dots Pattern Background ───────────────────────────── */
.dot-pattern {
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.12) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* ─── Form Success ───────────────────────────────────────── */
.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    color: var(--electric);
}

.form-success.show {
    display: block;
}

.form-success h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 16px 0 8px;
    color: var(--navy);
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2):after,
    .stat-item:nth-child(4):after {
        display: none;
    }

    .process-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .process-timeline::before {
        top: 10%;
        bottom: 10%;
        left: 32px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: flex-start;
    }

    .why-us-features {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 22px;
    }

    .testimonial-inner {
        padding: 32px 24px;
    }

    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-meta {
        gap: 16px;
    }

    .hero-divider {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}