:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --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: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --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(59, 130, 246, 0.08); /* Light blue */
  --color-bg-2: rgba(245, 158, 11, 0.08); /* Light yellow */
  --color-bg-3: rgba(34, 197, 94, 0.08); /* 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;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu.active {
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-8);
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Media Queries */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: none;
        opacity: 0;
    }

    .mobile-menu.active {
        display: block;
        opacity: 1;
    }

    .mobile-menu .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-24);
        margin-top: var(--space-32);
    }

    .mobile-menu .nav-link {
        color: #ff6b35;
        font-size: var(--font-size-xl);
    }
}

/* 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);
}

/* 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 */
:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --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: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --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);

  --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;

  --color-bg-1: rgba(59, 130, 246, 0.08);
  --color-bg-2: rgba(245, 158, 11, 0.08);
  --color-bg-3: rgba(34, 197, 94, 0.08);
  --color-bg-4: rgba(239, 68, 68, 0.08);
  --color-bg-5: rgba(147, 51, 234, 0.08);
  --color-bg-6: rgba(249, 115, 22, 0.08);
  --color-bg-7: rgba(236, 72, 153, 0.08);
  --color-bg-8: rgba(6, 182, 212, 0.08);

  --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);

  --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;

  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  --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;

  --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;

  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  --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);

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

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

@media (prefers-color-scheme: dark) {
  :root {
    --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;

    --color-bg-1: rgba(29, 78, 216, 0.15);
    --color-bg-2: rgba(180, 83, 9, 0.15);
    --color-bg-3: rgba(21, 128, 61, 0.15);
    --color-bg-4: rgba(185, 28, 28, 0.15);
    --color-bg-5: rgba(107, 33, 168, 0.15);
    --color-bg-6: rgba(194, 65, 12, 0.15);
    --color-bg-7: rgba(190, 24, 93, 0.15);
    --color-bg-8: rgba(8, 145, 178, 0.15);

    --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);

    --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);
  }
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  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); }

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-16);
}

/* Header & Navigation */
.header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-16) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
}

.logo-icon {
  font-size: 28px;
}

.nav-menu {
  display: flex;
  gap: var(--space-32);
  list-style: none;
  color: #000000;
}

.nav-link {
  color: #ff6b35;
  font-weight: var(--font-weight-medium);
  padding: var(--space-8) 0;
  position: relative;
  transition: color var(--duration-fast) var(--ease-standard);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-8);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--duration-normal) var(--ease-standard);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-24);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
}

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

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

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

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

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

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

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

/* Form Elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-12);
  font-size: var(--font-size-base);
  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);
}

.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);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}



.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(15, 23, 42, 0.95) 0%,  /* Very dark on left (text area) */
        rgba(15, 23, 42, 0.7) 50%, 
        rgba(15, 23, 42, 0.3) 100%); /* Lighter on right (image area) */
    z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--space-32);
}

.hero-title {
  font-size: 48px;
  margin-bottom: var(--space-16);
  color: var(--color-text);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-32);
  color: var(--color-text-secondary);
}

.hero-buttons {
  display: flex;
  gap: var(--space-16);
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section-title {
  text-align: center;
  margin-bottom: var(--space-16);
  font-size: var(--font-size-3xl);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-32);
}

.services-preview,
.why-choose,

.recent-projects,
.newsletter {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-32);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-standard),
              box-shadow var(--duration-normal) var(--ease-standard);
}

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

.service-icon {
  font-size: 48px;
  margin-bottom: var(--space-16);
}

.service-card h3 {
  margin-bottom: var(--space-12);
}

.service-card p {
  margin-bottom: var(--space-16);
  color: var(--color-text-secondary);
}

.service-list {
  list-style: none;
  text-align: left;
  margin: var(--space-24) 0;
  color: var(--color-text-secondary);
}

.service-list li {
  padding: var(--space-8) 0;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-24);
}

.benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  text-align: center;
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: var(--space-12);
}

.benefit-card h3 {
  margin-bottom: var(--space-8);
  font-size: var(--font-size-lg);
}

.benefit-card p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

/* Testimonials */








.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-standard);
}

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

.carousel-btn--prev {
  left: 0;
}

.carousel-btn--next {
  right: 0;
}

/* Projects Grid */
.projects-preview-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-24);
  margin-bottom: var(--space-32);
}

.project-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--duration-normal) var(--ease-standard),
              box-shadow var(--duration-normal) var(--ease-standard);
              
}

@media (max-width:380px){
  .project-card{
    margin-right: 50px;
  }
}

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

.project-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-3);
  font-size: 64px;
}

.project-content {
  padding: var(--space-20);
}

.project-category {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-text);
  padding: var(--space-4) var(--space-12);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  margin-bottom: var(--space-8);
}

.project-card h3 {
  margin-bottom: var(--space-8);
}

.project-card p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

/* Newsletter */
.newsletter {
  background: var(--color-bg-4);
  text-align: center;
}

.newsletter h2 {
  margin-bottom: var(--space-12);
}

.newsletter p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-24);
}

.newsletter-form {
  display: flex;
  gap: var(--space-12);
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
}

/* Page Header */
.page-header {
  background: var(--color-bg-5);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--space-12);
  font-size: 42px;
  color: #ff804c !important;
}

.page-header p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-xl);
}

/* About Page */
.about-overview {
  padding: 80px 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto var(--space-32);
}

.about-content h2 {
  margin-bottom: var(--space-16);
}

.about-content p {
  margin-bottom: var(--space-16);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-24);
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-8);
}

.stat-label {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

/* Company Values */
.company-values {
  padding: 80px 0;
  background: var(--color-bg-6);
}

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

.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  text-align: center;
}

.value-icon {
  font-size: 40px;
  margin-bottom: var(--space-12);
}

.value-card h3 {
  margin-bottom: var(--space-12);
}

.value-card p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

/* Timeline */
.timeline {
  padding: 80px 0;
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-32);
  margin-bottom: var(--space-32);
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50px;
  top: 60px;
  width: 2px;
  height: calc(100% + var(--space-32));
  background: var(--color-border);
}

.timeline-year {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.timeline-content {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-20);
}

.timeline-content h3 {
  margin-bottom: var(--space-8);
}

.timeline-content p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--color-bg-7);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--space-12);
}

.cta-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-24);
}

/* Service Detail */
.service-detail {
  padding: 80px 0;
}

.service-detail--alt {
  background: var(--color-bg-8);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: var(--space-24);
  margin-bottom: var(--space-32);
}

.service-detail-icon {
  font-size: 64px;
}

.service-detail-header h2 {
  margin-bottom: var(--space-8);
}

.service-detail-header p {
  color: var(--color-text-secondary);
}

/* Process */
.service-process,
.seo-offerings,
.case-studies {
  margin-bottom: var(--space-32);
}

.service-process h3,
.seo-offerings h3,
.case-studies h3 {
  margin-bottom: var(--space-24);
}

.process-grid,
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-24);
}

.process-step,
.offering-card {
  text-align: center;
  padding: var(--space-20);
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin: 0 auto var(--space-16);
}

.process-step h4,
.offering-card h4 {
  margin-bottom: var(--space-8);
}

.process-step p,
.offering-card p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

/* Results */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-24);
  margin-top: var(--space-24);
}

.result-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  text-align: center;
}

.result-number {
  font-size: 42px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-8);
}

.result-card p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

/* Pricing */
.pricing-section {
  margin-top: var(--space-32);
}

.pricing-section h3 {
  margin-bottom: var(--space-24);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-24);
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  text-align: center;
  position: relative;
  transition: transform var(--duration-normal) var(--ease-standard),
              box-shadow var(--duration-normal) var(--ease-standard);
}

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

.pricing-card--featured {
  border-color: var(--color-primary);
  border-width: 2px;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  padding: var(--space-4) var(--space-16);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}

.pricing-card h4 {
  margin-bottom: var(--space-16);
}

.price {
  font-size: 42px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-24);
}

.price span {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-24);
  text-align: left;
}

.pricing-features li {
  padding: var(--space-8) 0;
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

/* Portfolio */
.portfolio-section {
  padding: 80px 0;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  margin-bottom: var(--space-32);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-8) var(--space-20);
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: black;
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: all var(--duration-fast) var(--ease-standard);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  border-color: var(--color-primary);
}

/* Team */
.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-32);
}

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-standard),
              box-shadow var(--duration-normal) var(--ease-standard);
}

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

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto var(--space-16);
}

.team-card h3 {
  margin-bottom: var(--space-4);
}

.team-role {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-12);
}

.team-bio {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-16);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: background var(--duration-fast) var(--ease-standard);
}

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

/* Company Culture */
.company-culture {
  padding: 80px 0;
  background: var(--color-bg-1);
}

.culture-text {
  max-width: 800px;
  margin: 0 auto var(--space-32);
  text-align: center;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.culture-values {
  display: flex;
  justify-content: center;
  gap: var(--space-32);
  flex-wrap: wrap;
}

.culture-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.culture-icon {
  font-size: 32px;
}

/* Blog */
.blog-section {
  padding: 80px 0;
}

.blog-filters {
  margin-bottom: var(--space-32);
}

#blogSearch {
  max-width: 400px;
  margin: 0 auto var(--space-16);
}

.blog-categories {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.category-btn {
  padding: var(--space-6) var(--space-16);
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text);
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: all var(--duration-fast) var(--ease-standard);
}

.category-btn:hover,
.category-btn.active {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  border-color: var(--color-primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-32);
}

.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-standard),
              box-shadow var(--duration-normal) var(--ease-standard);
}

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

.blog-header {
  background: var(--color-bg-2);
  padding: var(--space-20);
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
}

.blog-category {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  padding: var(--space-2) var(--space-8);
  border-radius: var(--radius-sm);
}

.blog-content {
  padding: var(--space-20);
}

.blog-card h3 {
  margin-bottom: var(--space-12);
}

.blog-excerpt {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-16);
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-16);
  border-top: 1px solid var(--color-border);
}

.blog-author {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
}

.read-more {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

/* Contact */
.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-32);
}

.contact-info h2 {
  margin-bottom: var(--space-16);
}

.contact-info > p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-32);
}

.contact-details {
  margin-bottom: var(--space-32);
}

.contact-item {
  display: flex;
  gap: var(--space-16);
  margin-bottom: var(--space-20);
}

.contact-icon {
  font-size: 32px;
}

.contact-item strong {
  display: block;
  margin-bottom: var(--space-4);
}

.contact-item p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.office-map {
  margin-top: var(--space-24);
}

.map-placeholder {
  background: var(--color-bg-3);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.map-icon {
  font-size: 48px;
}

.map-placeholder p {
  color: var(--color-text-secondary);
}

.contact-form-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
}

.success-message {
  text-align: center;
  padding: var(--space-32);
}

.success-icon {
  font-size: 64px;
  margin-bottom: var(--space-16);
}

.success-message h3 {
  color: var(--color-success);
  margin-bottom: var(--space-12);
}

.success-message p {
  color: var(--color-text-secondary);
}

/* Footer */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 var(--space-32);
  margin-top: 80px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: var(--space-16);
}

.footer-section p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-8);
}

.footer-links a {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  transition: color var(--duration-fast) var(--ease-standard);
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.social-link {
  padding: var(--space-8) var(--space-16);
  background: var(--color-secondary);
  border-radius: var(--radius-base);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition: all var(--duration-fast) var(--ease-standard);
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--space-24);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-20);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: var(--space-32);
}

.modal-close {
  position: absolute;
  top: var(--space-16);
  right: var(--space-16);
  background: var(--color-secondary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-standard);
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: var(--space-20);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--duration-normal) var(--ease-standard);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;

  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .services-grid,
  .projects-preview-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

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

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: var(--space-16);
  }

  .timeline-item::after {
    left: 40px;
  }

 

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: var(--font-size-md);
  }

  .hero-title {
    font-size: 24px;
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  .benefits-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

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

/* different header */

/* banner */

/* Banner Container */
        .hero-banner {
            width: 100%;
            min-height: 600px;
            background: linear-gradient(135deg, #001a4d 0%, #0066cc 50%, #00ccff 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Animated Background Elements */
        .banner-bg-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            background: white;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 200px;
            height: 200px;
            background: white;
            bottom: -50px;
            left: -50px;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 150px;
            height: 150px;
            background: white;
            top: 50%;
            right: 10%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(30px);
            }
        }

        /* Banner Content */
        .banner-content {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            width: 100%;
            padding: 60px 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .banner-text {
            color: white;
            animation: slideInLeft 0.8s ease-out;
            background-color: #00000080 !important;
            border-radius: 10px;
            padding-left: 50px;
            padding-bottom: 30px;
            padding-top: 30px;

        }

        @media (max-width:360px){

          .banner-text {
            color: white;
            animation: slideInLeft 0.8s ease-out;
            background-color: #00000080 !important;
            border-radius: 10px;
            padding-left: 30px;
            padding-bottom: 30px;
            padding-top: 30px;

        }
        }

        @media (max-width:900px){

          .banner-text {
            color: white;
            animation: slideInLeft 0.8s ease-out;
            background-color: #00000080 !important;
            border-radius: 10px;
            padding-left: 30px;
            padding-bottom: 30px;
            padding-top: 30px;
            padding-right: 20px;

        }
        }


              
            
            
            
        
        .banner-text h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            background-color: #00000080 !important;
        }

        .banner-text p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 500px;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
            background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        /* Visual Element - Right Side */
        .banner-visual {
            position: relative;
            height: 400px;
            animation: slideInRight 0.8s ease-out;
        }

        .tech-mockup {
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: pulse 3s ease-in-out infinite;
        }
        .tech-mockup {
         /* your desired height */
  overflow: hidden;      /* hides overflow */
     /* optional */
}

        .tech-mockup img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

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

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

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-banner {
                min-height: 400px;
            }

            .banner-content {
                grid-template-columns: 1fr;
                padding: 40px 20px;
                gap: 30px;
            }

            .banner-text h1 {
                font-size: 36px;
            }

            .banner-text p {
                font-size: 16px;
            }

            .banner-visual {
                height: 300px;
            }

            .floating-circle {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-banner {
                min-height: 350px;
            }

            .banner-text h1 {
                font-size: 28px;
            }

            .banner-text p {
                font-size: 14px;
            }

            .cta-button {
                padding: 14px 30px;
                font-size: 14px;
            }

            .banner-visual {
                height: 250px;
            }
        }

        /* header */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #FF6B35;
            --primary-dark: #1a1a1a;
            --secondary-dark: #242424;
            --text-light: #ffffff;
            --text-muted: #cccccc;
            --accent-blue: #0066cc;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ============ TOP INFO BAR ============ */
        .top-info-bar {
            background: var(--primary-color);
            padding: 12px 0;
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 100;
        }

        .top-info-content {
            max-width: 1400px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        .info-left, .info-right {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .info-item:hover {
            opacity: 0.85;
            transform: translateX(3px);
        }

        .info-item i {
            font-size: 16px;
        }

        /* ============ MAIN HEADER ============ */
        .main-header {
            background: var(--primary-dark);
            border-bottom: 3px solid var(--primary-color);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .main-header.shrink {
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        /* ============ LOGO ============ */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-size: 24px;
            font-weight: 800;
            color: var(--text-light);
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
        }

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

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

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

        .main-header.shrink .logo-text {
            font-size: 18px;
        }

        /* ============ NAVIGATION ============ */
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 5px;
            align-items: center;
        }

        nav li {
            position: relative;
        }

        nav a {
            display: block;
            padding: 12px 18px;
            color: var(--text-light);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--primary-color);
            transition: var(--transition);
            transform: translateX(-50%);
        }

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

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

        /* ============ HEADER ACTIONS ============ */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .quick-call {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 20px;
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid var(--primary-color);
            border-radius: 25px;
            font-size: 13px;
            transition: var(--transition);
        }

        .quick-call:hover {
            background: rgba(255, 107, 53, 0.2);
        }

        .quick-call-number {
            font-weight: 700;
            color: var(--primary-color);
        }

        /* ============ SEARCH BAR ============ */
        .search-box {
            position: relative;
            width: 0;
            overflow: hidden;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .search-box.active {
            width: 250px;
        }

        .search-box input {
            width: 100%;
            padding: 10px 15px;
            background: transparent;
            border: none;
            color: var(--text-light);
            font-size: 14px;
            outline: none;
        }

        .search-box input::placeholder {
            color: var(--text-muted);
        }

        .search-icon {
            cursor: pointer;
            padding: 0 15px;
            color: var(--text-light);
            transition: var(--transition);
        }

        .search-icon:hover {
            color: var(--primary-color);
        }

        /* ============ SOCIAL ICONS ============ */
        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 2px solid var(--primary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
            font-size: 16px;
        }

        .social-icon:hover {
            background: var(--primary-color);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* ============ CTA BUTTON ============ */
        .cta-btn {
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

        /* ============ HAMBURGER MENU ============ */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-light);
            border-radius: 3px;
            transition: var(--transition);
        }

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

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

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

        /* ============ MOBILE MENU ============ */
        .mobile-menu {
            display: none;
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100vh;
            background: var(--secondary-dark);
            z-index: 999;
            overflow-y: auto;
            padding-top: 80px;
        }

        .mobile-menu.active {
            display: block;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                transform: translateX(-100%);
            }
            to {
                transform: translateX(0);
            }
        }

        .mobile-menu nav ul {
            flex-direction: column;
            gap: 0;
        }

        .mobile-menu nav a {
            display: block;
            padding: 16px 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            text-align: left;
        }

        .mobile-menu nav a::after {
            display: none;
        }

        .mobile-menu nav a:hover {
            background: rgba(255, 107, 53, 0.1);
            padding-left: 50px;
        }

        /* ============ RESPONSIVE DESIGN ============ */
        @media (max-width: 1024px) {
            .header-container {
                padding: 0 30px;
            }

            nav ul {
                gap: 0;
            }

            nav a {
                padding: 10px 14px;
                font-size: 14px;
            }

            .search-box.active {
                width: 200px;
            }

            .social-icons {
                gap: 8px;
            }

            .social-icon {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .top-info-bar {
                display: none;
            }

            .header-container {
                padding: 0 20px;
            }

            .hamburger {
                display: flex;
            }

            .nav-wrapper {
                display: none;
            }

            .nav-wrapper.mobile-active {
                display: flex;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--secondary-dark);
                flex-direction: column;
                z-index: 999;
                padding: 20px 0;
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            nav a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .quick-call {
                display: none;
            }

            .search-box {
                width: 200px;
            }

            .search-box.active {
                width: 200px;
            }

            .social-icons {
                display: none;
            }

            .header-actions {
                gap: 10px;
            }

            .cta-btn {
                padding: 10px 20px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 15px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .logo-text {
                font-size: 16px;
            }

            .header-actions {
                gap: 8px;
            }

            .search-box,
            .search-box.active {
                width: 150px;
            }

            .cta-btn {
                padding: 8px 16px;
                font-size: 11px;
            }
        }

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

        .main-header {
            animation: fadeInDown 0.5s ease;
        }




        /* footer */

        :root {
            --primary-color: #FF6B35;
            --primary-dark: #0a0e27;
            --secondary-dark: #1a1f3a;
            --text-light: #ffffff;
            --text-muted: #b0b0b0;
            --accent-blue: #0066cc;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ============ MAIN CONTENT (SAMPLE) ============ */
        .main-content {
            background: #f5f5f5;
            padding: 80px 40px;
            color: #333;
        }

        .main-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .main-content p {
            font-size: 16px;
            line-height: 1.8;
        }

        /* ============ FOOTER MAIN ============ */
        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            border-top: 4px solid var(--primary-color);
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }

        /* Animated Background */
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
            pointer-events: none;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.8;
            }
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        /* ============ FOOTER TOP SECTION ============ */
        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* ============ FOOTER BRAND SECTION ============ */
        .footer-brand {
            animation: fadeInUp 0.8s ease;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            text-decoration: none;
            font-size: 22px;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            color: var(--text-light);
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .footer-logo span {
            color: var(--primary-color);
        }

        .footer-description {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* ============ FOOTER SECTIONS ============ */
        .footer-section h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-light);
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }

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

        .footer-section li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-section a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        /* ============ NEWSLETTER SECTION ============ */
        .footer-newsletter {
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .newsletter-form {
            position: relative;
            margin-top: 20px;
        }

        .newsletter-input {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 14px;
            transition: var(--transition);
            margin-bottom: 10px;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-color);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-btn {
            width: 100%;
            padding: 12px 20px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

        .newsletter-btn:active {
            transform: translateY(0);
        }

        /* ============ SOCIAL LINKS ============ */
        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
            font-size: 16px;
        }

        .social-link:hover {
            background: var(--primary-color);
            color: var(--primary-dark);
            transform: translateY(-3px) scale(1.1);
        }

        /* ============ CONTACT INFO ============ */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 16px;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon {
            background: rgba(255, 107, 53, 0.2);
            transform: scale(1.05);
        }

        .contact-text {
            flex: 1;
        }

        .contact-text h4 {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-text p {
            font-size: 14px;
            color: var(--text-light);
        }

        .contact-text a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

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

        /* ============ FOOTER BOTTOM ============ */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-links {
            display: flex;
            gap: 25px;
        }

        .footer-links a {
            font-size: 13px;
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }

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

        /* ============ BACK TO TOP BUTTON ============ */
        .back-to-top {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .back-to-top.show {
            display: flex;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

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

        /* ============ RESPONSIVE DESIGN ============ */
        @media (max-width: 768px) {
            .footer-container {
                padding: 0 20px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-section h3::after {
                width: 25px;
            }

            .footer-top {
                padding-bottom: 30px;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                padding: 0 15px;
            }

            .footer-top {
                gap: 25px;
                padding-bottom: 25px;
            }

            .footer-section h3 {
                font-size: 15px;
            }

            .footer-section a {
                font-size: 13px;
            }

            .newsletter-input,
            .newsletter-btn {
                font-size: 13px;
            }

            .footer-copyright,
            .footer-links a {
                font-size: 12px;
            }
        }

        /* running strip */

        .ticker-container {
            background: linear-gradient(90deg, #FF6B35 0%, #ff8c42 50%, #FF6B35 100%);
            padding: 20px 0;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
            border-top: 3px solid #ff4500;
            border-bottom: 3px solid #ff4500;
        }

        .ticker-wrapper {
            display: flex;
            align-items: center;
            height: 60px;
            position: relative;
        }

        /* Ticker Label */
        .ticker-label {
            background: rgba(255, 255, 255, 0.15);
            padding: 12px 20px;
            font-weight: 700;
            font-size: 14px;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            flex-shrink: 0;
            border-right: 3px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ticker-label i {
            animation: pulse 1s ease-in-out infinite;
        }

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

        /* Ticker Content */
        .ticker-content {
            flex: 1;
            overflow: hidden;
            position: relative;
            height: 60px;
            display: flex;
            align-items: center;
        }

        .ticker-text {
            white-space: nowrap;
            color: white;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 0.5px;
            animation: scroll-left 30s linear infinite;
            display: inline-block;
            padding-right: 100px;
        }

        /* Double the text for seamless loop */
        .ticker-text:nth-child(2) {
            animation-delay: -15s;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Pause animation on hover */
        .ticker-content:hover .ticker-text {
            animation-play-state: paused;
        }

        /* Gradient fade effect */
        .ticker-content::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 50px;
            background: linear-gradient(90deg, rgba(255, 107, 53, 1) 0%, transparent 100%);
            z-index: 10;
            pointer-events: none;
        }

        .ticker-content::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 50px;
            background: linear-gradient(270deg, rgba(255, 107, 53, 1) 0%, transparent 100%);
            z-index: 10;
            pointer-events: none;
        }


        /* lower banner */

        /* ============ QUOTE SECTION ============ */
        .quote-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            position: relative;
            overflow: hidden;
            padding: 80px 40px;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Animated Background */
        .quote-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
            pointer-events: none;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* Floating Elements */
        .floating-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            background: #0066cc;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 200px;
            height: 200px;
            background: #FF6B35;
            bottom: -50px;
            left: -50px;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 150px;
            height: 150px;
            background: #00ccff;
            top: 50%;
            right: 10%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(30px); }
        }

        /* ============ QUOTE CONTAINER ============ */
        .quote-container {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            width: 100%;
            align-items: center;
        }

        /* ============ LEFT CONTENT ============ */
        .quote-content {
            animation: slideInLeft 0.8s ease-out;
        }

        .quote-content h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            line-height: 1.2;
        }

        .quote-content p {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 30px;
        }

        .quote-btn-trigger {
            padding: 16px 40px;
            background: white;
            color: var(--primary-color);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .quote-btn-trigger:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
            background: #f0f0f0;
        }

        /* ============ RIGHT STATS ============ */
        .quote-stats {
            animation: slideInRight 0.8s ease-out;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 20px;
            transition: var(--transition);
            text-align: center;
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .stat-icon {
            font-size: 40px;
            margin-bottom: 15px;
            display: inline-block;
            color: var(--primary-color);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 10px;
            color: white;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ============ MODAL OVERLAY ============ */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
        }

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

        /* ============ MODAL CARD ============ */
        .modal-card {
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: slideUp 0.4s ease-out;
        }

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

        /* Close Button */
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .modal-close:hover {
            transform: rotate(90deg);
            background: #ff5500;
        }

        /* Modal Header */
        .modal-header {
            margin-bottom: 30px;
            text-align: center;
        }

        .modal-header h3 {
            font-size: 28px;
            font-weight: 800;
            color: #333;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 10px;
        }

        .modal-header p {
            font-size: 14px;
            color: #888;
        }

        .modal-decoration {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            margin: 0 auto 20px;
        }

        /* ============ FORM FIELDS ============ */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: none;
            border-bottom: 2px solid #e0e0e0;
            background: transparent;
            font-size: 14px;
            color: #333;
            transition: var(--transition);
            font-family: 'Roboto', sans-serif;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-bottom-color: var(--primary-color);
            box-shadow: 0 2px 0 0 var(--primary-color);
        }

        .form-group input::placeholder {
            color: #ccc;
        }

        /* ============ SUBMIT BUTTON ============ */
        .form-submit {
            width: 100%;
            padding: 14px 20px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            margin-top: 20px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        /* ============ ANIMATIONS ============ */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        /* ============ RESPONSIVE DESIGN ============ */
        @media (max-width: 1024px) {
            .quote-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .quote-content h2 {
                font-size: 36px;
            }

            .stat-card {
                padding: 25px;
            }
        }

        @media (max-width: 768px) {
            .quote-section {
                padding: 60px 20px;
                min-height: 400px;
            }

            .quote-content h2 {
                font-size: 28px;
            }

            .quote-content p {
                font-size: 14px;
            }

            .quote-btn-trigger {
                padding: 14px 30px;
                font-size: 14px;
            }

            .stat-card {
                padding: 20px;
            }

            .stat-number {
                font-size: 28px;
            }

            .modal-card {
                padding: 40px 30px;
            }

            .modal-header h3 {
                font-size: 24px;
            }

            .floating-circle {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .quote-section {
                padding: 40px 15px;
            }

            .quote-content h2 {
                font-size: 22px;
            }

            .quote-btn-trigger {
                width: 100%;
                justify-content: center;
            }

            .modal-card {
                padding: 30px 20px;
                border-radius: 16px;
            }

            .modal-header h3 {
                font-size: 20px;
            }

            .form-group input,
            .form-group select {
                font-size: 16px; /* Prevents zoom on iOS */
            }

            .form-submit {
                font-size: 13px;
            }
        }

        /* ============ SUCCESS MESSAGE ============ */
        .success-message {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .success-message.show {
            display: block;
            animation: slideUp 0.4s ease-out;
        }

        .success-icon {
            font-size: 60px;
            color: #4CAF50;
            margin-bottom: 20px;
        }

        .success-message h4 {
            font-size: 24px;
            color: #333;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .success-message p {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }

         .tech-mockup img{
            max-height: 420px !important;
            width: 620;
        }


        /* extra */

        /* ============================================
   ENHANCED COLOR SCHEME & ANIMATIONS
   Modern IT Company Website Design
   ============================================ */

:root {
  /* ===== UPGRADED COLOR PALETTE ===== */
  /* Primary Brand Colors */
  --primary-orange: #FF6B35;
  --primary-orange-light: #FF8C57;
  --primary-orange-dark: #E85A2A;
  
  /* Vibrant Accent Colors */
  --accent-cyan: #00D4FF;
  --accent-purple: #7C3AED;
  --accent-pink: #EC4899;
  --accent-green: #10B981;
  
  /* Modern Gradients */
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C57 50%, #FFA07A 100%);
  --gradient-purple: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
  --gradient-cyan: linear-gradient(135deg, #00D4FF 0%, #06B6D4 100%);
  --gradient-sunset: linear-gradient(135deg, #FF6B35 0%, #EC4899 50%, #7C3AED 100%);
  --gradient-ocean: linear-gradient(135deg, #0EA5E9 0%, #7C3AED 100%);
  
  /* Dark Theme Colors */
  --dark-bg-primary: #0F172A;
  --dark-bg-secondary: #1E293B;
  --dark-bg-tertiary: #334155;
  
  /* Glass morphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  
  /* Shadows with color */
  --shadow-orange: 0 10px 40px rgba(255, 107, 53, 0.3);
  --shadow-purple: 0 10px 40px rgba(124, 58, 237, 0.3);
  --shadow-cyan: 0 10px 40px rgba(0, 212, 255, 0.3);
  
  /* Animation Timing */
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-fast: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   GLOBAL ANIMATIONS
   ============================================ */

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

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

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

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

/* Scale & Rotate Animations */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.8);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* Floating Animation */
@keyframes floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

/* Pulse & Glow */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px var(--primary-orange), 0 0 40px var(--primary-orange);
  }
  50% {
    box-shadow: 0 0 30px var(--primary-orange), 0 0 60px var(--primary-orange);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* ============================================
   ENHANCED HEADER WITH ANIMATIONS
   ============================================ */

.main-header {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid transparent;
  border-image: var(--gradient-primary) 1;
  animation: fadeInDown 0.6s var(--ease-smooth);
}

.main-header.shrink {
  animation: none;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 53, 0.1);
}

/* Animated Logo */
.logo {
  animation: fadeInLeft 0.8s var(--ease-bounce);
}

.logo-icon {
  background: var(--gradient-primary);
  animation: rotateIn 1s var(--ease-bounce);
  transition: all 0.4s var(--ease-smooth);
}

.logo:hover .logo-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: var(--shadow-orange);
}

/* Enhanced Navigation */
nav a {
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease-smooth);
}

nav a:hover::before,
nav a.active::before {
  transform: translateX(0);
}

nav a::after {
  display: none; /* Remove old underline */
}

/* Social Icons with Gradient Hover */
.social-icon {
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-bounce);
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s;
}

.social-icon:hover {
  border-color: transparent;
  transform: translateY(-5px) scale(1.1);
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon i {
  position: relative;
  z-index: 1;
}

/* CTA Button with Animated Gradient */
.cta-btn {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.cta-btn:hover::before {
  transform: translateX(100%);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

/* ============================================
   BANNER SECTION WITH PARALLAX
   ============================================ */

.hero-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Gradient */
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  animation: gradientShift 10s ease infinite;
  background-size: 200% 200%;
}

/* Enhanced Floating Circles */
.floating-circle {
  animation: floatingRotate 8s ease-in-out infinite;
  filter: blur(40px);
}

.circle-1 {
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
  animation-delay: 0s;
}

.circle-2 {
  background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
  animation-delay: 2s;
}

.circle-3 {
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  animation-delay: 4s;
}

/* Banner Content Animation */
.banner-text {
  animation: fadeInLeft 1s var(--ease-smooth) 0.3s backwards;
}

.banner-text h1 {
  background: linear-gradient(135deg, #fff 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.5s backwards;
}

.banner-visual {
  animation: fadeInRight 1s var(--ease-smooth) 0.4s backwards;
}

/* Glassmorphism Card */
.tech-mockup {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: floating 4s ease-in-out infinite;
  transition: all 0.4s var(--ease-smooth);
}

.tech-mockup:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(255, 107, 53, 0.3),
    0 0 40px rgba(255, 107, 53, 0.2);
}

/* Enhanced CTA Button */
.cta-button {
  background: var(--gradient-sunset);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: '→';
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.cta-button:hover::after {
  transform: translateX(5px);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(255, 107, 53, 0.5);
}

/* ============================================
   TICKER STRIP WITH GRADIENT
   ============================================ */

.ticker-container {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  border-top: 3px solid var(--accent-cyan);
  border-bottom: 3px solid var(--accent-purple);
  position: relative;
  overflow: hidden;
}

.ticker-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%);
  animation: shimmer 3s infinite;
}

.ticker-label {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-right: 3px solid rgba(255, 255, 255, 0.4);
}

.ticker-label i {
  animation: pulse 1.5s ease-in-out infinite;
  color: white;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* ============================================
   FOOTER WITH GRADIENT EFFECTS
   ============================================ */

footer {
  background: linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 100%);
  border-top: 3px solid transparent;
  border-image: var(--gradient-primary) 1;
}

footer::before {
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
  background-size: 200% 200%;
}

/* Footer Links with Gradient Hover */
.footer-section a {
  position: relative;
  transition: all 0.3s var(--ease-smooth);
}

.footer-section a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s var(--ease-smooth);
}

.footer-section a:hover::before {
  width: 100%;
}

.footer-section a:hover {
  color: var(--primary-orange);
  transform: translateX(8px);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* Social Links with 3D Effect */
.social-link {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--glass-border);
  transition: all 0.4s var(--ease-bounce);
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-8px) scale(1.15) rotate(360deg);
  box-shadow: var(--shadow-orange);
}

/* Newsletter Button */
.newsletter-btn {
  background: var(--gradient-sunset);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  transition: all 0.3s var(--ease-smooth);
}

.newsletter-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-orange);
}

/* ============================================
   QUOTE SECTION WITH CARDS
   ============================================ */

.quote-section {
  background: linear-gradient(135deg, var(--dark-bg-primary), var(--dark-bg-secondary));
  position: relative;
}

.quote-section::before {
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  animation: gradientShift 12s ease infinite;
  background-size: 200% 200%;
}

/* Stat Cards with Glassmorphism */
.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-bounce);
  animation: fadeInUp 0.6s var(--ease-smooth) backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }

.stat-card:hover {
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.15), 
    rgba(124, 58, 237, 0.15));
  border-color: var(--primary-orange);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 107, 53, 0.3);
}

.stat-icon {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: floating 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.stat-number {
  background: linear-gradient(135deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   MODAL WITH ENHANCED EFFECTS
   ============================================ */

.modal-overlay {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 2px solid transparent;
  border-image: var(--gradient-primary) 1;
  animation: scaleIn 0.5s var(--ease-bounce);
}

.modal-decoration {
  background: var(--gradient-sunset);
  animation: rotateIn 0.8s var(--ease-bounce);
}

.form-group input:focus,
.form-group select:focus {
  border-bottom-color: var(--primary-orange);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
  animation: pulseGlow 2s ease-in-out infinite;
}

.form-submit {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  transition: all 0.3s var(--ease-smooth);
}

.form-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-orange);
}

/* ============================================
   SCROLL ANIMATIONS (Add to body)
   ============================================ */

/* Add this class to elements you want to animate on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-smooth);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
  .floating-circle {
    animation: floating 6s ease-in-out infinite;
  }
  
  .stat-card:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .tech-mockup {
    animation: floating 3s ease-in-out infinite;
  }
}

/* ============================================
   LOADING ANIMATION (Optional)
   ============================================ */

@keyframes pageLoad {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

body {
  animation: pageLoad 0.5s var(--ease-smooth);
}


/* content 1 design */

:root {
    --primary-orange: #FF6B35;
    --primary-orange-light: #FF8C57;
    --accent-cyan: #00D4FF;
    --accent-purple: #7C3AED;
    --dark-bg: #0F172A;
    --dark-secondary: #1E293B;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light-gray: #9CA3AF;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C57 100%);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   ENHANCED ANIMATIONS LIBRARY
   ============================================ */

/* Text Reveal Animations */
@keyframes textReveal {
    from {
        opacity: 0;
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
    to {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes textSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) skewY(2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) skewY(0);
    }
}

@keyframes textSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes typingEffect {
    from {
        width: 0;
        border-right: 2px solid var(--primary-orange);
    }
    to {
        width: 100%;
        border-right: 2px solid transparent;
    }
}

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

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

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

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

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

/* Floating & Motion */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

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

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

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0), 0 0 20px rgba(255, 107, 53, 0);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5), 0 0 20px rgba(255, 107, 53, 0.3);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes underlineExpand {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@keyframes borderDraw {
    from {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateFadeIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes slideUpBounce {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes highlightPulse {
    0%, 100% {
        background-color: transparent;
    }
    50% {
        background-color: rgba(255, 107, 53, 0.1);
    }
}

/* ============================================
   ARTICLE SECTION WITH ANIMATIONS
   ============================================ */

.article-section {
    padding: 80px 40px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.article-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floating 8s ease-in-out infinite;
}

.article-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatingRotate 10s ease-in-out infinite;
    animation-delay: 2s;
}

/* Article Container */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Article Header */
.article-header {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    animation: slideUpBounce 0.8s var(--ease-bounce);
}

.article-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: white;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: slideUpBounce 0.8s var(--ease-bounce) 0.1s backwards;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.article-category::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

.article-category:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.article-date,
.article-author,
.article-read-time {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: textSlideIn 0.8s ease backwards;
    transition: all 0.3s;
}

.article-date { animation-delay: 0.1s; }
.article-author { animation-delay: 0.2s; }
.article-read-time { animation-delay: 0.3s; }

.article-date:hover,
.article-author:hover,
.article-read-time:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.article-date i,
.article-author i,
.article-read-time i {
    color: var(--primary-orange);
    animation: spin 0.6s ease;
}

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

/* Article Title */
.article-title {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textReveal 1s ease-out;
    position: relative;
}

.article-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 0.3s backwards;
}

.article-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
    animation: textSlideIn 0.8s ease 0.4s backwards;
}

/* Featured Image */
.article-featured-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    margin: 50px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: scaleIn 0.8s ease;
    transition: all 0.3s;
    position: relative;
}

.article-featured-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.15);
}

/* Article Content */
.article-content {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Main Heading (H1) */
.article-content h1 {
    font-size: 42px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin: 50px 0 20px 0;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
    animation: textSlideUp 0.8s var(--ease-smooth);
}

.article-content h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: slideUpBounce 0.6s var(--ease-bounce);
    transform-origin: top;
}

/* Subheading (H2) */
.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
    animation: textSlideUp 0.8s var(--ease-smooth);
    transition: all 0.3s;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary-orange) 0%, var(--accent-purple) 100%);
    border-radius: 2px;
    animation: rotateFadeIn 0.6s var(--ease-bounce);
}

.article-content h2:hover {
    color: var(--primary-orange);
    transform: translateX(10px);
}

/* Sub-subheading (H3) */
.article-content h3 {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin: 30px 0 15px 0;
    line-height: 1.3;
    animation: textSlideUp 0.6s var(--ease-smooth);
    transition: all 0.3s;
}

.article-content h3:hover {
    color: var(--primary-orange);
    padding-left: 10px;
}

/* Paragraphs */
.article-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
    animation: fadeInUp 0.8s ease backwards;
    transition: all 0.3s;
}

.article-content p:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* First Letter Drop Cap */
.article-content p:first-of-type::first-letter {
    font-size: 48px;
    font-weight: bold;
    float: left;
    line-height: 32px;
    padding-right: 8px;
    color: var(--primary-orange);
    font-family: 'Poppins', sans-serif;
    animation: rotateFadeIn 0.6s var(--ease-bounce);
}

/* Strong Text */
.article-content strong {
    color: var(--primary-orange);
    font-weight: 700;
    animation: glow 2s ease-in-out infinite;
    transition: all 0.3s;
}

.article-content strong:hover {
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    transform: scale(1.05);
}

/* Emphasis */
.article-content em {
    color: var(--accent-purple);
    font-style: italic;
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s;
}

.article-content em:hover {
    transform: skewX(5deg);
}

/* Links */
.article-content a {
    color: var(--primary-orange);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.article-content a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.article-content a:hover {
    color: white;
}

.article-content a:hover::before {
    transform: scaleX(1);
}

/* Blockquote */
.article-content blockquote {
    border-left: 4px solid var(--gradient-primary);
    padding: 20px;
    margin: 30px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 140, 87, 0.05) 100%);
    border-radius: 8px;
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    animation: slideInLeft 0.8s ease;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.article-content blockquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

.article-content blockquote:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

/* Lists */
.article-content ul,
.article-content ol {
    margin: 20px 0 20px 30px;
    animation: fadeInUp 0.8s ease backwards;
}

.article-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 16px;
    animation: slideUpBounce 0.6s var(--ease-bounce) backwards;
    transition: all 0.3s;
}

.article-content li:nth-child(1) { animation-delay: 0.1s; }
.article-content li:nth-child(2) { animation-delay: 0.2s; }
.article-content li:nth-child(3) { animation-delay: 0.3s; }
.article-content li:nth-child(4) { animation-delay: 0.4s; }
.article-content li:nth-child(5) { animation-delay: 0.5s; }

.article-content li:hover {
    color: var(--primary-orange);
    transform: translateX(10px);
}

.article-content ul li::marker {
    color: var(--primary-orange);
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

.article-content ol li::marker {
    color: var(--primary-orange);
    font-weight: bold;
}

/* Code Block */
.article-content code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-orange);
    font-size: 14px;
    animation: highlightPulse 2s ease-in-out infinite;
    transition: all 0.3s;
}

.article-content code:hover {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.article-content pre {
    background: #1f2937;
    color: #e5e7eb;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    line-height: 1.6;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    animation: slideInLeft 0.8s ease;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s;
}

.article-content pre:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
}

/* Horizontal Rule */
.article-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 50%, transparent 100%);
    margin: 40px 0;
    animation: underlineExpand 1s ease;
    position: relative;
}

/* Callout Box */
.callout-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: slideInLeft 0.8s var(--ease-bounce);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.callout-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

.callout-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.callout-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    animation: rotateFadeIn 0.8s var(--ease-bounce);
    transition: all 0.3s;
}

.callout-box:hover .callout-icon {
    transform: rotate(360deg) scale(1.1);
}

.callout-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.callout-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    animation: textSlideUp 0.6s ease;
}

.callout-content p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
    animation: textSlideUp 0.6s ease 0.1s backwards;
}

/* Table of Contents */
.table-of-contents {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    animation: slideInLeft 0.8s ease;
    transition: all 0.3s;
}

.table-of-contents:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

.table-of-contents h4 {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 15px;
    animation: textSlideUp 0.6s ease;
}

.table-of-contents ul {
    margin: 0;
    list-style: none;
}

.table-of-contents li {
    margin: 0;
    padding: 8px 0;
    animation: slideUpBounce 0.6s var(--ease-bounce) backwards;
}

.table-of-contents li:nth-child(1) { animation-delay: 0.1s; }
.table-of-contents li:nth-child(2) { animation-delay: 0.2s; }
.table-of-contents li:nth-child(3) { animation-delay: 0.3s; }
.table-of-contents li:nth-child(4) { animation-delay: 0.4s; }
.table-of-contents li:nth-child(5) { animation-delay: 0.5s; }

.table-of-contents a {
    color: var(--primary-orange);
    text-decoration: none;
    border: none;
    transition: all 0.3s;
    font-size: 15px;
    position: relative;
    display: inline-block;
}

.table-of-contents a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-cyan));
    transition: width 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--accent-purple);
    transform: translateX(10px);
}

.table-of-contents a:hover::after {
    width: 100%;
}

/* Article Stats */
.article-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    padding: 30px;
    border-radius: 16px;
    margin: 40px 0;
    animation: fadeInScale 0.8s ease;
}

.stat-item {
    text-align: center;
    animation: slideUpBounce 0.6s var(--ease-bounce) backwards;
    transition: all 0.3s;
    padding: 15px;
    border-radius: 8px;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.stat-item:hover {
    background: var(--gradient-primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-orange);
    margin-bottom: 5px;
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s;
}

.stat-item:hover .stat-number {
    color: white;
    animation: bounce 0.6s ease;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: textSlideUp 0.6s ease backwards;
    transition: color 0.3s;
}

.stat-item:hover .stat-label {
    color: white;
}

/* Share Buttons */
.article-share {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease;
    transition: all 0.3s;
}

.article-share:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.article-share p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    animation: textSlideUp 0.6s ease;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    animation: rotateFadeIn 0.6s var(--ease-bounce) backwards;
    position: relative;
    overflow: hidden;
}

.share-btn:nth-child(1) { animation-delay: 0.1s; }
.share-btn:nth-child(2) { animation-delay: 0.2s; }
.share-btn:nth-child(3) { animation-delay: 0.3s; }
.share-btn:nth-child(4) { animation-delay: 0.4s; }
.share-btn:nth-child(5) { animation-delay: 0.5s; }

.share-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    clip-path: circle(0% at center);
    transition: clip-path 0.3s;
}

.share-btn:hover::before {
    clip-path: circle(100% at center);
}

.share-btn:hover {
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-5px) scale(1.1) rotate(360deg);
    z-index: 1;
}

/* Related Articles */
.related-articles {
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    border: 2px solid #e5e7eb;
    animation: fadeInScale 0.8s ease;
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
    color: var(--text-dark);
    animation: textSlideUp 0.6s ease;
}

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

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
    animation: slideUpBounce 0.6s var(--ease-bounce) backwards;
}

.related-card:nth-child(1) { animation-delay: 0.1s; }
.related-card:nth-child(2) { animation-delay: 0.2s; }
.related-card:nth-child(3) { animation-delay: 0.3s; }

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.related-card-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    transition: all 0.3s;
    animation: rotateFadeIn 0.6s ease;
}

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

.related-card-content {
    padding: 20px;
}

.related-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    animation: textSlideUp 0.6s ease backwards;
    transition: all 0.3s;
}

.related-card:hover .related-card-title {
    color: var(--primary-orange);
}

.related-card-meta {
    font-size: 12px;
    color: var(--text-gray);
    animation: textSlideUp 0.6s ease 0.1s backwards;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .article-section {
        padding: 60px 20px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-content h1 {
        font-size: 28px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-featured-image {
        height: 250px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* content 1 design */


/* Portfolio2 */


        :root {
            --primary-orange: #FF6B35;
            --primary-orange-light: #FF8C57;
            --accent-cyan: #00D4FF;
            --accent-purple: #7C3AED;
            --accent-blue: #0066cc;
            --dark-bg: #0F172A;
            --dark-secondary: #1E293B;
            --text-dark: #000000;
            --text-gray: #000000;
            --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C57 100%);
            --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
            --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: #ffffff;
            color: var(--text-dark);
        }

        /* ============================================
           PORTFOLIO SECTION
           ============================================ */

        .portfolio-section {
            padding: 100px 40px;
            background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .portfolio-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: -200px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: floating 8s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-30px); }
        }

        .portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* ============================================
           SECTION HEADER
           ============================================ */

        .portfolio-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease;
        }

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

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            animation: slideInDown 0.6s ease;
        }

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

        .portfolio-title {
            font-size: 42px;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textReveal 1s ease-out;
        }

        @keyframes textReveal {
            from {
                opacity: 0;
                clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            }
            to {
                opacity: 1;
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
        }

        .portfolio-description {
            font-size: 16px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            animation: textSlideUp 0.8s ease 0.2s backwards;
        }

        @keyframes textSlideUp {
            from {
                opacity: 0;
                transform: translateY(40px) skewY(2deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) skewY(0);
            }
        }

        /* ============================================
           PORTFOLIO GRID
           ============================================ */

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Large item spanning 2 columns */
        .portfolio-item:nth-child(2) {
            grid-column: span 2;
        }

        @media (max-width: 1024px) {
            .portfolio-item:nth-child(2) {
                grid-column: span 1;
            }
        }

        /* ============================================
           PORTFOLIO CARD
           ============================================ */

        .portfolio-card {
            position: relative;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            animation: scaleIn 0.6s ease backwards;
            transition: all 0.3s ease;
        }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Portfolio Image */
        .portfolio-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s var(--ease-smooth);
            filter: brightness(1);
        }

        /* Overlay */
        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: all 0.4s var(--ease-smooth);
            transform: translateY(100%);
        }

        /* Hover Effects */
        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
        }

        .portfolio-card:hover .portfolio-image {
            transform: scale(1.1) rotate(2deg);
            filter: brightness(0.7);
        }

        .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           PORTFOLIO TEXT
           ============================================ */

        .portfolio-content {
            animation: slideInUp 0.5s var(--ease-bounce);
        }

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

        .portfolio-tag {
            display: inline-block;
            padding: 6px 14px;
            background: var(--primary-orange);
            color: white;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            animation: slideInLeft 0.4s ease;
        }

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

        .portfolio-project-title {
            font-size: 20px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            color: white;
            margin-bottom: 8px;
            animation: textSlideUp 0.5s ease 0.1s backwards;
        }

        .portfolio-project-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            animation: fadeInUp 0.5s ease 0.2s backwards;
        }

        /* ============================================
           PORTFOLIO FEATURES (BOTTOM SECTION)
           ============================================ */

        .portfolio-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
            padding-top: 60px;
            border-top: 2px solid #e5e7eb;
        }

        .feature-box {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, #f8fafc 0%, white 100%);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            animation: slideUpBounce 0.6s var(--ease-bounce) backwards;
        }

        .feature-box:nth-child(1) { animation-delay: 0.1s; }
        .feature-box:nth-child(2) { animation-delay: 0.2s; }
        .feature-box:nth-child(3) { animation-delay: 0.3s; }
        .feature-box:nth-child(4) { animation-delay: 0.4s; }

        @keyframes slideUpBounce {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            60% {
                opacity: 1;
                transform: translateY(-5px);
            }
            100% {
                transform: translateY(0);
            }
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
            background: linear-gradient(135deg, var(--gradient-primary), transparent);
            color: white;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 28px;
            color: white;
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .feature-title {
            font-size: 18px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 10px;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-title {
            color: black;
        }

        .feature-description {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-description {
            color: rgba(0, 0, 0, 0.8);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */

        @media (max-width: 768px) {
            .portfolio-section {
                padding: 60px 20px;
            }

            .portfolio-title {
                font-size: 32px;
            }

            .portfolio-card {
                height: 250px;
            }

            .portfolio-grid {
                gap: 20px;
            }

            .portfolio-item:nth-child(2) {
                grid-column: span 1;
            }

            .portfolio-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding-top: 40px;
            }
        }

        @media (max-width: 480px) {
            .portfolio-title {
                font-size: 24px;
            }

            .portfolio-card {
                height: 200px;
            }

            .portfolio-overlay {
                padding: 20px;
            }

            .portfolio-features {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           SCROLL ANIMATION
           ============================================ */

        .portfolio-card {
            opacity: 0;
            animation: none;
        }

        .portfolio-card.in-view {
            opacity: 1;
            animation: scaleIn 0.6s ease forwards;
        }



        /* footer */
        :root {
            --primary-orange: #FF6B35;
            --primary-dark: #0F172A;
            --dark-secondary: #1a2f4d;
            --dark-tertiary: #2a4070;
            --text-light: #ffffff;
            --text-muted: #b0b0b0;
            --accent-cyan: #00D4FF;
            --accent-green: #10B981;
            --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C57 100%);
            --gradient-blue: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
            --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
            --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        body {
            font-family: 'Roboto', sans-serif;
        }

        /* ============================================
           TOP INFO BAR
           ============================================ */

        .footer-info-bar {
            background: linear-gradient(90deg, var(--primary-dark) 0%, var(--dark-secondary) 100%);
            padding: 25px 40px;
            border-bottom: 3px solid var(--primary-orange);
            position: relative;
            overflow: hidden;
        }

        .footer-info-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        .info-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 20px;
            animation: slideInUp 0.8s ease backwards;
        }

        .info-item:nth-child(1) { animation-delay: 0.1s; }
        .info-item:nth-child(2) { animation-delay: 0.2s; }
        .info-item:nth-child(3) { animation-delay: 0.3s; }

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

        .info-section-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-orange);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .info-contacts {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            border: 2px solid var(--primary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-orange);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background: var(--primary-orange);
            color: white;
            transform: scale(1.1) rotate(360deg);
        }

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

        .contact-label {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-value {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-value {
            color: var(--primary-orange);
        }

        /* Social Icons in Top Bar */
        .social-icons-inline {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }

        .social-icon-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 16px;
            border: 2px solid transparent;
        }

        .social-icon-circle.facebook {
            background: #1877F2;
        }

        .social-icon-circle.linkedin {
            background: #0077B5;
        }

        .social-icon-circle.whatsapp {
            background: #25D366;
        }

        .social-icon-circle:hover {
            transform: translateY(-5px) scale(1.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: white;
        }

        /* ============================================
           MAIN FOOTER
           ============================================ */

        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-tertiary) 100%);
            padding: 80px 40px 40px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            right: -200px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: floating 10s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-30px); }
        }

        footer::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -150px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatingRotate 12s ease-in-out infinite;
            animation-delay: 2s;
        }

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

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* ============================================
           FOOTER COLUMN
           ============================================ */

        .footer-column {
            animation: fadeInUp 0.8s ease backwards;
        }

        .footer-column:nth-child(1) { animation-delay: 0.1s; }
        .footer-column:nth-child(2) { animation-delay: 0.2s; }
        .footer-column:nth-child(3) { animation-delay: 0.3s; }
        .footer-column:nth-child(4) { animation-delay: 0.4s; }

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

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            color: var(--text-light);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 3px;
            background: var(--primary-orange);
            border-radius: 2px;
        }

        .footer-title span {
            color: var(--primary-orange);
        }

        /* Expandable List */
        .footer-list {
            list-style: none;
        }

        .footer-list li {
            margin-bottom: 12px;
            animation: slideInLeft 0.5s ease backwards;
            transition: all 0.3s ease;
        }

        .footer-list li:nth-child(1) { animation-delay: 0.1s; }
        .footer-list li:nth-child(2) { animation-delay: 0.15s; }
        .footer-list li:nth-child(3) { animation-delay: 0.2s; }
        .footer-list li:nth-child(4) { animation-delay: 0.25s; }
        .footer-list li:nth-child(5) { animation-delay: 0.3s; }

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

        .footer-list li:hover {
            padding-left: 15px;
        }

        .footer-list a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .footer-list a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--primary-orange);
        }

        .footer-list a:hover {
            color: var(--primary-orange);
            padding-left: 15px;
        }

        .footer-list a:hover::before {
            opacity: 1;
            left: -15px;
        }

        /* Toggle Button for Lists */
        .expand-btn {
            display: none;
            background: none;
            border: none;
            color: var(--primary-orange);
            cursor: pointer;
            font-size: 14px;
            margin-top: 10px;
            padding: 8px 0;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .expand-btn:hover {
            transform: translateX(5px);
        }

        .expand-btn i {
            transition: all 0.3s ease;
            margin-left: 5px;
        }

        .expand-btn.expanded i {
            transform: rotate(180deg);
        }

        .footer-list.collapsed {
            display: none;
        }

        /* ============================================
           CONTACT SECTION IN FOOTER
           ============================================ */

        .contact-box {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
            animation: slideInLeft 0.6s ease 0.4s backwards;
        }

        .contact-box:hover {
            background: rgba(255, 107, 53, 0.1);
            border-color: var(--primary-orange);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        }

        .contact-box h3 {
            font-size: 16px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .address-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .phone-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .phone-link {
            font-size: 13px;
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .phone-link:hover {
            transform: translateX(5px);
            color: white;
        }

        /* ============================================
           SOCIAL ICONS
           ============================================ */

        .social-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s var(--ease-bounce);
            text-decoration: none;
            font-size: 16px;
        }

        .social-link.facebook { background: linear-gradient(135deg, #1877F2, #0a66c2); }
        .social-link.linkedin { background: linear-gradient(135deg, #0077B5, #0a51a0); }
        .social-link.whatsapp { background: linear-gradient(135deg, #25D366, #20ba58); }

        .social-link:hover {
            transform: translateY(-8px) scale(1.15) rotate(360deg);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
            border-color: white;
        }

        /* ============================================
           FOOTER BOTTOM
           ============================================ */

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeInUp 1s ease;
        }

        .copyright {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .copyright strong {
            color: var(--primary-orange);
        }

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

        .footer-links a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

        /* Back to Top Button */
        .back-to-top {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
        }

        .back-to-top i {
            animation: bounce 1s ease infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */

        @media (max-width: 768px) {
            .footer-info-bar {
                padding: 20px 20px;
            }

            .info-bar-content {
                gap: 25px;
            }

            footer {
                padding: 60px 20px 30px;
            }

            .footer-grid {
                gap: 30px;
                margin-bottom: 30px;
                padding-bottom: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .expand-btn {
                display: inline-block;
            }

            .footer-list {
                max-height: 200px;
                overflow: hidden;
            }

            .footer-links {
                justify-content: center;
            }

            .back-to-top {
                margin-top: 20px;
            }
        }

        /* Banner Background */

        /* Use a pseudo-element to animate the background image itself */
.hero-banner {
  position: relative;
  background: none;            /* we'll paint bg on ::after */
  isolation: isolate;
}

/* Background image layer (animated) */
.hero-banner::after {
  content: "";
  position: absolute;
  inset: -4%;                  /* slight bleed to hide edges during zoom */
  z-index: 0;                  /* under the dark ::before and content */
  background-image: url("images/banner-bg-1.webp");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  filter: blur(8px) !important;
  will-change: transform, background-position, filter;
  transform-origin: center;
  /* filter: brightness(1) contrast(1.02) saturate(1.05); */

  /* Combo: Ken Burns (zoom/translate) + slow pan of background-position */
  animation:
    kenburns 22s ease-in-out infinite alternate,
    bg-pan    28s linear       infinite;
}

/* Keep your existing dark overlay above the image layer */
.hero-banner::before {
  /* you already have this — included here just to show stacking */
  z-index: 1;
}

/* Content stays at z-index: 2 via your .banner-content rules */

/* ============== Keyframes ============== */
@keyframes kenburns {
  0%   { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(2%, -2%, 0); }
}

@keyframes bg-pan {
  0%   { background-position: 50% 45%; }
  50%  { background-position: 48% 55%; }
  100% { background-position: 52% 45%; }
}

/* Optional: subtle parallax on scroll (when supported) */
@supports (animation-timeline: scroll()) {
  .hero-banner::after {
    animation:
      kenburns-scroll 1s linear both,
      bg-pan 28s linear infinite;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }

  @keyframes kenburns-scroll {
    from { transform: scale(1.02) translate3d(0%, 0%, 0); }
    to   { transform: scale(1.12) translate3d(0%, -3%, 0); }
  }
}

/* Hover micro-parallax (optional) */
.hero-banner:hover::after {
  transition: transform .4s ease;
  transform: scale(1.14) translate3d(1%, -1%, 0);
}

/* Fallback parallax for older browsers (optional) */
@media (min-width: 1024px) {
  .hero-banner {
    background-attachment: fixed; /* subtle depth; mobile browsers may ignore */
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-banner::after {
    animation: none !important;
    transform: none !important;
  }
}

/* ------------------Theme Change---------------- */


      /* ============================================
           CSS VARIABLES FOR THEMING
           ============================================ */

        :root {
            /* Light Mode Colors */
            --bg-primary: #ffffff;
            --bg-secondary: #f5f5f5;
            --bg-tertiary: #efefef;
            --text-primary: #1F2937;
            --text-secondary: #6B7280;
            --border-color: #e5e7eb;
            --header-bg: #ffffff;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --primary-orange: #FF6B35;
            --primary-orange-light: #FF8C57;
        }

        /* Dark Mode Colors */
        [data-theme="dark"] {
            --bg-primary: #0F172A;
            --bg-secondary: #1E293B;
            --bg-tertiary: #334155;
            --text-primary: #ffffff;
            --text-secondary: #cbd5e1;
            --border-color: #475569;
            --header-bg: #0F172A;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        html {
            font-family: 'Roboto', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* ============================================
           HEADER STYLING
           ============================================ */

        .main-header {
            background: var(--header-bg);
            border-bottom: 3px solid var(--primary-orange);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .logo:hover {
            color: var(--primary-orange);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        /* Navigation */
        nav ul {
            list-style: none;
            display: flex;
            gap: 5px;
            align-items: center;
        }

        nav a {
            display: block;
            padding: 12px 18px;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--primary-orange);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* ============================================
           THEME TOGGLE BUTTON
           ============================================ */

        .theme-toggle-btn {
            width: 50px;
            height: 50px;
            background: var(--bg-secondary);
            border: 2px solid var(--border-color);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
        }

        

        .theme-toggle-btn:hover {
            transform: scale(1.1) rotate(20deg);
            border-color: var(--primary-orange);
            background: var(--bg-tertiary);
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
        }

        .theme-toggle-btn:active {
            transform: scale(0.95);
        }

        /* Sun Icon (for light mode) */
        .theme-icon-sun {
            position: absolute;
            color: #FDB022;
            transition: all 0.4s ease;
            opacity: 1;
            transform: rotate(0deg);
        }

        /* Moon Icon (for dark mode) */
        .theme-icon-moon {
            position: absolute;
            color: #4B5563;
            transition: all 0.4s ease;
            opacity: 0;
            transform: rotate(-180deg);
        }

        /* Toggle animations */
        [data-theme="dark"] .theme-icon-sun {
            opacity: 0;
            transform: rotate(180deg);
        }

        [data-theme="dark"] .theme-icon-moon {
            opacity: 1;
            transform: rotate(0deg);
        }

        /* Animation ripple effect */
        .theme-toggle-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.5) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            animation: ripple 0.6s ease-out;
            pointer-events: none;
        }

        .theme-toggle-btn.clicked::before {
            animation: ripple 0.6s ease-out;
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        /* ============================================
           MAIN CONTENT WITH THEME SUPPORT
           ============================================ */

        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px;
        }

        section {
            background: var(--bg-secondary);
            padding: 50px;
            border-radius: 12px;
            margin-bottom: 40px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        section:hover {
            box-shadow: var(--shadow);
        }

        h1 {
            font-size: 42px;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        h2 {
            font-size: 28px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 15px;
        }

        a {
            color: var(--primary-orange);
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

        /* Cards */
        .card {
            background: var(--bg-tertiary);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            cursor: pointer;
        }

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

        .card h3 {
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .card p {
            margin: 0;
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */

        @media (max-width: 768px) {
            .header-container {
                padding: 0 20px;
            }

            nav ul {
                display: none;
            }

            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 22px;
            }

            main {
                padding: 30px 20px;
            }

            section {
                padding: 30px 20px;
            }

            .theme-toggle-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 15px;
            }

            h1 {
                font-size: 24px;
            }

            .theme-toggle-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        


   
        
        /* testinomials */

        /* ============================================
           TESTIMONIALS SECTION WITH ANIMATIONS
           ============================================ */

        .testimonials {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Circles */
        .testimonials::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 128, 76, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: floatCircle 8s ease-in-out infinite;
            z-index: 0;
        }

        .testimonials::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 128, 76, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -80px;
            left: -80px;
            animation: floatCircle 10s ease-in-out infinite reverse;
            z-index: 0;
        }

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

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* ============================================
           SECTION TITLE WITH ANIMATION
           ============================================ */

        .section-title {
            color: #ff804c;
            font-size: 56px;
            font-weight: 800;
            text-align: center;
            text-shadow: 0 4px 10px rgba(255, 128, 76, 0.6);
            margin-bottom: 60px;
            opacity: 0;
            animation: fadeUp 1.2s ease-out forwards;
        }

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

        /* ============================================
           TESTIMONIALS CAROUSEL
           ============================================ */

        .testimonials-carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 60px;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.3s forwards;
        }

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

        /* Testimonial Wrapper */
        .testimonial-wrapper {
            overflow: hidden;
            position: relative;
        }

        /* ============================================
           TESTIMONIAL CARD WITH ANIMATIONS
           ============================================ */

        .testimonial-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
            border: 1px solid rgba(255, 128, 76, 0.2);
            border-radius: 20px;
            padding: 50px 40px;
            margin: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            position: relative;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            animation: slideInCard 0.8s ease-out;
        }

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

        .testimonial-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(255, 128, 76, 0.3);
            border-color: rgba(255, 128, 76, 0.5);
        }

        /* Quote Icon */
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 100px;
            font-family: Georgia, serif;
            color: rgba(255, 128, 76, 0.15);
            line-height: 1;
            animation: fadeIn 1s ease-out 0.5s both;
        }

        /* ============================================
           RATING STARS WITH ANIMATION
           ============================================ */

        .rating {
            font-size: 28px;
            margin-bottom: 25px;
            letter-spacing: 3px;
            animation: starPop 0.6s ease-out 0.4s both;
        }

        @keyframes starPop {
            0% {
                opacity: 0;
                transform: scale(0);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Individual Star Animation */
        .rating span {
            display: inline-block;
            animation: starBounce 0.5s ease-in-out infinite alternate;
        }

        .rating span:nth-child(1) {
            animation-delay: 0s;
        }

        .rating span:nth-child(2) {
            animation-delay: 0.1s;
        }

        .rating span:nth-child(3) {
            animation-delay: 0.2s;
        }

        .rating span:nth-child(4) {
            animation-delay: 0.3s;
        }

        .rating span:nth-child(5) {
            animation-delay: 0.4s;
        }

        @keyframes starBounce {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-5px);
            }
        }

        /* ============================================
           TESTIMONIAL TEXT WITH ANIMATION
           ============================================ */

        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: textReveal 0.8s ease-out 0.6s forwards;
        }

        @keyframes textReveal {
            from {
                opacity: 0;
                transform: translateY(20px);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            }
            to {
                opacity: 1;
                transform: translateY(0);
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
        }

        /* ============================================
           AUTHOR SECTION WITH ANIMATION
           ============================================ */

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            opacity: 0;
            animation: authorSlideIn 0.6s ease-out 0.8s forwards;
        }

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

        .testimonial-author strong {
            font-size: 20px;
            color: #ff804c;
            font-weight: 700;
        }

        .testimonial-author span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        /* ============================================
           CAROUSEL NAVIGATION BUTTONS
           ============================================ */

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff804c 0%, #ff6b35 100%);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 128, 76, 0.4);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            animation: buttonSlideIn 0.6s ease-out 1s forwards;
        }

        @keyframes buttonSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50%) scale(0);
            }
            to {
                opacity: 1;
                transform: translateY(-50%) scale(1);
            }
        }

        .carousel-btn--prev {
            left: 0;
        }

        .carousel-btn--next {
            right: 0;
        }

        .carousel-btn:hover {
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 8px 25px rgba(255, 128, 76, 0.6);
            background: linear-gradient(135deg, #ff6b35 0%, #ff804c 100%);
        }

        .carousel-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        /* ============================================
           PULSE ANIMATION ON HOVER
           ============================================ */

        .testimonial-card:hover .rating {
            animation: pulse 0.6s ease-in-out infinite;
        }

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

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */

        @media (max-width: 768px) {
            .testimonials {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .testimonials-carousel {
                padding: 0 50px;
            }

            .testimonial-card {
                padding: 40px 30px;
                margin: 15px;
            }

            .testimonial-text {
                font-size: 16px;
            }

            .rating {
                font-size: 24px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 28px;
            }

            .testimonials-carousel {
                padding: 0 40px;
            }

            .testimonial-card {
                padding: 30px 20px;
            }

            .testimonial-text {
                font-size: 14px;
            }

            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 20px;
            }
        }

        /* ============================================
           LOADING ANIMATION (OPTIONAL)
           ============================================ */

        .testimonials.loading .testimonial-card {
            animation: shimmer 1.5s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }



        /* FAQ */


        /* ============================================
   FAQ SECTION - STUCK WITH QUESTIONS
   ============================================ */

.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

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

/* Section Title */
.faq-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.title-underline {
    display: block;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #32b8c6 0%, #2d9db0 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* FAQ Content Layout */
.faq-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

/* Left Side - Questions */
.faq-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 4px 20px rgba(50, 184, 198, 0.15);
}

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    gap: 20px;
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.5;
}

/* Toggle Button */
.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(50, 184, 198, 0.1) 0%, rgba(45, 166, 178, 0.1) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle i {
    color: #32b8c6;
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, #32b8c6 0%, #2d9db0 100%);
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
    color: white;
}

.faq-toggle:hover {
    transform: scale(1.1);
}

.faq-item.active .faq-toggle:hover {
    transform: rotate(45deg) scale(1.1);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Right Side - 3D Question Mark */
.faq-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.question-mark-container {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.question-mark-bubble {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #4f9ff0 0%, #357bd8 50%, #2563eb 100%);
    border-radius: 50% 50% 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.3),
        0 0 0 20px rgba(79, 159, 240, 0.1),
        0 0 0 40px rgba(79, 159, 240, 0.05);
    position: relative;
    transform: rotate(-45deg);
}

.question-mark {
    font-size: 180px;
    font-weight: 700;
    color: white;
    transform: rotate(45deg);
    text-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.5);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Shadow Effect */
.question-mark-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    filter: blur(20px);
    animation: shadow-pulse 3s ease-in-out infinite;
}

@keyframes shadow-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.15;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .faq-content {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }

    .question-mark-bubble {
        width: 280px;
        height: 280px;
    }

    .question-mark {
        font-size: 140px;
    }

    .faq-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-right {
        order: -1;
        margin-bottom: 20px;
    }

    .question-mark-bubble {
        width: 220px;
        height: 220px;
    }

    .question-mark {
        font-size: 110px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 26px;
    }

    .question-mark-bubble {
        width: 180px;
        height: 180px;
    }

    .question-mark {
        font-size: 90px;
    }

    .faq-question {
        padding: 15px 18px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-toggle {
        width: 26px;
        height: 26px;
    }

    .faq-toggle i {
        font-size: 14px;
    }
}

/* Dark Mode Support */
[data-theme="dark"] .faq-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

[data-theme="dark"] .faq-item {
    background: #374151;
}

[data-theme="dark"] .faq-question span {
    color: #f3f4f6;
}

[data-theme="dark"] .faq-answer p {
    color: #d1d5db;
}

[data-theme="dark"] .faq-title {
    color: #f3f4f6;
}


/* location section */

:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --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: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --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(59, 130, 246, 0.08); /* Light blue */
  --color-bg-2: rgba(245, 158, 11, 0.08); /* Light yellow */
  --color-bg-3: rgba(34, 197, 94, 0.08); /* 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);
}

/* 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 */
/* ==================== LOCATIONS SECTION CONTAINER ==================== */
.locations-section-wrapper {
    max-width: var(--container-xl);
    margin: 0 auto;
}

/* ==================== SECTION HEADER ==================== */
.locations-header {
    text-align: center;
    margin-bottom: var(--space-32);
}

.locations-header-title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
    color: var(--color-text);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-16);
    letter-spacing: var(--letter-spacing-tight);
}

.locations-header-subtitle {
    font-size: clamp(var(--font-size-base), 2.5vw, var(--font-size-lg));
    color: var(--color-text-secondary);
    margin-bottom: var(--space-10);
}

.locations-header-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== LOCATIONS GRID ==================== */
.locations-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-24);
    margin-bottom: var(--space-32);
}

/* ==================== LOCATION CARD ==================== */
.location-card-item {
    background: var(--color-surface);
    border: 2px solid rgba(var(--color-orange-400-rgb), 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-standard);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.location-card-item:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--color-orange-400-rgb), 0.4);
    background: var(--color-surface);
    box-shadow: var(--shadow-lg);
}

/* ==================== LOCATION CARD IMAGE ==================== */
.location-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(var(--color-orange-400-rgb), 0.1) 0%, rgba(var(--color-orange-500-rgb), 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
    overflow: hidden;
}

.location-card-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(var(--color-orange-400-rgb), 0.1) 50%, transparent 70%);
    animation: location-card-shine 3s ease-in-out infinite;
}

@keyframes location-card-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ==================== LOCATION CARD CONTENT ==================== */
.location-card-content {
    padding: var(--space-20);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.location-card-name {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: #f86734;
    margin-bottom: var(--space-8);
}

.location-card-description {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: var(--line-height-normal);
    flex-grow: 1;
}

.location-card-badge {
    display: inline-block;
    background: rgba(var(--color-orange-400-rgb), 0.2);
    color: var(--color-orange-500);
    padding: var(--space-4) var(--space-12);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    margin-top: var(--space-12);
    width: fit-content;
}

/* ==================== SLIDER BUTTONS SECTION ==================== */
.locations-slider-section {
    margin-top: var(--space-32);
}

.slider-section-title {
    font-size: var(--font-size-2xl);
    color: var(--color-text);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-24);
    text-align: center;
}

/* ==================== BUTTONS SLIDER CONTAINER ==================== */
.locations-buttons-slider {
    display: flex;
    gap: var(--space-16);
    overflow-x: auto;
    padding: var(--space-16);
    border-radius: var(--radius-lg);
    background: rgba(var(--color-orange-400-rgb), 0.03);
    border: 2px solid rgba(var(--color-orange-400-rgb), 0.1);
    scroll-behavior: smooth;
}

.locations-buttons-slider::-webkit-scrollbar {
    height: var(--space-8);
}

.locations-buttons-slider::-webkit-scrollbar-track {
    background: rgba(var(--color-orange-400-rgb), 0.05);
    border-radius: var(--radius-md);
}

.locations-buttons-slider::-webkit-scrollbar-thumb {
    background: rgba(var(--color-orange-400-rgb), 0.3);
    border-radius: var(--radius-md);
}

.locations-buttons-slider::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--color-orange-400-rgb), 0.5);
}

/* ==================== SLIDER BUTTON ITEM ==================== */
.slider-button-item {
    padding: var(--space-12) var(--space-24);
    background: linear-gradient(135deg, rgba(var(--color-orange-400-rgb), 0.15) 0%, rgba(var(--color-orange-500-rgb), 0.15) 100%);
    border: 2px solid rgba(var(--color-orange-400-rgb), 0.25);
    color: #ff6b35;
    border-radius: var(--radius-full);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-standard);
    white-space: nowrap;
    flex-shrink: 0;
}

.slider-button-item:hover {
    background: linear-gradient(135deg, rgba(var(--color-orange-400-rgb), 0.3) 0%, rgba(var(--color-orange-500-rgb), 0.3) 100%);
    border-color: rgba(var(--color-orange-400-rgb), 0.5);
    color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.slider-button-item:focus-visible {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .locations-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-20);
    }

    .locations-header-title {
        font-size: var(--font-size-3xl);
    }

    .location-card-image {
        height: 160px;
        font-size: 45px;
    }

    .locations-buttons-slider {
        padding: var(--space-12);
        gap: var(--space-10);
    }

    .slider-button-item {
        padding: var(--space-10) var(--space-20);
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 480px) {
    .locations-section-wrapper {
        padding: 0 var(--space-16);
    }

    .locations-header {
        margin-bottom: var(--space-24);
    }

    .locations-header-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--space-12);
    }

    .locations-header-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-8);
    }

    .locations-grid-container {
        grid-template-columns: 1fr;
        gap: var(--space-16);
        margin-bottom: var(--space-24);
    }

    .location-card-content {
        padding: var(--space-16);
    }

    .location-card-name {
        font-size: var(--font-size-lg);
    }

    .location-card-image {
        height: 140px;
        font-size: 35px;
    }

    .locations-slider-section {
        margin-top: var(--space-24);
    }

    .slider-section-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-20);
    }

    .locations-buttons-slider {
        padding: var(--space-10);
        gap: var(--space-8);
    }

    .slider-button-item {
        padding: var(--space-8) var(--space-16);
        font-size: var(--font-size-sm);
    }
}



/* =========Floating Buttons========== */


/* ================================================
   FLOATING ACTION BUTTONS - WEBXRANK TECH CUSTOM
   Unique IDs: wxr-contact-fab-system
   ================================================ */

/* Container Styles */
#wxr-contact-fab-system {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Button Base Styles */
.wxr-fab-button {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 
                0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: visible;
    transform: scale(1);
    animation: wxrFabEntrance 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* WhatsApp Button */
.wxr-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation-delay: 0.1s;
}

/* Call Button */
.wxr-call-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    animation-delay: 0.2s;
}

/* Icon Wrapper */
.wxr-fab-icon-wrapper {
    position: relative;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Icon Styles */
.wxr-fab-icon {
    width: 100%;
    height: 100%;
    color: #ffffff;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover Effects */
.wxr-fab-button:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 
                0 4px 8px rgba(0, 0, 0, 0.15);
}

.wxr-fab-button:hover .wxr-fab-icon {
    transform: scale(1.1) rotate(5deg);
}

.wxr-whatsapp-btn:hover {
    background: linear-gradient(135deg, #2BE77D 0%, #15A589 100%);
}

.wxr-call-btn:hover {
    background: linear-gradient(135deg, #66BB6A 0%, #388E3C 100%);
}

/* Active/Click Effect */
.wxr-fab-button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Tooltip Styles */
.wxr-fab-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wxr-fab-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.85);
}

.wxr-fab-button:hover .wxr-fab-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Ripple Effect */
.wxr-fab-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    opacity: 1;
    pointer-events: none;
}

.wxr-fab-button:active .wxr-fab-ripple {
    animation: wxrRippleEffect 0.6s ease-out;
}

/* Pulse Ring Animation */
.wxr-fab-pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid;
    opacity: 0;
    pointer-events: none;
}

.wxr-whatsapp-pulse {
    border-color: #25D366;
    top: 0;
    right: 0;
    animation: wxrPulseAnimation 2s infinite;
}

.wxr-call-pulse {
    border-color: #4CAF50;
    bottom: 0;
    right: 0;
    animation: wxrPulseAnimation 2s infinite 1s;
}

/* Entrance Animation */
@keyframes wxrFabEntrance {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Ripple Animation */
@keyframes wxrRippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Pulse Ring Animation */
@keyframes wxrPulseAnimation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Floating Animation */
@keyframes wxrFloatingMotion {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.wxr-fab-button {
    animation: wxrFabEntrance 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
               wxrFloatingMotion 3s ease-in-out infinite 0.5s;
}

/* Focus Styles for Accessibility */
.wxr-fab-button:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

.wxr-fab-button:focus:not(:focus-visible) {
    outline: none;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Tablet */
@media screen and (max-width: 768px) {
    #wxr-contact-fab-system {
        bottom: 16px;
        right: 16px;
        gap: 12px;
    }

    .wxr-fab-button {
        width: 56px;
        height: 56px;
    }

    .wxr-fab-icon-wrapper {
        width: 26px;
        height: 26px;
    }

    .wxr-fab-tooltip {
        font-size: 13px;
        padding: 6px 12px;
        right: 70px;
    }

    .wxr-fab-pulse-ring {
        width: 56px;
        height: 56px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    #wxr-contact-fab-system {
        bottom: 12px;
        right: 12px;
        gap: 10px;
    }

    .wxr-fab-button {
        width: 50px;
        height: 50px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15), 
                    0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .wxr-fab-icon-wrapper {
        width: 24px;
        height: 24px;
    }

    .wxr-fab-tooltip {
        display: none; /* Hide tooltips on small mobile screens */
    }

    .wxr-fab-button:hover {
        transform: scale(1.1);
    }

    .wxr-fab-pulse-ring {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
    #wxr-contact-fab-system {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }

    .wxr-fab-button {
        width: 46px;
        height: 46px;
    }

    .wxr-fab-icon-wrapper {
        width: 22px;
        height: 22px;
    }

    .wxr-fab-pulse-ring {
        width: 46px;
        height: 46px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .wxr-fab-tooltip {
        background: rgba(255, 255, 255, 0.95);
        color: #1a1a1a;
    }

    .wxr-fab-tooltip::after {
        border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
    }

    .wxr-fab-button {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 
                    0 2px 4px rgba(0, 0, 0, 0.2);
    }
}

/* Reduced Motion Support for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .wxr-fab-button {
        animation: none !important;
    }

    .wxr-fab-pulse-ring {
        animation: none !important;
    }

    .wxr-fab-button:hover {
        transform: scale(1.05);
    }

    .wxr-fab-button:active {
        transform: scale(0.98);
    }
}

/* Print Styles - Hide buttons when printing */
@media print {
    #wxr-contact-fab-system {
        display: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .wxr-fab-button {
        border: 2px solid #ffffff;
    }

    .wxr-fab-tooltip {
        border: 1px solid currentColor;
    }
}


/* extra */

/* Team Photo Container */
.team-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Team Photo Image */
.team-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo-img {
    transform: scale(1.1);
}

/* Team Photo Placeholder (for members without photos) */
.team-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: white;
    backdrop-filter: blur(10px);
}

        