/* ============================================================
   SHIV TECHNOLOGIES — Premium Stylesheet
   ============================================================
   Design System: White-Dominant / Brand Navy Accent / Gold
   Typography: Inter + DM Sans (Google Fonts)
   Inspired by: Apple, Stripe, Vercel, Linear
   ============================================================ */

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
    /* Brand Colors (from logo) */
    --brand: #1B3A5C;
    --brand-dark: #0F2137;
    --brand-light: #2A5580;
    --brand-extra-light: #EBF1F7;
    --brand-tint: #F5F8FB;
    
    /* Brand Gold (from logo trishul) */
    --brand-gold: #C8963E;
    --brand-gold-light: #D4AF37;
    --brand-gold-dark: #A88B3A;
    --brand-gold-glow: rgba(200, 150, 62, 0.15);
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --gray-50: #F6F8FA;
    --gray-100: #EEF1F5;
    --gray-200: #DDE3EA;
    --gray-300: #C1CAD4;
    --gray-400: #8896A4;
    --gray-500: #5A6977;
    --gray-600: #3D4F5F;
    --gray-700: #2C3E50;
    --gray-800: #1E2D3D;
    --gray-900: #1A1F2B;
    
    /* Status */
    --success: #059669;
    --warning: #D97706;
    --danger: #DC2626;
    --info: #2563EB;
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #1B3A5C 0%, #2A5580 100%);
    --gradient-gold: linear-gradient(135deg, #C8963E 0%, #D4AF37 100%);
    --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #F5F8FB 50%, #EBF1F7 100%);
    --gradient-hero-dark: linear-gradient(135deg, #0F2137 0%, #1B3A5C 50%, #2A5580 100%);
    --gradient-card-hover: linear-gradient(135deg, #FFFFFF 0%, #F5F8FB 100%);
    --gradient-text: linear-gradient(135deg, #1B3A5C 0%, #2A5580 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    
    /* Shadows (navy-tinted, not pure black) */
    --shadow-sm: 0 1px 3px rgba(27, 58, 92, 0.06);
    --shadow-md: 0 4px 16px rgba(27, 58, 92, 0.08);
    --shadow-lg: 0 8px 32px rgba(27, 58, 92, 0.10);
    --shadow-xl: 0 16px 48px rgba(27, 58, 92, 0.12);
    --shadow-brand: 0 4px 24px rgba(27, 58, 92, 0.20);
    --shadow-gold: 0 4px 24px rgba(200, 150, 62, 0.15);
    --shadow-glow: 0 0 40px rgba(27, 58, 92, 0.08);
    
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-sm: 60px 0;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ── Global Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
}

/* Selection Color */
::selection {
    background: var(--brand);
    color: var(--white);
}

::-moz-selection {
    background: var(--brand);
    color: var(--white);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-50);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
}

a {
    color: var(--brand);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--brand-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Text Utilities ── */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold { color: var(--brand-gold) !important; }
.text-accent { color: var(--brand) !important; }

/* ── Section Titles ── */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--brand-extra-light);
    border: 1px solid rgba(27, 58, 92, 0.1);
    border-radius: var(--radius-full);
    color: var(--brand);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    position: relative;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ── Simple Page Loader ── */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.6s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.5);
}

.loader-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Two arc lines on opposite sides, rotating clockwise */
.loader-ring::before,
.loader-ring::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: rotate360 1.2s linear infinite;
}

.loader-ring::before {
    border-top-color: var(--brand);
    border-bottom-color: var(--brand);
}

.loader-ring::after {
    border-left-color: var(--brand-gold);
    border-right-color: var(--brand-gold);
    animation-duration: 1.8s;
    animation-direction: reverse;
}

.loader-logo {
    width: 60px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(27, 58, 92, 0.08);
    border-bottom: 1px solid var(--gray-200);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    height: 90px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
    height: 80px;
}

.navbar-brand span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--gray-600) !important;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 20px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    width: 28px;
    height: 2px;
    background: var(--gray-900);
    display: block;
    position: relative;
    transition: var(--transition);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--gray-900);
    left: 0;
    transition: var(--transition);
}

.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gradient-brand);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand);
    color: var(--white) !important;
}

/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Animated grid background */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(27, 58, 92, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 58, 92, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--brand);
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--brand-gold);
    bottom: 10%;
    left: -5%;
    animation-delay: -5s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: var(--brand-light);
    top: 50%;
    left: 40%;
    animation-delay: -10s;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--gray-500);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero right side illustration */
.hero-illustration {
    position: relative;
    z-index: 2;
}

.hero-illustration-img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-lg);
    position: relative;
}

.hero-code-block {
    background: var(--brand-dark);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(27, 58, 92, 0.3);
    border-radius: var(--radius-md);
    padding: 25px;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--gray-300);
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.code-dots {
    display: flex;
    gap: 6px;
    padding: 10px 15px;
    position: relative;
    z-index: 1;
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dot:nth-child(1) { background: #ef4444; }
.code-dot:nth-child(2) { background: #f59e0b; }
.code-dot:nth-child(3) { background: #10b981; }

.code-content {
    padding-top: 15px;
    line-height: 2;
}

.code-keyword { color: #c084fc; }
.code-function { color: #60a5fa; }
.code-string { color: #34d399; }
.code-comment { color: #64748b; }
.code-variable { color: #f59e0b; }

/* Floating badge elements around hero */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-900);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}

.floating-badge i {
    color: var(--brand-gold);
    font-size: 1.2rem;
}

.floating-badge-1 {
    top: 15%;
    right: 5%;
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge-2 {
    bottom: 25%;
    right: 10%;
    animation: floatBadge 5s ease-in-out infinite 1s;
}

.floating-badge-3 {
    bottom: 10%;
    left: 55%;
    animation: floatBadge 4.5s ease-in-out infinite 0.5s;
}

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-brand);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s ease;
    z-index: -1;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-brand);
    color: var(--white);
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    border-color: var(--brand);
    background: var(--brand);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-brand);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--white);
}

/* ════════════════════════════════════════
   CLIENT LOGOS SECTION
   ════════════════════════════════════════ */
.clients-section {
    padding: 60px 0;
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    opacity: 0.4;
    transition: var(--transition);
    filter: grayscale(100%);
}

.client-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.client-logo-item img {
    max-height: 100px;
    width: auto;
}

/* ════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════ */
.about-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--brand-extra-light);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-brand);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-brand);
}

.about-experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--brand-extra-light);
    border: 1px solid rgba(27, 58, 92, 0.08);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--brand);
    background: rgba(27, 58, 92, 0.04);
    box-shadow: var(--shadow-sm);
}

.about-feature i {
    color: var(--brand);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════ */
.services-section {
    padding: var(--section-padding);
    position: relative;
    background: var(--brand-extra-light);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(27, 58, 92, 0.15);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-extra-light);
    border: 1px solid rgba(27, 58, 92, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--brand);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-brand);
    border-color: transparent;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--gray-900);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--gray-500);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 14px;
    color: var(--brand-light);
}

/* ════════════════════════════════════════
   WHY CHOOSE US / STATISTICS
   ════════════════════════════════════════ */
.stats-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231B3A5C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-brand);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(27, 58, 92, 0.15);
    box-shadow: var(--shadow-lg);
}

.stat-card:hover::after {
    width: 60%;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-extra-light);
    border-radius: var(--radius-md);
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--brand);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-value .suffix {
    color: var(--brand);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ════════════════════════════════════════
   TECHNOLOGIES SECTION
   ════════════════════════════════════════ */
.tech-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: default;
}

.tech-item:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    background: var(--brand-extra-light);
    box-shadow: var(--shadow-md);
}

.tech-item i {
    font-size: 2.2rem;
    color: var(--brand);
    transition: var(--transition);
}

.tech-item:hover i {
    color: var(--brand);
    transform: scale(1.1);
}

.tech-item span {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    text-align: center;
}

/* ════════════════════════════════════════
   PROJECTS / PORTFOLIO SECTION
   ════════════════════════════════════════ */
.projects-section {
    padding: var(--section-padding);
    background: var(--white);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-tab {
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--gray-500);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gradient-brand);
    color: var(--white);
    border-color: transparent;
    font-weight: 600;
}

.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition-slow);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 58, 92, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 33, 55, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.project-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    background: var(--brand);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.project-info {
    padding: 25px;
}

.project-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.project-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gray-500);
}

.project-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech-tag {
    padding: 4px 12px;
    background: var(--brand-extra-light);
    border: 1px solid rgba(27, 58, 92, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--brand);
    font-weight: 500;
}

/* ════════════════════════════════════════
   PROCESS SECTION
   ════════════════════════════════════════ */
.process-section {
    padding: var(--section-padding);
    background: var(--brand-extra-light);
}

.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand), var(--brand-light), var(--brand-gold));
    opacity: 0.2;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step-content {
    flex: 0 0 45%;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.process-step:hover .process-step-content {
    border-color: rgba(27, 58, 92, 0.15);
    box-shadow: var(--shadow-md);
}

.process-step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: var(--shadow-brand);
}

.process-step-content h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.process-step-content h4 i {
    color: var(--brand);
}

.process-step-content p {
    color: var(--gray-500);
}

/* ════════════════════════════════════════
   GALLERY SECTION
   ════════════════════════════════════════ */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}
.gallery-filter-btn {
    background: #f0f0f0;
    border: 2px solid #e0e0e0;
    color: #555;
    padding: 9px 24px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}
.gallery-filter-btn:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    background: #fff;
}
.gallery-filter-btn.active {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #fff;
    box-shadow: 0 4px 15px rgba(200, 150, 62, 0.35);
}
.gallery-scroll-wrap {
    display: flex;
    gap: 16px;
    padding: 10px 0 20px;
    animation: galleryScroll 30s linear infinite;
    width: max-content;
}
.gallery-scroll-wrap:hover {
    animation-play-state: paused;
}
@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.gallery-scroll-item {
    flex: 0 0 300px;
    min-width: 300px;
    height: 300px;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0) 30%, rgba(10,22,40,0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 1.8rem;
    color: #fff;
    transition: transform 0.3s ease;
    opacity: 0.9;
}
.gallery-item:hover .gallery-overlay i {
    transform: translate(-50%, -50%) scale(1);
}
.gallery-overlay span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 10, 20, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px);
}
.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    position: relative;
    text-align: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
    transition: opacity 0.3s ease;
}
.lightbox-caption {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 15px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.lightbox-close:hover {
    background: rgba(239,68,68,0.8);
    border-color: rgba(239,68,68,0.8);
    transform: rotate(90deg);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.lightbox-nav:hover {
    background: rgba(200, 150, 62, 0.7);
    border-color: var(--gold);
}
.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }



/* ════════════════════════════════════════
   TEAM SECTION
   ════════════════════════════════════════ */
.team-section {
    padding: var(--section-padding);
    background: var(--white);
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(27, 58, 92, 0.15);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--brand-extra-light);
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-brand);
}

.team-card h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--gray-900);
}

.team-card .designation {
    color: var(--brand);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--gray-400);
    transition: var(--transition);
    font-size: 0.9rem;
}

.team-social a:hover {
    background: var(--brand);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

/* ════════════════════════════════════════
   REVIEWS / TESTIMONIALS
   ════════════════════════════════════════ */
.reviews-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.review-card {
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    height: 100%;
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(27, 58, 92, 0.06);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--brand-gold);
    font-size: 0.95rem;
}

.review-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--brand-extra-light);
    flex-shrink: 0;
}

.review-author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.2rem;
    background: var(--gradient-brand);
}

.review-author-info h6 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--gray-900);
}

.review-author-info span {
    font-size: 0.85rem;
    color: var(--brand);
}

/* ════════════════════════════════════════
   FAQ SECTION
   ════════════════════════════════════════ */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
    overflow: hidden;
}

.faq-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: var(--gray-900);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--brand);
    background: var(--brand-extra-light);
}

.faq-accordion .accordion-button::after {
    filter: none;
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}

.faq-accordion .accordion-body {
    padding: 0 25px 20px;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ════════════════════════════════════════
   CAREER CTA SECTION
   ════════════════════════════════════════ */
.career-cta-section {
    padding: 80px 0;
    background: var(--gradient-brand);
    position: relative;
    overflow: hidden;
}

.career-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.career-cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    color: var(--white);
}

.career-cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════ */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
    overflow: hidden;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    margin-bottom: 15px;
}

.contact-info-card:hover {
    border-color: rgba(27, 58, 92, 0.15);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.contact-info-card i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-extra-light);
    border-radius: var(--radius-sm);
    color: var(--brand);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-card h6 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--gray-900);
}

.contact-info-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray-500);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-floating .form-control,
.form-floating .form-select,
.contact-form .form-control {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    color: var(--gray-900);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-floating .form-control:focus,
.contact-form .form-control:focus {
    border-color: var(--brand);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.1);
    color: var(--gray-900);
}

.form-floating label {
    color: var(--gray-400);
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
    color: var(--brand);
}

/* Map */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: none;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
    background: var(--brand-dark);
    border-top: none;
    padding-top: 80px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 120px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--brand-gold);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--brand-gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-links a:hover {
    color: var(--brand-gold);
    padding-left: 5px;
}

.footer-links a:hover::before {
    background: var(--brand-gold);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--brand-gold);
}

/* ════════════════════════════════════════
   BACK TO TOP
   ════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    border: none;
    box-shadow: var(--shadow-brand);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ════════════════════════════════════════
   PAGE BANNER (Inner Pages)
   ════════════════════════════════════════ */
.page-banner {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--brand-extra-light) 0%, var(--brand-tint) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(27, 58, 92, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 58, 92, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-banner h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    position: relative;
    color: var(--gray-900);
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.page-banner .breadcrumb-item.active {
    color: var(--brand);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-400);
}

/* ════════════════════════════════════════
   ABOUT PAGE SPECIFIC
   ════════════════════════════════════════ */
.values-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.values-card:hover {
    transform: translateY(-8px);
    border-color: rgba(27, 58, 92, 0.15);
    box-shadow: var(--shadow-lg);
}

.values-card i {
    font-size: 2rem;
    color: var(--brand);
    margin-bottom: 15px;
}

.values-card h5 {
    color: var(--gray-900);
}

.values-card p {
    color: var(--gray-500);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand), var(--brand-light));
    opacity: 0.2;
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) { justify-content: flex-start; }
.timeline-item:nth-child(even) { justify-content: flex-end; }

.timeline-content {
    width: 45%;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: rgba(27, 58, 92, 0.15);
    box-shadow: var(--shadow-md);
}

.timeline-content h5 {
    color: var(--gray-900);
}

.timeline-content p {
    color: var(--gray-500);
}

.timeline-year {
    display: inline-block;
    padding: 4px 16px;
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--brand);
    border-radius: 50%;
    border: 3px solid var(--white);
    z-index: 2;
    top: 30px;
    box-shadow: var(--shadow-sm);
}

/* ════════════════════════════════════════
   CAREER PAGE
   ════════════════════════════════════════ */
.job-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    transition: var(--transition);
}

.job-card:hover {
    border-color: rgba(27, 58, 92, 0.15);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.job-card h4 {
    color: var(--gray-900);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.job-meta-item i {
    color: var(--brand);
    font-size: 0.8rem;
}

.job-type-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--brand-extra-light);
    border: 1px solid rgba(27, 58, 92, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--brand);
    font-weight: 600;
    text-transform: capitalize;
}

/* ════════════════════════════════════════
   SERVICE DETAIL PAGE
   ════════════════════════════════════════ */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-item i {
    color: var(--brand);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.benefit-item p {
    color: var(--gray-600);
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--brand-extra-light);
    border: 1px solid rgba(27, 58, 92, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--brand);
    font-weight: 500;
    margin: 4px;
}

/* ════════════════════════════════════════
   404 PAGE
   ════════════════════════════════════════ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    text-align: center;
    padding: 40px 20px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.error-page h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.error-page p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
    color: var(--gray-500);
}

/* ════════════════════════════════════════
   MODAL STYLES
   ════════════════════════════════════════ */
.modal-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.modal-header {
    border-bottom: 1px solid var(--gray-100);
    padding: 20px 25px;
}

.modal-header .modal-title {
    color: var(--gray-900);
    font-family: var(--font-heading);
}

.modal-header .btn-close {
    filter: none;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid var(--gray-100);
    padding: 15px 25px;
}

/* ════════════════════════════════════════
   GLASSMORPHISM CARD UTILITY
   ════════════════════════════════════════ */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

/* ════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ════════════════════════════════════════
   RESPONSIVE DESIGN (Mobile First)
   ════════════════════════════════════════ */
@media (max-width: 1199.98px) {
    .process-timeline::before { display: none; }
    .process-step-number { display: none; }
    .process-step,
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        flex-direction: column;
    }
    .process-step-content { flex: 1; width: 100%; }
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .hero-section {
        text-align: center;
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-code-block {
        display: none;
    }
    
    .floating-badge {
        display: none;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .timeline::before { left: 20px; }
    .timeline-item { justify-content: flex-end !important; }
    .timeline-content { width: calc(100% - 50px); margin-left: 50px; }
    .timeline-dot { left: 20px; }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 15px;
        border: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat-value {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-value {
        font-size: 2.2rem;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .page-banner {
        padding: 130px 0 60px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .back-to-top,
    .whatsapp-float {
        right: 15px;
    }
    
    .back-to-top {
        bottom: 15px;
        width: 42px;
        height: 42px;
    }
    
    .whatsapp-float {
        bottom: 65px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* ════════════════════════════════════════
   PRINT STYLES
   ════════════════════════════════════════ */
@media print {
    .navbar, .site-footer, .back-to-top, .whatsapp-float,
    #page-loader { display: none !important; }
    
    body {
        background: #fff;
        color: #333;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
    }
}
