/* ============================================================
   AURENIX TECHNOLOGIES PVT LTD — Custom Design System
   Theme: Dark Navy (#0D1B2A) / Teal (#00BCD4) / Cyan (#26C6DA)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --navy-900: #0A1628;
  --navy-800: #0D1B2A;
  --navy-700: #112240;
  --navy-600: #1B2D50;
  --navy-500: #233554;

  /* Accent Palette */
  --teal-600: #00838F;
  --teal-500: #0097A7;
  --teal-400: #00ACC1;
  --cyan-500: #00BCD4;
  --cyan-400: #26C6DA;
  --cyan-300: #4DD0E1;
  --cyan-200: #80DEEA;
  --cyan-100: #B2EBF2;

  /* Neutral */
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #ADB5BD;
  --gray-500: #6C757D;
  --gray-600: #495057;
  --gray-700: #343A40;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 50%, var(--teal-600) 100%);
  --gradient-accent: linear-gradient(135deg, var(--cyan-500) 0%, var(--teal-400) 100%);
  --gradient-hero: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 40%, #0A2A3C 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(0, 188, 212, 0.3);
  --shadow-glow-sm: 0 0 15px rgba(0, 188, 212, 0.2);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --section-py-sm: 60px;

  /* Borders */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Base Reset & Typography ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-800);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-900);
}

::-webkit-scrollbar-thumb {
  background: var(--cyan-500);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-400);
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 188, 212, 0.15);
  border-top-color: var(--cyan-500);
  border-radius: 50%;
  animation: spinPreloader 0.8s linear infinite;
}

@keyframes spinPreloader {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Navbar ---------- */
.navbar-aurenix {
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  padding: 20px 0;
  transition: all 0.4s ease;
  z-index: 1030;
}

.navbar-aurenix.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 188, 212, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991.98px) {
  .navbar-aurenix {
    background: rgba(10, 22, 40, 0.95);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
  }

  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px 0;
  }
}

.navbar-aurenix .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-aurenix .navbar-brand img {
  height: 44px;
  transition: var(--transition-base);
}

.navbar-aurenix .navbar-brand .brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.2;
}

.navbar-aurenix .navbar-brand .brand-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--cyan-400);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-aurenix .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 8px 18px !important;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-base);
  position: relative;
}

.navbar-aurenix .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--cyan-500);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.navbar-aurenix .nav-link:hover,
.navbar-aurenix .nav-link.active {
  color: var(--white) !important;
}

.navbar-aurenix .nav-link:hover::after,
.navbar-aurenix .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-aurenix .navbar-toggler {
  border: 1px solid rgba(0, 188, 212, 0.4);
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.navbar-aurenix .navbar-toggler:hover {
  background-color: rgba(0, 188, 212, 0.1);
}

.navbar-aurenix .navbar-toggler i {
  color: var(--cyan-400);
  font-size: 1.25rem;
}

.nav-cta-btn {
  background: var(--gradient-accent) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 8px 24px !important;
  border-radius: var(--border-radius-xl) !important;
  border: none;
  box-shadow: var(--shadow-glow-sm);
  transition: var(--transition-base) !important;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.nav-cta-btn::after {
  display: none !important;
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--cyan-400);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.2;
  }

  50% {
    transform: translateY(-80px) translateX(30px);
    opacity: 0.6;
  }
}

.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 188, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 188, 212, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.25);
  padding: 8px 20px;
  border-radius: var(--border-radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cyan-400);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-badge i {
  font-size: 0.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.8s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeInUp 0.6s ease 1s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan-400);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.6s both;
}

.hero-glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.hero-card-stack {
  position: relative;
  padding: 40px;
}

.floating-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: -2s;
}

.floating-card:nth-child(3) {
  animation-delay: -4s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.floating-card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.floating-card h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}

.floating-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn-primary-aurenix {
  background: var(--gradient-accent);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-glow-sm);
  transition: var(--transition-base);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-aurenix:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}

.btn-outline-aurenix {
  background: transparent;
  border: 2px solid rgba(0, 188, 212, 0.4);
  color: var(--cyan-400);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 36px;
  border-radius: var(--border-radius-xl);
  transition: var(--transition-base);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-aurenix:hover {
  background: rgba(0, 188, 212, 0.1);
  border-color: var(--cyan-500);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-primary-aurenix-dark {
  background: var(--gradient-accent);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 14px 36px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-glow-sm);
  transition: var(--transition-base);
  cursor: pointer;
}

.btn-primary-aurenix-dark:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cyan-500);
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cyan-500);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 16px;
}

.section-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 700px;
  margin: 0 auto;
}

/* Dark section headers */
.dark-section .section-tag {
  color: var(--cyan-400);
}

.dark-section .section-tag::before,
.dark-section .section-tag::after {
  background: var(--cyan-400);
}

.dark-section .section-title {
  color: var(--white);
}

.dark-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Services Section ---------- */
.services-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--gray-200);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Top accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Bottom glow line */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px 3px 0 0;
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 12px rgba(0, 188, 212, 0.4);
}

/* Shimmer / light sweep effect */
@keyframes cardShimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(0, 188, 212, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 188, 212, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  width: 60%;
}

/* Icon */
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.12) 0%, rgba(0, 188, 212, 0.04) 100%);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--cyan-500);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 1px solid rgba(0, 188, 212, 0.08);
}

@keyframes iconPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.3);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(0, 188, 212, 0);
  }
}

.service-card:hover .service-icon {
  background: var(--gradient-accent);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.35);
  border-color: transparent;
  animation: iconPulse 2s ease-in-out infinite;
}

/* Title */
.service-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy-800);
  transition: color 0.3s ease;
}

.service-card:hover h4 {
  color: var(--teal-600);
}

/* Description */
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: var(--gray-600);
}

/* Learn more link */
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cyan-500);
  transition: all 0.3s ease;
  position: relative;
}

.service-card .learn-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.service-card:hover .learn-more {
  gap: 10px;
  color: var(--teal-600);
}

.service-card:hover .learn-more::after {
  width: 100%;
}

.service-card .learn-more:hover {
  gap: 12px;
  color: var(--teal-600);
}

/* ---------- Service Detail / Area of Operations Cards ---------- */
.services-detail-section {
  padding: var(--section-py) 0;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 40px rgba(0, 188, 212, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 188, 212, 0.25);
}

.service-detail-card:hover::before {
  transform: scaleX(1);
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.detail-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.12) 0%, rgba(0, 188, 212, 0.04) 100%);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--cyan-500);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0, 188, 212, 0.08);
}

.service-detail-card:hover .detail-icon {
  background: var(--gradient-accent);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.3);
  border-color: transparent;
}

.detail-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0;
  transition: color 0.3s ease;
}

.service-detail-card:hover .detail-header h3 {
  color: var(--teal-600);
}

/* ---------- Client Cards ---------- */
.client-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 28px 24px;
  border: 1.5px solid var(--gray-200);
  border-left: 4px solid var(--cyan-500);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.client-card:hover {
  transform: translateY(-6px) translateX(4px);
  box-shadow:
    0 12px 30px rgba(0, 188, 212, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
  border-left-color: var(--teal-400);
  border-color: rgba(0, 188, 212, 0.2);
  border-left-width: 4px;
}

.client-card:hover::after {
  opacity: 1;
}

.client-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.12) 0%, rgba(0, 188, 212, 0.04) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--cyan-500);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.client-card:hover .client-icon {
  background: var(--gradient-accent);
  color: var(--white);
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.client-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.client-card:hover h5 {
  color: var(--teal-600);
}

/* ---------- Project Cards ---------- */
.project-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--cyan-500);
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.project-card:hover {
  border-left-color: var(--cyan-400);
  border-color: rgba(0, 188, 212, 0.25);
  border-left-width: 4px;
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 188, 212, 0.15);
}

.project-card:hover::before {
  opacity: 1;
}

.project-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: var(--shadow-glow-sm);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.project-card:hover .project-icon {
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
}

.project-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.project-card:hover h4 {
  color: var(--cyan-300);
}

.project-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ---------- About Section ---------- */
.about-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-image-wrapper img {
  border-radius: var(--border-radius-lg);
  width: 100%;
  object-fit: cover;
}

.about-accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 24px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-accent-box .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-accent-box .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.about-feature .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 188, 212, 0.05));
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-500);
}

.about-feature h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--navy-800);
}

.about-feature p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin: 0;
}

/* ---------- Why Choose Us / Competencies ---------- */
.competency-section {
  padding: var(--section-py) 0;
  background: var(--gradient-hero);
  position: relative;
}

.competency-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-base);
  height: 100%;
}

.competency-card:hover {
  border-color: rgba(0, 188, 212, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(0, 188, 212, 0.1);
}

.competency-card .comp-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-glow-sm);
}

.competency-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.competency-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  margin: 0;
}

/* ---------- Stats / Counter ---------- */
.stats-section {
  padding: 60px 0;
  background: var(--white);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item .stat-icon {
  font-size: 2rem;
  color: var(--cyan-500);
  margin-bottom: 12px;
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1;
}

.stat-item .stat-text {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ---------- Team Section ---------- */
.team-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.team-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  border: 1px solid var(--gray-200);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card .team-img {
  position: relative;
  height: 280px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-card .team-img .team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.team-card .team-info {
  padding: 28px;
  text-align: center;
}

.team-card .team-info h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.team-card .team-info .position {
  font-size: 0.85rem;
  color: var(--cyan-500);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card .team-info p {
  font-size: 0.88rem;
  color: var(--gray-500);
}

.team-card .team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.team-card .team-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: var(--transition-base);
}

.team-card .team-socials a:hover {
  background: var(--gradient-accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* ---------- Page Header / Breadcrumb ---------- */
.page-header {
  position: relative;
  padding: 160px 0 100px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(0, 188, 212, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 188, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 188, 212, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-header .breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
}

.page-header .breadcrumb-item a {
  color: var(--cyan-400);
  font-weight: 500;
}

.page-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- Contact Section ---------- */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact-info-card {
  background: var(--gradient-hero);
  border-radius: var(--border-radius-lg);
  padding: 48px 36px;
  height: 100%;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
}

.contact-info-item .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0, 188, 212, 0.15);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  font-size: 1.1rem;
}

.contact-info-item h5 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin: 0;
  transition: var(--transition-base);
}

.contact-info-item a:hover {
  color: var(--cyan-400);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-form-card .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy-700);
  margin-bottom: 6px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--gray-200);
  padding: 12px 16px;
  font-size: 0.92rem;
  transition: var(--transition-base);
  background: var(--gray-50);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
  background: var(--white);
}

.contact-form-card textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */
.footer-section {
  background: var(--navy-900);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 340px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--cyan-500);
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-links a:hover {
  color: var(--cyan-400);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--cyan-500);
  margin-top: 4px;
  width: 16px;
}

.footer-contact-item p {
  margin: 0;
  font-size: 0.88rem;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-base);
}

.footer-contact-item a:hover {
  color: var(--cyan-400);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--gradient-accent);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-sm);
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: var(--cyan-500);
}

/* ---------- Services Detail Page ---------- */
.services-detail-section {
  padding: var(--section-py) 0;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 188, 212, 0.2);
}

.service-detail-card .detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.service-detail-card .detail-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: var(--gradient-accent);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-glow-sm);
}

.service-detail-card h3 {
  font-size: 1.4rem;
  color: var(--navy-800);
  margin: 0;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-list li i {
  color: var(--cyan-500);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---------- Mission / Vision Cards ---------- */
.mv-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mv-card .mv-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(0, 188, 212, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--cyan-500);
  margin-bottom: 20px;
}

.mv-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy-800);
}

.mv-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin: 0;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-accent);
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--cyan-500);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-glow-sm);
  z-index: 2;
}

/* ---------- Approach Items ---------- */
.approach-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--border-radius-sm);
  margin-bottom: 12px;
  transition: var(--transition-base);
  border-left: 3px solid transparent;
}

.approach-item:hover {
  background: var(--white);
  border-left-color: var(--cyan-500);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.approach-item .number {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}

.approach-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ---------- Company Info Cards ---------- */
.info-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin-bottom: 16px;
}

.info-card h6 {
  color: var(--cyan-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.info-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

/* ---------- Map Section ---------- */
.map-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ---------- Back to Top ---------- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-glow-sm);
  transition: var(--transition-base);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1399.98px) {
  .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  }
}

@media (max-width: 1199.98px) {

  .about-image-wrapper img,
  .reveal-left img {
    height: 400px !important;
  }

  .hero-glow-circle {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-py: 70px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 24px;
    margin-top: 40px;
  }

  .hero-stat .stat-number {
    font-size: 1.8rem;
  }

  .hero-visual {
    margin-top: 60px;
  }

  .about-image-wrapper img,
  .reveal-left img {
    height: 350px !important;
  }

  .hero-glow-circle {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-py: 50px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat {
    flex: 0 0 calc(50% - 10px);
  }

  .contact-info-card {
    padding: 36px 24px;
  }

  .contact-form-card {
    padding: 36px 24px;
  }

  .floating-card {
    padding: 16px;
  }

  .page-header {
    padding: 120px 0 60px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .footer-section {
    padding: 50px 0 0;
  }

  .about-image-wrapper img,
  .reveal-left img {
    height: 300px !important;
  }

  .about-accent-box {
    padding: 16px 20px;
    bottom: -10px;
    right: -10px;
  }

  .about-accent-box .number {
    font-size: 2rem;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary-aurenix,
  .hero-actions .btn-outline-aurenix {
    justify-content: center;
    width: 100%;
  }

  .stat-item .stat-num {
    font-size: 2rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero-glow-circle {
    width: 250px;
    height: 250px;
  }

  .hero-title {
    font-size: 2rem !important;
  }

  .about-image-wrapper img,
  .reveal-left img {
    height: 250px !important;
  }

  .map-wrapper iframe {
    height: 250px;
  }

  .team-card .team-img {
    height: 220px;
  }

  .team-card .team-img .team-avatar {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }

  .mv-card {
    padding: 24px 20px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.75rem !important;
  }

  .section-title {
    font-size: 1.75rem !important;
  }

  .about-image-wrapper img,
  .reveal-left img {
    height: 200px !important;
  }

  .hero-stat .stat-number {
    font-size: 1.5rem;
  }
}

/* ---------- Gallery Section ---------- */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-500);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.filter-btn:hover {
  border-color: var(--cyan-500);
  color: var(--cyan-500);
}

.filter-btn.active {
  background: var(--gradient-accent);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1.5px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item img,
.gallery-item iframe,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 188, 212, 0.15);
  border-color: rgba(0, 188, 212, 0.3);
}

.gallery-item:hover img,
.gallery-item:hover iframe,
.gallery-item:hover video {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 25, 47, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-overlay-content h5 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.gallery-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 188, 212, 0.2);
  border: 1px solid rgba(0, 188, 212, 0.3);
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  width: 85vw;
  max-height: 85vh;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 16px;
  opacity: 0.8;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-nav:hover {
  background: rgba(0, 188, 212, 0.2);
  border-color: rgba(0, 188, 212, 0.4);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.2);
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lightbox-nav {
    display: none;
  }
}