/* ═══════════════════════════════════════════════════════════════
   QUICK FIX AC — index.css  |  All-device responsive
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────── */
:root {
  --c1-hsl: 222, 72%, 47%;
  --c2-hsl: 218, 70%, 18%;
  --bg-hsl: 217, 35%, 92%;
  --w-hsl: 0, 0%, 100%;
  --c1: hsl(var(--c1-hsl));
  --c2: hsl(var(--c2-hsl));
  --c3: #6b7280;
  --c4: #1f2937;
  --bg: hsl(var(--bg-hsl));
  --grad: linear-gradient(135deg, var(--c1) 0%, hsl(215, 80%, 62%) 100%);
  --grad-text: linear-gradient(90deg, var(--c1), #3a86ff);
  --glass-bg: hsla(var(--w-hsl), 0.5);
  --glass-border: hsla(var(--w-hsl), 0.55);
  --glass-shadow: 0 8px 32px hsla(var(--c2-hsl), 0.12);
  --glass-blur: blur(22px) saturate(1.6);
}

/* ─────────────────────────────────────
   RESET & BASE
───────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  background: linear-gradient(160deg, #e8eef8 0%, #f3f6fb 50%, #dde5f0 100%);
  min-height: 100vh;
  width: 100%;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none !important;
}
.c1 {
  color: var(--c1) !important;
}
.c2 {
  color: var(--c2) !important;
}
.c3 {
  color: var(--c3) !important;
}
.c4 {
  color: var(--c4) !important;
}
.w {
  color: #fff !important;
}
.ls {
  letter-spacing: 1px;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: hsla(var(--c2-hsl), 0.05);
}
::-webkit-scrollbar-thumb {
  background: var(--grad);
  border-radius: 6px;
}

/* ─────────────────────────────────────
   SNOW
───────────────────────────────────── */
#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
}

/* ─────────────────────────────────────
   GLASS CARD
───────────────────────────────────── */
.glass-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.glass-card:hover {
  background: hsla(var(--w-hsl), 0.7) !important;
  box-shadow: 0 24px 55px hsla(var(--c2-hsl), 0.16) !important;
  border-color: hsla(var(--c1-hsl), 0.35) !important;
}

/* ─────────────────────────────────────
   SECTION PILL
───────────────────────────────────── */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c1);
  background: hsla(var(--c1-hsl), 0.08);
  border: 1px solid hsla(var(--c1-hsl), 0.22);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  white-space: nowrap;
}
.dot-orange {
  color: hsl(30, 90%, 55%);
  font-size: 10px;
}

/* ─────────────────────────────────────
   GRADIENTS
───────────────────────────────────── */
.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-grad-2 {
  background: linear-gradient(135deg, var(--c1), #3a86ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────
   SECTION BG
───────────────────────────────────── */
.section-bg {
  background: var(--bg);
  border-radius: 32px;
  margin-left: 12px;
  margin-right: 12px;
  box-shadow:
    inset 0 0 30px hsla(var(--w-hsl), 0.6),
    0 12px 40px hsla(var(--c2-hsl), 0.06);
  overflow: hidden;
}

/* ─────────────────────────────────────
   ORBS
───────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}
.orb-blue {
  background: hsla(var(--c1-hsl), 0.28);
  width: 350px;
  height: 350px;
  animation: orbDrift 14s alternate infinite ease-in-out;
}
.orb-dark {
  background: hsla(var(--c2-hsl), 0.22);
  width: 280px;
  height: 280px;
  animation: orbDrift 11s alternate-reverse infinite ease-in-out;
}
@keyframes orbDrift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(40px, 25px) scale(1.08);
  }
}

/* ─────────────────────────────────────
   BUTTON
───────────────────────────────────── */
.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow:
    0 8px 24px hsla(var(--c1-hsl), 0.35),
    inset 0 1px 0 hsla(var(--w-hsl), 0.25);
}
.btn-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px hsla(var(--c1-hsl), 0.5);
  color: #fff;
}
.btn-premium:active {
  transform: translateY(-1px);
}
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn-premium:hover .btn-shine {
  left: 100%;
}

/* ─────────────────────────────────────
   FLOATING BUTTONS
───────────────────────────────────── */
.float-side {
  position: fixed;
  bottom: 28px;
  right: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flot-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid hsla(var(--w-hsl), 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}
.flot-whatsapp {
  background: hsla(var(--c1-hsl), 0.85);
  box-shadow: 0 6px 20px hsla(var(--c1-hsl), 0.4);
  animation: pulseBlue 2.5s infinite;
}
.flot-call {
  background: hsla(var(--c2-hsl), 0.9);
  box-shadow: 0 6px 20px hsla(var(--c2-hsl), 0.4);
  animation: pulseDark 2.5s infinite;
}
.flot-box:hover {
  transform: translateY(-6px) scale(1.12);
}
.float-img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}
@keyframes pulseBlue {
  0%,
  100% {
    box-shadow:
      0 6px 20px hsla(var(--c1-hsl), 0.4),
      0 0 0 0 hsla(var(--c1-hsl), 0.35);
  }
  50% {
    box-shadow:
      0 6px 20px hsla(var(--c1-hsl), 0.4),
      0 0 0 12px hsla(var(--c1-hsl), 0);
  }
}
@keyframes pulseDark {
  0%,
  100% {
    box-shadow:
      0 6px 20px hsla(var(--c2-hsl), 0.4),
      0 0 0 0 hsla(var(--c2-hsl), 0.35);
  }
  50% {
    box-shadow:
      0 6px 20px hsla(var(--c2-hsl), 0.4),
      0 0 0 12px hsla(var(--c2-hsl), 0);
  }
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.top-nav {
  position: fixed !important;
  z-index: 1000 !important;
  width: 100%;
  top: 0;
  left: 0;
}

.navbar {
  background: hsla(var(--w-hsl), 0.2) !important;
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid hsla(var(--w-hsl), 0.28);
  border-radius: 20px;
  box-shadow: 0 8px 40px hsla(var(--c2-hsl), 0.12);
  margin: 14px 32px !important;
  transition: all 0.4s ease;
}
.navbar.newnav {
  margin: 0 !important;
  border-radius: 0 0 20px 20px !important;
  background: hsla(var(--w-hsl), 0.82) !important;
  backdrop-filter: blur(30px) saturate(2);
  -webkit-backdrop-filter: blur(30px) saturate(2);
  box-shadow: 0 8px 30px hsla(var(--c2-hsl), 0.18);
  animation: slideNavDown 0.4s ease forwards;
}
@keyframes slideNavDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo {
  height: 54px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
.navbar-toggler {
  border: none !important;
  padding: 6px;
}
.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none;
}

.nav-link {
  color: var(--c4) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 9px 13px !important;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.nav-link:hover {
  color: var(--c1) !important;
  background: hsla(var(--c1-hsl), 0.07);
}
.nav-link.activ-nav {
  color: var(--c1) !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--c1);
  transition: transform 0.3s ease;
}
.nav-link:hover::after,
.nav-link.activ-nav::after {
  transform: translateX(-50%) scaleX(1);
}

.mob-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.mob-social-btn:hover {
  transform: scale(1.15);
}

@media (max-width: 991px) {
  .navbar {
    margin: 8px 12px !important;
    border-radius: 16px;
  }
  .navbar.newnav {
    margin: 0 !important;
    border-radius: 0 0 16px 16px !important;
  }
  .navbar-collapse {
    background: hsla(var(--w-hsl), 0.94);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    margin-top: 8px;
    padding: 10px;
    border: 1px solid hsla(var(--w-hsl), 0.6);
    box-shadow: 0 10px 30px hsla(var(--c2-hsl), 0.12);
  }
  .nav-link {
    padding: 11px 14px !important;
    border-bottom: 1px solid hsla(var(--c2-hsl), 0.07);
    border-radius: 0;
    font-size: 15px !important;
  }
  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  .nav-link::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .logo {
    height: 42px !important;
  }
  .navbar {
    margin: 6px 8px !important;
  }
}

/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
#home_slider .carousel-item {
  height: 92vh;
  overflow: hidden;
}
.slider-img-wrap {
  width: 100%;
  height: 100%;
  animation: sliderZoom 14s ease-in-out both;
}
.slider-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes sliderZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.14);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(var(--c2-hsl), 0.75) 0%,
    hsla(var(--c2-hsl), 0.28) 100%
  );
  z-index: 1;
}
.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 6% 0;
  z-index: 2;
}
.hero-glass-box {
  width: min(640px, 90%);
  background: hsla(var(--c2-hsl), 0.3);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid hsla(var(--w-hsl), 0.14);
  border-radius: 24px;
  padding: 38px 42px;
  box-shadow:
    0 30px 60px hsla(var(--c2-hsl), 0.32),
    inset 0 1px 0 hsla(var(--w-hsl), 0.1);
}
.hero-glass-box h2 {
  font-size: clamp(24px, 4.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
  margin-bottom: 12px;
}
.hero-glass-box p {
  font-size: 15px;
  color: hsla(0, 0%, 100%, 0.82);
  margin-bottom: 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: hsla(var(--w-hsl), 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(var(--w-hsl), 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.hero-controls {
  position: absolute;
  bottom: 22px;
  right: 22px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: hsla(var(--w-hsl), 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(var(--w-hsl), 0.25);
  color: #fff;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-btn:hover {
  background: var(--c1);
  border-color: var(--c1);
  transform: scale(1.08);
}

@media (max-width: 767px) {
  #home_slider .carousel-item {
    height: 80vh;
  }
  .hero-glass-box {
    padding: 28px 26px;
  }
  .hero-caption {
    padding: 70px 5% 0;
  }
}
@media (max-width: 480px) {
  #home_slider .carousel-item {
    height: 86vh;
  }
  .hero-glass-box {
    padding: 22px 18px;
    width: 95%;
  }
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-band {
  background: hsla(var(--c2-hsl), 0.88);
  backdrop-filter: blur(12px);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-top: 1px solid hsla(var(--w-hsl), 0.08);
  border-bottom: 1px solid hsla(var(--w-hsl), 0.08);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeRoll 28s linear infinite;
}
.marquee-track span {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.9);
  padding: 0 32px;
  letter-spacing: 2.5px;
}
@keyframes marqueeRoll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-img-wrap {
  position: relative;
  height: 400px;
}
.about-img1 {
  width: 87%;
  height: 90%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px hsla(var(--c2-hsl), 0.2);
}
.about-img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 63%;
  object-fit: cover;
  object-position: bottom;
  border-radius: 16px;
  border: 4px solid #fff;
  box-shadow: 0 18px 40px hsla(var(--c2-hsl), 0.18);
}
.stat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: hsla(var(--c1-hsl), 0.1);
  border: 1px solid hsla(var(--c1-hsl), 0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prog-bar {
  width: 100%;
  height: 8px;
  background: hsla(var(--c1-hsl), 0.12);
  border-radius: 10px;
  overflow: hidden;
}
.prog-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 10px;
  box-shadow: 0 0 8px hsla(var(--c1-hsl), 0.35);
}

@media (max-width: 767px) {
  .about-img-wrap {
    height: 290px;
  }
  .about-img1 {
    width: 90%;
    height: 88%;
  }
  .about-img2 {
    width: 52%;
    height: 56%;
  }
}
@media (max-width: 480px) {
  .about-img-wrap {
    height: 230px;
  }
  .about-img2 {
    width: 54%;
    height: 52%;
  }
}

/* ═══════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════ */
.service-card {
  position: relative;
  height: 370px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service-card:hover img {
  transform: scale(1.07);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 25%,
    hsla(var(--c2-hsl), 0.92) 100%
  );
  z-index: 1;
}
.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 26px;
  z-index: 2;
  transition: transform 0.4s ease;
}
.service-card:hover .service-info {
  transform: translateY(-8px);
}
.service-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  background: hsla(var(--w-hsl), 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(var(--w-hsl), 0.15);
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.service-desc {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 4px;
}
.service-card:hover .service-desc {
  opacity: 0.85;
  max-height: 80px;
}
@media (max-width: 767px) {
  .service-card {
    height: 290px;
  }
}

/* ═══════════════════════════════════════
   BENTO GRID
═══════════════════════════════════════ */
.bento-card {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
  border: 1px solid hsla(var(--w-hsl), 0.6) !important;
  background: hsla(var(--w-hsl), 0.4) !important;
  backdrop-filter: blur(20px) saturate(1.8) !important;
}
.bento-large {
  min-height: 420px;
}
.bento-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: 0;
}
.bento-card:hover .bento-bg-img {
  transform: scale(1.06);
}
.bento-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    hsla(var(--c2-hsl), 0.88) 0%,
    hsla(var(--c1-hsl), 0.45) 100%
  );
  z-index: 1;
  opacity: 0.96;
}
.bento-icon-lg {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    hsla(var(--c1-hsl), 0.8),
    hsla(215, 80%, 62%, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 15px 30px hsla(var(--c1-hsl), 0.4);
  border: 1px solid hsla(var(--w-hsl), 0.3);
}
.bento-icon-md {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: hsla(var(--w-hsl), 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 20px hsla(var(--c2-hsl), 0.08);
  border: 1px solid hsla(var(--c1-hsl), 0.15);
  transition: all 0.4s ease;
}
.group-hover-box {
  cursor: pointer;
}
.group-hover-box:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px hsla(var(--c2-hsl), 0.14) !important;
  background: hsla(var(--w-hsl), 0.8) !important;
  border-color: hsla(var(--c1-hsl), 0.3) !important;
}
.group-hover-box:hover .bento-icon-md {
  background: var(--c1);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 25px hsla(var(--c1-hsl), 0.4);
}
.group-hover-box:hover .bento-icon-md i {
  color: #fff !important;
}

@media (max-width: 991px) {
  .bento-large {
    min-height: 350px;
  }
}
@media (max-width: 767px) {
  .bento-large {
    min-height: 280px;
  }
  .bento-icon-lg {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gal-card-premium {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gal-card-premium:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.22);
}
.gal-large {
  height: 518px;
}
.gal-small {
  height: 246px;
}
.gal-card-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.5s;
  opacity: 0.95;
}
.gal-card-premium:hover img {
  transform: scale(1.08);
  filter: brightness(0.72);
}
.gal-hover-glass {
  position: absolute;
  bottom: -80px;
  left: 14px;
  right: 14px;
  background: hsla(var(--w-hsl), 0.88);
  backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid hsla(var(--w-hsl), 1);
  padding: 13px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  color: var(--c4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
  pointer-events: none;
}
.gal-card-premium:hover .gal-hover-glass {
  bottom: 14px;
}
.gal-hover-glass i {
  color: var(--c1);
  font-size: 20px;
  transition: transform 0.4s ease;
}
.gal-card-premium:hover .gal-hover-glass i {
  transform: rotate(45deg);
}

@media (max-width: 991px) {
  .gal-large {
    height: 370px;
  }
  .gal-small {
    height: 240px;
  }
  .gal-hover-glass {
    bottom: 14px;
  } /* always visible on touch */
}
@media (max-width: 767px) {
  .gal-large {
    height: 270px;
  }
  .gal-small {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .gal-card-premium {
    border-radius: 18px;
  }
  .gal-large {
    height: 230px;
  }
  .gal-small {
    height: 170px;
  }
}

/* ═══════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════ */
.testimonial-section {
  background: var(--c2);
  border-radius: 36px;
  margin-left: 12px;
  margin-right: 12px;
  overflow: hidden;
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.4);
}
.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/2149216632.jpg);
  background-position: center;
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}
.testi-premium-card {
  background: hsla(var(--w-hsl), 0.88) !important;
  border: 1px solid hsla(var(--w-hsl), 1) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.14) !important;
  transition: transform 0.5s ease;
  margin-top: 50px;
}
.testi-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2) !important;
}
.testi-avatar-wrap {
  position: absolute;
  top: -44px;
  right: 36px;
  width: 88px;
  height: 88px;
  z-index: 5;
}
.testi-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 15px 30px hsla(var(--c1-hsl), 0.28);
}
.quote-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border: 2px solid #fff;
  box-shadow: 0 5px 15px hsla(var(--c1-hsl), 0.4);
}
.testi-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid hsla(var(--w-hsl), 0.2);
  background: hsla(var(--w-hsl), 0.06);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.testi-nav-btn:hover {
  background: var(--c1);
  border-color: var(--c1);
  transform: scale(1.1);
  box-shadow: 0 10px 20px hsla(var(--c1-hsl), 0.4);
}
.testi-nav-div {
  width: 36px;
  height: 1px;
  background: hsla(var(--w-hsl), 0.2);
}

@media (max-width: 991px) {
  .testimonial-section {
    border-radius: 24px;
    margin-left: 0;
    margin-right: 0;
  }
  .testi-avatar-wrap {
    left: 36px;
    right: auto;
  }
}
@media (max-width: 480px) {
  .testi-premium-card {
    margin-top: 55px;
  }
  .testi-avatar-wrap {
    left: 20px;
    width: 76px;
    height: 76px;
    top: -38px;
  }
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px hsla(var(--c2-hsl), 0.06);
}
.faq-item:hover {
  background: hsla(var(--w-hsl), 0.72);
  border-color: hsla(var(--c1-hsl), 0.32);
  box-shadow: 0 8px 28px hsla(var(--c2-hsl), 0.1);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--c4);
  cursor: pointer;
  transition: color 0.3s ease;
  gap: 10px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item[open] summary {
  color: var(--c1);
}
.faq-icon {
  color: var(--c1);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-body {
  padding: 0 18px 14px;
  font-size: 13px;
  color: var(--c3);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════ */
.contact-form-wrap {
  background: var(--glass-bg);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 20px 60px hsla(var(--c2-hsl), 0.12),
    inset 0 0 30px hsla(var(--w-hsl), 0.4);
  border-radius: 28px;
}
.form-label-custom {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c4);
  margin-bottom: 6px;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 14px;
  color: var(--c1);
  font-size: 15px;
  pointer-events: none;
  z-index: 5;
}
.form-input {
  width: 100%;
  background: hsla(var(--w-hsl), 0.5) !important;
  backdrop-filter: blur(8px);
  border: 1px solid hsla(var(--w-hsl), 0.4) !important;
  color: var(--c4) !important;
  padding: 12px 14px 12px 44px !important;
  border-radius: 14px !important;
  font-size: 14px;
  transition: all 0.35s ease;
  outline: none;
  font-family: inherit;
  resize: none;
}
.form-input:focus {
  background: hsla(var(--w-hsl), 0.78) !important;
  border-color: hsla(var(--c1-hsl), 0.6) !important;
  box-shadow: 0 0 0 3px hsla(var(--c1-hsl), 0.12) !important;
}
.form-input::placeholder {
  color: #9ca3af;
}
.invalid-feedback {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
  color: #dc3545;
}
.contact-img-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  filter: drop-shadow(0 20px 30px hsla(var(--c2-hsl), 0.22));
  animation: floatChar 6s ease-in-out infinite;
}
@keyframes floatChar {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer-ultra {
  padding-top: 68px;
}
.footer-cta-wrap {
  margin-bottom: -52px;
}
.cta-glass {
  background: hsla(var(--w-hsl), 0.72) !important;
  border: 1px solid hsla(var(--w-hsl), 0.8) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08) !important;
  position: relative;
  overflow: hidden;
}
.cta-glass::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    hsla(var(--c1-hsl), 0.14) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
  animation: rotateGrad 15s linear infinite;
}
@keyframes rotateGrad {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer-main-area {
  background: #0b111e;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding-top: 100px;
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.45);
  margin-left: 8px;
  margin-right: 8px;
}
.footer-bg-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    hsla(var(--c1-hsl), 0.22) 0%,
    transparent 60%
  );
  bottom: -200px;
  right: -200px;
  filter: blur(50px);
  pointer-events: none;
}
.footer-logo {
  height: 56px;
  transition: transform 0.4s ease;
  transform-origin: left center;
}
.footer-logo:hover {
  transform: scale(1.07);
}
.foot-soc-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: hsla(var(--w-hsl), 0.06);
  border: 1px solid hsla(var(--w-hsl), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.foot-soc-circle:hover {
  background: var(--c1);
  border-color: var(--c1);
  transform: translateY(-7px) scale(1.14);
  box-shadow: 0 15px 25px hsla(var(--c1-hsl), 0.4);
}
.foot-nav-link {
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.foot-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--c1);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.foot-nav-link:hover {
  color: #fff !important;
  transform: translateX(7px);
}
.foot-nav-link:hover::after {
  width: 100%;
}
.footer-bottom {
  background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .footer-ultra {
    padding-top: 32px;
  }
  .footer-cta-wrap {
    margin-bottom: -38px;
  }
  .footer-main-area {
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
    padding-top: 78px;
    margin-left: 0;
    margin-right: 0;
  }
  .footer-logo {
    transform-origin: center;
  }
}
@media (max-width: 767px) {
  .footer-main-area {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding-top: 65px;
  }
  .cta-glass {
    flex-direction: column !important;
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto 10px;
  }
}
@media (max-width: 480px) {
  .footer-ultra {
    padding-top: 22px;
  }
  .footer-cta-wrap {
    margin-bottom: -28px;
  }
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.animate-float {
  animation: gentleFloat 5s ease-in-out infinite;
}
@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}

[data-aos="premium-fade-up"] {
  opacity: 0;
  transform: translateY(35px) scale(0.97);
  transition-property: transform, opacity;
}
[data-aos="premium-fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}
[data-aos="premium-blur-in"] {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.04);
  transition-property: transform, opacity, filter;
}
[data-aos="premium-blur-in"].aos-animate {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* ═══════════════════════════════════════
   GLOBAL RESPONSIVE HELPERS
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .section-bg {
    border-radius: 20px;
    margin-left: 6px;
    margin-right: 6px;
  }
  .testimonial-section {
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  h1.display-5 {
    font-size: 1.75rem !important;
  }
  h2.display-5,
  h2.display-4 {
    font-size: 1.65rem !important;
  }
  h3.display-6,
  h2.display-6 {
    font-size: 1.45rem !important;
  }
  .section-pill {
    font-size: 10px;
    padding: 5px 12px;
  }
}
───────────────────────────────────── */ .contact-form-wrap {
  background: var(--glass-bg);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 20px 60px hsla(var(--c2-hsl), 0.12),
    inset 0 0 30px hsla(var(--w-hsl), 0.4);
  border-radius: 32px;
}
.form-label-custom {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c4);
  margin-bottom: 6px;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 15px;
  color: var(--c1);
  font-size: 16px;
  pointer-events: none;
  z-index: 5;
}
.form-input {
  width: 100%;
  background: hsla(var(--w-hsl), 0.5) !important;
  backdrop-filter: blur(8px);
  border: 1px solid hsla(var(--w-hsl), 0.4) !important;
  color: var(--c4) !important;
  padding: 13px 16px 13px 46px !important;
  border-radius: 14px !important;
  font-size: 15px;
  transition: all 0.35s ease;
  outline: none;
  font-family: inherit;
  resize: none;
}
.form-input:focus {
  background: hsla(var(--w-hsl), 0.75) !important;
  border-color: hsla(var(--c1-hsl), 0.6) !important;
  box-shadow: 0 0 0 3px hsla(var(--c1-hsl), 0.12) !important;
}
.form-input::placeholder {
  color: #9ca3af;
}
.invalid-feedback {
  display: none;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
  color: #dc3545;
}
.was-validated .form-input:invalid ~ .invalid-feedback {
  display: block;
}
.was-validated .form-input:invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}
.was-validated .form-input:valid {
  border-color: #198754 !important;
}

/* Contact image float */
.contact-img-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  filter: drop-shadow(0 20px 30px hsla(var(--c2-hsl), 0.22));
  animation: floatChar 6s ease-in-out infinite;
}
@keyframes floatChar {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

/* ─────────────────────────────────────
   ULTRA FOOTER
───────────────────────────────────── */
.footer-ultra {
  padding-top: 80px;
}
.footer-cta-wrap {
  margin-bottom: -60px; /* Pulls main footer up */
}
.cta-glass {
  background: hsla(var(--w-hsl), 0.7) !important;
  border: 1px solid hsla(var(--w-hsl), 0.8) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08) !important;
  position: relative;
  overflow: hidden;
}
.cta-glass::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    hsla(var(--c1-hsl), 0.15) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
  animation: rotateGrad 15s linear infinite;
}
@keyframes rotateGrad {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer-main-area {
  background: #0b111e; /* Deep rich dark */
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.5);
  margin-left: 10px;
  margin-right: 10px;
}
.footer-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    hsla(var(--c1-hsl), 0.25) 0%,
    transparent 60%
  );
  bottom: -200px;
  right: -200px;
  filter: blur(50px);
  pointer-events: none;
}
.footer-logo {
  height: 60px;
  transition: transform 0.4s ease;
  transform-origin: left center;
}
.footer-logo:hover {
  transform: scale(1.08);
}

.foot-soc-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: hsla(var(--w-hsl), 0.06);
  border: 1px solid hsla(var(--w-hsl), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.foot-soc-circle:hover {
  background: var(--c1);
  border-color: var(--c1);
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 25px hsla(var(--c1-hsl), 0.4);
}

.foot-nav-link {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.foot-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--c1);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.foot-nav-link:hover {
  color: #fff !important;
  transform: translateX(8px);
}
.foot-nav-link:hover::after {
  width: 100%;
}

@media (max-width: 991px) {
  .footer-ultra {
    padding-top: 40px;
  }
  .footer-main-area {
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    padding-top: 80px;
    margin-left: 0;
    margin-right: 0;
  }
  .footer-logo {
    transform-origin: center center;
  }
}

/* ─────────────────────────────────────
   ANIMATIONS
───────────────────────────────────── */
.animate-float {
  animation: gentleFloat 5s ease-in-out infinite;
}
@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* AOS custom */
[data-aos="premium-fade-up"] {
  opacity: 0;
  transform: translateY(35px) scale(0.97);
  transition-property: transform, opacity;
}
[data-aos="premium-fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}
[data-aos="premium-blur-in"] {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.04);
  transition-property: transform, opacity, filter;
}
[data-aos="premium-blur-in"].aos-animate {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
