/* PRIME TECH PREMIUM CSS — APP.CSS */

:root {
  --primary: #003870;
  --primary-light: #004c97;
  --primary-deep: #001d3d;
  --accent: #c8102e;
  --accent-hover: #a00d24;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --steel: #7eb8d4;
  --steel-light: #b8ddf0;
  --text: #1a1a2e;
  --text-light: #f8f9fa;
  --muted: #7a8599;
  --gray: #4a4a5a;
  --bg: #f4f6f8;
  --white: #fff;
  --font: "Plus Jakarta Sans", "Inter", sans-serif;
  --heading: "Plus Jakarta Sans", "Inter", sans-serif;
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  --radius: 6px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

/* ==========================================================================
   PREMIUM PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: #000c1e;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.preloader-logo img {
  max-width: 180px;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
  animation: logoEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.preloader-text {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: textEntrance 0.8s ease-out 0.4s forwards;
}
@keyframes logoEntrance {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes textEntrance {
  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 105px; /* Smooth padding top offset for fixed desktop header */
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.3px;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* NAVBAR LOGO FIX - EXTREMELY STRICT BOUNDS */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  max-width: 400px;
}
.logo-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  display: block;
  transition: max-height var(--ease);
}
#main-header.scrolled .logo-img {
  max-height: 50px;
}
.logo-text {
  font-family: var(--heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.logo-accent {
  color: var(--accent);
}

/* NAVBAR & TOP BAR DESIGN */
.header-top-bar {
  background: var(--accent);
  color: #ffffff;
  padding: 8px 0;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  position: relative;
  z-index: 1002;
}
.top-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}
.top-bar-item a {
  color: inherit;
}
.top-bar-item:hover {
  opacity: 0.9;
}
.top-bar-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all var(--ease);
}
#main-header.scrolled {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 29, 61, 0.06);
  border-bottom: 1px solid #cbd5e1;
}
#main-header.scrolled .header-top-bar {
  margin-top: -36px; /* Smoothly hides the top-bar on scroll */
  opacity: 0;
  pointer-events: none;
}
#main-header.scrolled .nav-links a {
  font-size: 0.88rem;
}
#main-header.scrolled .btn-nav {
  padding: 9px 18px;
  font-size: 0.8rem;
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5%;
  transition: padding var(--ease);
}
#main-header.scrolled .navbar {
  padding: 8px 5%;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0 auto 0 45px; /* Pushes the menu items left-centered next to logo */
  padding: 0;
}
.nav-links a {
  color: #334155; /* slate-700 */
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  transition: all var(--ease);
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav Right Action Buttons & Social Divider */
.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-nav {
  padding: 12px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--ease);
  text-decoration: none;
  cursor: pointer;
}
.btn-nav svg {
  width: 14px;
  height: 14px;
}
.btn-nav-primary {
  background: var(--accent);
  color: #fff !important;
  border: 1.5px solid var(--accent);
}
.btn-nav-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}
.btn-nav-secondary {
  background: transparent;
  color: #1e293b !important;
  border: 1.5px solid #1e293b;
}
.btn-nav-secondary:hover {
  background: #1e293b;
  color: #fff !important;
  transform: translateY(-2px);
}
.nav-divider {
  width: 1px;
  height: 24px;
  background: #cbd5e1; /* slate-300 */
  margin: 0 10px;
}
.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  transition: all var(--ease);
  text-decoration: none;
}
.nav-social-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
}
.nav-social-btn.instagram svg {
  fill: none;
  stroke: currentColor;
}
.nav-social-btn:hover {
  color: #fff !important;
  transform: translateY(-2px);
}
.nav-social-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}
.nav-social-btn.instagram:hover {
  background: #e1306c;
  border-color: #e1306c;
}
.nav-social-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}
.nav-social-btn.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

@media (max-width: 1280px) {
  .nav-links {
    gap: 20px;
    margin-left: 20px;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .btn-nav {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1024px) {
  .header-top-bar,
  .nav-right-actions {
    display: none !important;
  }
  .nav-links {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: 0 0;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  transition: all var(--ease);
}
.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #1e293b; /* slate-800 */
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle:hover {
  border-color: #94a3b8;
  background: #f1f5f9;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  pointer-events: none;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--ease);
  font-family: var(--font);
}
.btn-primary {
  background: var(--accent);
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.4);
  transform: translateY(-2px);
}
.btn-outline,
.btn-outline-dark {
  background: 0 0;
  border: 2px solid var(--text-light);
  color: var(--text-light);
}
.btn-outline:hover,
.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.btn-outline-dark {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}
.btn-outline-light {
  background: 0 0;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* HERO (Cinematic Enterprise Background) */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000d1f;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6) saturate(1.15); /* Darkened for readability */
}

/* Single clean overlay — enough contrast, not overwhelming */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 15, 45, 0.8) 0%,
    rgba(0, 8, 25, 0.5) 50%,
    rgba(0, 12, 35, 0.9) 100%
  );
  z-index: 1;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    transparent 40%,
    rgba(0, 8, 25, 0.7) 100%
  );
  z-index: 2;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.03;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E');
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* UAE Based Enterprise — subtle, elegant eyebrow */
.hero-label {
  font-family: var(--heading);
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  font-weight: 600;
  color: rgba(180, 215, 245, 0.85);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: clamp(18px, 2.5vh, 28px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: none;
}
.hero-label::before,
.hero-label::after {
  content: "";
  flex: 0 0 28px;
  height: 1px;
  background: rgba(180, 215, 245, 0.5);
}

/* HEADLINE — clean mixed-case, refined weight */
.hero-title {
  font-family: var(--heading);
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -1.2px;
  text-transform: none;
  margin-bottom: clamp(16px, 2.5vh, 24px);
  text-shadow: 0 4px 30px rgba(0, 8, 25, 0.95), 0 2px 10px rgba(0, 8, 25, 0.85);
  -webkit-font-smoothing: antialiased;
}

/* Subtitle */
.hero-subtitle {
  font-family: var(--font);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(220, 238, 255, 0.95);
  line-height: 1.8;
  max-width: 760px;
  margin: 0;
  letter-spacing: 0.1px;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.85),
    0 1px 3px rgba(0, 0, 0, 0.7);
}

/* PREMIUM INTERACTIVE GALLERY CAROUSEL */
.hero-gallery-swiper {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
.hero-gallery-card {
  position: relative;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
}
.hero-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.hero-gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(200, 16, 46, 0.25);
}
.hero-gallery-card:hover img {
  transform: scale(1.08);
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 12, 29, 0.9) 0%,
    rgba(0, 12, 29, 0.35) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0.95;
  transition: opacity 0.3s;
  z-index: 3;
}
.hero-gallery-card:hover .card-overlay {
  opacity: 1;
}
.card-overlay span {
  color: #ffffff;
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* MODERN STATS TRUST CARDS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
}
.hero-stat-card {
  background: var(--primary-deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s, border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 29, 61, 0.15);
}
.hero-stat-card:hover {
  transform: translateY(-5px);
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 29, 61, 0.25);
}
.hero-stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 16, 46, 0.15);
  border-radius: 50%;
  color: #fff;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}
.hero-stat-card:hover .hero-stat-icon {
  transform: scale(1.1);
  background: var(--accent);
}
.hero-stat-icon svg {
  width: 24px;
  height: 24px;
}
.hero-stat-number {
  font-family: var(--heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.hero-stat-label {
  font-family: var(--font);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  line-height: 1.3;
}

/* RESPONSIVE SCROLLBAR & OVERWRITES FOR HERO */
@media (max-width: 1024px) {
  .hero-stats {
    gap: 20px;
    padding: 0 15px;
  }
  .hero-stat-card {
    padding: 24px 18px;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }
  .hero-stat-card {
    padding: 26px 20px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
    padding: 120px 0 50px;
  }
  .hero-gallery-swiper {
    padding: 10px 15px;
    margin: 20px auto;
  }
  .hero-gallery-card {
    height: auto;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }
}

/* UAE Based Enterprise — subtle, elegant eyebrow */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 8px;
  display: inline-block;
}
.center-label {
  text-align: center;
  display: block;
}
.section-title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}
.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* ABOUT SECTION (Simple 2-column) */
.about-section {
  padding: 100px 6%;
  background: var(--bg);
}
.about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-content {
  flex: 1;
}
.about-video-wrapper {
  flex: 1;
  width: 100%;
}
.responsive-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #000;
  display: block;
  object-fit: cover;
}

/* TRUST BADGES */
.cv-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.cv-trust-badges {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cv-badge {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cv-badge strong {
  font-size: 2.2rem;
  font-family: var(--heading);
  color: var(--accent);
  line-height: 1;
}
.cv-badge span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
}
.cv-badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

/* STATS */
.stats-section {
  padding: 80px 6%;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: var(--text-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  padding: 20px;
}
.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--heading);
}
.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* SERVICES */
.services-section {
  padding: 100px 6%;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all var(--ease);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-content {
  padding: 28px;
}
.service-content h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.15rem;
}
.service-content p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.read-more {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.read-more:hover {
  letter-spacing: 2px;
}

/* PROJECTS */
.projects-section {
  padding: 100px 6%;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: var(--text-light);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}
.project-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 30px 20px 20px;
  color: #fff;
  transition: all 0.3s ease;
}
.project-overlay h3 {
  color: #fff;
  margin-bottom: 5px;
}
.project-date {
  color: #ffd700;
  font-weight: 600;
  font-size: 0.9rem;
}
.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(200, 16, 46, 0.85), transparent);
}

/* CTA */
.cta-section {
  background: var(--primary);
  color: var(--text-light);
  text-align: center;
  padding: 90px 5%;
}
.cta-content h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 2.4rem;
}
.cta-content p {
  font-size: 1.15rem;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.7);
}

/* PAGE HEADER (inner pages) */
.page-header {
  position: relative;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("/assets/images/bg.jpeg") center/cover;
  overflow: hidden;
  padding: 40px 20px 0;
}
.page-header > div:first-child {
  top: 0;
  left: 0;
}
.page-header h1 {
  color: #fff;
  font-size: 2.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.85);
}

/* CONTACT */
.contact-section {
  display: flex;
  gap: 50px;
  padding: 80px 6%;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.contact-info,
.contact-form-container {
  flex: 1;
  min-width: 300px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 56, 112, 0.08);
}
.form-group textarea {
  resize: vertical;
}

/* PARTS FILTER */
.parts-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 4%;
}
.filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--ease);
  font-family: var(--font);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 899;
  transition: all var(--ease);
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }
}

/* FOOTER */
footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 6% 30px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-col p {
  font-size: 0.88rem;
  margin-bottom: 6px;
}

/* ANIMATIONS */
.fade-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* RESPONSIVE — TABLET */
@media (max-width: 1024px) {
  body {
    padding-top: 79px; /* Offset for tablet header */
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-video-wrapper {
    width: 100%;
  }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 768px) {
  body {
    padding-top: 79px; /* Offset for mobile header */
  }
  .logo-img {
    max-width: 200px;
    max-height: 55px;
  }
  footer .logo-img {
    max-width: 320px;
    max-height: 100px;
  }
  .nav-links {
    display: none !important;
  }
  .nav-links.active {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
    list-style: none;
  }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 2px;
  }
  .nav-links a::after {
    display: none;
  }
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: auto;
    padding-top: 0;
  }
  .hero-content {
    padding: 0 4%;
  }
  .hero-title {
    font-size: clamp(1.95rem, 8.2vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.8px;
    font-weight: 900;
    text-shadow: 0 4px 22px rgba(0, 8, 25, 0.98), 0 2px 8px rgba(0, 8, 25, 0.9);
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    gap: 12px;
    margin: 0 auto;
  }
  .hero-cta .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 1.9rem;
    margin-bottom: 30px;
  }

  .cv-trust-badges {
    flex-direction: column;
    gap: 30px;
  }
  .cv-badge-divider {
    width: 80%;
    height: 1px;
  }

  .about-section {
    padding: 60px 4%;
  }
  .responsive-video {
    aspect-ratio: 16/9;
    height: auto;
  }
  .stats-section {
    padding: 60px 4%;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .services-section {
    padding: 60px 4%;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .projects-section {
    padding: 60px 4%;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    height: 250px;
  }
  .cta-section {
    padding: 60px 4%;
  }
  .cta-content h2 {
    font-size: 1.8rem;
  }
  .contact-section {
    flex-direction: column;
    padding: 60px 4%;
  }
  .page-header {
    height: 180px;
    padding-top: 0;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  body {
    padding-top: 73px; /* Offset for small mobile header */
  }
  .navbar {
    padding: 16px 4%;
  }
  #main-header.scrolled .navbar {
    padding: 10px 4%;
  }
  .logo-text {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
  .logo-img {
    max-width: 160px;
    max-height: 45px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .hero-cta .btn {
    padding: 13px 20px;
    font-size: 0.82rem;
  }
}

/* INFINITE MARQUEE */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  display: flex;
  background: #fff;
}
.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  width: 300px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.marquee-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0, 29, 61, 0.95), transparent);
  color: #fff;
  transition: all 0.3s ease;
}
.marquee-overlay h3 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 1.25rem;
}
.marquee-overlay p {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .marquee-item {
    width: 260px;
    height: 350px;
  }
}

/* CUSTOM GALLERY GRID */
.custom-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-item {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  background: #000;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 550px;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.5s;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.full-width {
  grid-column: 1 / -1;
}
.half-width {
  grid-column: span 1;
}

@media (max-width: 1024px) {
  .custom-gallery-grid {
    max-width: 900px;
    gap: 20px;
  }
  .gallery-item img {
    min-height: 300px;
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .custom-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .half-width {
    grid-column: 1 / -1;
  }
  .gallery-item img {
    min-height: 250px;
    max-height: 350px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR MENU — Modern Dark Blue Design with Red Accents
   ═══════════════════════════════════════════════════════════════════════════ */

/* Sidebar Menu */
.sidebar-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(
    135deg,
    var(--primary-deep) 0%,
    var(--primary) 100%
  );
  z-index: 1099;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--ease);
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--accent);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.sidebar-menu.active {
  transform: translateX(0);
}

/* Sidebar Header */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 2px solid rgba(200, 16, 46, 0.3);
  background: rgba(0, 0, 0, 0.2);
}

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

.sidebar-logo-img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.sidebar-close:hover {
  color: var(--accent);
}

/* Sidebar Navigation */
.sidebar-nav {
  flex: 1;
  padding: 0;
  margin: 0;
}

.sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-nav-item {
  position: relative;
}

.sidebar-nav-item.has-dropdown .sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-nav-item.has-dropdown.open .sidebar-submenu {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}

.sidebar-nav-item.has-dropdown.open .dropdown-arrow {
  transform: rotate(90deg);
}

/* Desktop - Show dropdowns on larger screens */
@media (min-width: 1025px) {
  .sidebar-nav-item.has-dropdown .dropdown-arrow {
    display: inline-block !important;
  }

  /* Desktop hover opens submenu */
  .sidebar-nav-item.has-dropdown:hover .sidebar-submenu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .sidebar-nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(90deg);
  }

  .sidebar-nav-item.has-dropdown .sidebar-submenu {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
  }
}

.sidebar-link {
  display: block;
  padding: 20px 30px;
  color: rgba(240, 240, 240, 0.85);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 16, 46, 0) 100%);
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 1.3rem;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: var(--text-light);
  background: linear-gradient(
    90deg,
    rgba(200, 16, 46, 0.1) 0%,
    transparent 100%
  );
  padding-left: 40px;
}

.sidebar-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

/* Sidebar Submenu */
.sidebar-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: background 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-sublink {
  display: block;
  padding: 15px 30px 15px 50px;
  color: rgba(240, 240, 240, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  border-left: 3px solid transparent;
}

.sidebar-sublink:hover {
  color: var(--text-light);
  background: rgba(200, 16, 46, 0.1);
  border-left-color: var(--accent);
  padding-left: 55px;
}

/* CTA Buttons */
.sidebar-cta {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cta-button.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
}

.cta-button.primary:hover {
  background: #a00d24;
  box-shadow: 0 12px 30px rgba(200, 16, 46, 0.4);
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: rgba(200, 16, 46, 0.2);
  color: var(--text-light);
  border: 2px solid var(--accent);
}

.cta-button.secondary:hover {
  background: rgba(200, 16, 46, 0.3);
  border-color: #ff3e56;
}

.cta-button .icon {
  font-size: 1.2rem;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 25px 20px 50px; /* Extra bottom padding to prevent icons from being hidden by mobile browser bottom bars */
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(200, 16, 46, 0.3);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-4px);
}

.sidebar-footer-text {
  text-align: center;
  color: rgba(240, 240, 240, 0.6);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .sidebar-menu {
    max-width: 380px;
  }

  .sidebar-link {
    padding: 18px 25px;
    font-size: 1rem;
  }

  .sidebar-link:hover,
  .sidebar-link.active {
    padding-left: 35px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sidebar-menu {
    max-width: 75vw;
  }

  .sidebar-header {
    padding: 20px 20px;
  }

  .sidebar-logo-img {
    max-width: 120px;
  }

  .sidebar-close {
    font-size: 2rem;
    width: 35px;
    height: 35px;
  }

  .sidebar-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .sidebar-link {
    padding: 16px 20px;
    font-size: 0.95rem;
    letter-spacing: 1px;
  }

  .sidebar-link:hover,
  .sidebar-link.active {
    padding-left: 30px;
  }

  .sidebar-cta {
    padding: 20px 15px;
    gap: 12px;
  }

  .cta-button {
    padding: 14px 20px;
    font-size: 0.9rem;
    gap: 8px;
  }

  .sidebar-footer {
    padding: 20px 15px;
  }

  .social-links {
    gap: 15px;
    margin-bottom: 15px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .sidebar-menu {
    max-width: 75vw;
  }

  .sidebar-link {
    padding: 14px 18px;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
  }

  .sidebar-link:hover,
  .sidebar-link.active {
    padding-left: 25px;
  }

  .cta-button {
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .sidebar-footer-text {
    font-size: 0.8rem;
  }
}

/* Scrollbar Styling */
.sidebar-menu::-webkit-scrollbar {
  width: 6px;
}

.sidebar-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.sidebar-menu::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
  background: #ff3e56;
}

/* About Section Key Features */
.about-key-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 15px;
  text-align: left;
}
.key-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 56, 112, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.key-feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 56, 112, 0.06);
  border-color: rgba(200, 16, 46, 0.20);
}
.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 16, 46, 0.08);
  color: var(--accent);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon-wrapper svg {
  width: 14px;
  height: 14px;
}
.feature-text {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* Disabled Navigation Links */
.nav-links a.disabled-link,
.sidebar-link.disabled-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: auto; /* Allow mouse hover for tooltip */
}

.nav-links a.disabled-link:hover::after,
.nav-links a.disabled-link.active::after {
  width: 0 !important;
}

.nav-links a.disabled-link:hover {
  color: rgba(255, 255, 255, 0.5) !important;
}

.sidebar-link.disabled-link:hover {
  padding-left: 30px !important;
  background: transparent !important;
  color: rgba(240, 240, 240, 0.5) !important;
}

@media (max-width: 1024px) {
  .sidebar-link.disabled-link:hover {
    padding-left: 25px !important;
  }
}

@media (max-width: 768px) {
  .about-key-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .key-feature-item {
    padding: 12px 16px;
    gap: 12px;
  }
  .feature-text {
    font-size: 0.95rem;
  }
  .sidebar-link.disabled-link:hover {
    padding-left: 20px !important;
  }
}

@media (max-width: 480px) {
  .sidebar-link.disabled-link:hover {
    padding-left: 18px !important;
  }
}

/* Service Lead Popup */
.service-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 8, 25, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}
.service-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.service-popup-card {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 460px;
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-top: 4px solid var(--accent);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-popup-overlay.active .service-popup-card {
  transform: scale(1);
}
.service-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
  outline: none;
}
.service-popup-close:hover {
  color: var(--accent);
}
.service-popup-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.service-popup-icon svg {
  width: 28px;
  height: 28px;
}
.service-popup-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--primary-deep);
}
.service-popup-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.service-popup-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-popup-actions .btn {
  padding: 12px 24px;
  font-size: 0.85rem;
  flex: 1;
  min-width: 130px;
}

@media (max-width: 480px) {
  .service-popup-card {
    padding: 30px 20px 20px;
  }
  .service-popup-card h3 {
    font-size: 1.35rem;
  }
}

/* PC Navbar Social Icons */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.nav-social-icon:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .nav-socials {
    display: none;
  }
}

/* Contact Form Social Icons */
.contact-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f4f6f8;
  color: var(--text);
  border-radius: 50%;
  border: 1px solid #e1e4e8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.contact-social-icon:hover {
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-social-icon.icon-wa:hover {
  background: #25d366 !important;
  border-color: #25d366 !important;
}
.contact-social-icon.icon-li:hover {
  background: #0077b5 !important;
  border-color: #0077b5 !important;
}
.contact-social-icon.icon-fb:hover {
  background: #1877f2 !important;
  border-color: #1877f2 !important;
}
.contact-social-icon.icon-ig:hover {
  background: #e1306c !important;
  border-color: #e1306c !important;
}

/* About Section Premium Labels */
.about-pill-label {
  background: rgba(200, 16, 46, 0.06);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid rgba(200, 16, 46, 0.1);
}
.about-pill-label-blue {
  background: rgba(0, 56, 112, 0.06);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 56, 112, 0.1);
}

/* Corporate Video Custom Player */
.cv-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  background: #000;
}
.cv-player-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cv-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 29, 61, 0.5) 0%, rgba(0, 8, 25, 0.35) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cv-video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cv-play-btn-pulse {
  width: 72px;
  height: 72px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.6);
  animation: cv-pulse 2s infinite;
}
.cv-play-btn-pulse svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  margin-left: 3px;
}
.cv-play-btn-pulse:hover {
  transform: scale(1.1);
  background: var(--accent-hover);
}
@keyframes cv-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(200, 16, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0);
  }
}

@media (max-width: 768px) {
  .cv-play-btn-pulse {
    width: 60px;
    height: 60px;
  }
  .cv-play-btn-pulse svg {
    width: 22px;
    height: 22px;
  }
}

/* Button Loading Spinner */
.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: btn-spin 0.8s ease-in-out infinite;
  margin-left: 10px;
  vertical-align: middle;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM ANIMATIONS & INTERACTIVE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Card perspective and 3D tilt styles */
.service-card,
.project-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Inner zoom container for Project Cards */
.project-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: var(--primary-deep);
}
.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.project-card:hover .project-image-wrapper img {
  transform: scale(1.08);
}

/* Service Image zoom transition */
.service-image {
  overflow: hidden;
  position: relative;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* Floating WhatsApp Gentle Pulse Animation */
@keyframes float-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
  }
}
.whatsapp-float {
  animation: float-pulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.whatsapp-float:hover {
  animation: none;
  transform: scale(1.1) translateY(-6px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM CORPORATE VIDEO & ABOUT US ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Homepage Corporate Video Section (Immersive Centered Theater) */
.corporate-video-section {
  padding: 120px 6% 100px;
  background: var(--bg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.corporate-video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}
.video-section-header {
  max-width: 800px;
  margin-bottom: 55px;
  text-align: center;
}
.video-section-header .section-title {
  margin-bottom: 18px;
  padding-bottom: 0;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.video-section-header .section-subtitle {
  color: var(--gray);
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 400;
}
.video-container-wrapper {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 29, 61, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
}
.video-container-wrapper:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 40px 80px rgba(0, 29, 61, 0.25);
}

/* About Page Premium Layout & Typography */
.about-section-premium {
  padding: 120px 6%;
  background: var(--bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.about-premium-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.about-premium-content {
  flex: 1.1;
}
.about-premium-video {
  flex: 0.9;
  width: 100%;
}
.section-title-premium {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 22px;
  font-family: var(--heading);
  letter-spacing: -0.8px;
}
.accent-bar {
  width: 70px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 30px;
  border-radius: 2px;
  position: relative;
}
.accent-bar::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 6px;
  height: 4px;
  background: var(--accent);
  opacity: 0.5;
  border-radius: 50%;
}
.about-text-content {
  color: var(--gray);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 35px;
}

/* LinkedIn Embedded Broadcast Video Card */
.video-label-container {
  text-align: center;
  margin-bottom: 20px;
}
.linkedin-embed-card {
  background: var(--white);
  padding: 14px;
  border-radius: 20px;
  box-shadow: 0 25px 55px rgba(0, 29, 61, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
  position: relative;
}
.linkedin-embed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(0,0,0,0.03));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.linkedin-embed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 75px rgba(0, 29, 61, 0.16);
}
.linkedin-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}
.linkedin-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Overrides & Flex Adaptability */
@media (max-width: 1200px) {
  .about-premium-container {
    gap: 50px;
  }
  .section-title-premium {
    font-size: 2.2rem;
  }
}
@media (max-width: 1024px) {
  .about-premium-container {
    flex-direction: column;
    gap: 60px;
  }
  .about-premium-content, 
  .about-premium-video {
    width: 100%;
  }
  .section-title-premium {
    text-align: center;
  }
  .accent-bar {
    margin: 0 auto 30px;
  }
  .video-label-container {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .corporate-video-section {
    padding: 80px 4% 60px;
  }
  .video-section-header {
    margin-bottom: 40px;
  }
  .video-section-header .section-subtitle {
    font-size: 1.05rem;
  }
  .about-section-premium {
    padding: 80px 4%;
  }
  .section-title-premium {
    font-size: 1.95rem;
  }
  .linkedin-embed-card {
    padding: 8px;
    border-radius: 14px;
  }
  .linkedin-video-container {
    border-radius: 8px;
  }
}




