/* ====== RESET & BASE ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* ====== MODERN HOSPITAL MANAGEMENT STYLING ====== */
:root {
  --primary: #0e88c7;
  --primary-dark: #0a6ca0;
  --secondary: #ff6b00;
  --secondary-dark: #e55e00;
  --dark: #1a2b3c;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --light-bg: #f8fafc;
  --light-gray: #f1f5f9;
  --hover-bg: rgba(14, 136, 199, 0.05);
  --hover-bg-dark: rgba(14, 136, 199, 0.1);
  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 8px;
}
/* ========================= */
/*          TOP BAR          */
/* ========================= */

.top-bar {
  background: #0f1f2f;
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
  /* position: sticky;
  top: 0;
  z-index: 1001; */
}

.top-info {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info a {
  color: #fff;
  text-decoration: none;
}

/* ========================= */
/*        MAIN NAVBAR        */
/* ========================= */

#header {
  position: sticky;
  top: 0;
  z-index: 1002;
}

.main-navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

/* Logo */

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 55px;
  display: block;
}

/* ========================= */
/*         NAV LINKS         */
/* ========================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a:not(.book-btn) {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 10px;
  white-space: nowrap;
  border-radius: 6px;
}

.nav-links a:not(.book-btn) {
  position: relative;
  overflow: hidden;
  /* Remove background and color changes here if present */
}

.nav-links a:not(.book-btn)::before,
.nav-links a:not(.book-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 2px;
  background: #0b5cae; /* or your desired border color */
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:not(.book-btn)::before {
  top: 0;
}

.nav-links a:not(.book-btn)::after {
  bottom: 0;
  right: 0;
  left: auto;
}

.nav-links a:not(.book-btn):hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.nav-links a:not(.book-btn):hover::after {
  width: 100%;
  right: 0;
  left: auto;
}

/* ========================= */
/*         CTA BUTTON        */
/* ========================= */

.book-btn {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%);
  color: #fff !important;
  border-radius: 24px;
  font-size: 14px;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: linear-gradient(135deg, #0e88c7 0%, #ff6b00 100%);
}

/* ========================= */
/*          DROPDOWN         */
/* ========================= */

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hide by default */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: none;
  min-width: 240px;
  z-index: 999;
}

/* 2 column version */
.mega-menu.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  min-width: 520px;
}

/* Desktop hover */
@media (min-width: 993px) {
.dropdown:hover .mega-menu {
    display: block;
  }

.dropdown:hover .mega-menu.grid-2 {
    display: grid;
  }
}

.mega-menu a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: #333;
  text-decoration: none;
}

.mega-menu a:hover {
  color: #003366;
}

/* ========================= */
/*         HAMBURGER         */
/* ========================= */
/* ===== HAMBURGER BASE ===== */

.menu-toggle {
  width: 30px;
  height: 22px;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  left: 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Position lines properly */
.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

/* ===== PERFECT X TRANSFORMATION ===== */

.menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* ========================= */
/*        MOBILE (<=992px)   */
/* ========================= */

@media (max-width: 1100px) {
.menu-toggle {
    display: flex;
  }

.nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

.nav-links.show-menu {
    display: flex;
  }

.nav-links li {
    width: 100%;
  }

.nav-links a:not(.book-btn) {
    width: 100%;
    /* padding: 12px 0; */
  }

  /* Disable hover dropdown */
.dropdown:hover .mega-menu {
    display: none;
  }

  /* Mobile dropdown open via JS */
.mega-menu,
.mega-menu.grid-2 {
    position: static;
    box-shadow: none;
    padding: 10px 0 0 10px;
    min-width: 100%;
    display: none;
  }

.dropdown.active .mega-menu {
    display: block;
  }

.dropdown.active .mega-menu.grid-2 {
    display: block;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

/* Background video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Slides container */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Each Slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease-in-out,
    visibility 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* Content in each slide */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  z-index: 1000;
  width: 90%;
  max-width: 800px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.hero-content.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 1);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #f0f0f0;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-btn {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  z-index: 10000;
}

.hero-btn:hover {
  background: #003366;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
.hero {
    height: 80vh;
  }
.bg-video {
    display: none;
  }
.hero-content h1 {
    font-size: 2rem;
  }
.hero-content p {
    font-size: 1rem;
  }
}

/* ================= HERO NAVIGATION ================= */

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.nav-arrow svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
  transition: 0.3s ease;
}

.nav-arrow:hover {
  background: #ff6b00;
  transform: translateY(-50%) scale(1.08);
}

.nav-arrow:hover svg {
  stroke: #ffffff;
}

.nav-arrow.left {
  left: 30px;
}

.nav-arrow.right {
  right: 30px;
}

/* Hide on small screens (recommended) */
@media (max-width: 768px) {
.nav-arrow {
    display: none;
  }
}

/* Optional: fade-in animation for slide text */
.slide.active .hero-content {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Hero slide styling */
.hero .slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
  opacity: 0.5;
  z-index: 99;
}

.hero .slide.active {
  opacity: 0.5;
  z-index: 99;
}
/* ===== ABOUT SECTION ===== */

.about {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f4f8fc 60%, #ffffff 40%);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */

.about__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.about__badge {
  display: inline-block;
  background: #e6f0ff;
  color: #003366;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about__header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.about__header p {
  font-size: 17px;
  color: #5c677d;
  line-height: 1.7;
}

/* Stats */

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.stat {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-6px);
}

.stat h3 {
  font-size: 34px;
  color: #003366;
  margin-bottom: 10px;
}

.stat span {
  font-size: 14px;
  color: #6b7280;
}

/* Story Block */

.about__story {
  padding: 0 20px;
}

.about__story-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  border: 1px solid rgba(14, 136, 199, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  padding: 0;
  /* max-width: 800px; */
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about__story-card:hover {
  box-shadow: 0 16px 48px rgba(14, 136, 199, 0.12);
  transform: translateY(-4px);
}
.about__image-wrapper {
  width: 100%;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f4fb 0%, #f0f9ff 100%);
}
.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about__story-card:hover .about__image-wrapper img {
  transform: scale(1.05);
}
.about__text-wrapper {
  padding: 48px 40px;
}
.about__text-wrapper h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0d1b2a;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
}
.about__text-wrapper p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 18px;
}
.about__text-wrapper p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
.about__story-card {
    border-radius: 16px;
  }
.about__image-wrapper {
    height: 280px;
  }
.about__text-wrapper {
    padding: 32px 24px;
  }
.about__text-wrapper h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }
.about__text-wrapper p {
    font-size: 15px;
    margin-bottom: 15px;
  }
}

/* Responsive */

@media (max-width: 992px) {
.about__stats {
    grid-template-columns: repeat(2, 1fr);
  }

.about__story {
    grid-template-columns: 1fr;
  }
}
/* ===== EXPERTISE SECTION ===== */

.expertise {
  padding: 120px 0;
  background: #f7f9fc;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */

.expertise__header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
}

.expertise__badge {
  display: inline-block;
  background: #e6f0ff;
  color: #003366;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.expertise__header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.expertise__header p {
  font-size: 16px;
  color: #5c677d;
  line-height: 1.7;
}

/* Grid - Updated for card layout */

.expertise__grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* Responsive cards */
  gap: 40px;
}

/* Items - Now styled as cards */

.expertise__item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  padding: 20px;
  border: 1px solid #e3e8ef;
}

.expertise__item img {
  width: 100%;
  height: 200px; /* Fixed height for consistency; adjust as needed */
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
}

.expertise__item h3 {
  font-size: 20px;
  color: #0d1b2a;
  margin-bottom: 10px;
  font-weight: 600;
}

.expertise__item p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.expertise__item a {
  color: #003366;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  position: relative;
}

.expertise__item a::after {
  content: " →";
  transition: transform 0.3s ease;
}

.expertise__item a:hover::after {
  transform: translateX(5px);
}

/* Hover effect with orange color */

.expertise__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3); /* Orange shadow */
  border-color: #ff6b00; /* Orange border on hover */
}

.expertise__item:hover h3 {
  color: #ff6b00; /* Orange text on hover */
}

/* Responsive */

@media (max-width: 992px) {
.expertise__grid {
    grid-template-columns: 1fr;
  }
}

/* ====== STATS SECTION - MODERN DESIGN ====== */
.stats-section {
  padding: 120px 0;
  background: #ffffff;
  color: #0d1b2a;
  text-align: center;
}

.stats-section .container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

/* Section Title */
.stats__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.stats__badge {
  display: inline-block;
  background: #e6f0ff;
  color: #003366;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.stats__header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0d1b2a;
  letter-spacing: 0px;
  text-transform: none;
}

.stats__header p {
  font-size: 16px;
  color: #5c677d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Grid - Modern Layout */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* Modern Stat Box Design */
.stat-box {
  background: linear-gradient(135deg, rgb(38, 99, 235), rgb(255, 122, 0));
  border: none;
  width: 100%;
  max-width: 350px;
  padding: 40px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(14, 136, 199, 0.3);
}

/* Gradient Border Effect */
.stat-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: none;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.stat-box:hover::before {
  opacity: 0;
}

/* Inner Background */
.stat-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  border-radius: 10px;
  z-index: -1;
  transition: all 0.4s ease;
}

.stat-box:hover::after {
  background: none;
}

/* Icon Container */
.stat-box .icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.stat-box:hover .icon {
  transform: rotateY(360deg);
  background: rgba(255, 255, 255, 0.3);
}

/* Counter Number */
.stat-box h2 {
  font-size: 48px;
  font-weight: 800;
  margin: 10px 0;
  color: #ffffff;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  text-shadow: none;
}

/* Plus/K Symbol */
.stat-box h2 span {
  font-size: 24px;
  margin-left: 5px;
  color: #ffffff;
}

/* Label */
.stat-box p {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 5px 0 0;
  position: relative;
  z-index: 1;
  text-shadow: none;
}

/* Hover Effects */
.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(14, 136, 199, 0.4);
}

.stat-box:hover h2 {
  transform: scale(1.05);
  color: #ffffff;
}

.stat-box:hover p {
  color: #ffffff;
  letter-spacing: 2px;
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-box h2 {
  animation: countUp 0.8s ease-out;
}

.stats__header {
  margin-bottom: 80px;
}

.stats__badge {
  display: inline-block;
  background: #e6f0ff;
  color: #003366;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Responsive Design */
/* Large Desktop */
@media (min-width: 1400px) {
.stats-section {
    padding: 120px 20px;
  }

.stat-box {
    max-width: 380px;
    padding: 50px 35px;
  }

.stat-box h2 {
    font-size: 56px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
.stats-grid {
    gap: 25px;
  }

.stat-box {
    padding: 35px 25px;
  }

.stat-box .icon {
    width: 70px;
    height: 70px;
    font-size: 40px;
  }

.stat-box h2 {
    font-size: 42px;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
.stats-section {
    padding: 80px 20px;
  }

.stats__header h2 {
    font-size: 32px;
  }

.stats__header p {
    font-size: 15px;
  }

.stat-box {
    padding: 30px 20px;
  }

.stat-box h2 {
    font-size: 38px;
  }

.stat-box p {
    font-size: 14px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
.stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 15px;
  }

.stats__header h2 {
    font-size: 28px;
  }

.stats__header p {
    font-size: 14px;
  }

.stat-box {
    max-width: 100%;
    padding: 25px 15px;
  }

.stat-box .icon {
    width: 60px;
    height: 60px;
    font-size: 32px;
    margin-bottom: 15px;
  }

.stat-box h2 {
    font-size: 32px;
  }

.stat-box h2 span {
    font-size: 18px;
  }

.stat-box p {
    font-size: 13px;
    letter-spacing: 1px;
  }

.stat-box:hover {
    transform: translateY(-5px);
  }
}

/* Mobile Landscape */
@media (max-width: 576px) {
.stats-section {
    padding: 60px 15px;
  }

.stats__header {
    margin-bottom: 40px;
  }

.stats__header h2 {
    font-size: 24px;
  }

.stats__header p {
    font-size: 13px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
.stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 350px;
    margin: 0 auto;
  }

.stat-box {
    width: 100%;
    padding: 30px 20px;
  }

.stat-box .icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }

.stat-box h2 {
    font-size: 36px;
  }

.stat-box p {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
.stats-section {
    padding: 40px 10px;
  }

.stat-box {
    padding: 25px 15px;
  }

.stat-box .icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

.stat-box h2 {
    font-size: 30px;
  }

.stat-box p {
    font-size: 12px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
.stat-box:hover {
    transform: none;
  }

.stat-box:hover::before {
    opacity: 0;
  }

.stat-box:hover .icon {
    transform: none;
  }

.stat-box:active {
    transform: scale(0.98);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
.stat-box,
.stat-box::before,
.stat-box::after,
.stat-box .icon,
.stat-box h2,
.stat-box p {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* Accessibility */
.stat-box:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

/* ===== CLIENT REVIEWS SECTION ===== */
.client-reviews {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.client-reviews .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.reviews__header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
}

.reviews__badge {
  display: inline-block;
  background: #e6f0ff;
  color: #003366;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.reviews__header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.reviews__header p {
  font-size: 16px;
  color: #5c677d;
  line-height: 1.7;
}

/* Reviews Grid */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* Review Card */
.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e3e8ef;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Card overlay on hover */
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0e88c7, #ff6b00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(14, 136, 199, 0.15);
  border-color: #0e88c7;
}

/* Star Rating */
.review-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}

.review-rating i {
  color: #ff6b00;
  font-size: 14px;
}

/* Review Text */
.review-text {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
  font-style: italic;
}

/* Author Section */
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid #e3e8ef;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e88c7, #003366);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.author-details h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0d1b2a;
  margin: 0 0 3px 0;
}

.author-details span {
  font-size: 12px;
  color: #999;
}

/* Responsive */
@media (max-width: 992px) {
.reviews__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
.client-reviews {
    padding: 80px 0;
  }

.reviews__header h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

.reviews__header p {
    font-size: 14px;
  }

.reviews__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

.review-card {
    padding: 25px;
  }

.review-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
.client-reviews {
    padding: 60px 20px;
  }

.reviews__header h2 {
    font-size: 24px;
  }

.review-card {
    padding: 20px;
  }

.review-text {
    font-size: 13px;
    line-height: 1.6;
  }

.author-avatar {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

.author-details h4 {
    font-size: 13px;
  }

.author-details span {
    font-size: 11px;
  }
}

/* ===== WHY SECTION ===== */

.why {
  padding: 120px 0;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */

.why__header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
}

.why__badge {
  display: inline-block;
  background: #e6f0ff;
  color: #003366;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why__header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.why__header p {
  font-size: 16px;
  color: #5c677d;
  line-height: 1.7;
}

/* Updated Grid - Card-based and responsive */
.why__grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* Auto-adjusts columns: 3+ on large screens, fewer on smaller */
  gap: 30px; /* Reduced gap for tighter card layout */
  justify-items: center; /* Centers cards horizontally */
  align-items: stretch; /* Ensures cards stretch to equal height */
}

/* Updated Items - Now styled as modern cards */
.why__item {
  background: #ffffff; /* White background for card effect */
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 30px 25px; /* Generous padding inside cards */
  border: 1px solid #e3e8ef; /* Light border for definition */
  transition: all 0.3s ease; /* Smooth hover transitions */
  text-align: center; /* Center-align content for card feel */
  position: relative; /* For potential pseudo-elements */
  overflow: hidden; /* Prevents shadow overflow on hover */
}

.why__item:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3); /* Enhanced shadow with orange tint (matches your site's accent) */
  border-color: #ff6b00; /* Orange border on hover for emphasis */
}

.why__item h3 {
  font-size: 20px; /* Slightly larger for card prominence */
  margin-bottom: 15px;
  color: #0d1b2a;
  font-weight: 600;
  transition: color 0.3s ease; /* Smooth color change */
}

.why__item:hover h3 {
  color: #ff6b00; /* Orange text on hover */
}

.why__item p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
}

/* Icon Styling for Why Cards */
.why__icon {
  font-size: 48px; /* Large, prominent size */
  color: #003366; /* Matches your primary color */
  margin-bottom: 15px; /* Space below icon */
  display: block; /* Centers the icon */
  text-align: center; /* Ensures centering */
  transition: all 0.3s ease; /* Smooth hover transitions */
}

.why__item:hover .why__icon {
  color: #ff6b00; /* Orange on hover, matching card accent */
  transform: scale(1.1); /* Slight zoom for interactivity */
}

/* Responsive adjustments */
@media (max-width: 992px) {
.why__grid {
    grid-template-columns: repeat(
      auto-fit,
      minmax(250px, 1fr)
    ); /* 2 columns on tablets */
    gap: 25px;
  }
}

@media (max-width: 768px) {
.why__grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 20px;
  }

.why__item {
    padding: 25px 20px; /* Slightly less padding on small screens */
  }
}

/* ===== CLIENTS SECTION ===== */

.clients {
  padding: 110px 0;
  background: #f7f9fc;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */

.clients__header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
}

.clients__badge {
  display: inline-block;
  background: #e6f0ff;
  color: #003366;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.clients__header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.clients__header p {
  font-size: 16px;
  color: #5c677d;
}

/* Grid */

.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 50px;
  align-items: center;
}

/* Items */

.clients__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.clients__item img {
  max-width: 150px;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.clients__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive */

@media (max-width: 992px) {
.clients__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
.clients__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*==========BLOGS SECTION==========*/
.blogs {
  padding: 100px 0;
  text-align: center;
  background: #fff;
}

.blogs .section-subtitle {
  color: #f15a24;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blogs .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 10px;
  color: #1a1a1a;
}

.blogs .section-desc {
  max-width: 700px;
  margin: 10px auto 50px;
  color: #555;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); /* wider cards */
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1400px; /* allows more space */
  margin: 0 auto;
  padding: 40px 20px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-top: 4px solid #f15a24; /* same color as expertise hover */
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
}

.blog-card img {
  width: 100%;
  height: 280px; /* increased height */
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog-content {
  padding: 35px;
}

.blog-content h3 {
  font-size: 1.2rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
  color: #002b5b; /* dark blue on hover */
}

.blog-content p {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #0056ff;
  color: #fff;
}
/* ==== READ MORE BUTTON ==== */
.read-more-btn-container {
  text-align: center;
  margin-top: 40px;
}

.read-more-btn {
  display: inline-block;
  background: #ff6600; /* Orange */
  color: #000; /* Black text */
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #0056ff; /* Sky blue */
  color: #fff;
  transform: translateY(-3px);
} /* ===== CONTACT SECTION ===== */

.contact {
  padding: 100px 0;
  background: #f9fbfd;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.contact__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.contact__badge {
  display: inline-block;
  background: #e8f1ff;
  color: #0056ff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact__title {
  font-size: 38px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.contact__subtitle {
  color: #5c677d;
  font-size: 16px;
}

/* Grid */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Cards */
.contact__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* FORM */
.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1b263b;
}

.form__row {
  display: flex;
  gap: 20px;
}

.form__row .form__group {
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dce3ea;
  font-size: 15px;
  transition: all 0.25s ease;
  background: #fdfefe;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #0056ff;
  box-shadow: 0 0 0 3px rgba(0, 86, 255, 0.1);
}

/* Button */
.btn-primary {
  width: 100%;
  padding: 14px;
  background: #0056ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 86, 255, 0.3);
}

/* INFO SIDE */
.contact__info {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #fff;
}

.contact__info h3 {
  margin-bottom: 30px;
}

.info__item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info__item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info__icon {
  font-size: 22px;
}

.info__label {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* Map */
.contact__map {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

/* Responsive */
@media (max-width: 992px) {
.contact__grid {
    grid-template-columns: 1fr;
  }

.form__row {
    flex-direction: column;
  }
}

body > *:last-child {
  margin-bottom: 0 !important;
}
.section-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  letter-spacing: 0.5px;
}

.section-heading::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #ff6600; /* same orange */
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}
/* Remove unwanted bottom spacing */
body,
html {
  margin: 0;
  padding: 0;
}

/* Make sure footer sits flush to bottom */
footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Optional: remove extra space below contact section */
.contact-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ======== Footer ======== */

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

.footer {
  background: linear-gradient(135deg, #0d3c66, #082d4f);
  color: #f1f5f9;
  padding: 80px 0 40px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.3fr;
  gap: 50px;
}

/* Logo & About */
.footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 20px;
}

/* Headings */
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 600;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
.footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer a:hover {
  color: #ff6b00;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #0f1f2f;
}

/* Contact Icons */
.footer-contact i {
  color: #ff6b00;
  margin-right: 8px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  color: #cbd5e1;
}

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

@media (max-width: 992px) {
.footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
.footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

.social-icons {
    justify-content: center;
  }

.footer-contact i {
    display: block;
    margin-bottom: 6px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  margin-top: 11px;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* ======== Preloader ======== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* match site background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#preloader img {
  width: 120px; /* adjust logo size */
  height: auto;
  animation: popup 1.4s ease-in-out infinite;
}

/* ======== Pop-up Down Animation ======== */
@keyframes popup {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.08);
  }
}

/* Fade out after load */
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
/* === Improve Hero Text Visibility === */
.hero-content h1,
.hero-content p {
  color: #ffffff !important;
  text-shadow:
    0 0 12px rgba(0, 0, 0, 1),
    0 0 20px rgba(0, 0, 0, 0.9),
    0 2px 10px rgba(0, 0, 0, 1) !important;
}

.hero-content {
  filter: brightness(1.2);
}

/* Stronger overlay for better contrast */
.overlay {
  background: rgba(0, 0, 0, 0.55) !important;
}
/* -------- FIX HERO TEXT VISIBILITY COMPLETELY -------- */

/* Remove brightness fade from slides */
.hero .slide,
.slide {
  opacity: 1 !important;
}

/* Add a strong dark overlay on each slide */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    0,
    0,
    0,
    0.55
  ) !important; /* adjust 0.55 → 0.6 or 0.65 if needed */
  z-index: 1;
}

/* Raise hero text above overlay */
.hero-content {
  position: relative;
  z-index: 5 !important;
}

/* Make text brighter, crisp & punchy */
.hero-content h1,
.hero-content p {
  color: #ffffff !important;
  text-shadow:
    0 0 10px rgba(0, 0, 0, 1),
    0 0 18px rgba(0, 0, 0, 0.9),
    0 2px 8px rgba(0, 0, 0, 1) !important;
}

.faq {
  padding: 100px 0;
  background: #f8fbff;
}

.faq__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.faq__badge {
  display: inline-block;
  background: #e6f0ff;
  color: #003366;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.faq__title {
  font-size: 34px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 16px;
}

.faq__subtitle {
  font-size: 16px;
  color: #5c677d;
  line-height: 1.6;
}

.faq__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #0d1b2a;
}

.faq__icon {
  font-size: 22px;
  font-weight: bold;
  color: #003366;
  transition: 0.3s ease;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}

.faq__answer p {
  padding: 15px 0 20px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* ================= FAQ LIST STYLING ================= */

.faq__answer ul {
  margin: 15px 0 20px;
  padding-left: 22px;
  list-style: none; /* remove default bullets */
}

.faq__answer ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Custom Bullet */
.faq__answer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #003366; /* brand primary */
  border-radius: 50%;
}

/* Nested Lists (if ever used) */
.faq__answer ul li ul {
  margin-top: 8px;
  padding-left: 18px;
}

.faq__answer ul li ul li::before {
  width: 6px;
  height: 6px;
  background: #ff6600; /* secondary accent */
}

/* Active State */
.faq__item.active .faq__answer {
  max-height: 2000px;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
.faq {
    padding: 80px 0;
  }

.faq__accordion {
    max-width: 100%;
    padding: 0 20px;
  }

.faq__item {
    margin-bottom: 14px;
  }

.faq__question {
    padding: 16px 18px;
    font-size: 15px;
  }

.faq__answer {
    padding: 0 18px;
  }

.faq__answer p {
    padding: 12px 0 16px;
    font-size: 14px;
  }

.faq__item.active .faq__answer {
    max-height: 2000px;
  }

.faq__title {
    font-size: 26px;
  }

.faq__subtitle {
    font-size: 14px;
  }
}

/* v5.8 compact mobile contact/header spacing */
@media (max-width:768px){
  .top-bar{padding:4px 0!important}
  .top-info{padding:0 10px!important;gap:4px 8px!important;justify-content:center!important}
  .top-info>span{gap:4px!important;margin:0!important;line-height:1.2!important}
  .top-phone-pair{gap:3px!important}
  .main-navbar{padding-top:4px!important;padding-bottom:4px!important}
}
