@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@1,400;1,600&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
    /* Brand Colors (THREE PERCENT PAKISTAN) */
    --deep-blue: #071B33;
    --primary-blue: #1677B8;
    --bright-blue: #29A9E0;
    --electric-blue: #3B9FF3;
    --soft-blue: #EAF6FC;
    --light-bg: #F5FAFD;
    --white: #FFFFFF;
    --text-dark: #17324A;
    
    /* Legacy Mapping (To protect index.html structure) */
    --primary: var(--deep-blue);
    --deep-navy: var(--deep-blue);
    --soft-bg: var(--light-bg);
    
    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body); background-color: var(--soft-bg);
    color: var(--text-dark); overflow-x: hidden;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    font-size: 16px; line-height: 1.6;
}

/* Typography Scales (Capped) */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
/* Override uppercase constraint for the new brand unless specified */
.text-hero { font-size: clamp(52px, 5vw, 76px); line-height: 0.96; letter-spacing: -0.045em; max-width: 620px; }
.text-editorial { font-size: clamp(40px, 4vw, 60px); }
.text-huge { font-size: clamp(32px, 3.5vw, 56px); }
.text-large-statement { font-size: clamp(32px, 4vw, 52px); }

.section-label {
    font-size: 11px; font-weight: 700; color: var(--electric-blue);
    letter-spacing: 2px; text-transform: uppercase; display: inline-block; margin-bottom: 1.5rem;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed; top: 0; left: 0; width: 12px; height: 12px;
    border-radius: 50%; background-color: var(--electric-blue);
    pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease; mix-blend-mode: difference;
}
.custom-cursor.expand {
    width: 60px; height: 60px; background-color: rgba(255,255,255,0.1); backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 1px;
}

/* Navbar */
.navbar-custom { padding: 1.5rem 0; height: 90px; transition: var(--transition-fast); background: transparent; border-bottom: 1px solid transparent; }
.navbar-custom.scrolled { background: rgba(6, 16, 31, 0.9); backdrop-filter: blur(15px); padding: 1rem 0; height: 80px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.navbar-brand { display: inline-flex; align-items: center; padding: 0; margin: 0; }
.navbar-brand .brand-logo-img { height: 40px; width: auto; object-fit: contain; display: block; }
.nav-link { color: rgba(255,255,255,0.7) !important; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin: 0 1.2rem; transition: var(--transition-fast); }
.nav-link:hover { color: var(--white) !important; }

/* Buttons */
.btn-custom-primary, .btn-custom-outline {
    height: 50px; padding: 0 2.5rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
    transition: var(--transition-fast); display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    text-transform: uppercase; letter-spacing: 1px; text-decoration: none;
}
.btn-custom-primary { background-color: var(--electric-blue); color: var(--white); border: none; }
.btn-custom-primary:hover { background-color: var(--bright-blue); color: var(--white); transform: translateY(-2px); }
.btn-custom-outline { background-color: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-custom-outline:hover { border-color: var(--white); background-color: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-hero-secondary { border: 1px solid rgba(255,255,255,0.3); color: var(--white); background: rgba(255,255,255,0.05); backdrop-filter: blur(5px); }

/* Organic Elements */
.organic-mask { border-radius: 60% 40% 65% 35% / 55% 45% 55% 45%; overflow: hidden; }
.circle-img { border-radius: 50%; overflow: hidden; object-fit: cover; }
.organic-blob-bg { position: absolute; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; filter: blur(60px); z-index: 0; pointer-events: none; }
.blob-blue-soft { background: radial-gradient(circle, rgba(40,107,255,0.08) 0%, rgba(40,107,255,0) 70%); }
.blob-dark-navy { background: radial-gradient(circle, rgba(13,27,42,0.8) 0%, rgba(8,17,31,0) 70%); }
.svg-wave { display: none !important; }

/* Rhythms */
.section-editorial { padding: 120px 0; position: relative; }
.section-stats { padding: 70px 0; position: relative; }
.section-full { padding: 0; position: relative; }
.section-cta { padding: 140px 0; position: relative; }
.dark-section { background-color: var(--primary); color: var(--white); }
.light-section { background-color: var(--white); color: var(--text-dark); }
.soft-section { background-color: var(--soft-bg); color: var(--text-dark); }

/* ---------------- HERO ---------------- */
.hero-section { min-height: 850px; max-height: 900px; height: 100vh; background-color: #06101F; color: var(--white); position: relative; display: flex; align-items: center; padding-top: 90px; z-index: 1; }
.hero-watermark { position: absolute; bottom: 0%; left: -5%; font-size: clamp(220px, 25vw, 300px); font-weight: 800; color: var(--electric-blue); opacity: 0.03; line-height: 0.8; z-index: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 3; width: 100%; max-width: 1440px; margin: 0 auto; }

.text-electric { color: var(--electric-blue); }

.hero-text-wrapper { max-width: 620px; transform: translateY(-10px); }
.hero-description { max-width: 500px; font-size: 16px; line-height: 1.7; margin-top: 22px; margin-bottom: 22px; color: rgba(255,255,255,0.65); }

.hero-composition-right { position: relative; width: 600px; height: 600px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.hero-main-img-wrapper { width: 440px; height: 440px; border-radius: 50%; overflow: hidden; position: relative; z-index: 3; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.hero-main-img { width: 100%; height: 100%; object-fit: cover; }
.orbit-line { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 1px solid rgba(79,140,255,0.25); border-radius: 50%; pointer-events: none; }
.inner-orbit { width: 520px; height: 520px; z-index: 1; }
.outer-orbit { width: 640px; height: 640px; z-index: 1; border-color: rgba(79,140,255,0.15); }

.orbit-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background-color: var(--electric-blue); box-shadow: 0 0 10px var(--electric-blue); }
.orbit-dot-1 { top: 15%; right: 10%; }
.orbit-dot-2 { bottom: 25%; right: -4px; transform: translateY(-50%); }

.hero-floating-card { position: absolute; background: rgba(13, 27, 42, 0.85); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); padding: 1.2rem 1.5rem; border-radius: 16px; color: var(--white); z-index: 4; text-align: left; }
.hero-floating-card h4 { font-size: 1.8rem; margin-bottom: 0.2rem; font-weight: 800; line-height: 1; }
.hero-floating-card p { font-size: 9px; margin-bottom: 0; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; }

.hero-card-1 { top: 15%; left: 5%; animation: floatMicro 6s ease-in-out infinite; }
.hero-card-2 { bottom: 20%; left: 0%; animation: floatMicro 7s ease-in-out infinite reverse; }

.floating-portrait { position: absolute; width: 70px; height: 70px; border-radius: 50%; border: 3px solid #0D1B2A; object-fit: cover; z-index: 5; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.hero-portrait-1 { top: 5%; right: 10%; animation: floatMicro 5s ease-in-out infinite; }
.hero-portrait-2 { bottom: 15%; left: 15%; width: 60px; height: 60px; animation: floatMicro 5s ease-in-out infinite reverse; }

.hero-ppp-card { position: absolute; bottom: 15%; right: -20px; background: #08111F; color: var(--white); padding: 16px 24px; border-radius: 12px; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; line-height: 1.6; border: 1px solid rgba(255,255,255,0.1); z-index: 6; animation: floatSlow 8s ease-in-out infinite; }

.decorative-circle { position: absolute; width: 56px; height: 56px; border-radius: 50%; background-color: var(--bright-blue); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--white); font-size: 1.1rem; z-index: 4; box-shadow: 0 10px 20px rgba(40,107,255,0.4); }
.hero-deco-1 { bottom: 5%; right: 25%; animation: floatMicro 6s ease-in-out infinite; }

.hero-dot-grid { position: absolute; top: 15%; right: -40px; width: 80px; height: 100px; background-image: radial-gradient(rgba(79,140,255,0.4) 1px, transparent 1px); background-size: 10px 10px; z-index: 0; opacity: 0.5; }

@keyframes floatSlow { 0% { transform: translateY(0); } 50% { transform: translateY(-12px); } 100% { transform: translateY(0); } }
@keyframes floatMicro { 0% { transform: translate(0,0); } 50% { transform: translate(4px, -6px); } 100% { transform: translate(0,0); } }

/* ---------------- STATS ---------------- */
.stats-flowing { background-color: var(--white); position: relative; z-index: 2; padding: 70px 0; }
.stat-item { position: relative; padding: 0 2rem; display: flex; align-items: center; justify-content: center; flex-direction: column; }
@media (min-width: 992px) { .stat-item:not(:last-child)::after { content: ''; position: absolute; top: 20%; right: 0; height: 60%; width: 1px; background-color: rgba(0,0,0,0.05); } }
.tiny-dot { width: 6px; height: 6px; border-radius: 50%; background-color: var(--electric-blue); position: absolute; right: -3px; top: 50%; transform: translateY(-50%); z-index: 3; }
.stat-item h3 { font-size: clamp(36px, 3vw, 48px); color: var(--primary); font-weight: 800; margin-bottom: 0.2rem; }
.stat-item p { color: var(--muted); font-weight: 600; font-size: 11px; letter-spacing: 2px; margin: 0; text-transform: uppercase; }

/* ---------------- ABOUT (Organic Composition) ---------------- */
.section-about { padding: 120px 0 140px; background-color: var(--white); overflow: hidden; position: relative; }
.about-container { max-width: 1400px; padding: 0 15px; position: relative; z-index: 2; }
.about-text-wrapper { max-width: 520px; position: relative; z-index: 10; }

.about-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--primary); text-transform: uppercase; margin-bottom: 2rem; display: flex; align-items: center; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background-color: var(--electric-blue); display: inline-block; margin-right: 12px; }

.about-heading { font-size: clamp(62px, 5vw, 72px); font-weight: 750; line-height: 0.95; letter-spacing: -0.045em; }
.text-dark-navy { color: #08111F; }
.heading-dot { color: #286BFF; display: inline-block; }

.about-desc { font-size: 16px; line-height: 1.7; color: var(--muted); }

.btn-about-cta { 
    display: inline-flex; align-items: center; justify-content: center; height: 50px; padding: 0 2rem; 
    border-radius: 50px; border: 1px solid var(--electric-blue); color: var(--electric-blue); 
    background-color: var(--white); font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; text-decoration: none; 
    transition: var(--transition-fast);
}
.btn-about-cta:hover { background-color: var(--electric-blue); color: var(--white); transform: translateY(-2px); }
.btn-about-cta:hover .transition-transform { transform: translateX(5px); }
.transition-transform { transition: transform 0.3s ease; }

.about-composition { position: relative; width: 100%; height: 640px; z-index: 1; }
.about-bg-shape { position: absolute; top: -5%; left: 5%; width: 90%; height: 110%; background: rgba(40,107,255,0.05); border-radius: 80px 40px 100px 50px; z-index: -1; }
.about-curved-line { position: absolute; top: 10%; right: -20px; width: 100%; height: 90%; border: 1px solid rgba(40,107,255,0.15); border-radius: 50px 100px 40px 80px; z-index: 0; pointer-events: none; }
.about-dot-grid { position: absolute; top: 5%; right: 5%; width: 100px; height: 100px; background-image: radial-gradient(rgba(40,107,255,0.3) 1px, transparent 1px); background-size: 12px 12px; z-index: 0; }

.about-main-img-wrapper { position: absolute; top: 0; left: 10%; width: 75%; height: 500px; z-index: 2; overflow: hidden; border-radius: 65px 28px 80px 38px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); transition: transform 0.5s ease; }
.about-main-image { width: 100%; height: 100%; object-fit: cover; }
.about-composition:hover .about-main-img-wrapper { transform: scale(1.02); }

.about-sec-image { position: absolute; bottom: 100px; right: 0; width: 280px; height: 260px; object-fit: cover; border-radius: 24px; border: 4px solid var(--white); z-index: 3; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.5s ease; }
.about-composition:hover .about-sec-image { transform: translateY(-5px); }

.about-headset-badge { position: absolute; bottom: 320px; right: 35%; width: 56px; height: 56px; background-color: var(--electric-blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 4; box-shadow: 0 10px 20px rgba(40,107,255,0.3); border: 4px solid var(--white); transition: transform 0.3s ease; }
.about-composition:hover .about-headset-badge { transform: scale(1.05); }

.about-statement-panel { position: absolute; bottom: -30px; left: 5%; width: 90%; background-color: var(--white); border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.06); z-index: 5; display: flex; align-items: center; padding: 25px 30px; }
.panel-col { padding: 0 15px; }
.panel-icon-col { flex: 0 0 auto; }
.panel-icon { width: 50px; height: 50px; background: rgba(40,107,255,0.08); color: var(--electric-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.panel-divider { width: 1px; height: 50px; background-color: rgba(0,0,0,0.06); margin: 0 10px; }
.panel-number-col { flex: 0 0 auto; }
.panel-number { font-size: 3.5rem; font-weight: 800; color: var(--electric-blue); line-height: 1; letter-spacing: -0.04em; }
.panel-number span { font-size: 2.2rem; }
.panel-text-col { flex: 1; }
.panel-text-col h6 { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.3rem; text-transform: uppercase; }
.panel-text-col p { font-size: 12px; color: var(--muted); margin: 0; line-height: 1.4; }
/* ---------------- SERVICES (Premium Grid) ---------------- */
.section-services { padding: 120px 0 140px; position: relative; background: linear-gradient(135deg, #08111F 0%, #0D1B2A 100%); overflow: hidden; opacity: 1; }
.services-bg { position: absolute; inset: 0; background-image: url('../assets/images/services-bg.jpg'); background-size: cover; background-position: center; opacity: 0.08; z-index: 0; }
.services-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,17,31,0.92), rgba(13,27,42,0.94)); z-index: 1; }
.services-container { max-width: 1280px; padding: 0 15px; position: relative; z-index: 2; }

.services-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--white); text-transform: uppercase; margin-bottom: 2rem; display: flex; align-items: center; }
.eyebrow-dot-yellow { width: 6px; height: 6px; border-radius: 50%; background-color: #FFC107; display: inline-block; margin-right: 12px; }
.services-heading { font-size: clamp(34px, 4vw, 64px); font-weight: 800; line-height: 0.95; letter-spacing: -0.04em; }
.services-heading .text-white { color: #FFFFFF; }
.services-heading .text-electric { color: #286BFF; }
.heading-dot-yellow { color: #FFC107; display: inline-block; }
.services-desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.72); opacity: 1; max-width: 600px; margin-top: 1.5rem; }
.services-divider { width: 40px; height: 2px; background-color: var(--electric-blue); position: relative; margin-top: 2rem; }
.services-divider::after { content: ''; position: absolute; top: 0; right: 0; width: 8px; height: 2px; background-color: #FFC107; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 55px; }

.service-card { background: rgba(8,17,31,0.72); border: 1px solid rgba(255,255,255,0.14); border-radius: 18px; backdrop-filter: blur(8px); box-shadow: 0 15px 40px rgba(0,0,0,0.20); padding: 30px 25px; transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease; position: relative; display: flex; flex-direction: column; height: 100%; z-index: 3; }
.service-card-num { font-size: 14px; font-weight: 700; color: #286BFF; letter-spacing: 0.05em; }
.service-card-icon-container { width: 40px; height: 40px; border-radius: 50%; background: rgba(40,107,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #286BFF; border-top: 1px solid rgba(255,193,7,0.3); transition: box-shadow 0.4s ease; }
.service-card-title { font-size: 17px; font-weight: 700; color: #FFFFFF; text-transform: uppercase; line-height: 1.3; margin-bottom: 1rem; }
.service-card-desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.service-card-arrow { color: #FFC107; font-size: 1.2rem; transition: transform 0.4s ease; }

.service-card:hover { transform: translateY(-6px); border-color: rgba(40,107,255,0.45); background: rgba(20,40,65,0.85); }
.service-card:hover .service-card-icon-container { box-shadow: 0 0 15px rgba(40,107,255,0.3); }
.service-card:hover .service-card-arrow { transform: translateX(5px); }

/* ---------------- WHY 3% (Premium Grid & Portraits) ---------------- */
.section-why { padding: 110px 0 100px; position: relative; background-color: #F7F9FC; overflow: hidden; }
.why-radial-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(40,107,255,0.06) 0%, rgba(247,249,252,0) 70%); border-radius: 50%; pointer-events: none; z-index: 1; }
.why-glow-left { top: -100px; left: -200px; }
.why-glow-right { bottom: -100px; right: -200px; }
.why-bg-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(40,107,255,0.05) 1px, transparent 1px); background-size: 30px 30px; z-index: 1; }

.why-header-wrapper { position: relative; max-width: 1400px; padding: 2rem 0 4rem; z-index: 2; }

/* Typography */
.why-center-content { position: relative; z-index: 10; max-width: 700px; margin: 0 auto; }
.why-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; color: #286BFF; text-transform: uppercase; margin-bottom: 1.5rem; display: flex; align-items: center; }
.why-eyebrow::before, .why-eyebrow::after { content: ''; width: 20px; height: 2px; background-color: #F2B705; margin: 0 10px; display: inline-block; }
.why-heading { font-size: clamp(38px, 5vw, 68px); font-weight: 800; line-height: 0.95; letter-spacing: -0.045em; }
.why-heading .text-navy { color: #08111F; }
.why-heading .text-electric { color: #286BFF; }
.why-heading .text-yellow { color: #F2B705; }
.why-desc { font-size: 16px; color: #667085; line-height: 1.6; max-width: 600px; margin-top: 1.5rem; }

.why-divider { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 2rem; }
.why-div-line { width: 40px; height: 1px; background-color: #286BFF; opacity: 0.5; }
.why-div-dot { width: 6px; height: 6px; border-radius: 50%; background-color: #F2B705; }

/* Floating Portraits */
.why-portrait { position: absolute; width: 110px; height: 110px; border-radius: 50%; border: 4px solid #FFFFFF; box-shadow: 0 15px 30px rgba(8,17,31,0.08); z-index: 5; background-color: #FFF; animation: floatMicro 6s infinite alternate; }
.why-portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.port-curve-accent { position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(40,107,255,0.2); border-left-color: transparent; border-bottom-color: transparent; transform: rotate(45deg); pointer-events: none; }

.why-port-tl { top: 0; left: 15%; }
.why-port-tr { top: 5%; right: 15%; animation-delay: -2s; }
.why-port-bl { bottom: 10%; left: 20%; animation-delay: -4s; }
.why-port-br { bottom: 0; right: 15%; animation-delay: -1s; }

/* Value Cards Grid */
.why-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1400px; margin: 0 auto; position: relative; z-index: 5; }
.why-card { background: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.95); border-radius: 20px; box-shadow: 0 15px 45px rgba(8,17,31,0.06); backdrop-filter: blur(12px); padding: 35px 25px; transition: transform 0.4s ease; position: relative; display: flex; flex-direction: column; }
.why-card-num { position: absolute; top: 25px; left: 25px; font-size: 14px; font-weight: 800; color: #286BFF; }
.why-card-icon-wrapper { width: 80px; height: 80px; border-radius: 50%; background: #F0F5FF; border: 3px solid #FFFFFF; box-shadow: 0 8px 20px rgba(40,107,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #286BFF; margin-bottom: 1.5rem; position: relative; transition: transform 0.4s ease; }
.why-icon-dot { position: absolute; bottom: 8px; right: 5px; width: 8px; height: 8px; border-radius: 50%; background-color: #F2B705; box-shadow: 0 0 0 2px #FFFFFF; }
.why-card-title { font-size: 21px; font-weight: 750; color: #08111F; margin-bottom: 0.5rem; }
.why-card-line { width: 25px; height: 2px; background-color: #F2B705; margin: 0 auto 1rem; }
.why-card-desc { font-size: 14px; color: #667085; line-height: 1.6; margin: 0; }

.why-card:hover { transform: translateY(-6px); }
.why-card:hover .why-card-icon-wrapper { transform: scale(1.05); }

/* ---------------- INDUSTRY EXPERTISE (REDESIGN) ---------------- */
.section-industry-expertise {
    background-color: #F7F9FC;
    padding: 120px 0 130px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background Decorations */
.ind-bg-gradient {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(40,107,255,0.05) 0%, rgba(247,249,252,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.ind-bg-gradient.left { top: -200px; left: -300px; }
.ind-bg-gradient.right { bottom: -200px; right: -300px; }

.ind-dot-grid {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(40,107,255,0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.7;
}
.ind-dot-grid.top-left { top: 80px; left: 80px; }
.ind-dot-grid.top-right { top: 120px; right: 100px; }

.ind-curved-line {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(40,107,255,0.05);
    border-radius: 50%;
    z-index: 0;
}
.ind-curved-line.left { top: 20%; left: -200px; }
.ind-curved-line.right { bottom: 20%; right: -150px; }

.ind-yellow-dots .ind-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #F5B900;
    z-index: 0;
}
.ind-yellow-dots .d1 { top: 200px; left: 15%; }
.ind-yellow-dots .d2 { top: 150px; right: 25%; }
.ind-yellow-dots .d3 { bottom: 100px; right: 10%; }

/* Typography */
.ind-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #286BFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ind-eyebrow .eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #286BFF;
    margin-right: 12px;
}
.ind-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 0.94;
    letter-spacing: -0.05em;
    margin: 0;
}
.ind-heading .text-navy { color: #08111F; }
.ind-heading .text-electric { color: #286BFF; }
.ind-heading .text-yellow { color: #F5B900; }

.ind-accent-line {
    width: 55px;
    height: 5px;
    background-color: #F5B900;
    border-radius: 999px;
}

.ind-desc {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.7;
    color: #667085;
    margin-bottom: 60px; /* spacing to cards */
}

/* Cards Grid */
.ind-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-card {
    height: 245px;
    border-radius: 24px;
    padding: 32px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(8,17,31,0.06);
    box-shadow: 0 20px 50px rgba(8,17,31,0.06);
    position: relative;
    transition: transform 450ms ease, box-shadow 450ms ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    backdrop-filter: blur(10px);
}

.ind-card-num {
    font-size: 14px;
    font-weight: 800;
    color: #286BFF;
    margin-bottom: 12px;
}

.ind-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #EEF4FF;
    color: #286BFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    position: relative;
    transition: background-color 450ms ease, color 450ms ease;
}

.ind-icon-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background-color: #F5B900;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    transition: border-color 450ms ease;
}

.ind-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #08111F;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ind-card-desc {
    font-size: 14px;
    color: #667085;
    line-height: 1.5;
    margin: 0;
}

.ind-card-arrow {
    position: absolute;
    bottom: 32px;
    right: 32px;
    color: #286BFF;
    font-size: 18px;
    transition: transform 450ms ease;
}

/* Hover Effects */
.ind-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(40,107,255,0.08);
}
.ind-card:hover .ind-card-icon {
    background-color: #286BFF;
    color: #FFFFFF;
}
.ind-card:hover .ind-icon-dot {
    border-color: #286BFF;
}
.ind-card:hover .ind-card-arrow {
    transform: translateX(6px);
}

/* Technology Card (Special) */
.ind-card.tech-card {
    background: #08111F;
    border: 1px solid rgba(40,107,255,0.5);
    box-shadow: 0 20px 60px rgba(40,107,255,0.18);
    overflow: hidden;
}
.tech-circuit-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10h80v80h-80z' fill='none' stroke='rgba(40,107,255,0.05)' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(40,107,255,0.1)'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.tech-card > * {
    position: relative;
    z-index: 1;
}
.tech-card .ind-card-num, .tech-card .ind-card-arrow, .tech-card .ind-card-icon {
    color: #286BFF;
}
.tech-card .ind-card-icon {
    background-color: rgba(40,107,255,0.1);
    box-shadow: 0 0 20px rgba(40,107,255,0.2);
}
.tech-card .ind-card-title {
    color: #FFFFFF;
}
.tech-card .ind-card-desc {
    color: rgba(255,255,255,0.72);
}
.tech-card .ind-icon-dot {
    border-color: #08111F;
}
.tech-card:hover {
    box-shadow: 0 30px 60px rgba(40,107,255,0.3);
}
.tech-card:hover .ind-icon-dot {
    border-color: #286BFF;
}

/* ---------------- PROCESS SECTION (REDESIGN) ---------------- */
.section-process-editorial {
    background-color: #F6F9FD;
    padding: 130px 0 140px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background Elements */
.proc-bg-glow {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40,107,255,0.06) 0%, rgba(246,249,253,0) 70%);
    pointer-events: none;
    z-index: 0;
}
.proc-bg-glow.upper-right { width: 800px; height: 800px; top: -300px; right: -200px; }
.proc-bg-glow.timeline-glow { width: 100%; height: 300px; top: 50%; left: 0; transform: translateY(-50%); opacity: 0.5; }

.proc-dot-pattern.corner {
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: 50px;
    left: 50px;
    background-image: radial-gradient(rgba(40,107,255,0.15) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    z-index: 0;
}

.proc-yellow-dot.decorative {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #F5B900;
    border-radius: 50%;
    top: 20%;
    right: 15%;
    z-index: 0;
}

.proc-curved-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(40,107,255,0.04);
    border-radius: 50%;
    top: 30%;
    right: -300px;
    z-index: 0;
}

/* Header Area */
.proc-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #286BFF;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.proc-eyebrow-dot {
    width: 6px;
    height: 6px;
    background-color: #286BFF;
    border-radius: 50%;
    margin-right: 12px;
}
.proc-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin: 0;
}
.proc-heading .text-navy { color: #08111F; }
.proc-heading .text-electric { color: #286BFF; }
.proc-heading .text-yellow { color: #F5B900; }

.proc-accent-line {
    width: 60px;
    height: 5px;
    background-color: #F5B900;
    border-radius: 999px;
    margin-top: 15px;
}
.proc-desc {
    max-width: 550px;
    font-size: 16px;
    line-height: 1.7;
    color: #667085;
}

/* Timeline Container */
.proc-timeline-container {
    position: relative;
    margin-top: 80px;
    padding-top: 50px;
}

/* SVG Wave */
.proc-wave-svg {
    position: absolute;
    top: 135px; /* Aligned with nodes */
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    overflow: visible;
}
.proc-wave-path, .proc-wave-active {
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
}
.proc-wave-path {
    stroke: rgba(40,107,255,0.2);
}
.proc-wave-active {
    stroke: #286BFF;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 2s cubic-bezier(0.22, 1, 0.36, 1);
    filter: drop-shadow(0 0 8px rgba(40,107,255,0.4));
}
.proc-timeline-container.active .proc-wave-active {
    stroke-dashoffset: 0;
}
.proc-mobile-line {
    display: none;
}

/* Steps Wrapper */
.proc-steps-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 0 4%;
}

.proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 260px;
}

/* Icons */
.proc-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid rgba(40,107,255,0.12);
    box-shadow: 0 15px 35px rgba(8,17,31,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
    z-index: 3;
    transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms ease;
    transform: scale(0.85);
    opacity: 0;
}
.proc-timeline-container.active .proc-icon-wrapper {
    transform: scale(1);
    opacity: 1;
}
.proc-icon {
    font-size: 32px;
    color: #286BFF;
    transition: color 400ms ease;
}
.proc-icon-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background-color: #F5B900;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    z-index: 4;
}

/* Nodes */
.proc-node {
    width: 14px;
    height: 14px;
    background-color: #286BFF;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(40,107,255,0.08), 0 0 25px rgba(40,107,255,0.25);
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
    transition: box-shadow 500ms ease, background-color 500ms ease;
}

/* Connector Line (Virtual, covered by SVG in desktop) */
.proc-step::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 50%;
    width: 1px;
    height: 30px;
    background-color: rgba(40,107,255,0.3);
    transform: translateX(-50%);
    z-index: 1;
}
.proc-step::after {
    content: '';
    position: absolute;
    top: 134px;
    left: 50%;
    width: 1px;
    height: 40px;
    background-color: rgba(40,107,255,0.2);
    transform: translateX(-50%);
    z-index: 1;
}

/* Cards */
.proc-card {
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(8,17,31,0.06);
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(8,17,31,0.06);
    padding: 28px 26px;
    width: 100%;
    height: 250px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms ease, opacity 500ms ease;
    opacity: 0;
    transform: translateY(30px);
}
.proc-timeline-container.active .proc-card {
    opacity: 1;
    transform: translateY(0);
}

.proc-card-num {
    font-size: 14px;
    font-weight: 800;
    color: #286BFF;
    margin-bottom: 15px;
}
.proc-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #08111F;
    margin-bottom: 12px;
    text-transform: uppercase;
    transition: color 400ms ease;
}
.proc-card-line {
    width: 25px;
    height: 3px;
    background-color: #F5B900;
    border-radius: 2px;
    margin: 0 auto 15px;
}
.proc-card-desc {
    font-size: 14px;
    color: #667085;
    line-height: 1.7;
    margin: 0;
}

/* Staggered Animations */
.proc-timeline-container.active .step-1 .proc-card { transition-delay: 0.1s; }
.proc-timeline-container.active .step-2 .proc-card { transition-delay: 0.2s; }
.proc-timeline-container.active .step-3 .proc-card { transition-delay: 0.3s; }
.proc-timeline-container.active .step-4 .proc-card { transition-delay: 0.4s; }

.proc-timeline-container.active .step-1 .proc-icon-wrapper { transition-delay: 0.0s; }
.proc-timeline-container.active .step-2 .proc-icon-wrapper { transition-delay: 0.1s; }
.proc-timeline-container.active .step-3 .proc-icon-wrapper { transition-delay: 0.2s; }
.proc-timeline-container.active .step-4 .proc-icon-wrapper { transition-delay: 0.3s; }

/* Vertical Positioning for wave match */
.step-1 { transform: translateY(0); }
.step-2 { transform: translateY(-30px); }
.step-3 { transform: translateY(30px); }
.step-4 { transform: translateY(-10px); }

/* Hover / Active Interaction */
.proc-step.active .proc-card, .proc-step:hover .proc-card {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(8,17,31,0.08);
}
.proc-step.active .proc-icon-wrapper, .proc-step:hover .proc-icon-wrapper {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(40,107,255,0.15);
}
.proc-step.active .proc-node, .proc-step:hover .proc-node {
    box-shadow: 0 0 0 12px rgba(40,107,255,0.12), 0 0 35px rgba(40,107,255,0.4);
    background-color: #4F8CFF;
}
.proc-step.active .proc-card-title, .proc-step:hover .proc-card-title {
    color: #286BFF;
}


/* ---------------- PEOPLE SECTION (REDESIGN) ---------------- */
.section-people-redesign {
    background-color: #06101F;
    position: relative;
    width: 100vw;
    min-height: 780px;
    height: auto;
    padding: 80px 0 90px;
    overflow: hidden;
    z-index: 1;
}

/* Background Decor */
.bg-navy-gradient { position: absolute; inset: 0; background: #06101F; z-index: 0; }
.bg-people-watermark { position: absolute; top: 50%; right: 30%; transform: translateY(-50%); font-size: 280px; font-weight: 800; color: #FFFFFF; opacity: 0.02; z-index: 0; pointer-events: none; font-family: 'Manrope', sans-serif; }
.bg-people-radial-new { position: absolute; inset: 0; background: radial-gradient(circle at 72% 48%, rgba(40,107,255,0.12), transparent 40%); z-index: 0; pointer-events: none; }
.bg-people-organic-line { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.3; }
.bg-people-organic-line svg { width: 100%; height: 100%; }
.bg-people-dots-grid { position: absolute; width: 200px; height: 200px; right: 5%; top: 10%; background-image: radial-gradient(rgba(255,255,255,0.15) 2px, transparent 2px); background-size: 20px 20px; z-index: 0; }
.yellow-tiny-dot.d1 { position: absolute; width: 6px; height: 6px; background-color: #F5B900; border-radius: 50%; bottom: 30%; right: 15%; z-index: 0; animation: floatMicro 8s infinite alternate; }
.blue-tiny-dot.d2 { position: absolute; width: 8px; height: 8px; background-color: #286BFF; border-radius: 50%; top: 20%; right: 25%; z-index: 0; animation: floatMicro 6s infinite alternate reverse; }
.blue-tiny-dot.d3 { position: absolute; width: 5px; height: 5px; background-color: #286BFF; border-radius: 50%; bottom: 40%; right: 5%; z-index: 0; animation: floatMicro 4s infinite alternate; }

/* People Row */
.people-row { position: relative; z-index: 3; }

/* Left Content */
.people-left-col { max-width: 560px; }

.people-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #286BFF;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.people-eyebrow-dot { width: 6px; height: 6px; background-color: #286BFF; border-radius: 50%; margin-right: 10px; }
.people-eyebrow-line { width: 30px; height: 2px; background-color: #F5B900; margin-left: 15px; }

.people-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(54px, 5vw, 78px);
    line-height: 0.92;
    letter-spacing: -0.055em;
    color: #FFFFFF;
    margin: 0;
    max-width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 900ms cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.people-heading .text-electric { color: #286BFF; }
.people-heading .text-yellow { display: inline-block; width: 14px; height: 14px; background-color: #FFD21F; margin-left: 8px; }

.people-yellow-divider {
    width: 90px;
    height: 3px;
    background-color: #FFD21F;
    margin: 30px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 900ms cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.people-desc {
    max-width: 480px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.62);
    margin: 28px 0 0 0;
    opacity: 0;
    transform: translateY(25px);
    transition: all 900ms cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.people-cta-group {
    margin-top: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 900ms cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    gap: 14px;
}
.btn-people-primary {
    display: inline-flex;
    align-items: center;
    background-color: #286BFF;
    color: #FFFFFF;
    border-radius: 999px;
    height: 54px;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 400ms ease, box-shadow 400ms ease;
}
.btn-people-primary i { transition: transform 400ms ease; }
.btn-people-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(40,107,255,0.3); color: #FFFFFF; }
.btn-people-primary:hover i { transform: translateX(5px); }

.btn-people-secondary {
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 400ms ease;
}
.btn-people-secondary .play-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: background-color 400ms ease, border-color 400ms ease;
}
.btn-people-secondary:hover .play-circle { background-color: #286BFF; border-color: #286BFF; }
.btn-people-secondary:hover { color: #FFFFFF; }

/* Right Content (Final Photographic Composition) */
.people-right-col { display: flex; align-items: center; justify-content: flex-end; position: relative; height: 100%; padding-top: 20px; }
.people-visual-composition { position: relative; width: 950px; height: 640px; right: -60px; display: flex; align-items: center; justify-content: center; }

.people-main-image { position: absolute; inset: 0; border-radius: 40% 0 0 40%; overflow: hidden; opacity: 0; transform: scale(0.96); transition: all 1200ms cubic-bezier(0.16, 1, 0.3, 1) 0.1s; z-index: 2; }
.people-main-image.active, .reveal-up.active .people-main-image { opacity: 1; transform: scale(1); }
.people-bpo-img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms ease; }
.people-main-image:hover .people-bpo-img { transform: scale(1.05); }

.people-img-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, #06101F 0%, rgba(6,16,31,0.5) 25%, transparent 60%); pointer-events: none; }

.people-curve-outline { position: absolute; inset: -30px -10px -30px -30px; border-radius: 50% 0 0 50%; border: 2px solid rgba(40,107,255,0.8); border-right: none; box-shadow: -10px 0 30px rgba(40,107,255,0.2); z-index: 1; }

/* Floating Metric Cards */
.people-metric-card { position: absolute; display: flex; align-items: center; gap: 16px; background: rgba(8,18,32,0.88); border: 1px solid rgba(255,255,255,0.16); border-radius: 16px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 14px 24px; z-index: 5; opacity: 0; transform: translateY(20px); transition: all 800ms ease; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.people-metric-card.active, .reveal-up.active .people-metric-card { opacity: 1; transform: translateY(0); }

.metric-icon { width: 44px; height: 44px; background: #286BFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; flex-shrink: 0; }
.metric-text { display: flex; flex-direction: column; text-align: left; }
.mt-value { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; color: #FFFFFF; line-height: 1; margin-bottom: 2px; }
.mt-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; line-height: 1.2; text-transform: uppercase; }

.metric-top { top: -20px; right: 280px; transition-delay: 0.3s; }
.metric-left { bottom: 180px; left: -40px; transition-delay: 0.4s; }
.metric-right { bottom: 140px; right: 40px; transition-delay: 0.5s; }

/* Bottom Feature Panel */
.people-feature-panel { position: absolute; bottom: 10px; right: 8%; width: min(760px, calc(100vw - 80px)); max-width: 760px; box-sizing: border-box; height: 105px; background: rgba(7,18,34,0.88); border: 1px solid rgba(255,255,255,0.18); border-radius: 20px; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; z-index: 4; opacity: 0; transform: translateY(30px); transition: all 800ms ease 0.6s; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.people-feature-panel.active, .reveal-up.active .people-feature-panel { opacity: 1; transform: translateY(0); }

.fp-item { display: flex; align-items: center; justify-content: center; gap: 16px; min-width: 0; padding: 0 10px; position: relative; }
.fp-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 50px; background: rgba(255,255,255,0.15); }
.fp-icon { width: 48px; height: 48px; background: #286BFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; flex-shrink: 0; }
.fp-text { display: flex; flex-direction: column; text-align: left; min-width: 0; overflow: hidden; }
.fp-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 15px; color: #FFFFFF; text-transform: uppercase; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fp-sub { font-size: 12px; color: rgba(255,255,255,0.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Animations Trigger */
.people-left-col.active .people-eyebrow,
.people-left-col.active .people-heading,
.people-left-col.active .people-yellow-divider,
.people-left-col.active .people-desc,
.people-left-col.active .people-cta-group { opacity: 1; transform: translateY(0); }
.people-image-wrapper.active { opacity: 1; transform: translateY(-50%) scale(1); }
.people-feature-strip.active { opacity: 1; transform: translateY(0); }

/* Wave at bottom */
.people-bottom-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 5;
    pointer-events: none;
}


/* ---------------- TESTIMONIAL (Functional Slider) ---------------- */
.testimonial-section { background-color: var(--soft-bg); position: relative; padding: 130px 0; }
.testimonial-slider-container { position: relative; overflow: hidden; width: 100%; }

.test-slide { display: none; width: 100%; animation: fadeSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.test-slide.active { display: block; }
@keyframes fadeSlideIn { 0% { opacity: 0; transform: translateX(20px); } 100% { opacity: 1; transform: translateX(0); } }

.test-blob { width: 300px; height: 300px; top: -30px; left: 30px; z-index: 1; opacity: 0.5; }
.test-client-port { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; box-shadow: 0 20px 40px rgba(0,0,0,0.1); position: relative; z-index: 3; border: 4px solid var(--white); margin: 0 auto; display: block; }

.quote-mark { font-size: 140px; font-family: Georgia, serif; color: var(--electric-blue); opacity: 0.15; line-height: 0; position: absolute; top: 40px; left: -30px; z-index: 1; }
.testimonial-text { font-size: clamp(24px, 3vw, 36px); line-height: 1.5; font-weight: 400; color: var(--primary); position: relative; z-index: 2; margin-bottom: 2rem; max-width: 800px; }
.test-name { font-size: 18px; font-weight: 800; color: var(--primary); margin: 0; }
.test-role { font-size: 13px; color: var(--muted); }

.slider-controls { margin-top: 3rem; display: flex; align-items: center; gap: 20px; }
.nav-circle {
    width: 45px; height: 45px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center;
    color: var(--primary); background: transparent; transition: var(--transition-fast); cursor: pointer;
}
.nav-circle:hover { background: var(--electric-blue); color: var(--white); border-color: var(--electric-blue); }
.slider-indicator { font-size: 14px; font-weight: 700; color: var(--muted); letter-spacing: 2px; }

/* ---------------- FINAL CTA SECTION (REDESIGN) ---------------- */
.cta-section { position: relative; background-color: #08111F; min-height: 520px; padding: 120px 0 130px; text-align: center; overflow-x: hidden; display: flex; align-items: center; justify-content: center; z-index: 1; }

.cta-bg { position: absolute; inset: 0; background: linear-gradient(180deg, #08111F 0%, #04090F 100%); z-index: 0; }
.cta-glow-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 600px; background: radial-gradient(circle, rgba(40,107,255,0.16) 0%, transparent 60%); z-index: 0; pointer-events: none; }
.cta-glow-bottom { position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 1000px; height: 300px; background: radial-gradient(circle, rgba(40,107,255,0.08) 0%, transparent 70%); z-index: 0; pointer-events: none; }

.cta-watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Manrope', sans-serif; font-size: clamp(220px, 25vw, 420px); font-weight: 800; color: rgba(255,255,255,0.025); z-index: 0; pointer-events: none; animation: watermarkFloat 15s ease-in-out infinite alternate; opacity: 0; }
.cta-section.reveal-up.active .cta-watermark { opacity: 1; transition: opacity 1200ms ease; }

.cta-orbit { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 1440px; height: 600px; z-index: 0; pointer-events: none; opacity: 0; animation: orbitFloat 20s linear infinite; }
.cta-section.reveal-up.active .cta-orbit { opacity: 1; transition: opacity 1200ms ease 0.2s; }

.cta-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.particle { position: absolute; background: #FFD21F; border-radius: 50%; animation: particleFloat 12s ease-in-out infinite alternate; }
.p-1 { width: 3px; height: 3px; top: 20%; left: 20%; animation-delay: 0s; }
.p-2 { width: 2px; height: 2px; top: 70%; left: 80%; animation-delay: -3s; }
.p-3 { width: 4px; height: 4px; top: 30%; right: 25%; animation-delay: -6s; }
.p-4 { width: 2px; height: 2px; bottom: 30%; left: 30%; background: #286BFF; animation-delay: -9s; }

.cta-content-wrapper { position: relative; z-index: 3; }

.cta-eyebrow { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 24px; opacity: 0; transform: translateY(20px); transition: all 700ms cubic-bezier(0.16, 1, 0.3, 1) 0.1s; }
.cta-eyebrow-line { width: 60px; height: 4px; background-color: #FFD21F; border-radius: 999px; }
.cta-eyebrow-dot { width: 4px; height: 4px; background-color: #FFD21F; border-radius: 50%; }
.cta-section.reveal-up.active .cta-eyebrow { opacity: 1; transform: translateY(0); }

.cta-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(48px, 6vw, 82px); line-height: 0.94; letter-spacing: -0.055em; color: #FFFFFF; text-align: center; margin: 0 auto; max-width: 900px; opacity: 0; transform: translateY(20px) scale(0.98); transition: all 800ms cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.cta-section.reveal-up.active .cta-title { opacity: 1; transform: translateY(0) scale(1); }
.cta-title-dot { display: inline-block; width: 14px; height: 14px; background-color: #FFD21F; border-radius: 50%; margin-left: 8px; }

.cta-description { font-family: 'Manrope', sans-serif; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.62); text-align: center; max-width: 620px; margin: 28px auto 0; opacity: 0; transform: translateY(20px); transition: all 800ms cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
.cta-section.reveal-up.active .cta-description { opacity: 1; transform: translateY(0); }

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 40px; opacity: 0; transform: translateY(20px); transition: all 800ms cubic-bezier(0.16, 1, 0.3, 1) 0.4s; }
.cta-section.reveal-up.active .cta-actions { opacity: 1; transform: translateY(0); }

.cta-primary { display: inline-flex; align-items: center; justify-content: center; background-color: #286BFF; color: #FFFFFF; border: none; border-radius: 999px; height: 54px; padding: 0 30px; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; box-shadow: 0 12px 35px rgba(40,107,255,0.30); transition: all 450ms ease; }
.cta-primary:hover { color: #FFFFFF; transform: translateY(-4px); box-shadow: 0 18px 45px rgba(40,107,255,0.45); }
.cta-primary .arrow { transition: transform 450ms ease; }
.cta-primary:hover .arrow { transform: translateX(5px); }

.cta-secondary { display: inline-flex; align-items: center; justify-content: center; background-color: transparent; border: 1px solid rgba(255,255,255,0.25); color: #FFFFFF; border-radius: 999px; height: 54px; padding: 0 28px; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; transition: all 450ms ease; }
.cta-secondary:hover { color: #FFFFFF; border-color: #286BFF; background-color: rgba(40,107,255,0.08); }

.cta-divider { position: absolute; bottom: -1px; left: 0; width: 100%; height: 100px; z-index: 5; pointer-events: none; }

@keyframes watermarkFloat { 0% { transform: translate(-50%, -50%); } 100% { transform: translate(-50%, calc(-50% - 8px)); } }
@keyframes orbitFloat { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(2deg); } }
@keyframes particleFloat { 0% { transform: translateY(0); } 100% { transform: translateY(-4px); } }

@media (prefers-reduced-motion: reduce) {
    .cta-watermark, .cta-orbit, .particle, .cta-title, .cta-eyebrow, .cta-description, .cta-actions { animation: none; transition: none; opacity: 1; transform: none; }
}

/* ---------------- FOOTER SECTION (REDESIGN) ---------------- */
.footer-section { position: relative; background: linear-gradient(180deg, #050B14 0%, #081525 100%); color: #FFFFFF; padding: 100px 0 30px; overflow-x: hidden; z-index: 1; }

.footer-wave { position: absolute; top: -1px; left: 0; width: 100%; height: 120px; z-index: 0; pointer-events: none; }

.footer-watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Manrope', sans-serif; font-size: clamp(250px, 30vw, 500px); font-weight: 800; color: rgba(40,107,255,0.025); z-index: 0; pointer-events: none; white-space: nowrap; animation: watermarkFloat 20s ease-in-out infinite alternate; }

.footer-orbit { position: absolute; top: 10%; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1440px; height: 800px; z-index: 0; pointer-events: none; animation: orbitFloat 25s linear infinite; }

.footer-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.f-particle { position: absolute; background: rgba(40,107,255,0.4); border-radius: 50%; animation: particleFloat 15s ease-in-out infinite alternate; }
.fp-1 { width: 3px; height: 3px; top: 30%; left: 10%; }
.fp-2 { width: 4px; height: 4px; top: 60%; right: 15%; background: #FFD21F; animation-delay: -4s; }
.fp-3 { width: 2px; height: 2px; bottom: 20%; left: 40%; animation-delay: -8s; }

.footer-intro { position: relative; z-index: 3; margin-bottom: 90px; }
.footer-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.fe-dot { width: 6px; height: 6px; background-color: #286BFF; border-radius: 50%; }
.fe-text { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; color: #FFFFFF; }
.footer-huge-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(48px, 6vw, 82px); line-height: 0.92; letter-spacing: -0.05em; color: #FFFFFF; margin: 0; }
.ft-dot { display: inline-block; width: 14px; height: 14px; background-color: #FFD21F; border-radius: 2px; margin-left: 8px; }
.footer-title-line { width: 60px; height: 4px; background-color: #FFD21F; border-radius: 999px; margin-top: 30px; }

.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr; gap: 60px; position: relative; z-index: 3; }

.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-logo .footer-logo-img { height: 42px; width: auto; object-fit: contain; display: block; }
.brand-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); margin-bottom: 30px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid rgba(40,107,255,0.35); border-radius: 50%; color: #FFFFFF; text-decoration: none; font-size: 18px; transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1); }
.footer-socials a:hover { background-color: #286BFF; border-color: #286BFF; color: #FFFFFF; transform: translateY(-3px); }

.footer-column-title { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: 0.05em; color: #FFFFFF; margin-bottom: 24px; text-transform: uppercase; }
.ct-dot { width: 4px; height: 4px; background-color: #FFD21F; border-radius: 50%; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 16px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 15px; transition: color 400ms cubic-bezier(0.22, 1, 0.36, 1); }
.footer-links a:hover { color: #286BFF; }

.fc-item { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.fc-icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid rgba(40,107,255,0.35); background-color: rgba(40,107,255,0.08); border-radius: 50%; color: #FFFFFF; font-size: 16px; flex-shrink: 0; transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1); }
.fc-item:hover .fc-icon { transform: scale(1.05); }
.fc-item a, .fc-item span { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
.fc-item a:hover { color: #286BFF; }

.footer-availability { margin-top: 30px; }
.fa-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.fa-text { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); }
.fa-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border: 1px solid #286BFF; border-radius: 999px; font-size: 11px; font-weight: 700; color: #FFFFFF; box-shadow: 0 0 15px rgba(40,107,255,0.15); }
.fa-dot { width: 6px; height: 6px; background-color: #00E676; border-radius: 50%; box-shadow: 0 0 8px #00E676; }
.fa-desc { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }

.footer-bottom { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 30px; margin-top: 60px; font-size: 12px; color: rgba(255,255,255,0.45); }
.fb-right { display: flex; align-items: center; gap: 16px; }
.fb-right a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 400ms ease; }
.fb-right a:hover { color: #286BFF; }
.fb-divider { width: 1px; height: 12px; background-color: rgba(255,255,255,0.1); }

@media (prefers-reduced-motion: reduce) {
    .footer-watermark, .footer-orbit, .f-particle { animation: none; transition: none; opacity: 1; transform: none; }
}

/* ==========================================================================
   ABOUT US PAGE REDESIGN V2 - EDITORIAL SCALE
   ========================================================================== */

/* GLOBAL ABOUT STYLES */
.about-page-v2 { font-family: 'Manrope', sans-serif; background-color: #F6F8FC; color: #07111F; overflow-x: hidden; }
.abv2-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 30px; }
.eyebrow-line { width: 50px; height: 2px; background-color: #286BFF; }
.abv2-eyebrow.dark .eyebrow-line { background-color: #07111F; }
.abv2-eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 0.15em; color: #286BFF; text-transform: uppercase; }
.abv2-eyebrow.dark { color: #07111F; }
.abv2-section-heading { font-size: clamp(48px, 6vw, 80px); font-weight: 800; line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 40px; }
.dark-text { color: #07111F; }
.text-electric { color: #286BFF; }

.abv2-btn-primary { display: inline-flex; align-items: center; justify-content: center; background-color: #286BFF; color: #FFFFFF; border: none; border-radius: 999px; height: 64px; padding: 0 40px; font-size: 14px; font-weight: 800; letter-spacing: 0.05em; text-decoration: none; box-shadow: 0 15px 35px rgba(40,107,255,0.25); transition: all 400ms ease; }
.abv2-btn-primary:hover { color: #FFFFFF; transform: translateY(-4px); box-shadow: 0 20px 45px rgba(40,107,255,0.35); }
.abv2-btn-secondary { display: inline-flex; align-items: center; justify-content: center; background-color: transparent; border: 1px solid rgba(7,17,31,0.2); color: #07111F; border-radius: 999px; height: 64px; padding: 0 40px; font-size: 14px; font-weight: 800; letter-spacing: 0.05em; text-decoration: none; transition: all 400ms ease; }
.abv2-btn-secondary:hover { border-color: #286BFF; background-color: rgba(40,107,255,0.05); color: #286BFF; }

/* 01. HERO */
.abv2-hero { min-height: 95vh; display: flex; align-items: center; background-color: #F6F8FC; position: relative; padding: 120px 0 0 0; }
.abv2-hero-container { display: flex; width: 100%; align-items: center; }
.abv2-hero-content { width: 50%; padding-left: 8vw; padding-right: 4vw; position: relative; z-index: 2; }
.abv2-hero-heading { font-size: clamp(60px, 7vw, 90px); font-weight: 800; line-height: 0.9; letter-spacing: -0.05em; color: #07111F; margin-bottom: 40px; }
.abv2-hero-desc { font-size: 18px; line-height: 1.6; color: rgba(7,17,31,0.65); margin-bottom: 50px; max-width: 500px; }
.abv2-hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.abv2-hero-visual { width: 50%; height: 95vh; position: relative; }
.abv2-hero-img { width: 100%; height: 100%; object-fit: cover; border-radius: 200px 0 0 200px; box-shadow: -20px 0 60px rgba(7,17,31,0.08); }
.abv2-hero-outline { position: absolute; top: 20px; left: -20px; width: 100%; height: calc(100% - 40px); border: 1px solid #286BFF; border-radius: 200px 0 0 200px; z-index: -1; opacity: 0.4; }

.abv2-badge { position: absolute; background: #FFFFFF; border-radius: 999px; padding: 12px 24px 12px 12px; display: flex; align-items: center; gap: 16px; box-shadow: 0 20px 40px rgba(7,17,31,0.08); animation: badgeFloat 6s ease-in-out infinite alternate; z-index: 3; }
.badge-1 { top: 15%; left: -60px; }
.badge-2 { bottom: 25%; right: 40px; animation-delay: -2s; }
.badge-3 { bottom: 10%; left: -40px; animation-delay: -4s; }
.badge-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background-color: rgba(40,107,255,0.08); color: #286BFF; border-radius: 50%; font-size: 22px; }
.badge-icon-yellow { background-color: rgba(244,196,0,0.15); color: #F4C400; }
.badge-text { font-size: 11px; font-weight: 700; color: rgba(7,17,31,0.6); letter-spacing: 0.1em; line-height: 1.3; }
.badge-text strong { display: block; font-size: 20px; font-weight: 800; color: #07111F; letter-spacing: -0.02em; margin-bottom: 2px; }
@keyframes badgeFloat { 0% { transform: translateY(0px); } 100% { transform: translateY(-15px); } }

/* 02. STORY */
.abv2-story { padding: 180px 0; background-color: #FFFFFF; position: relative; overflow: hidden; }
.abv2-story-watermark { position: absolute; top: 0; left: -2vw; font-size: 280px; font-weight: 800; color: rgba(7,17,31,0.02); line-height: 0.8; z-index: 0; pointer-events: none; letter-spacing: -0.05em; }
.abv2-story-text-col { position: relative; z-index: 2; padding-right: 4vw; }
.abv2-lead { font-size: 24px; font-weight: 600; line-height: 1.5; color: #286BFF; margin-bottom: 30px; }
.abv2-body { font-size: 18px; line-height: 1.7; color: rgba(7,17,31,0.65); margin-bottom: 24px; }
.abv2-story-img { width: 120%; height: 800px; object-fit: cover; border-radius: 0 200px 0 200px; transform: translateX(2vw); box-shadow: 0 30px 60px rgba(7,17,31,0.1); }
.abv2-story-label { position: absolute; bottom: 80px; left: -40px; background: #07111F; color: #FFFFFF; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; padding: 20px 32px; border-radius: 999px; display: flex; align-items: center; box-shadow: 0 20px 40px rgba(7,17,31,0.15); z-index: 3; }
.abv2-story-label .dot { width: 6px; height: 6px; background-color: #F4C400; border-radius: 50%; margin-right: 12px; }

/* 03. PHILOSOPHY */
.abv2-philosophy { padding: 180px 0; background-color: #07111F; color: #FFFFFF; }
.abv2-philosophy-list { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 80px; }
.abv2-phil-row { display: flex; align-items: center; padding: 60px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); transition: background-color 0.5s ease; cursor: pointer; }
.abv2-phil-row:hover { background-color: rgba(40,107,255,0.03); }
.phil-number { font-size: 24px; font-weight: 800; color: #286BFF; width: 120px; flex-shrink: 0; }
.phil-title-col { flex: 1; }
.phil-desc-col { flex: 1; padding: 0 40px; }
.phil-arrow { font-size: 32px; color: rgba(255,255,255,0.15); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); width: 60px; text-align: right; }
.abv2-phil-row .phil-title { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; margin: 0; transition: color 0.5s ease; }
.abv2-phil-row:hover .phil-title { color: #286BFF; }
.abv2-phil-row .phil-desc-col p { font-size: 18px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.6; transition: color 0.5s ease; }
.abv2-phil-row:hover .phil-desc-col p { color: rgba(255,255,255,0.8); }
.abv2-phil-row:hover .phil-arrow { color: #F4C400; transform: translateX(15px); }

/* 04. MISSION / VISION */
.abv2-mission-vision { padding: 40px 20px; background-color: #F6F8FC; }
.abv2-mv-container { display: grid; grid-template-columns: 55% 45%; border-radius: 40px; overflow: hidden; position: relative; min-height: 600px; box-shadow: 0 30px 60px rgba(7,17,31,0.05); }
.abv2-mv-panel { position: relative; padding: 120px 80px; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.mv-dark { background-color: #07111F; color: #FFFFFF; }
.mv-light { background-color: #EAF1FF; color: #07111F; }
.mv-bg-text { position: absolute; top: 20px; left: 20px; font-size: clamp(100px, 15vw, 250px); font-weight: 800; line-height: 0.8; opacity: 0.03; pointer-events: none; letter-spacing: -0.05em; }
.mv-content { position: relative; z-index: 2; max-width: 500px; }
.mv-heading { font-size: clamp(40px, 5vw, 56px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; margin-bottom: 30px; }
.mv-desc { font-size: 20px; line-height: 1.6; opacity: 0.7; }
.mv-connector-line { position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%); width: 2px; height: 120px; background-color: #286BFF; z-index: 5; opacity: 0.3; }

/* 05. VALUES MASONRY */
.abv2-values { padding: 180px 0; background-color: #F6F8FC; }
.abv2-values-masonry { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.val-item { background: #FFFFFF; border-radius: 30px; padding: 60px 50px; display: flex; flex-direction: column; transition: transform 0.4s ease, box-shadow 0.4s ease; box-shadow: 0 10px 30px rgba(7,17,31,0.02); }
.val-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(7,17,31,0.06); }
.val-large { grid-column: span 7; }
.val-sm { grid-column: span 5; }
.val-ex { background: #286BFF; color: #FFFFFF; }
.val-perf { background: #07111F; color: #FFFFFF; }
.val-num { font-size: 16px; font-weight: 800; letter-spacing: 0.1em; margin-bottom: auto; padding-bottom: 20px; color: rgba(7,17,31,0.3); border-bottom: 2px solid rgba(7,17,31,0.1); }
.val-ex .val-num, .val-perf .val-num { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.2); }
.val-item .val-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.03em; margin: 40px 0 15px; }
.val-item .val-desc { font-size: 18px; line-height: 1.5; opacity: 0.7; margin: 0; }

/* 06. PEOPLE (ART DIRECTED) */
.abv2-people { padding: 180px 0; background-color: #FFFFFF; }
.abv2-people-collage { position: relative; width: 100%; height: 750px; }
.p-img-main { position: absolute; width: 450px; height: 600px; top: 0; left: 150px; border-radius: 40px 200px 40px 40px; box-shadow: 0 30px 60px rgba(7,17,31,0.08); z-index: 1; }
.p-img-sup1 { position: absolute; width: 320px; height: 400px; bottom: 0; left: 0; border-radius: 100px 40px 40px 40px; box-shadow: 0 20px 40px rgba(7,17,31,0.12); z-index: 2; }
.p-img-sup2 { position: absolute; width: 350px; height: 350px; top: 250px; right: 0; border-radius: 40px 40px 150px 40px; box-shadow: 0 25px 50px rgba(7,17,31,0.1); z-index: 3; }
.abv2-people-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.p-label { position: absolute; bottom: 20px; left: -20px; background: #07111F; color: #FFFFFF; font-size: 10px; font-weight: 800; letter-spacing: 0.15em; padding: 12px 24px; border-radius: 999px; box-shadow: 0 15px 30px rgba(7,17,31,0.15); z-index: 5; white-space: nowrap; }

/* 07. PEOPLE POWER STATEMENT */
.abv2-statement { position: relative; padding: 220px 0; background-color: #07111F; }
.statement-bg { position: absolute; inset: 0; background-position: center; background-size: cover; z-index: 1; }
.statement-gradient { position: absolute; inset: 0; background: linear-gradient(90deg, #07111F 10%, rgba(7,17,31,0.7) 60%, rgba(7,17,31,0.3) 100%); z-index: 2; }
.statement-giant-text { position: absolute; top: 50%; left: -5vw; transform: translateY(-50%); font-size: clamp(200px, 30vw, 500px); font-weight: 800; color: rgba(255,255,255,0.03); z-index: 2; pointer-events: none; margin: 0; line-height: 0.8; letter-spacing: -0.05em; }
.statement-pill { display: inline-flex; align-items: center; gap: 12px; padding: 16px 32px; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.8); letter-spacing: 0.15em; backdrop-filter: blur(10px); background: rgba(7,17,31,0.2); }

/* 08. FINAL CTA */
.abv2-cta { padding: 150px 0; background-color: #050B14; position: relative; overflow: hidden; }
.cta-radial-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(40,107,255,0.1) 0%, transparent 70%); z-index: 1; pointer-events: none; }


/* ---------------- REVEAL ANIMATIONS ---------------- */
.reveal-up { opacity: 0; transform: translateY(30px); transition: opacity var(--transition-medium), transform var(--transition-medium); }
.reveal-up.active { opacity: 1; transform: translateY(0); }
.reveal-line { overflow: hidden; display: block; }
.reveal-line span { display: block; transform: translateY(100%); opacity: 0; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-section.loaded .reveal-line span { transform: translateY(0); opacity: 1; }
/* Homepage hero: clip-path circle reveal */
.hero-section .reveal-mask { clip-path: circle(0% at 50% 50%); transition: clip-path 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-section.loaded .reveal-mask { clip-path: circle(100% at 50% 50%); }
/* Inner pages: standard opacity/transform reveal */
.reveal-mask:not(.hero-section .reveal-mask) { clip-path: none; opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-mask.active:not(.hero-section .reveal-mask) { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* =======================================
   THREE PERCENT PAKISTAN - GLOBAL UTILITIES
   ======================================= */
.accent-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--electric-blue);
}

.bg-deep-blue { background-color: var(--deep-blue); color: var(--white); }
.bg-soft-blue { background-color: var(--soft-blue); }
.text-deep-blue { color: var(--deep-blue); }
.text-electric { color: var(--electric-blue); }

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--electric-blue);
    display: inline-block;
    margin-bottom: 1rem;
}

.btn-premium-primary {
    background-color: var(--electric-blue);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
    border: 1px solid transparent;
    text-decoration: none;
}
.btn-premium-primary:hover {
    background-color: var(--bright-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 159, 243, 0.3);
}

.premium-section {
    padding: 100px 0;
}

.editorial-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.interactive-row {
    display: flex;
    align-items: center;
    padding: 40px;
    border-bottom: 1px solid rgba(7, 27, 51, 0.1);
    transition: var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.interactive-row:hover {
    background-color: var(--soft-blue);
    padding-left: 60px;
}
.interactive-row .arrow {
    transition: var(--transition-fast);
}
.interactive-row:hover .arrow {
    transform: translateX(10px);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(7, 27, 51, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 10;
}
.floating-badge .val { font-size: 24px; font-weight: 800; color: var(--electric-blue); }
.floating-badge .lbl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dark); }

/* ======================================================
   GLOBAL INNER-PAGE UTILITY CLASSES
   ====================================================== */

/* Background Utilities */
.bg-deep-blue { background-color: var(--deep-blue) !important; }
.bg-dark-navy  { background-color: var(--deep-blue) !important; }
.bg-light-bg   { background-color: var(--light-bg) !important; }
.bg-soft-blue  { background-color: var(--soft-blue) !important; }

/* Text Color Utilities */
.text-electric { color: var(--electric-blue) !important; }
.text-deep-blue { color: var(--deep-blue) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }

/* Accent Serif (Playfair Display italic for keyword emphasis) */
.accent-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
}

/* Z-Index Helper */
.z-index-3 { z-index: 3; }

/* Hero Description */
.hero-description {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 520px;
}

/* NOTE: reveal-up, reveal-line, reveal-mask are defined above (lines ~1274-1280)
   using the .active class trigger — do not redefine here.
   Inner pages share the same animation system via main.js IntersectionObserver. */



/* Editorial Split — responsive collapse */
@media (max-width: 991px) {
    .editorial-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .editorial-split .order-lg-1 { order: 2; }
    .editorial-split .order-lg-2 { order: 1; }
}

/* Contact Info Card (used across contact, job-details) */
.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-fast);
    border: 1px solid rgba(7, 27, 51, 0.05);
}
.contact-info-card:hover {
    box-shadow: 0 20px 40px rgba(7, 27, 51, 0.06);
    transform: translateY(-4px);
}

/* Premium form success message */
.success-message {
    display: none;
    background: var(--electric-blue);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    animation: fadeSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Navbar Custom Override */
.navbar-custom .nav-link.active {
    color: var(--electric-blue) !important;
    font-weight: 700;
}

/* btn-custom-outline */
.btn-custom-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
    letter-spacing: 0.01em;
}
.btn-custom-outline:hover {
    background-color: var(--white);
    color: var(--deep-blue);
    border-color: var(--white);
}

/* ====================================================
   CLEAN INNER PAGE HERO (Centered Editorial Typography)
==================================================== */
.inner-page-hero {
    background: linear-gradient(135deg, #06101F 0%, #0B1A2E 60%, #071933 100%);
    color: var(--white);
    position: relative;
    padding: 170px 0 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.inner-page-hero .hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(100px, 18vw, 240px);
    font-weight: 800;
    color: rgba(59, 159, 243, 0.03);
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 0;
    font-family: var(--font-heading);
    white-space: nowrap;
    text-transform: uppercase;
}

.inner-page-hero .inner-hero-container {
    position: relative;
    z-index: 3;
    max-width: 960px;
    margin: 0 auto;
}

.inner-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(59, 159, 243, 0.08);
    border: 1px solid rgba(59, 159, 243, 0.22);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin-bottom: 24px;
}

.inner-hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-yellow, #FFD21F);
    display: inline-block;
    box-shadow: 0 0 8px rgba(255, 210, 31, 0.6);
}

.inner-hero-title {
    font-size: clamp(40px, 5.5vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 24px;
}

.inner-hero-title span.text-electric {
    color: var(--electric-blue);
}

.inner-hero-desc {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    max-width: 720px;
    margin: 0 auto 36px;
}

.inner-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 10px;
}

.inner-page-hero .svg-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 4;
}

@media (max-width: 767px) {
    .inner-page-hero {
        padding: 140px 0 80px;
    }
    .inner-hero-title {
        font-size: clamp(34px, 9vw, 48px);
    }
    .inner-hero-desc {
        font-size: 15px;
    }
}

