/* =========================================================
   Federation of Indian Pilots (FIP) / IAAS — Main Stylesheet
   ========================================================= */

:root {
  --navy: #0b1f3a;
  --navy-deep: #071427;
  --sky: #0088cc;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-light: #f1d98b;
  --text-muted: #6b7688;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 50px rgba(11, 31, 58, 0.12);
  --shadow-card: 0 10px 30px rgba(11, 31, 58, 0.08);
  --ff-heading: "Poppins", sans-serif;
  --ff-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--ff-body);
  color: #2b3040;
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Bootstrap's large gutters (g-5) use negative row margins wider than the
   container's default padding, which can overflow the viewport on small
   screens. Columns stack on mobile anyway, so a smaller gutter is safe. */
@media (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  color: var(--navy);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
::selection {
  background: var(--gold);
  color: var(--navy);
}

.text-gold {
  color: var(--gold) !important;
}
.text-sky {
  color: var(--sky) !important;
}
.bg-navy {
  background: var(--navy) !important;
}

.section-pad {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .section-pad {
    padding: 64px 0;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}
.section-tag::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  display: inline-block;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}
.section-subtitle {
  color: var(--text-muted);
  max-width: 680px;
  font-size: 16px;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 700;
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
  transition: all 0.35s ease;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(212, 175, 55, 0.45);
  color: var(--navy);
}
.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 50px;
  background: transparent;
  transition: all 0.35s ease;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-sky {
  background: var(--sky);
  color: var(--white);
  font-weight: 700;
  border: none;
  padding: 11px 26px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-sky:hover {
  background: #006fa3;
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================
   Scroll Progress + Preloader
   ========================= */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  z-index: 2000;
  transition: width 0.1s ease-out;
}

/* =========================
   Header
   ========================= */
#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
}
#mainHeader.scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(11, 31, 58, 0.15);
}
.logo-chip {
  display: inline-flex;
  align-items: center;
}
.logo-chip img {
  max-height: 45px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 991px) {
  .logo-chip img {
    max-height: 40px;
  }
}
@media (max-width: 480px) {
  .logo-chip img {
    max-height: 40px;
  }
}

.navbar-nav .nav-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--sky);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.header-actions .btn {
  white-space: nowrap;
}
.btn-call-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 31, 58, 0.06);
  color: var(--navy);
  border: 2px solid rgba(11, 31, 58, 0.15);
  transition: all 0.3s ease;
  font-size: 18px;
}
.btn-call-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.navbar-toggler {
  border: none;
  color: var(--navy);
  font-size: 26px;
  background: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  #navbarContent {
    background: var(--white);
    margin-top: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(11, 31, 58, 0.12);
  }
  .navbar-nav .nav-link::after {
    display: none;
  }
  .header-actions {
    margin-top: 14px;
    gap: 10px;
  }
}

/* =========================
   Hero Slider
   ========================= */
#heroSlider {
  width: 100%;
  height: 100vh;
  min-height: 640px;
  position: relative;
}
.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(7, 20, 39, 0.92) 0%,
    rgba(11, 31, 58, 0.78) 45%,
    rgba(11, 31, 58, 0.55) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding-top: 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(32px, 5.2vw, 64px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.hero-desc {
  font-size: 17px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating clouds & plane */
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.cloud {
  position: absolute;
  color: rgba(255, 255, 255, 0.2);
  filter: blur(0.5px);
  animation: floatCloud linear infinite;
}
.cloud i {
  font-size: 70px;
}
.cloud.c1 {
  top: 12%;
  left: -10%;
  animation-duration: 55s;
}
.cloud.c2 {
  top: 60%;
  left: -15%;
  animation-duration: 75s;
  animation-delay: -20s;
}
.cloud.c3 {
  top: 32%;
  left: -20%;
  animation-duration: 90s;
  animation-delay: -40s;
}
@keyframes floatCloud {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(130vw);
  }
}
.plane-fly {
  position: absolute;
  top: 18%;
  right: 8%;
  z-index: 2;
  color: var(--gold-light);
  font-size: 52px;
  animation: planeFloat 6s ease-in-out infinite;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
@keyframes planeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }
  50% {
    transform: translateY(-22px) rotate(8deg);
  }
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.55;
}
.swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}
.hero-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-nav-btn:hover {
  background: var(--gold);
  color: var(--navy);
}
.hero-nav-prev {
  left: 24px;
}
.hero-nav-next {
  right: 24px;
}
@media (max-width: 767px) {
  .hero-nav-btn {
    display: none;
  }
}

/* Stats strip */
.stats-strip {
  position: relative;
  z-index: 10;
  margin-top: -78px;
}
.stats-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 34px 10px;
}
.stats-card .row > [class*="col-"],
.counters-row .row > [class*="col-"] {
  min-width: 0;
}
.stat-item {
  text-align: center;
  color: #fff;
  padding: 10px;
  min-width: 0;
}
.stat-num {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: clamp(20px, 5vw, 38px);
  color: var(--gold-light);
  overflow-wrap: break-word;
  word-break: break-word;
}
.stat-label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
  letter-spacing: 0.3px;
  overflow-wrap: break-word;
}

/* =========================
   About
   ========================= */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--gold);
  text-align: center;
}
.about-badge .num {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--gold-light);
}
.about-badge .lbl {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .about-badge {
    left: 10px;
    bottom: -20px;
    padding: 14px 18px;
  }
}

.iaas-box {
  background: linear-gradient(135deg, #f5f8fc, #eef3fa);
  border: 1px solid #e1e8f2;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.iaas-box img {
  height: 56px;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
}
.iaas-box > div {
  min-width: 0;
  flex: 1 1 200px;
}
@media (max-width: 400px) {
  .iaas-box img {
    height: 44px;
  }
}

.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}
@media (max-width: 575px) {
  .feature-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-mini {
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}
.feature-mini:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.feature-mini i {
  font-size: 26px;
  color: var(--sky);
  margin-bottom: 10px;
}
.feature-mini span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

/* =========================
   Courses
   ========================= */
.course-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid #f0f2f6;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}
.course-img-wrap {
  position: relative;
  overflow: hidden;
}
.course-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.course-card:hover .course-img-wrap img {
  transform: scale(1.08);
}
.course-duration-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}
.course-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-body h5 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.35;
}
.course-cert-tag {
  display: inline-block;
  vertical-align: middle;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 9px;
  border-radius: 50px;
  margin-left: 6px;
}
.course-elig {
  font-size: 12.5px;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.course-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  flex: 1;
}
.course-meta li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 10px 0;
  border-top: 1px dashed #e6e9f0;
}
.course-meta li:first-child {
  border-top: none;
  padding-top: 0;
}
.course-meta li strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 3px;
}
.course-actions {
  display: flex;
  gap: 10px;
}
.course-actions .btn {
  flex: 1;
  font-size: 13px;
  padding: 9px 10px;
  border-radius: 50px;
  font-weight: 700;
}

/* =========================
   AASSC
   ========================= */
.aassc-section {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.aassc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
}
.aassc-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 136, 204, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(212, 175, 55, 0.18),
      transparent 50%
    );
}
.aassc-section .container {
  position: relative;
  z-index: 2;
}
.aassc-cert-frame {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.aassc-cert-frame img {
  border-radius: var(--radius-md);
  width: 100%;
}
.badge-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.badge-logo {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========================
   Leadership
   ========================= */
.leader-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.leader-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-8px);
}
.leader-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--gold-light);
  box-shadow: 0 10px 25px rgba(11, 31, 58, 0.15);
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leader-card h5 {
  margin-bottom: 4px;
}
.leader-role {
  color: var(--sky);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.leader-bio {
  font-size: 13.5px;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.leader-card:hover .leader-bio {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}

/* =========================
   Gallery
   ========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0) 40%,
    rgba(11, 31, 58, 0.75) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
  color: #fff;
  font-size: 26px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}
@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
}

/* Lightbox */
.lightbox-modal {
  background: var(--navy-deep);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  padding: 0;
}
.lightbox-modal img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
}
.lightbox-caption {
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  padding: 0;
  opacity: 1;
}
.lightbox-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--navy);
}
.lightbox-prev {
  left: 14px;
}
.lightbox-next {
  right: 14px;
}

/* =========================
   Why Choose Us
   ========================= */
.why-section {
  background: linear-gradient(180deg, #f7f9fc, #fff);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  height: 100%;
}
.why-item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.why-item .icon-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.why-item p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.counters-row {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 20px;
  margin-top: 60px;
  box-shadow: var(--shadow-soft);
}
.counters-row .stat-item .stat-num {
  color: var(--gold-light);
}

/* =========================
   CTA
   ========================= */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 110px 0;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 20, 39, 0.92),
    rgba(11, 31, 58, 0.75)
  );
}
.cta-section .container {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
}
.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 30px;
}
.cta-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cta-section {
    background-attachment: scroll;
  }
}

/* =========================
   Contact
   ========================= */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.contact-map-lg {
  height: 100%;
  min-height: 460px;
}
.contact-map-lg iframe {
  min-height: 460px;
  height: 100%;
}
.contact-info-list {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #f0f2f6;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.contact-info-item .icon-circle {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #eef3fa;
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item h6 {
  margin-bottom: 2px;
  font-size: 14px;
}
.contact-info-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted);
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid #e1e6ee;
  padding: 12px 14px;
  font-size: 14px;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.15);
}
.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

/* FAQ */
.faq-section .accordion-item {
  border: 1px solid #eef1f6;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-section .accordion-button {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.faq-section .accordion-button:not(.collapsed) {
  background: #eef6fb;
  color: var(--sky);
  box-shadow: none;
}
.faq-section .accordion-button:focus {
  box-shadow: none;
}

/* =========================
   Footer
   ========================= */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 26px 0;
  text-align: center;
}
footer p {
  font-size: 13.5px;
  margin: 0;
}

/* =========================
   Floating buttons
   ========================= */
.float-btns {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.float-btn.call {
  background: var(--sky);
}
.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
}
#backToTop {
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Side Enquire Now tab, vertically centered on the right edge */
.side-enquire-anchor {
  position: fixed;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 1400;
}
.side-enquire-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  transform-origin: bottom right;
  /* Measured rendered width ~155px; shifting up by half that (in
     unrotated screen space, applied after the rotation below) centers
     the rotated bar vertically on the fixed anchor point. */
  transform: translateY(-78px) rotate(-90deg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
  cursor: pointer;
  transition: padding 0.3s ease;
}
.side-enquire-btn i {
  font-size: 16px;
}
.side-enquire-btn:hover {
  padding-bottom: 18px;
}
@media (max-width: 575px) {
  .side-enquire-btn {
    font-size: 12.5px;
    padding: 10px 16px;
    transform: translateY(-66px) rotate(-90deg);
  }
}

/* =========================
   Enquiry Modal
   ========================= */
.modal-content.enquiry-modal {
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
}
.enquiry-modal .modal-header {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 22px 26px;
}
.enquiry-modal .modal-header .btn-close {
  filter: invert(1);
}
.enquiry-modal .modal-body {
  padding: 28px 26px;
}

/* =========================
   Misc / AOS helpers
   ========================= */
[data-aos] {
}
.divider-gold {
  width: 70px;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin: 0 auto 20px;
}
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
