﻿/* ===== CSS VARIABLES ===== */
:root {
  --primary: #00d4ff;
  --secondary: #7b2fff;
  --accent: #ff4b6e;
  --dark: #050b18;
  --dark-2: #090f20;
  --dark-3: #0d1528;
  --card-bg: rgba(13, 21, 40, 0.85);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(0, 212, 255, 0.15);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --gradient: linear-gradient(135deg, #00d4ff, #7b2fff);
  --gradient-hover: linear-gradient(135deg, #7b2fff, #00d4ff);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
  --shadow-purple: 0 0 30px rgba(123, 47, 255, 0.2);
  --border-radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark-2);
}
::-webkit-scrollbar-thumb {
  background: var(--gradient);
  border-radius: 99px;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.badge-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
  background: rgba(0, 212, 255, 0.06);
}

/* ===== BUTTONS ===== */
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background: var(--gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hover);
  opacity: 0;
  transition: var(--transition);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
  color: #fff;
}
.btn-glow:hover::before {
  opacity: 1;
}
.btn-glow span {
  position: relative;
  z-index: 1;
}
.btn-glow i {
  position: relative;
  z-index: 1;
}

.btn-outline-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  border: 1.5px solid rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.05);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-outline-glow:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
  color: var(--primary);
}

/* ===== DIVIDER ===== */
.gradient-divider {
  height: 2px;
  background: var(--gradient);
  border: none;
  width: 60px;
  margin: 0 auto 12px;
  border-radius: 99px;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(5, 11, 24, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(5, 11, 24, 0.95);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.navbar-brand-text {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: 1.15rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
}
.navbar-brand-sub {
  font-size: 0.88rem;
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: "Rajdhani", sans-serif;
  display: block;
  margin-top: -4px;
}
.brand-icon {
  width: 80px;
  height: 80px;
  /* background: var(--gradient); */
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #fff;
  margin-right: 10px;
  flex-shrink: 0;
  /* box-shadow: var(--shadow-glow); */
}
.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  background: rgba(0, 212, 255, 0.08);
}
.navbar-toggler {
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(170deg);
}
.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 50px;
  font-weight: 600;
}
.nav-cta:hover {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  background: var(--gradient-hover);
}

/* ===== HERO SECTION ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100vw;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 70% at 60% 40%,
      rgba(123, 47, 255, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 20% 70%,
      rgba(0, 212, 255, 0.12) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #050b18 0%, #090f20 50%, #0d1528 100%);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-20px) scale(1);
    opacity: 0;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
}

/* Swiper Hero */
.hero-swiper {
  width: 100%;
}
.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 5px 16px;
  border-radius: 99px;
  background: rgba(0, 212, 255, 0.06);
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}
.hero-slide-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-title {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 18px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #a8d4ff 50%,
    var(--primary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-img-main {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 212, 255, 0.15),
    0 0 0 1px rgba(123, 47, 255, 0.1);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.hero-badge-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-glow);
  min-width: 160px;
}
.hero-badge-card .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-badge-card.card-1 {
  top: 12%;
  right: -6%;
  animation: float-badge-1 4s ease-in-out infinite;
}
.hero-badge-card.card-2 {
  bottom: 15%;
  left: -6%;
  animation: float-badge-2 5s ease-in-out infinite;
}
@keyframes float-badge-1 {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}
@keyframes float-badge-2 {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.hero-swiper-pagination {
  text-align: left;
  margin-top: 30px;
}
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  width: 8px;
  height: 8px;
}
.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 24px;
  border-radius: 99px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.6;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

/* ===== ABOUT SECTION ===== */
#about {
  padding: 110px 0;
  background: #f0f7ff;
}
.about-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.12);
}
.about-img-frame img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--gradient);
  border-radius: 16px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(123, 47, 255, 0.4);
}
.about-exp-badge .num {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.about-exp-badge .lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
}

/* Counter Cards */
.counter-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0, 212, 255, 0.3);
}
.counter-card:hover::before {
  transform: scaleX(1);
}
.counter-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-glow);
}
.counter-num {
  font-family: "Orbitron", monospace;
  font-size: 1.9rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.counter-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* ===== SERVICES SECTION ===== */
#services {
  padding: 110px 0;
  background: #0d1525;
  position: relative;
  overflow: hidden;
}
#services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    var(--secondary),
    transparent
  );
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(0, 212, 255, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0, 212, 255, 0.35);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  position: relative;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}
.service-card-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.service-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 22px;
}
.service-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 99999999;
}
.service-btns .btn-sm-glow {
  flex: 1;
  min-width: 100px;
  padding: 9px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.btn-sm-glow.primary {
  background: var(--gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 212, 255, 0.2);
}
.btn-sm-glow.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 212, 255, 0.35);
}
.btn-sm-glow.outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(0, 212, 255, 0.35);
}
.btn-sm-glow.outline:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

/* Service card image */
.service-card-img-wrap {
  margin: -32px -28px 22px;
  /* height: 175px; */
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  position: relative;
  flex-shrink: 0;
}
.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.service-card:hover .service-card-img-wrap img {
  transform: scale(1.08);
}
.service-card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 11, 24, 0.1) 30%,
    rgba(9, 15, 32, 0.92) 100%
  );
  pointer-events: none;
}
.service-card-img-wrap .img-tag {
  position: absolute;
  bottom: 10px;
  left: 14px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card-img-wrap .img-tag i {
  font-size: 0.75rem;
}

/* Hero image transition */
.hero-img-main {
  transition: opacity 0.5s ease;
}
.hero-img-main.fade-out {
  opacity: 0;
}

/* ===== WHY CHOOSE US ===== */
#why {
  padding: 110px 0;
  background: #f8fafc;
}
.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.why-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--border-radius);
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(123, 47, 255, 0.2);
}
.why-card:hover::after {
  opacity: 1;
}
.why-card:hover .why-inner {
  background: var(--dark-3);
}
.why-inner {
  background: transparent;
  border-radius: calc(var(--border-radius) - 2px);
  transition: var(--transition);
}
.why-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  transform: scale(1.15);
}
.why-icon-glow {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: inherit;
  filter: blur(12px);
  opacity: 0.4;
}
.why-icon-wrap i {
  position: relative;
  z-index: 1;
  color: #fff;
}
.why-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.why-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== FAQ ===== */
#faq {
  padding: 110px 0;
  background: #071e38;
  position: relative;
}
#faq::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary),
    var(--primary),
    transparent
  );
}
.accordion-item {
  background: rgba(7, 30, 56, 0.6) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--border-radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item:hover {
  border-color: rgba(0, 212, 255, 0.3) !important;
}
.accordion-button {
  background: transparent !important;
  color: #fff !important;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 20px 24px !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
}
.accordion-button::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(170deg);
}
.accordion-body {
  background: rgba(0, 0, 0, 0.2) !important;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  padding: 0 24px 22px !important;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 110px 0;
  background: #ffffff;
}
.testimonial-swiper {
  padding: 20px 10px 60px !important;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 8rem;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
}
.author-name {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.author-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
}

/* ===== CONTACT SECTION ===== */
#contact {
  padding: 110px 0;
  background: #130d28;
}
.contact-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
  margin-bottom: 18px;
}
.contact-info-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(5px);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  background: var(--gradient);
  box-shadow: var(--shadow-glow);
}
.contact-info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-info-value {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 3px;
}
.contact-info-value a {
  color: var(--primary);
}

.map-wrapper-full {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glow);
  height: 100%;
  min-height: 460px;
}
.map-wrapper-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) brightness(0.88);
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: #040c1a;
  border-top: 1px solid rgba(0, 212, 255, 0.12);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}
.footer-bottom span {
  color: var(--primary);
}

/* ===== FLOATING BUTTONS ===== */
.float-btn-group {
  position: fixed;
  right: 22px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.float-btn.call {
  background: var(--gradient);
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  color: #fff;
}

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 900;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

/* ===== SECTION PADDING ===== */
.section-pad {
  padding: 110px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-visual {
    margin-top: 60px;
  }
  .hero-badge-card.card-1 {
    right: 0;
    top: 0;
  }
  .hero-badge-card.card-2 {
    left: 0;
    bottom: 0;
  }
  .about-exp-badge {
    right: 0;
    bottom: -10px;
  }
  .hero-image-wrapper {
    overflow: visible;
  }
}
@media (max-width: 767px) {
  #hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-badge-card {
    display: none !important;
  }
  .about-img-wrap {
    margin-bottom: 60px;
  }
  .about-exp-badge {
    right: 10px;
    bottom: -10px;
  }
  .float-btn-group {
    right: 14px;
    bottom: 76px;
  }
  #back-to-top {
    right: 14px;
    bottom: 20px;
  }
  .service-card-img-wrap {
    margin: -32px -28px 22px;
  }
  .hero-image-wrapper {
    max-width: 100%;
  }
  .container {
    overflow: hidden;
  }
}

/* ===== NOISE OVERLAY ===== */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}
/* ===== ENQUIRY MODAL ===== */
/* Modal wrapper */
.enquiry-modal-content {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
/* Gradient top strip */
.enquiry-modal-content::before {
  content: "";
  display: block;
  height: 5px;
  background: var(--gradient);
}
.enquiry-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 18px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.enquiry-modal-title {
  font-family: "Orbitron", monospace;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.enquiry-modal-sub {
  font-size: 0.74rem;
  color: #94a3b8;
  margin: 3px 0 0;
  line-height: 1.4;
}
.enquiry-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.enquiry-close-btn:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #ef4444;
}
.enquiry-modal-body {
  padding: 24px 30px 28px;
  background: #ffffff;
}
.eq-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.eq-required {
  color: #ef4444;
}
.eq-input {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 11px 14px;
  color: #1e293b;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  font-family: "Inter", sans-serif;
}
.eq-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
  background: #ffffff;
}
.eq-input::placeholder {
  color: #94a3b8;
}
.eq-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2394a3b8' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}
.eq-select option {
  background: #fff;
  color: #1e293b;
}
textarea.eq-input {
  resize: vertical;
  min-height: 95px;
}
.eq-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #166534;
  font-size: 0.9rem;
}
.eq-success i {
  color: #22c55e;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.eq-quick-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}
.eq-quick-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 50px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  transition: var(--transition);
  text-decoration: none;
  flex: 1;
  min-width: 170px;
}
.eq-quick-item i {
  color: var(--primary);
  font-size: 0.85rem;
}
.eq-quick-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0f9ff;
}
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

/* ===== RIGHT-SIDE ENQUIRE TAB (rotated) ===== */
.enquire-tab-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(calc(50% - 23px));
  transform-origin: center center;
  z-index: 899;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 10px 10px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    box-shadow 0.3s ease,
    filter 0.3s ease;
  box-shadow: -4px 0 22px rgba(0, 212, 255, 0.4);
}
.enquire-tab-btn:hover {
  filter: brightness(1.15);
  box-shadow: -6px 0 32px rgba(0, 212, 255, 0.65);
}
.enquire-tab-btn i {
  font-size: 0.95rem;
}
@media (max-width: 767px) {
  .enquire-tab-btn {
    padding: 10px 16px;
    font-size: 0.82rem;
    gap: 6px;
  }
  .enquire-tab-btn span {
    display: none;
  }
}

/* ===== WHITE / LIGHT SECTION OVERRIDES ===== */

/* --- About (light blue-white) --- */
#about .about-text p {
  color: #475569;
}
#about .badge-label {
  background: rgba(0, 212, 255, 0.1);
  color: #0369a1;
  border-color: rgba(0, 212, 255, 0.3);
}
#about .section-subtitle {
  color: #64748b;
}
#about strong {
  color: #0369a1 !important;
}
#about .counter-card {
  background: #fff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
#about .counter-label {
  color: #64748b;
}
#about .about-img-frame {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 100, 180, 0.15);
}

/* --- Why Choose Us (near white) --- */
#why .section-subtitle {
  color: #64748b;
}
#why .badge-label {
  background: rgba(0, 212, 255, 0.1);
  color: #0369a1;
  border-color: rgba(0, 212, 255, 0.3);
}
#why .why-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
#why .why-card:hover {
  box-shadow: 0 16px 48px rgba(123, 47, 255, 0.18);
  border-color: transparent;
}
#why .why-card:hover .why-inner {
  background: #fff;
}
#why .why-title {
  color: #1e293b;
}
#why .why-desc {
  color: #64748b;
}

/* --- Testimonials (white) --- */
#testimonials .section-subtitle {
  color: #64748b;
}
#testimonials .badge-label {
  background: rgba(0, 212, 255, 0.1);
  color: #0369a1;
  border-color: rgba(0, 212, 255, 0.3);
}
#testimonials .testimonial-card {
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
#testimonials .testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.12);
}
#testimonials .testimonial-text {
  color: #475569;
}
#testimonials .author-name {
  color: #1e293b;
}
#testimonials .author-title {
  color: #94a3b8;
}
#testimonials .swiper-pagination-bullet {
  background: #cbd5e1;
}
#testimonials .swiper-pagination-bullet-active {
  background: var(--primary);
}

@media screen and (min-width: 768px) {
  .enquire-tab-btn {
    right: -59px;
  }
}
