
/* WHITE GAP FIX - Add this at the top of style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Hero section positioning fix */
.home-hero-video {
    margin-top: 0 !important;
    padding-top: 80px !important;
    height: 100vh;
    position: relative;
}

/* Header positioning fix */
.header {
    margin: 0 !important;
    padding: 0 !important;
}

.nav {
    margin: 0 !important;
}
/* ===== HERO ACHIEVEMENTS GRID FIX ===== */
.hero-achievements {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 boxes in one line */
    gap: 20px; /* Smaller gap */
    margin: 50px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
    max-width: 1000px; /* Limit total width */
    margin-left: auto;
    margin-right: auto;
}

.achievement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Stack icon and text vertically */
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 15px; /* Adjusted padding */
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    animation: fadeInScale 0.8s ease-out both;
    min-height: 140px; /* Fixed height */
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.achievement-icon {
    width: 55px; /* Smaller icon */
    height: 55px;
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(249, 50, 55, 0.3);
    margin-bottom: 12px; /* Space below icon */
}

.achievement-icon i {
    font-size: 22px; /* Smaller icon size */
    color: white;
}

.achievement-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.achievement-number {
    font-size: 2rem; /* Smaller font size */
    font-weight: 900;
    line-height: 1;
    color: white;
    margin-bottom: 5px;
    white-space: nowrap; /* Prevent text wrapping */
}

.achievement-plus {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f93237;
    display: none; /* Hide separate plus, include in number */
}

.achievement-label {
    font-size: 0.85rem; /* Smaller label text */
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 5px;
    word-wrap: break-word; /* Allow text wrapping if needed */
    max-width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-achievements {
        grid-template-columns: repeat(2, 1fr); /* 2x2 on mobile */
        gap: 15px;
        margin: 30px 0;
    }
    
    .achievement-item {
        padding: 18px 12px;
        min-height: 120px;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .achievement-icon i {
        font-size: 20px;
    }
    
    .achievement-number {
        font-size: 1.6rem;
    }
    
    .achievement-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .achievement-number {
        font-size: 1.4rem;
    }
    
    .achievement-label {
        font-size: 0.75rem;
    }
    
    .achievement-item {
        padding: 15px 10px;
        min-height: 110px;
    }
}

/* Ensure boxes stay in bounds */
.hero-text-container {
    max-width: 1200px;
    text-align: center;
    color: white;
    padding: 0 20px; /* Add padding to prevent overflow */
}

/* Video container fix */
.video-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
/* ===== SERVICES PAGE WHITE GAP FIX ===== */

/* Services Hero Video Section Fix */
.services-hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0 !important;  /* Remove margin-top */
    padding-top: 80px !important;  /* Add padding instead */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Video Container Fix */
.services-hero-video .video-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

/* Services Video Fix */
.services-hero-video .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

/* Services Video Overlay Fix */
.services-hero-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(40, 102, 201, 0.8) 0%, 
        rgba(249, 50, 55, 0.7) 50%,
        rgba(40, 102, 201, 0.9) 100%
    );
    z-index: 2;
}

/* Services Hero Content Fix */
.services-hero-video .hero-content-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 0 20px;
}

:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgb(172, 10, 10);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgb(232, 245, 245);
  --color-charcoal-800: rgb(226, 240, 240);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  /* Background color tokens (Light Mode) */
  --color-bg-1: rgba(237, 239, 243, 0.856); /* Light blue */
  --color-bg-2: rgba(245, 158, 11, 0.08); /* Light yellow */
  --color-bg-3: rgba(228, 238, 231, 0.89); /* Light green */
  --color-bg-4: rgba(239, 68, 68, 0.08); /* Light red */
  --color-bg-5: rgba(147, 51, 234, 0.08); /* Light purple */
  --color-bg-6: rgba(249, 115, 22, 0.08); /* Light orange */
  --color-bg-7: rgba(236, 72, 153, 0.08); /* Light pink */
  --color-bg-8: rgba(6, 182, 212, 0.08); /* Light cyan */

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    /* RGB versions for opacity control (Dark Mode) */
    --color-gray-400-rgb: 119, 124, 124;
    --color-teal-300-rgb: 50, 184, 198;
    --color-gray-300-rgb: 167, 169, 169;
    --color-gray-200-rgb: 245, 245, 245;

    /* Background color tokens (Dark Mode) */
    --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
    --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
    --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
    --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
    --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
    --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
    --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
    --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */

    /* Semantic Color Tokens (Dark Mode) */
    --color-background: var(--color-charcoal-700);
    --color-surface: var(--color-charcoal-800);
    --color-text: var(--color-gray-200);
    --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
    --color-primary: var(--color-teal-300);
    --color-primary-hover: var(--color-teal-400);
    --color-primary-active: var(--color-teal-800);
    --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
    --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
    --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
    --color-border: rgba(var(--color-gray-400-rgb), 0.3);
    --color-error: var(--color-red-400);
    --color-success: var(--color-teal-300);
    --color-warning: var(--color-orange-400);
    --color-info: var(--color-gray-300);
    --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
    --color-btn-primary-text: var(--color-slate-900);
    --color-card-border: rgba(var(--color-gray-400-rgb), 0.2);
    --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: var(--color-teal-300-rgb);
    --color-error-rgb: var(--color-red-400-rgb);
    --color-warning-rgb: var(--color-orange-400-rgb);
    --color-info-rgb: var(--color-gray-300-rgb);
  }
}

/* Data attribute for manual theme switching */
[data-color-scheme="dark"] {
  /* RGB versions for opacity control (dark mode) */
  --color-gray-400-rgb: 119, 124, 124;
  --color-teal-300-rgb: 50, 184, 198;
  --color-gray-300-rgb: 167, 169, 169;
  --color-gray-200-rgb: 245, 245, 245;

  /* Colorful background palette - Dark Mode */
  --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
  --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
  --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
  --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
  --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
  --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
  --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
  --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */

  /* Semantic Color Tokens (Dark Mode) */
  --color-background: var(--color-charcoal-700);
  --color-surface: var(--color-charcoal-800);
  --color-text: var(--color-gray-200);
  --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
  --color-primary: var(--color-teal-300);
  --color-primary-hover: var(--color-teal-400);
  --color-primary-active: var(--color-teal-800);
  --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
  --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
  --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
  --color-border: rgba(var(--color-gray-400-rgb), 0.3);
  --color-error: var(--color-red-400);
  --color-success: var(--color-teal-300);
  --color-warning: var(--color-orange-400);
  --color-info: var(--color-gray-300);
  --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
  --color-btn-primary-text: var(--color-slate-900);
  --color-card-border: rgba(var(--color-gray-400-rgb), 0.15);
  --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
  --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

  /* Common style patterns - updated for dark mode */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for dark mode */
  --color-success-rgb: var(--color-teal-300-rgb);
  --color-error-rgb: var(--color-red-400-rgb);
  --color-warning-rgb: var(--color-orange-400-rgb);
  --color-info-rgb: var(--color-gray-300-rgb);
}

[data-color-scheme="light"] {
  /* RGB versions for opacity control (light mode) */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);

  /* RGB versions for light mode */
  --color-success-rgb: var(--color-teal-500-rgb);
  --color-error-rgb: var(--color-red-500-rgb);
  --color-warning-rgb: var(--color-orange-500-rgb);
  --color-info-rgb: var(--color-slate-500-rgb);
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

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

.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--primary:active {
  background: var(--color-primary-active);
}

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

.btn--secondary:hover {
  background: var(--color-secondary-hover);
}

.btn--secondary:active {
  background: var(--color-secondary-active);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline:hover {
  background: var(--color-secondary);
}

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

/* Add a dark mode specific caret */
@media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
}

/* Also handle data-color-scheme */
[data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}
.header {
    background: #2866c9;  /* या जो भी color चाहें */
}

/* Professional Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(221, 217, 217, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(228, 225, 225, 0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ===== NAVBAR SPACING FIX ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2866c9 0%, #1e40af 100%);
    box-shadow: 0 4px 25px rgba(40, 102, 201, 0.2);
    z-index: 1000;
    padding: 0;
    margin: 0;
}

.nav-container {
    display: grid;
    grid-template-columns: 300px 1fr 200px;  /* Fixed layout: Logo | Navigation | Button */
    align-items: center;
    padding: 12px 30px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
}

/* LEFT: Logo and Company Name */
.nav-left {
    justify-self: start;  /* Stick to left */
}

.logo-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
    padding: 5px 10px;
    border-radius: 8px;
    transition: background 0.3s;
}

.logo-brand:hover {
    background: rgba(255,255,255,0.1);
}

.brand-logo {
    height: 55px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: white;
    line-height: 1;
    white-space: nowrap;
}

.brand-tagline {
    font-size: 10px;
    color: #f93237;
    font-weight: 600;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* CENTER: Navigation Menu */
.nav-center {
    justify-self: center;  /* Perfect center */
}

.nav-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    justify-content: center;
}

.nav-item {
    padding: 10px 18px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.nav-item.active {
    background: linear-gradient(135deg, #f93237, rgba(255,255,255,0.3));
    color: white;
}

/* RIGHT: Get Quote Button */
.nav-right {
    justify-self: end;  /* Stick to right */
}

.quote-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    color: white;
    padding: 14px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(249,50,55,0.4);
    white-space: nowrap;
}

.quote-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249,50,55,0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto;  /* Logo | Menu Button */
        padding: 10px 15px;
    }
    
    .nav-center {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #2866c9, #1e40af);
        justify-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.4s;
        z-index: 1001;
    }
    
    .nav-center.active {
        left: 0;
    }
    
    .nav-menu-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-item {
        font-size: 18px;
        padding: 15px 30px;
        width: 250px;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }
    
    .nav-right {
        position: fixed;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1002;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .brand-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 16px;
    }
    
    .brand-tagline {
        font-size: 9px;
    }
    
    .quote-button {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Body padding to prevent content hiding */
body {
    padding-top: 80px;
    font-family: 'Arial', sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

/* Loading animation for nav items */
.nav-item {
    opacity: 0;
    animation: fadeInNav 0.6s ease forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }
.nav-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInNav {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Professional Header with Blue-Red Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    box-shadow: 0 4px 25px rgba(228, 229, 231, 0.932);
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #2866c9, #f93237) 1;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Logo with Text - Enhanced */
.nav-logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
    padding: 5px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.logo-link:hover {
    background: rgba(206, 210, 216, 0.932);
    box-shadow: 0 4px 15px rgba(40, 102, 201, 0.1);
}

.logo-img {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 22px;
    font-weight: 800;
    color: #2866c9;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    transition: color 0.3s ease;
}

.logo-link:hover .company-name {
    color: #f93237;
}

.company-tagline {
    font-size: 11px;
    color: #f93237;
    font-weight: 600;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Professional Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.nav-link {
    display: inline-block;
    text-decoration: none;
    color: #eff1f5;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, transparent 0%, transparent 1%);
    border: 2px solid transparent;
    overflow: hidden;
}

/* Beautiful Hover Effect */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2866c9, #f93237);
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 232, 235, 0.877);
    border-color: rgba(255,255,255,0.2);
}

/* Active Page Style */
.nav-link.active {
    background: linear-gradient(135deg, #2866c9, #f93237);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 102, 201, 0.4);
}

.nav-link.active::before {
    left: 0;
    background: linear-gradient(135deg, #f93237, #2866c9);
}

/* Professional Get Quote Button */
.btn-quote {
    background: linear-gradient(135deg, #f93237, #2866c9);
    color: white;
    padding: 16px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(249, 50, 55, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2866c9, #f93237);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-quote:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(249, 50, 55, 0.4);
    border-color: rgba(255,255,255,0.3);
}

.btn-quote:hover::before {
    opacity: 1;
}

.btn-quote i {
    font-size: 16px;
    z-index: 1;
    position: relative;
}

.btn-quote span {
    z-index: 1;
    position: relative;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(224, 225, 228, 0.959);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #2866c9, #f93237);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #f93237;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #f93237;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        gap: 5px;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .company-name {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 10px 15px;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .company-tagline {
        font-size: 10px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff, #f8f9ff);
        flex-direction: column;
        justify-content: center;
        transition: left 0.4s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 20px;
        padding: 18px 35px;
        width: 250px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-actions {
        position: absolute;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .logo-link {
        gap: 12px;
    }
}

/* Body padding */
body {
    padding-top: 95px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link {
    animation: fadeInUp 0.6s ease forwards;
}

.nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-link:nth-child(4) { animation-delay: 0.4s; }
.nav-link:nth-child(5) { animation-delay: 0.5s; }
.nav-link:nth-child(6) { animation-delay: 0.6s; }


/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: var(--space-4);
}
.gap-8 {
  gap: var(--space-8);
}
.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}
.mt-8 {
  margin-top: var(--space-8);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}
.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}
.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}
.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.block {
  display: block;
}
.hidden {
  display: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}

@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
}

/* END PERPLEXITY DESIGN SYSTEM */
/* Brand Color Variables */
:root {
  --brand-primary-blue: #2866c9;
  --brand-primary-red: #f93237;
  --brand-secondary-blue: #2060c7;
  --brand-light-gray: #e1ebf2;
  
  /* Override design system colors with brand colors */
  --color-primary: var(--brand-primary-blue);
  --color-primary-hover: var(--brand-secondary-blue);
  --color-primary-active: #1a4f9e;
  --color-accent: var(--brand-primary-red);
  --color-accent-hover: #e02933;
  
  /* Custom gradients */
  --brand-gradient: linear-gradient(135deg, var(--brand-primary-blue), var(--brand-secondary-blue));
  --brand-gradient-reverse: linear-gradient(135deg, var(--brand-secondary-blue), var(--brand-primary-blue));
  --accent-gradient: linear-gradient(135deg, var(--brand-primary-red), #ff4a4f);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading screen background and text colors */
#loading-screen{
  background:#ffffff;           /* was blue, set to white */
  /* or try a dark option: background:#0f172a; */
}

#loading-screen .loading-text{
  color:#2866c9;                /* brand blue text */
}

/* If a tinted overlay exists, neutralize it */
#loading-screen::before{
  background:transparent;       /* remove any blue overlay */
}

/* Make the logo readable on any bg */
#loading-screen .company-logo img{
  background:#ffffff;           /* small white plate behind logo */
  padding:10px;
  border-radius:8px;
  box-shadow:0 4px 16px rgba(0,0,0,.12);
}

/* Spinner/accent color (optional) */
.loader .solar-panel,
.loader .spinner{
  border-color:#f93237;         /* brand red accent */
}


@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(var(--color-slate-900-rgb), 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(var(--brand-primary-blue-rgb, 40, 102, 201), 0.2);
}

.header.scrolled {
  background: rgba(var(--color-slate-900-rgb), 0.98);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--brand-primary-blue);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-logo .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-primary-blue);
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
}

.logo-fallback i {
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-primary-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HOME PAGE VIDEO HERO SECTION ===== */
.home-hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
}

.video-overlay-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(40, 102, 201, 0.85) 0%, 
        rgba(30, 64, 175, 0.7) 30%,
        rgba(249, 50, 55, 0.6) 70%,
        rgba(40, 102, 201, 0.8) 100%
    );
    z-index: 2;
}

.hero-content-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 0 20px;
}

.hero-container {
    max-width: 1200px;
    text-align: center;
    color: white;
}

/* Hero Introduction */
.hero-intro {
    margin-bottom: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.hero-badge i {
    color: #f93237;
    font-size: 16px;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
}

.hero-main-heading {
    margin-bottom: 30px;
}

.company-highlight {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.tagline-text {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f93237;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    margin: 15px 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.95;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Hero Achievements */
.hero-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    animation: fadeInUp 1s ease-out 1s both;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    animation: fadeInScale 0.8s ease-out both;
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(249, 50, 55, 0.3);
}

.achievement-icon i {
    font-size: 28px;
    color: white;
}

.achievement-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: white;
}

.achievement-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f93237;
    margin-left: 5px;
}

.achievement-label {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 8px;
    font-weight: 500;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 50px 0;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.btn-hero-main,
.btn-hero-outline,
.btn-hero-discover {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    overflow: hidden;
}

.btn-hero-main {
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    color: white;
    box-shadow: 0 8px 30px rgba(249, 50, 55, 0.4);
    border: 2px solid transparent;
}

.btn-hero-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(249, 50, 55, 0.5);
    background: linear-gradient(135deg, #ff6b6b, #f93237);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.btn-hero-discover {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    padding: 12px 25px;
}

.btn-hero-discover:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
}

.btn-hero-main:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeIn 2s ease-out 2s both;
}

.scroll-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* Video Controls Home */
.video-controls-home {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 4;
}

.video-control-btn {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.video-control-btn i {
    font-size: 20px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 60px;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation-name: float1;
    animation-delay: 0s;
}

.floating-2 {
    top: 60%;
    right: 15%;
    animation-name: float2;
    animation-delay: -7s;
}

.floating-3 {
    bottom: 30%;
    left: 20%;
    animation-name: float3;
    animation-delay: -14s;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float1 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
    100% { transform: translate(0px, 0px) rotate(360deg); }
}

@keyframes float2 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(-30px, -30px) rotate(-120deg); }
    66% { transform: translate(20px, 20px) rotate(-240deg); }
    100% { transform: translate(0px, 0px) rotate(-360deg); }
}

@keyframes float3 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    50% { transform: translate(25px, -25px) rotate(180deg); }
    100% { transform: translate(0px, 0px) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-hero-video {
        height: 90vh;
    }
    
    .company-highlight {
        font-size: 2.8rem;
    }
    
    .tagline-text {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-achievements {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .achievement-content {
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero-main,
    .btn-hero-outline {
        width: 280px;
        justify-content: center;
    }
    
    .floating-item {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .company-highlight {
        font-size: 2.2rem;
    }
    
    .tagline-text {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .video-controls-home {
        bottom: 20px;
        right: 20px;
    }
    
    .video-control-btn {
        width: 50px;
        height: 50px;
    }
}


.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(var(--brand-primary-blue-rgb, 40, 102, 201), 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary-red);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--brand-gradient);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
  background: var(--accent-gradient);
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styles */
.section {
  padding: 5rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--color-bg-1);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: var(--brand-primary-blue);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--brand-gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.vision-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-gradient);
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.about-image {
  text-align: center;
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.mission-section {
  margin-bottom: 4rem;
}

.mission-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mission-card .card-icon {
  background: var(--accent-gradient);
}

.values-section {
  text-align: center;
}

.values-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--brand-primary-blue);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-primary-blue), var(--brand-primary-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Services Section */
.services {
  background: var(--color-bg-3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-card-border);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  padding: 2rem;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary-blue);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--brand-primary-blue);
  font-size: 1.25rem;
}

.service-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Detailed Services */
.detailed-services {
  background: var(--color-bg-6);
}

.detailed-services-content {
  display: grid;
  gap: 3rem;
}

.service-detail-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
}

.service-detail-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--brand-primary-blue);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.service-detail-card h3 i {
  color: var(--brand-primary-red);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.detail-item {
  background: var(--color-bg-7);
  padding: 1rem;
  border-radius: var(--radius-base);
  border-left: 4px solid var(--brand-primary-blue);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.detail-item:hover {
  transform: translateX(5px);
  background: var(--color-bg-8);
  border-left-color: var(--brand-primary-red);
}

/* Projects Section */
.projects {
  background: var(--color-surface);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(40, 102, 201, 0.8), 
    rgba(249, 50, 55, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  text-align: center;
  color: white;
  padding: 2rem;
}

.project-info h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
/* ===== PROFESSIONAL OUR CLIENTS SECTION ===== */
.clients-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.clients-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(40, 102, 201, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 50, 55, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, rgba(40, 102, 201, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Professional Header */
.clients-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2866c9, #1e40af);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(40, 102, 201, 0.3);
    animation: badge-glow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.header-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.8s ease;
}

.header-badge:hover::before {
    left: 100%;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 8px 25px rgba(40, 102, 201, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(40, 102, 201, 0.5), 0 0 30px rgba(40, 102, 201, 0.2); }
}

.header-badge i {
    font-size: 18px;
    color: #f93237;
}

.clients-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b, #2866c9, #f93237);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.clients-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.clients-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2866c9, #f93237);
    margin: 0 auto;
    border-radius: 2px;
    animation: underline-expand 2s ease-in-out infinite;
}

@keyframes underline-expand {
    0%, 100% { width: 100px; }
    50% { width: 150px; }
}

/* Auto-Sliding Container */
.clients-slider-container {
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-slider::before,
.clients-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(90deg, #f8fafc, transparent);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(270deg, #f8fafc, transparent);
}

.clients-track {
    display: flex;
    gap: 40px;
    animation: slide-infinite 40s linear infinite;
    width: fit-content;
}

@keyframes slide-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 10)); /* 10 original clients * width */
    }
}

.clients-track:hover {
    animation-play-state: paused;
}

/* Professional Client Item */
.client-item {
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 102, 201, 0.1), transparent);
    transition: left 0.6s ease;
}

.client-item:hover::before {
    left: 100%;
}

.client-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(40, 102, 201, 0.15);
    border-color: rgba(40, 102, 201, 0.3);
}

/* Professional Logo Box */
.client-logo-box {
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.client-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.client-item:hover .client-logo {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 102, 201, 0.1), rgba(249, 50, 55, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-item:hover .logo-overlay {
    opacity: 1;
}

/* Company Name */
.client-company-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.client-item:hover .client-company-name {
    color: #2866c9;
    text-shadow: 0 2px 10px rgba(40, 102, 201, 0.2);
}

/* Partnership Stats */
.partnership-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(40, 102, 201, 0.1);
}

.partnership-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partnership-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(40, 102, 201, 0.15);
}

.stat-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2866c9, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(40, 102, 201, 0.3);
    transition: all 0.3s ease;
}

.partnership-stat:hover .stat-circle {
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    transform: scale(1.1) rotate(10deg);
}

.stat-circle i {
    font-size: 28px;
    color: white;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-count {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
}

.stat-text {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .clients-main-title {
        font-size: 2.8rem;
    }
    
    .clients-track {
        gap: 30px;
    }
    
    .client-item {
        min-width: 250px;
        padding: 20px;
    }
    
    .client-logo-box {
        width: 120px;
        height: 90px;
    }
    
    .client-logo {
        width: 100px;
        height: 70px;
    }
    
    .partnership-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .partnership-stat {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .clients-main-title {
        font-size: 2.2rem;
    }
    
    .client-item {
        min-width: 220px;
        padding: 18px;
    }
    
    .client-logo-box {
        width: 110px;
        height: 80px;
    }
    
    .client-logo {
        width: 90px;
        height: 60px;
    }
    
    .client-company-name {
        font-size: 1rem;
    }
    
    .partnership-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-count {
        font-size: 2rem;
    }
}

/* ===== PROFESSIONAL CLIENTS SHOWCASE ===== */
.clients-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.clients-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(40, 102, 201, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(249, 50, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header with Glow */
.clients-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(40, 102, 201, 0.2);
    border: 2px solid rgba(40, 102, 201, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    color: #60a5fa;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(40, 102, 201, 0.2);
    animation: float 3s ease-in-out infinite;
}

.header-badge i {
    font-size: 18px;
    color: #f93237;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.clients-main-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #60a5fa, #f93237);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(40, 102, 201, 0.3), transparent);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.clients-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.client-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.client-card:hover::before {
    left: 100%;
}

.client-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(40, 102, 201, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(40, 102, 201, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.client-card-inner {
    position: relative;
    z-index: 2;
}

/* Client Logo with Glow */
.client-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.client-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    transform: scale(1.1);
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 20px rgba(255,255,255,0.3));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(40, 102, 201, 0.3), transparent);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-card:hover .logo-glow {
    opacity: 1;
}

/* Client Info */
.client-info {
    margin-bottom: 20px;
}

.client-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.client-type {
    color: #60a5fa;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.client-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #fbbf24;
    font-size: 14px;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
}

.rating-text {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Partnership Badge */
.partnership-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(249, 50, 55, 0.4);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.partnership-badge i {
    color: white;
    font-size: 18px;
}

/* Client Stats */
.client-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2866c9, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(40, 102, 201, 0.3);
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

/* CTA Section */
.clients-cta {
    text-align: center;
    padding: 50px 0;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-join-clients {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(249, 50, 55, 0.4);
}

.btn-join-clients:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 50, 55, 0.5);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-join-clients:hover .btn-glow {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .clients-main-title {
        font-size: 2.5rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .client-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .clients-main-title {
        font-size: 2rem;
    }
    
    .client-stats {
        grid-template-columns: 1fr;
    }
}


/* Contact Section */
.contact {
  background: var(--color-bg-1);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-gradient);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.contact-form {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  transition: all 0.3s ease;
  border-color: var(--color-border);
}

.form-control:focus {
  border-color: var(--brand-primary-blue);
  box-shadow: 0 0 0 3px rgba(40, 102, 201, 0.1);
}

.btn--primary {
  background: var(--brand-gradient);
  border: none;
  color: white;
}

.btn--primary:hover {
  background: var(--brand-gradient-reverse);
  transform: translateY(-2px);
}

.btn--outline {
  border: 2px solid var(--brand-primary-blue);
  color: var(--brand-primary-blue);
  background: transparent;
}

.btn--outline:hover {
  background: var(--brand-primary-blue);
  color: white;
}

/* Footer */
.footer {
  background: var(--color-slate-900);
  color: var(--color-gray-200);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: var(--brand-primary-blue);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--color-gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--brand-primary-blue);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--accent-gradient);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-item i {
  color: var(--brand-primary-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--color-gray-400-rgb), 0.2);
  color: var(--color-gray-400);
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--brand-gradient);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  background: var(--accent-gradient);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.modal.hidden {
  opacity: 0;
  visibility: hidden;
}

.modal-content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.modal.hidden .modal-content {
  transform: scale(0.8);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.modal-header h3 {
  color: var(--brand-primary-blue);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--brand-primary-red);
}

.modal-body {
  padding: 2rem;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: var(--color-success);
  margin-bottom: 1rem;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Intersection Observer Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Form Error Styles */
.form-control.error {
  border-color: var(--brand-primary-red);
  box-shadow: 0 0 0 3px rgba(249, 50, 55, 0.1);
}

.field-error {
  color: var(--brand-primary-red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-surface);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .clients-track {
    animation-duration: 20s;
  }

  .client-card {
    width: 200px;
    height: 100px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .service-card {
    min-width: unset;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .detail-item {
    font-size: 0.8rem;
  }

  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
/* Client Logo Styles - Seamless infinite loop */
.clients-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.clients-carousel {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    animation: scrollClients 25s linear infinite;
    gap: 40px;
    width: max-content;
    /* Duplicate logos for seamless loop */
}

/* Pause animation on hover */
.clients-carousel:hover .clients-track {
    animation-play-state: paused;
}

.client-card {
    min-width: 250px;
    height: 160px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;            /* Important for seamless loop */
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(40, 102, 201, 0.15);
    border-color: #2866c9;
}

.client-logo {
    width: 200px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: none;
    transition: transform 0.3s ease;
}

.client-card:hover .client-logo {
    transform: scale(1.05);
}

.client-card h4 {
    color: #2866c9;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

/* Seamless infinite animation */
@keyframes scrollClients {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(calc(-290px * 10)); /* 10 logos का exact width */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .client-card {
        min-width: 200px;
        height: 140px;
        padding: 12px;
    }
    
    .client-logo {
        width: 170px;
        height: 85px;
    }
    
    .client-card h4 {
        font-size: 12px;
    }
    
    .clients-track {
        gap: 20px;
    }
    
    @keyframes scrollClients {
        0% { 
            transform: translateX(0); 
        }
        100% { 
            transform: translateX(calc(-220px * 10));
        }
    }
}

/* ===== SERVICES PAGE STYLES ===== */



/* Services Page Specific Styles */
/* ===== VIDEO HERO SECTION ===== */
.services-hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(40, 102, 201, 0.8) 0%, 
        rgba(249, 50, 55, 0.7) 50%,
        rgba(40, 102, 201, 0.9) 100%
    );
    z-index: 2;
}

.hero-content-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 0 20px;
}

.hero-text-container {
    max-width: 1200px;
    text-align: center;
    color: white;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle-text {
    font-size: 1.5rem;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f93237, rgba(255,255,255,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 5px;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    color: white;
    box-shadow: 0 6px 25px rgba(249, 50, 55, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(249, 50, 55, 0.5);
    background: linear-gradient(135deg, #ff6b6b, #f93237);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 4;
}

.video-control-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-control-btn i {
    font-size: 18px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero-video {
        height: 80vh;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-text {
        font-size: 1.2rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .stat-card {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 250px;
        justify-content: center;
    }
    
    .video-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .video-control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle-text {
        font-size: 1rem;
    }
    
    .hero-description p {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Remove old hero styles */
.services-hero {
    display: none;
}


.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f93237;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}
/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #2866c9;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(40, 102, 201, 0.1);
}

.section-header p {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(40, 102, 201, 0.15);
    border-color: rgba(40, 102, 201, 0.2);
}

.service-card-inner {
    padding: 35px 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Service Icon - Fixed Position */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2866c9, #1e40af);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(40, 102, 201, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 32px;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* Service Content */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-tag {
    background: linear-gradient(135deg, #e0f2fe, #e3f2fd);
    color: #2866c9;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(40, 102, 201, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #f93237;
    border-color: rgba(249, 50, 55, 0.2);
}

/* Service Arrow */
.service-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(40, 102, 201, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.service-card:hover .service-arrow {
    background: #f93237;
    opacity: 1;
    transform: scale(1.1);
}

.service-arrow i {
    font-size: 16px;
    color: #2866c9;
    transition: color 0.3s ease;
}

.service-card:hover .service-arrow i {
    color: white;
}

/* Services CTA */
.services-cta {
    text-align: center;
}

.btn-view-services {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #2866c9, #1e40af);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(40, 102, 201, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-view-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-view-services:hover::before {
    left: 100%;
}

.btn-view-services:hover {
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(249, 50, 55, 0.4);
}

.btn-view-services i:last-child {
    transition: transform 0.3s ease;
}

.btn-view-services:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card-inner {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
    
    .service-card-inner {
        padding: 20px 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-view-services {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2866c9;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(40, 102, 201, 0.15);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2866c9, #f93237);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2866c9;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li i {
    color: #f93237;
    font-size: 14px;
}

.service-btn {
    background: linear-gradient(135deg, #2866c9, #f93237);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 102, 201, 0.3);
}

/* Detailed Services */
.detailed-services {
    padding: 100px 0;
    background: white;
}

.service-detail-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.2rem;
    color: #2866c9;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #f93237;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.detail-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #2866c9;
}

.detail-category h3 {
    color: #2866c9;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.detail-list li i {
    color: #f93237;
    font-size: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Transmission Services */
.transmission-services {
    display: grid;
    gap: 30px;
}

.transmission-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.transmission-item:hover {
    background: linear-gradient(135deg, rgba(40, 102, 201, 0.05), rgba(249, 50, 55, 0.05));
    transform: translateX(10px);
}

.transmission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2866c9, #f93237);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transmission-icon i {
    font-size: 28px;
    color: white;
}

.transmission-content h3 {
    color: #2866c9;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.transmission-content p {
    color: #666;
    line-height: 1.5;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2866c9, #f93237);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: white;
    color: #2866c9;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2866c9;
}

/* ===== COMPLETE PROFESSIONAL FOOTER ===== */
.professional-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #e2e8f0;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    overflow: hidden;
}

.professional-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2866c9 0%, #f93237 50%, #2866c9 100%);
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(90deg, #2866c9 0%, #f93237 50%, #2866c9 100%); }
    50% { background: linear-gradient(90deg, #f93237 0%, #2866c9 50%, #f93237 100%); }
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1.5fr;
    gap: 50px;
    padding: 80px 0 40px;
    position: relative;
}

.footer-section {
    position: relative;
}

/* Company Section */
.company-section {
    padding-right: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-brand-logo {
    height: 70px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
}

.footer-brand-logo:hover {
    transform: scale(1.05);
}

.footer-brand-info h2 {
    color: #2866c9;
    font-size: 28px;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(40, 102, 201, 0.3);
}

.footer-brand-tagline {
    color: #f93237;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 5px;
}

.footer-brand-slogan {
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 0 0;
    font-style: italic;
}

.footer-brand-desc {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 15px;
}

/* Social Media Section */
.footer-social-section h4 {
    color: #2866c9;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-social-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f93237, #2866c9);
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(40, 102, 201, 0.15);
    border: 2px solid rgba(40, 102, 201, 0.3);
    border-radius: 30px;
    text-decoration: none;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(40, 102, 201, 0.4);
}

.social-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.social-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f56040, #e1306c, #833ab4);
    border-color: #e1306c;
    color: white;
}

.social-btn.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

.social-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-btn:hover i {
    transform: scale(1.2);
}

/* Footer Section Titles */
.footer-section-title {
    color: #f8fafc;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2866c9, #f93237);
}

.footer-industries-title {
    margin-top: 35px;
}

/* Footer Lists */
.footer-services-list,
.footer-quick-links,
.footer-industries-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services-list li,
.footer-quick-links li,
.footer-industries-links li {
    margin-bottom: 12px;
}

.footer-service-link,
.footer-quick-link,
.footer-industry-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    position: relative;
}

.footer-service-link::before,
.footer-quick-link::before,
.footer-industry-link::before {
    content: '▶';
    color: #f93237;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-service-link:hover,
.footer-quick-link:hover,
.footer-industry-link:hover {
    color: #2866c9;
    transform: translateX(8px);
}

.footer-service-link:hover::before,
.footer-quick-link:hover::before,
.footer-industry-link:hover::before {
    transform: scale(1.3);
    color: #2866c9;
}

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #2866c9;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-left-color: #f93237;
}

.contact-icon {
    color: #f93237;
    font-size: 20px;
    margin-top: 3px;
    min-width: 20px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-text strong {
    color: #cbd5e1;
    font-weight: 700;
    font-size: 14px;
}

.contact-text span {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer-copyright {
    justify-self: start;
}

.footer-developer-credit {
    justify-self: center;
    text-align: center;
}

.footer-policies {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-copyright p,
.footer-developer-credit p {
    color: #94a3b8;
    font-size: 15px;
    margin: 0;
}

.developer-link {
    color: #2866c9;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.developer-link:hover {
    color: #f93237;
    text-shadow: 0 0 8px rgba(249, 50, 55, 0.5);
}

.policy-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #2866c9;
}

.policy-separator {
    color: #475569;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
    
    .contact-section {
        grid-column: 1 / -1;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 0 30px;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-policies {
        justify-self: center;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-wrapper {
        padding: 0 15px;
    }
    
    .footer-main {
        padding: 40px 0 25px;
    }
    
    .footer-brand-info h2 {
        font-size: 24px;
    }
    
    .footer-brand-logo {
        height: 60px;
    }
    
    .social-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .footer-contact-item {
        padding: 12px;
    }
}



