/* ================= GLOBAL TYPOGRAPHY ================= */

html {
  font-size: 16px; /* Base size */
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
}

/* Headings */
h1 {
  font-size: 48px;
  font-weight: 700;
  color: #0089c6;
}

h2 {
  font-size: 38px;
  font-weight: 600;
  color: #0089c6;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  color: #0089c6;
}

h4 {
  font-size: 22px;
  font-weight: 500;
  color: #0089c6;
}

h5 {
  font-size: 18px;
  font-weight: 500;
  color: #0089c6;
}

h6 {
  font-size: 16px;
  font-weight: 500;
  color: #0089c6;
}

.header-qr {
  text-align: center;
}

.qr-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.qr-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-item img {
  width: 100px;
  height: auto;
}

.qr-item span {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

/* Paragraph */
p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.container {
  max-width: 1200px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 50px;
  height: 50px;
}

/* ================= TOP BAR ================= */

.top-bar {
  background: #0c233f;
  padding: 10px 0;
}

.top-link {
  color: #ffffff;
  font-size: 27px;
  text-decoration: none;
  transition: 0.3s ease;
}

.top-link:hover {
  opacity: 0.8;
}

.highlight-email {
  font-weight: 600;
}

/* ================= MAIN HEADER ================= */

.main-header {
  background: #0f2d52;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LEFT NAV */
/* LEFT NAV */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: flex-start; /* 👈 Change from center to flex-start */
}
.header-nav ul {
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* CENTER LOGO */
.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease;
}

.header-nav a:hover {
  color: #0089c6;
}

/* CENTER LOGO */
.header-logo img {
  height: 119px;
}

/* RIGHT BUTTON */
/* RIGHT CTA */
.header-cta {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* CONTACT BUTTON */
.contact-btn {
  background: #0089c6;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #005f8f;
  color: #ffffff;
}
/* ================= HERO ================= */

/* ================= HERO SLIDER ================= */

.hero-section {
  position: relative;
}

/* Each slide */
.hero-slide {
  height: 90vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

/* Professional cinematic overlay */
.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 60, 100, 0.85) 0%,
    rgba(0, 60, 100, 0.65) 40%,
    rgba(0, 60, 100, 0.35) 100%
  );
  display: flex;
  align-items: center;
}

/* Content container */
/* ================= HERO CONTENT BOX ================= */

.hero-box {
  max-width: 900px;
  padding: 45px;
  background: #00000038;
  box-shadow: none;
}

/* Bigger title */
.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 35px;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 137, 198, 0.4), transparent);
  opacity: 0.25;
  pointer-events: none;
}

/* ================= HERO BUTTONS ================= */

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-primary {
  background: #0089c6;
  color: #ffffff !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.hero-primary:hover {
  background: #006fa3;
  transform: translateY(-3px);
}

.hero-secondary {
  background: transparent;
  color: #ffffff !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.hero-secondary:hover {
  background: #ffffff;
  color: #0089c6 !important;
  transform: translateY(-3px);
}

/* ================= CAROUSEL CONTROLS ================= */

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
}

/* Remove ugly focus outline */
.carousel-control-prev,
.carousel-control-next {
  filter: invert(1);
}

/* ================= HEADER QR ================= */

/* ================= HEADER QR FIX ================= */

.header-qr {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-qr img {
  width: 60px; /* reduced from huge */
  height: 60px;
  object-fit: contain;
  background: #ffffff;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.header-qr img:hover {
  transform: scale(1.05);
}

/* ================= QUALITY SECTION ================= */

.quality-section {
  background: #f6f9fc;
}

.quality-text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Cards */
.quality-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  height: 100%;
}

.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.quality-icon {
  font-size: 32px;
  color: #0089c6;
  margin-bottom: 15px;
}

.quality-card h6 {
  font-weight: 600;
  margin: 0;
}

/* Controls cleaner */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #0089c6;
  border-radius: 50%;
  padding: 12px;
}

.title-line {
  width: 80px;
  margin: 0 auto 30px;
  border: 2px solid #0089c6;
}

/* ================= FMA NEWS SECTION ================= */

.fma-news-section {
  background: linear-gradient(135deg, #006fa3, #0089c6);
  color: #ffffff;
}

.fma-news-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.fma-news-intro {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
  color: #ffffff;
}

/* Featured Card */
.fma-news-feature {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Image */
.fma-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

/* Content Side */
.fma-news-content {
  padding: 50px 45px;
  color: #333;
  background: #ffffff;
}

.news-date {
  font-size: 14px;
  color: #0089c6;
  font-weight: 600;
}

.fma-news-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 15px 0 20px;
}

.fma-news-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* Button */
.fma-news-btn {
  display: inline-block;
  background: #0089c6;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.fma-news-btn:hover {
  background: #006fa3;
  transform: translateY(-3px);
}

/* ================= APPROACH SECTION ================= */

.approach-section {
  background: #f6f9fc;
}

.approach-heading {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f2d52;
}

.approach-intro {
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

/* Box container */
.circle-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  position: relative;
}

.box-title {
  font-weight: 600;
  margin-bottom: 40px;
  color: #0089c6;
}

/* Stage inside box */
.circle-stage {
  position: relative;
  height: 500px;
}

/* Base Circle */
.circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  padding: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  animation: float 6s ease-in-out infinite;
  transition: 0.3s ease;
}

.circle:hover {
  transform: scale(1.12);
}

/* Sizes */
.c1 {
  width: 150px;
  height: 150px;
}
.c2 {
  width: 130px;
  height: 130px;
}
.c3 {
  width: 170px;
  height: 170px;
}
.c4 {
  width: 140px;
  height: 140px;
}
.c5 {
  width: 160px;
  height: 160px;
}
.c6 {
  width: 130px;
  height: 130px;
}
.c7 {
  width: 150px;
  height: 150px;
}
.c8 {
  width: 120px;
  height: 120px;
}
.c9 {
  width: 120px;
  height: 120px;
  background: #7f7f7f;
}
.c9 {
  top: 120px;
  right: 0;
}
.c10 {
  width: 200px;
  height: 200px;
  background: #2f3dd1;
}
.c10 {
  top: 180px;
  left: 0%;
}
/* RANDOM POSITIONS INSIDE BOX */
.c1 {
  top: 40px;
  left: 8%;
}
.c2 {
  top: 120px;
  left: 28%;
}
.c3 {
  top: 60px;
  right: 15%;
}
.c4 {
  top: 100px;
  left: 45%;
}
.c5 {
  bottom: 70px;
  left: 15%;
}
.c6 {
  bottom: 100px;
  right: 47%;
}
.c7 {
  bottom: 120px;
  right: 8%;
}
.c8 {
  top: 195px;
  right: 35%;
}

/* Brand colors */
.c1 {
  background: #0089c6;
}
.c2 {
  background: #6c9bd2;
}
.c3 {
  background: #2f3dd1;
}
.c4 {
  background: #8aaee0;
}
.c5 {
  background: #a8c94b;
}
.c6 {
  background: #1f4ecb;
}
.c7 {
  background: #b7d34f;
}
.c8 {
  background: #7f7f7f;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Mobile fallback */
@media (max-width: 992px) {
  .circle-stage {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .circle {
    position: static;
    animation: none;
  }
}

.qr-item a {
  text-decoration: none; /* removes blue underline */
  color: inherit; /* keeps original color */
}

.qr-item a span {
  transition: color 0.3s ease;
}

.qr-item a:hover span {
  color: #007bff; /* blue hover effect */
}

/* ================= ABOUT + USP SECTION ================= */

.know-more-btn {
  display: inline-block;
  margin-top: 10px;
  background: #0089c6;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.know-more-btn:hover {
  background: #005c88;
  color: #ffffff;
}

.about-video-wrapper video {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.section-heading {
  margin-top: 0;
}

.age-text {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
}

.about-usp-section {
  background: #ffffff;
}

.usp-image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.usp-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay container */
.age-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
}

/* Individual segments */
.age-segment {
  flex: 1;
  padding: 30px 20px;
  color: #ffffff;
  text-align: center;
  backdrop-filter: blur(3px);
}

.age-segment span {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.age-segment p {
  font-size: 14px;
  margin: 0;
}

/* Different colours for both */
.age-young {
  background: rgba(107, 142, 107, 0.85); /* soft green */
}

.age-adult {
  background: rgba(15, 45, 82, 0.85); /* deep blue */
}

/* ================= SPLIT IMAGE SECTION ================= */

.split-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Each image block */
.split-image {
  position: relative;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center 24%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Replace with real images */
.young-image {
  background-image: url("../images/young.jpg");
}

.adult-image {
  background-image: url("../images/adult.jpg");
}

/* Overlay gradient */
.split-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

/* Label */
.image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
}

.image-label span {
  font-size: 28px;
  font-weight: 700;
  display: block;
}

.image-label p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

/* Slight hover effect */
.split-image:hover {
  transform: scale(1.02);
  transition: all 0.4s ease;
}
/* ================= TRANSITION STRIP ================= */

/* ================= TRANSITION STRIP ================= */
/* ================= TRANSITION STRIP ================= */

.transition-strip {
  background: #0089c6;
  padding: 6px 0;
}

.strip-item {
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Remove border from last column */
.strip-item:last-child {
  border-right: none;
}

/* Default text color */
.strip-item h3,
.strip-item p {
  color: #ffffff;
  transition: all 0.4s ease;
}

/* Hover Effect */
.strip-item:hover {
  background: #ffffff;
}

.strip-item:hover h3,
.strip-item:hover p {
  color: #0089c6;
}
/* ================= ABOUT SECTION ================= */

.about-section {
  background: #f9f8f6;
}

.section-heading {
  font-size: 34px;
  color: #0089c6;
  font-weight: 600;
}

.about-text {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.about-video-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-video-wrapper video {
  width: 100%;
  display: block;
}

/* ================= ANIMATION BASE ================= */

.animate-left,
.animate-right {
  opacity: 0;
  transition: all 0.8s ease;
}

/* Initial positions */
.animate-left {
  transform: translateX(-80px);
}

.animate-right {
  transform: translateX(80px);
}

/* When visible */
.animate-left.active,
.animate-right.active {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  transition-delay: 0.2s;
}

/* Age highlight cards */

.age-highlight {
  border-left: 4px solid #0089c6;
  padding-left: 20px;
}

.age-card h4 {
  color: #0089c6;
  font-weight: 600;
  margin-bottom: 8px;
}

.age-card p {
  margin-bottom: 0;
  font-size: 16px;
}
/* ================= SEAMLESS SECTION ================= */

.seamless-section {
  background: #f4f1ec;
}

.seamless-heading {
  font-size: 36px;
  font-weight: 600;
  color: #0f2d52;
}

.transition-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.transition-card h3 {
  font-size: 40px;
  color: #0089c6;
  font-weight: 600;
  margin-bottom: 20px;
}

.transition-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* Base animation */
.animate-top,
.animate-left,
.animate-right {
  opacity: 0;
  transition: all 0.8s ease;
}

/* Initial states */
.animate-top {
  transform: translateY(-40px);
}

.animate-left {
  transform: translateX(-80px);
}

.animate-right {
  transform: translateX(80px);
}

/* Active state */
.animate-top.active,
.animate-left.active,
.animate-right.active {
  opacity: 1;
  transform: translate(0);
}

/* ================= TRANSITION SECTION ================= */

.transition-section {
  background: #f7f9fc;
}

.about-text {
  font-size: 20px;
  line-height: 1.7;
  color: #555;
}

/* Video Styling */
.about-video-wrapper video {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  height: 400px;
}

/* ================= SCROLL ANIMATIONS ================= */

.animate-left,
.animate-right,
.animate-bottom {
  opacity: 0;
  transition: all 0.9s ease;
}

.animate-left {
  transform: translateX(-60px);
}

.animate-right {
  transform: translateX(60px);
}

.animate-bottom {
  transform: translateY(60px);
}

.animate-active {
  opacity: 1;
  transform: translate(0, 0);
}
/* ================= MISSION SECTION ================= */

/* ================= MISSION SECTION ================= */

/* ================= MISSION SECTION ================= */

.mission-section {
  position: relative;
  background: url("../images/mission.jpg") center/cover no-repeat;
  padding: 120px 0;
  color: #ffffff;
}

/* Overlay for readability */
/* .mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0089c63d;
  z-index: 1;
} */

.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 40, 60, 0.75), rgba(0, 60, 90, 0.75));
  z-index: 1;
}

/* Ensure content stays above overlay */
.mission-section .container {
  position: relative;
  z-index: 2;
}

/* Heading styles */
.mission-section-heading {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.9;
}

.mission-heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.mission-highlight {
  color: #a8e1ff;
}

.mission-text {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 25px;
  line-height: 1.7;
  opacity: 0.95;
  color: #ffffff;
}

.mission-section-heading {
  font-size: 34px;
  color: #ffffff;
  font-weight: 600;
}

/* OUR MISSION label */
.mission-label {
  font-size: 18px; /* bigger */
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Main Heading */
.mission-heading {
  font-size: 30px; /* slightly reduced for compact look */
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.4;
  color: #ffffff;
}

/* Highlight part */
.mission-highlight {
  font-size: 42px;
  color: #a8e1ff;
  font-weight: 700;
  margin-left: 5px;
}

.mission-heading,
.mission-label,
.mission-text {
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

/* Paragraph */

/* ================= TEAM SECTION ================= */

.team-section {
  background: #f8fafc;
}

.team-list {
  list-style: none;
  padding: 0;
}

.team-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.team-list li::before {
  content: "•";
  color: #0089c6;
  position: absolute;
  left: 0;
  font-size: 20px;
}

.team-image {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ================= TEAM BOXES ================= */

.team-box {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
}

.team-box i {
  font-size: 40px;
  color: #0089c6;
  margin-bottom: 15px;
  transition: 0.4s;
}

.team-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  transition: 0.4s;
}

/* Hover Effect */
.team-box:hover {
  background: #0089c6;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.team-box:hover i,
.team-box:hover h5 {
  color: #ffffff;
}

.animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.animate-up.active {
  opacity: 1;
  transform: translateY(0);
}
/* ================= SECTION ================= */

.who-support-wow {
  padding: 70px 0;
  background: #ffffff; /* Pure white */
  position: relative;
}

.who-support-wow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #0089c6;
  border-radius: 4px;
}

/* Reduce gap */
.support-card-row {
  margin-top: 40px;
}

/* ================= VIDEO ================= */

.support-center-video {
  width: 200px;
  height: 200px;
  margin: 0 auto -60px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.support-center-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= CARDS ================= */

.support-wow-card {
  background: #0089c6;
  color: #ffffff;
  padding: 50px 35px 35px 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 137, 198, 0.25);
  transition: 0.4s ease;
}

.support-wow-card-left {
  background: #0089c6;
  color: #ffffff;
  padding: 50px 35px 35px 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 137, 198, 0.25);
  transition: 0.4s ease;
  height: 415px;
}

.support-wow-card:hover {
  transform: translateY(-6px);
}

.support-wow-card h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.support-wow-card ul {
  padding-left: 18px;
}

.support-wow-card li {
  margin-bottom: 8px;
}

/* Read More */
.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #ffd84d;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* ================= KEY ELEMENTS ================= */

.key-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}

.key-item {
  padding: 25px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.key-item i {
  font-size: 28px;
  color: #0089c6;
  margin-bottom: 10px;
  display: block;
}

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

/* ================= KEY ELEMENTS CAROUSEL ================= */

.key-elements {
  padding: 40px 0;
}

.key-elements h3 {
  font-weight: 700;
  font-size: 32px;
  color: #0f2d52;
}

/* Card */
.key-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  border: 1px solid #eef2f7;
}

/* Hover Animation */
.key-item:hover {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(135deg, #0089c6, #006fa3);
  color: #ffffff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Controls styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #0089c6;
  border-radius: 50%;
  padding: 12px;
}

/* ================= KEY ICON THUMBNAILS ================= */

.key-thumb {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 22px;
  text-align: center;
  min-height: 180px;

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

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;

  animation: floatDance 4s ease-in-out infinite;
}

/* Icons */
.key-thumb i {
  font-size: 40px;
  color: #0089c6;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

/* Text */
.key-thumb span {
  font-weight: 600;
  font-size: 14px;
  color: #0f2d52;
  line-height: 1.4;
}

/* Hover */
.key-thumb:hover {
  transform: scale(1.08) rotate(2deg);
  background: linear-gradient(135deg, #0089c6, #006fa3);
}

.key-thumb:hover i,
.key-thumb:hover span {
  color: #ffffff;
}

/* Dancing animation */
@keyframes floatDance {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Slight stagger effect */
.carousel-item .col-lg-3:nth-child(2) .key-thumb {
  animation-delay: 0.5s;
}
.carousel-item .col-lg-3:nth-child(3) .key-thumb {
  animation-delay: 1s;
}
.carousel-item .col-lg-3:nth-child(4) .key-thumb {
  animation-delay: 1.5s;
}

/* Control styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #0089c6;
  border-radius: 50%;
  padding: 12px;
}
/* ================= ACCOMMODATION SECTION ================= */

/* ===============================
   ACCOMMODATION SECTION
================================ */

.accommodation-section {
  padding: 90px 0; /* Reduced from 130px */
  background: #ffffff;
}

/* Use global heading style */
.accommodation-section .section-heading {
  font-size: 34px;
  font-weight: 600;
  color: #0089c6;
  margin-bottom: 20px;
}

/* Subtitle */
.accommodation-sub {
  max-width: 820px;
  margin: 0 auto 50px auto;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ===============================
   CARD STYLING
================================ */

.accommodation-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

/* Image */
.accommodation-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Animation */
.accommodation-card:hover img {
  transform: scale(1.06);
}

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

/* ===============================
   OVERLAY (Improved Visibility)
================================ */

.accommodation-overlay {
  position: absolute;
  inset: 0; /* covers full image */

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 35px 30px;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0) 70%
  );

  color: #fff;
}

/* Title */
.accommodation-overlay h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

/* Description */
.accommodation-overlay p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
  color: #f1f1f1;
}

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

@media (max-width: 991px) {
  .accommodation-card img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .accommodation-section {
    padding: 70px 0;
  }

  .accommodation-overlay {
    padding: 25px;
  }

  .accommodation-overlay h3 {
    font-size: 20px;
  }

  .accommodation-overlay p {
    font-size: 14px;
  }
}

/* ================= SECTION BACKGROUND ================= */
/* ==============================
   WELLNESS + TRANSITION SECTION
============================== */

.wellness-transition-section {
  padding: 90px 0;
  background: #f4f7f9; /* Alternating background */
}

/* Top spacing control */
.section-intro {
  margin-bottom: 40px;
}

/* Highlighted heading */
.highlight-heading {
  position: relative;
  display: inline-block;
}

.highlight-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #0089c6;
  margin: 10px auto 0;
  border-radius: 4px;
}

/* Subtitle */
.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

/* Inner Heading */
.inner-heading {
  font-size: 24px;
  color: #0089c6;
  margin-bottom: 20px;
  font-weight: 600;
}

.highlight-text {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

/* Paragraph styling */
.wellness-transition-section p {
  line-height: 1.8;
  color: #555;
}

/* ================= IMAGE LAYOUT ================= */

.transition-images {
  position: relative;
  height: 420px;
}

.transition-images img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: absolute;
  object-fit: cover;
}

/* Back image */
.img-back {
  width: 85%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Smaller bouncing front image */
.img-front {
  width: 42%;
  height: 55%;
  bottom: -10px;
  right: 30px;
  z-index: 2;
  animation: floatBounce 5s ease-in-out infinite;
}

/* Soft floating animation */
@keyframes floatBounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.wellness-tagline {
  font-size: 26px;
  color: #ffd84d; /* Yellow */
  margin-left: 12px;
  font-weight: 400;
}

/* Make sure heading allows inline wrap */
.highlight-heading {
  line-height: 1.4;
}

/* Optional underline highlight effect */
.wellness-tagline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: rgba(255, 216, 77, 0.4);
  z-index: -1;
  border-radius: 4px;
}

/* ==============================
   REGULATION SECTION
============================== */

.regulation-section {
  padding: 90px 0;
  background: #ffffff; /* Alternate background */
}

.regulation-section p {
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

/* Approval Box */
.approval-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Each Approval Item */
.approval-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-weight: 500;
  color: #333;
}

.approval-item:last-child {
  margin-bottom: 0;
}

/* Tick Icon */
.approval-item i {
  color: #00c616;
  font-size: 20px;
  margin-right: 12px;
}

/* Hover Effect */
.approval-item:hover {
  transform: translateX(5px);
  transition: 0.3s ease;
}
/* ==============================
   SERVICES SCROLL SECTION
============================== */

.services-carousel-section {
  background: #ffffff;
}

.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  cursor: pointer;
}

.service-card h3 {
  color: #0089c6;
  font-size: 22px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.service-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  transition: 0.3s ease;
}

/* Hover effect */
.service-card:hover {
  background: #0089c6;
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 137, 198, 0.25);
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

/* ==============================
   HOW WE WORK SECTION
============================== */

.how-we-work-section {
  padding: 90px 0;
  background: #f4f7f9; /* Alternate background */
}

.how-we-work-section p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 18px;
}

/* Value Box */
.work-values {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Each Item */
.work-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  transition: 0.3s ease;
}

.work-item:last-child {
  margin-bottom: 0;
}

/* Icon */
.work-item i {
  color: #0089c6;
  font-size: 22px;
  margin-right: 14px;
}

/* Subtle Hover */
.work-item:hover {
  transform: translateX(6px);
}

/* ================= CONTINUOUS SLIDER ================= */

.quality-slider {
  overflow: hidden;
  position: relative;
}

.quality-track {
  display: flex;
  gap: 30px;
  animation: scroll 25s linear infinite;
}

.quality-card {
  min-width: 220px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.quality-icon {
  font-size: 35px;
  color: #0089c6;
  margin-bottom: 15px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hover Effect on Individual Tiles */

.quality-card {
  transition: all 0.4s ease;
  cursor: pointer;
}

.quality-card h6 {
  transition: 0.4s;
}

.quality-icon {
  transition: 0.4s;
}

.quality-card:hover {
  background: #0089c6;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.quality-card:hover h6,
.quality-card:hover .quality-icon {
  color: #ffffff;
}

/* ================= HOW WE WORK ================= */

.how-we-work-section {
  background: #ffffff;
}

/* Description */
.work-description {
  max-width: 750px;
  margin: 15px auto 0;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* Card Style */
.work-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

/* Icon Circle */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(0, 137, 198, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.icon-box i {
  font-size: 30px;
  color: #0089c6;
  transition: 0.4s;
}

.work-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.4s;
}

.work-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  transition: 0.4s;
}

/* Hover Effect */
.work-card:hover {
  background: #0089c6;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.work-card:hover h5,
.work-card:hover p {
  color: #ffffff;
}

.work-card:hover .icon-box {
  background: rgba(255, 255, 255, 0.2);
}

.work-card:hover .icon-box i {
  color: #ffffff;
}

/* ================= SCROLL ANIMATION ================= */

.animate-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-card.active {
  opacity: 1;
  transform: translateY(0);
}

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

.main-footer {
  background: #0f2d52; /* Deep navy */
  color: #ffffff;
  padding-top: 70px;
}

/* Footer headings */
.main-footer h5 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
}

/* Footer links */
.main-footer ul {
  list-style: none;
  padding: 0;
}

.main-footer ul li {
  margin-bottom: 10px;
}

.main-footer ul li a {
  color: #d6e4f0;
  text-decoration: none;
  transition: 0.3s ease;
}

.main-footer ul li a:hover {
  color: #0089c6;
}

/* Social icons */
.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 20px;
  color: #ffffff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #0089c6;
  transform: translateY(-3px);
}

/* QR Code */
.qr-wrapper img {
  width: 80px;
  height: 80px;
  margin-right: 10px;
  border-radius: 8px;
  background: #ffffff;
  padding: 5px;
}

/* Bottom bar */
.footer-bottom {
  background: #0c233f;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 14px;
  color: #cdd6df;
}

/* 
Contact Page 


*/
/* ================= SUB BANNER ================= */

/* =========================
   CONTACT SUB BANNER FIX
========================= */

.sub-banner {
  position: relative;
  height: 520px;
  background: url("../images/contact.jpg") no-repeat center 24%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Overlay */
.sub-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 15, 15, 0.52);
  /* background: linear-gradient(rgba(0, 137, 198, 0.55), rgba(0, 137, 198, 0.45)); */
}

/* Content */
.sub-banner .container {
  position: relative;
  z-index: 2;
}

.sub-banner h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.sub-banner p {
  font-size: 18px;
  opacity: 0.95;
  color: #ffffff;
}

.contact-highlight {
  display: inline-block;
  margin-top: 20px;
  background: #ffffff;
  color: #0089c6;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ================= CONTACT SECTION ================= */

.contact-section {
  background: linear-gradient(to bottom, #f4f7f9 0%, #ffffff 100%);
  padding: 80px 0 100px; /* 👈 Added top padding */
  margin-top: 40px; /* 👈 Creates clean separation */
}
/* FORM CARD */
.contact-form-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-40px);
}

/* FORM */
.contact-form-card .form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #e1e1e1;
  transition: 0.3s ease;
}

.contact-form-card .form-control:focus {
  border-color: #0089c6;
  box-shadow: 0 0 0 0.15rem rgba(0, 137, 198, 0.15);
}

.contact-submit {
  background: #0089c6;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.contact-submit:hover {
  background: #005f8f;
}

/* INFO CARD */
.contact-info-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transform: translateY(-40px);
}

.contact-info-card h3 {
  color: #0089c6;
  margin-bottom: 20px;
}

.contact-detail a {
  color: #0089c6;
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* ================= ANIMATION ================= */

.contact-form-card,
.contact-info-card {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.contact-form-card.show,
.contact-info-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= 24/7 SUPPORT SECTION ================= */

.support-247 {
  padding: 80px 0;
  background: #0089c6; /* Brand blue */
}

.support-box {
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px 70px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.support-box h2 {
  font-size: 36px;
  font-weight: 600;
  color: #0089c6;
  margin-bottom: 20px;
}

.support-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.support-call-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #0089c6;
  color: #ffffff;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}

.support-call-btn:hover {
  background: #0f2d52;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ================= REFERRAL BANNER ================= */

/* =========================================
   GLOBAL HEADING CONSISTENCY
========================================= */

.section-heading {
  font-size: 36px;
  font-weight: 600;
  color: #0089c6;
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

/* =========================================
   REFERRAL BANNER
========================================= */

/* =========================================
   GLOBAL HEADING CONSISTENCY
========================================= */

.section-heading {
  font-size: 36px;
  font-weight: 600;
  color: #0089c6;
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

/* =========================================
   REFERRAL BANNER
========================================= */
/* =========================================
   REFERRAL BANNER (FIXED VISIBILITY)
========================================= */

.referral-banner {
  position: relative;
  height: 153px;
  background: url("../images/referral.jpg") no-repeat center 35%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

/* Better balanced overlay */
.referral-banner .overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(rgba(0, 137, 198, 0.65), rgba(0, 137, 198, 0.45)); */
}

/* Ensure content is above overlay */
.referral-banner .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Main Heading */
.referral-banner h1 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

/* Sub Heading */
.referral-banner p {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.95;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* =========================================
   INTRO SECTION
========================================= */

.referral-page-banner {
  position: relative;
  height: 375px;
  background: url("../images/referral.jpg") no-repeat center 35%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

/* Better balanced overlay */
.referral-page-banner .overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(rgba(0, 137, 198, 0.65), rgba(0, 137, 198, 0.45)); */
}

/* Ensure content is above overlay */
.referral-page-banner .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Main Heading */
.referral-page-banner h1 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

/* Sub Heading */
.referral-page-banner p {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.95;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.referral-page-intro {
  padding: 60px 0 40px;
  background: #f5f7fa;
  text-align: center;
}

/* =========================================
   REFERRAL PROCESS
========================================= */

.referral-process {
  padding: 70px 0;
  background: #ffffff;
}

.process-steps {
  display: flex;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.step {
  background: #f9fafc;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  flex: 1;
  min-width: 240px;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #0089c6;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0089c6;
}

.step p {
  font-size: 14px;
  color: #555;
}

/* =========================================
   REFERRAL FORM SECTION
========================================= */

.referral-form-section {
  padding: 80px 0;
  background: #f5f7fa;
}

.referral-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.referral-card .form-control,
.referral-card .form-select {
  border-radius: 12px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.referral-card .form-control:focus,
.referral-card .form-select:focus {
  border-color: #0089c6;
  box-shadow: 0 0 0 2px rgba(0, 137, 198, 0.15);
}

.primary-btn {
  background: #0089c6;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  border: none;
  transition: 0.3s;
  font-weight: 500;
}

.primary-btn:hover {
  background: #0f2d52;
  color: #fff;
}

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

.why-refer-section {
  padding: 70px 0;
  background: #ffffff;
}

.why-refer-section p {
  color: #555;
  line-height: 1.7;
}

.tick-list {
  list-style: none;
  padding-left: 0;
}

.tick-list li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #444;
}

.tick-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0089c6;
  font-weight: bold;
}

/* =========================================
   URGENT CTA STRIP
========================================= */

.referral-cta {
  padding: 50px 0;
  background: #f5f7fa;
  text-align: center;
}

.referral-cta h3 {
  color: #0089c6;
  margin-bottom: 20px;
}

.referral-cta .contact-btn {
  background: #0089c6;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  transition: 0.3s;
}

.referral-cta .contact-btn:hover {
  background: #0f2d52;
  color: #fff;
}

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

@media (max-width: 992px) {
  .referral-banner {
    height: 420px;
  }

  .referral-banner h1 {
    font-size: 36px;
  }

  .process-steps {
    flex-direction: column;
  }

  .referral-card {
    padding: 30px;
  }
}

/* ================= HERO SECTION ================= */

.about-hero {
  background: url("../images/about-image.jpg") center center/cover no-repeat;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
}

.about-hero-overlay {
  width: 100%;
  /* background: rgba(0, 137, 198, 0.65); */
  background: rgba(17, 15, 15, 0.52);
  padding: 145px 0;
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #ffffff;
  color: #0089c6;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #0f2d52;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ================= SECTION HEADING ================= */

.section-heading {
  font-size: 40px;
  font-weight: 600;
  color: #0089c6;
}

/* ================= ABOUT CARDS ================= */

.about-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-icon {
  width: 70px;
  height: 70px;
  background: #0089c6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: 0.3s ease;
}

.about-card:hover .about-icon {
  background: #0f2d52;
}

.about-card h4 {
  font-size: 20px;
  color: #0089c6;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ================= WHAT WE DO ================= */

/* ================= WOW WHAT WE DO ================= */

.about-list {
  list-style: none;
  padding-left: 0;
}

.about-list li {
  padding: 6px 0;
  position: relative;
  padding-left: 25px;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
}

/* What We Do Image Overlap */
.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 20px;
  transform: translateY(0px);
  transition: 0.4s ease;
}

.about-image:hover {
  transform: translateY(30px) scale(1.02);
}

/* Goals Section */
.goal-card {
  background: #f8f9fa;
  padding: 30px 25px;
  border-radius: 18px;
  transition: 0.4s ease;
  height: 100%;
}

.goal-card:hover {
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.goal-icon {
  font-size: 30px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.goals-section {
  background: #f4f6f9;
}

/* ================= SOCIAL BENEFITS ================= */

.social-benefits-section {
  background: linear-gradient(135deg, #eef4ff, #f8fbff);
}

.social-content-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.social-benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.social-benefits-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
}

.social-benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: bold;
  color: #0d6efd;
}

.social-image-wrapper {
  position: relative;
}

.social-image {
  border-radius: 20px;
  transition: 0.4s ease;
}

.social-image:hover {
  transform: scale(1.03);
}

/* ================= WHO WE SUPPORT ================= */

/* ================= WHO WE SUPPORT ================= */

.who-support-section {
  background: #f4f6f9;
}

.support-card {
  background: linear-gradient(135deg, #0089c6, #006fa3);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.4s ease;
  color: #ffffff;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Headings inside card */
.support-card h4 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

/* List Styling */
.support-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.support-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15.5px;
  line-height: 1.6;
}

/* White modern bullet */
.support-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #ffffff;
}

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

.faq-hero {
  background: url("../images/faq.jpg") no-repeat center 20%;
  background-size: cover;
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
}

.faq-hero-overlay {
  width: 100%;
  background: rgba(17, 15, 15, 0.52);
  padding: 125px 0;
}

.faq-subtitle {
  max-width: 650px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
}

/* ================= TABS ================= */

.faq-tabs .nav-link {
  border-radius: 30px;
  padding: 10px 25px;
  margin: 5px;
  color: #0089c6;
  border: 1px solid #0089c6;
  background: #ffffff;
  transition: 0.3s;
}

.faq-tabs .nav-link.active {
  background: #0089c6;
  color: #ffffff;
}

/* ================= ACCORDION ================= */

.faq-accordion .accordion-item {
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
  background: #ffffff;
  color: #0089c6;
  font-weight: 500;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #0089c6;
  color: #ffffff;
}

.faq-accordion .accordion-body {
  background: #f9fafc;
  font-size: 15px;
  color: #555;
}

/* ================= FAQ SHARE ================= */

.faq-share {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.faq-share span {
  color: #666;
  font-weight: 500;
}

.share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0089c6;
  transition: 0.3s;
  text-decoration: none;
}

.share-btn:hover {
  background: #0089c6;
  color: #fff;
}
/* ================= FAQ CTA SECTION ================= */

.faq-cta-section {
  background: linear-gradient(135deg, #0089c6, #006fa3);
}

.faq-cta-btn {
  background: #ffffff;
  color: #0089c6;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
}

.faq-cta-btn:hover {
  background: #f2f2f2;
  transform: translateY(-3px);
}

/* ================= HERO ================= */
/* ================= HERO SECTION ================= */

.service-hero {
  background: url("../images/service_banner.jpg") center 30% / cover no-repeat;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
}

.service-hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(17, 15, 15, 0.52);
  display: flex;
  align-items: center;
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #ffffff;
  color: #0089c6;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #0f2d52;
  color: #ffffff;
  transform: translateY(-3px);
}
/* ================= SERVICE SECTION ================= */

.service-listing-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #0f2d52;
}

/* ================= SERVICE TILE ================= */

.service-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  height: 340px;
  text-decoration: none;
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* overlay */

.service-tile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px;

  background: rgba(17, 15, 15, 0.52);

  color: #fff;

  transform: translateY(100%);
  transition: 0.5s ease;
}

.service-tile-overlay h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.service-tile-overlay p {
  font-size: 14px;
  color: #fff;
}

/* hover animation */

.service-tile:hover img {
  transform: scale(1.12);
}

.service-tile:hover .service-tile-overlay {
  transform: translateY(0);
}

/* HERO */

.service-details-hero {
  background: url("../images/service_banner.jpg") center/cover no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  padding: 80px 0;
}

.hero-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.hero-subtitle {
  color: #fff;
  max-width: 650px;
  margin: auto;
  font-size: 18px;
}

/* INTRO */

.service-intro-section {
  padding: 80px 0;
  background: #fff;
}

.service-description {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* ACCOMMODATION CARDS */

/* ================= ACCOMMODATION IMAGE TILES ================= */

.accommodation-types-section {
  padding: 90px 0;
  background: #f7f9fc;
}

.accommodation-tile {
  position: relative;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.accommodation-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.accommodation-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.4),
    transparent
  );

  color: #fff;

  /* transform: translateY(100%); */
  transition: 0.5s;
}

.accommodation-overlay h4 {
  margin-bottom: 8px;
}

.accommodation-overlay p {
  font-size: 14px;
}

.accommodation-tile:hover img {
  transform: scale(1.15);
}

.accommodation-tile:hover .accommodation-overlay {
  transform: translateY(0);
}

/* SIMILAR SERVICES */

/* ================= SIMILAR SERVICES ================= */

.similar-services-section {
  padding: 100px 0;
  background: #f7f9fc;
}

.similar-slide {
  display: none;
}

.similar-slide.active {
  display: block;
  animation: slideFade 0.6s ease;
}

.similar-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f2d52;
  margin-bottom: 15px;
}

.similar-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.similar-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* arrow buttons */

.slider-btn {
  background: #0089c6;
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.slider-btn:hover {
  background: #0f2d52;
  transform: translateY(-2px);
}

/* animation */

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* SLIDER BUTTONS */

.slider-btn {
  background: #0089c6;
  color: #fff;
  border: none;
  padding: 12px 16px;
  margin-right: 10px;
  border-radius: 50px;
}

/* ================= SCROLL ANIMATIONS ================= */

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: 0.9s;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: 0.9s;
}

.reveal-bottom {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.9s;
}

.reveal-active {
  opacity: 1;
  transform: translate(0);
}

/** Feedback and Policy */

.page-banner {
  padding: 120px 0;
  background: url("../images/feedback.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.feedback-section {
  padding: 80px 0;
}

.feedback-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feedback-note {
  font-size: 24px;
  color: #666;
  text-align: center;
}

.policy-page {
  padding: 80px 0;
}

.policy-page h3 {
  margin-top: 30px;
}
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 15px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-buttons button {
  margin-left: 10px;
  padding: 8px 18px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.btn-accept {
  background: #28a745;
  color: #fff;
}

.btn-reject {
  background: #dc3545;
  color: #fff;
}

.btn-accept:hover {
  background: #218838;
}

.btn-reject:hover {
  background: #c82333;
}
