﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color:#fff;

  color: #333;
}
/* ===== TOPBAR BASE STYLES ===== */
.topbar {
  width: 100%;
  background: linear-gradient(to right, #0083B0, #00B4DB); /* Rodeway Blue gradient */
  color: #ffffff;
  font-size: 0.9rem;
  padding: 6px 0;
  position: relative;
  z-index: 100;
  letter-spacing: 0.3px;
  
}

.topbar-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 12px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.topbar a i {
  margin-right: 6px;
  color: #fff; /* soft gold accent for icons */
}

.topbar a:hover {
  color: #FFD700;
}

.topbar-left,
.topbar-right {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-center {
  text-align: center;
  flex: 1;
  font-weight: 500;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
  .topbar-content {
    flex-direction: column;
    align-items: center;
    padding: 8px 15px;
    text-align: center;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
    margin: 5px 0;
    flex-wrap: wrap;
  }

  .topbar-center {
    flex: 1 1 100%;
    margin: 5px 0;
  }

  .topbar a {
    margin-right: 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .topbar a {
    font-size: 0.8rem;
  }
}



/* === GENERAL HEADER (Refreshed Light & Vibrant Blue Theme) === */
.main-header {
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 150;
  background: linear-gradient(to right, #ffffff, #f5fbff); /* soft white-blue gradient */
  backdrop-filter: blur(8px);
  /* cool blue accent line */
  border-bottom: 3px solid #00B4DB;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 30px;
  position: relative;
}

/* === NAVIGATION LINKS === */
.nav-left,
.nav-right {
  display: flex;
  list-style: none;
  gap: 26px;
}

.nav-left a,
.nav-right a {
  color: #003B73; /* deep navy blue */
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

/* Underline effect on hover */
.nav-left a::after,
.nav-right a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00B4DB, #0083B0);
  transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
  width: 100%;
}

/* Hover link color */
.nav-left a:hover,
.nav-right a:hover {
  color: #00B4DB;
}

/* === LOGO CENTER === */
.logo-center img {
  height: 90px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.logo-center img:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* === DROPDOWN MENU === */
.dropdown-content {
  display: none;
  position: absolute;
  top: 59%;
  background: linear-gradient(to bottom, #ffffff, #f0faff);
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  border-top: 3px solid #00B4DB;
  transition: all 0.3s ease;
}

.dropdown-content li a {
  display: block;
  padding: 12px 22px;
  color: #003B73;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-content li a:hover {
  background: linear-gradient(90deg, #00B4DB, #0083B0);
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* === HAMBURGER TOGGLE (Mobile) === */
.hamburger-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 30px;
  z-index: 200;
  background: none;
  border: none;
  font-size: 28px;
  color: #003B73; /* navy blue */
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover & focus interactivity */
.hamburger-toggle:hover,
.hamburger-toggle:focus {
  color: #00B4DB;
  transform: scale(1.1);
}

/* === RESPONSIVE BEHAVIOR === */
@media (max-width: 991px) {
  .hamburger-toggle {
    display: block;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .logo-center {
    margin: 0 auto;
  }
}



/* === MOBILE MENU OVERLAY (Light & Elegant Blue Theme) === */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 330px;
  height: 100vh;
  background: linear-gradient(to bottom right, #ffffff, #e6f7ff); /* soft white-blue gradient */
  color: #003B73;
  z-index: 1000;
  transition: left 0.4s ease;
  padding: 30px 25px;
  box-shadow: 6px 0 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  left: 0;
}

/* === HEADER LOGO AND CLOSE === */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-logo {
  height: 80px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.close-btn {
  background: none;
  border: none;
  font-size: 26px;
  color: #00B4DB; /* Sky blue close icon */
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index:1010;
}

.close-btn:hover {
  transform: rotate(90deg);
  color: #0083B0; /* darker hover blue */
}

/* === NAVIGATION LINKS === */
.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-links li {
  margin-bottom: 15px;
}

.mobile-menu-links li a {
  background: #f4faff;
  color: #003B73;
  padding: 12px 20px;
  display: block;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.mobile-menu-links li a:hover {
  background: linear-gradient(135deg, #00B4DB, #0083B0);
  color: #fff;
  transform: translateX(5px);
}

/* === DROPDOWN STYLE === */
.mobile-menu-links .has-dropdown {
  position: relative;
}

.mobile-menu-links .has-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-links .has-dropdown .dropdown-inner {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-left: 10px;
}

.mobile-menu-links .has-dropdown:hover .dropdown-inner {
  max-height: 300px;
  opacity: 1;
}

.dropdown-inner li {
  margin-top: 8px;
}

.dropdown-inner li a {
  background: #e8f4ff;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 5px;
  color: #003B73;
}

.dropdown-inner li a:hover {
  background: linear-gradient(135deg, #00B4DB, #0083B0);
  color: #fff;
}

/* === CONTACT INFO === */
.mobile-contact {
  margin-top: 30px;
  background: #f4faff;
  padding: 15px;
  border-left: 4px solid #00B4DB; /* blue accent */
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-contact p {
  margin-bottom: 12px;
  color: #003B73;
}

.mobile-contact a {
  color: #003B73;
  text-decoration: none;
  font-weight: 600;
}

.mobile-contact a:hover {
  color: #00B4DB;
}

/* === SOCIAL ICONS === */
.mobile-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.mobile-social-icons a {
  color: #003B73;
  font-size: 20px;
  transition: color 0.3s, transform 0.3s;
}

.mobile-social-icons a:hover {
  color: #00B4DB;
  transform: scale(1.2);
}

/* === Responsive Header Position === */
@media (max-width: 991px) {
  .main-header {
    top: 110px !important;
  }
}

/* === STICKY HEADER (Light + Premium Blue Style) === */
.sticky-header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #ffffff, #e9f7ff); /* soft white-blue gradient */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #00B4DB; /* blue accent line */
  transition: top 0.35s ease, box-shadow 0.3s ease;
  z-index: 250;
  border-radius: 80px 1px; /* subtle rounded edge for premium feel */
}

.sticky-header.show {
  top: 0;
}

.sticky-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
}

/* === NAVIGATION === */
.sticky-nav-left,
.sticky-nav-right {
  list-style: none;
  display: flex;
  gap: 22px;
}

.sticky-nav-left li,
.sticky-nav-right li {
  position: relative;
}

.sticky-nav-left a,
.sticky-nav-right a {
  color: #003B73; /* deep blue text */
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
}

/* Underline hover effect */
.sticky-nav-left a::after,
.sticky-nav-right a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00B4DB, #0083B0);
  transition: width 0.3s ease;
}

.sticky-nav-left a:hover::after,
.sticky-nav-right a:hover::after {
  width: 100%;
}

/* Hover color */
.sticky-nav-left a:hover,
.sticky-nav-right a:hover {
  color: #00B4DB;
}

/* === LOGO === */
.sticky-logo {
  transform: translateY(2px);
}

.sticky-logo img {
  height: 58px;
  transition: height 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.sticky-logo img:hover {
  transform: scale(1.05);
}

/* === DROPDOWN MENU === */
.has-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(to bottom, #ffffff, #f4faff);
  border: 1px solid #d0e6f5;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  min-width: 170px;
  z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #003B73;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover for dropdown items */
.dropdown-menu li a:hover {
  background: linear-gradient(90deg, #00B4DB, #0083B0);
  color: #fff;
}

/* === MOBILE HIDE === */
@media (max-width: 991px) {
  .sticky-header {
    display: none;
  }
}


 /* === HERO SPLIT SECTION === */
.hero-split {
  display: flex;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
 
  border-top: 6px solid #00B4DB;
  margin-top: 110px; /* below header */
  z-index: 1;
  
}

/* === Left & Right Panels === */
.hero-left,
.hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* === Background Layers === */
.hero-left .bg-layer,
.hero-right .bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.bg-layer.current {
  opacity: 1;
  z-index: 1;
}

/* === Overlay for Readability === */
.hero-left::before,
.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.55), rgba(0, 131, 176, 0.35));
  z-index: 2;
}

/* === LEFT SIDE TEXT === */
.hero-left-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 3;
  max-width: 580px;
  
  padding: 30px 35px;
  border-radius: 10px;
  color: #fff;
}

.hero-left-content h5 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 19px;
  font-weight: 700;
  color: #00B4DB;
  margin-bottom: 10px;
}

.hero-left-content h1 {
  font-size: 52px;
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
}

/* === Buttons === */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.btn-outline,
.btn-filled {
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Outline Button */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.btn-outline:hover {
  background: #fff;
  color: #003B73;
}

/* Filled Button */
.btn-filled {
  background: linear-gradient(135deg, #00B4DB, #0083B0);
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 179, 219, 0.4);
}
.btn-filled:hover {
  background: linear-gradient(135deg, #009ACD, #006C9A);
  color: #fff;
  box-shadow: 0 0 12px rgba(0,179,219,0.7);
}

/* === RIGHT SIDE TEXT === */
.hero-right-content {
  position: absolute;
  bottom: 50px;
  right: 10px;
  z-index: 3;
  max-width: 720px;
  
  padding: 25px 30px;
  border-radius: 12px;
  color: #fff;

  line-height: 1.6;
  font-size: 20px;
  
}

/* === Navigation Arrows === */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: #00B4DB;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  padding: 10px;
}

.hero-nav:hover {
  color: #fff;
  text-shadow: 0 0 12px #00B4DB, 0 0 24px #00B4DB;
  transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev {
  left: 25px;
}

.hero-nav.next {
  right: 25px;
}

/* === Navigation Dots === */
.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.hero-dots .dot {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-dots .dot:hover {
  background: #00B4DB;
}

.hero-dots .dot.active {
  background: #00B4DB;
  border-color: #fff;
  transform: scale(1.15);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 1199px) {
  .hero-left-content h1 {
    font-size: 42px;
  }
  .hero-left-content {
    bottom: 40px;
    left: 40px;
  }
}

@media (max-width: 991px) {
  .hero-split {
    flex-direction: column;
    min-height: 80vh;
    margin-top: 90px;
    margin-bottom: 60px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    height: 50vh;
  }

  .hero-left-content,
  .hero-right-content {
    text-align: center;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px;
  }

  .hero-left-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-nav {
    top: 45%;
    font-size: 1.6rem;
  }

  .hero-nav.prev {
    left: 10px;
  }
  .hero-nav.next {
    right: 10px;
  }

  .hero-dots {
    bottom: 15px;
  }
}

@media (max-width: 575px) {
  .hero-split {
    margin-top: 100px;
    margin-bottom: 50px;
  }

  .hero-left-content h1 {
    font-size: 1.8rem;
  }

  .hero-left-content,
  .hero-right-content {
    padding: 15px;
  }

  .btn-outline,
  .btn-filled {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-dots .dot {
    width: 12px;
    height: 12px;
  }
}


/* === WELCOME SECTION (Curved Blue Theme) === */
.welcome-section {
  position: relative;
  background: linear-gradient(to right, #F7FAFC 60%, #E8F6FC 100%);
  padding: 80px 20px;
  overflow: visible;
  z-index: 1;
}

.welcome-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 50px;
  width: 90%;
  height: 90%;
  background: #D7EEFA;
  border-radius: 150px 0 150px 0;
  transform: rotate(-2deg);
  z-index: 0;
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
}



/* === CONTAINER === */
.welcome-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* === LEFT SIDE === */
.welcome-left {
  position: relative;
  width: 50%;
}

/* === BIG IMAGE === */
.big-image {
  position: relative;
  width: 500px;
  height: 600px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 59, 115, 0.15);
  border: 8px solid transparent;
  background-image: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
  background-origin: border-box;
  z-index: 3;
}

.big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* === FLOATING CARD === */
.floating-card {
  position: absolute;
  top: 20px;
  right: -10px;
  background: linear-gradient(135deg, #003B73, #0056A3);
  color: #fff;
  padding: 18px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 4;
}

.floating-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.floating-card p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

/* === SMALL IMAGE === */
.small-image {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 59, 115, 0.15);
  border: 8px solid transparent;
  background-image: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
  background-origin: border-box;
  z-index: 3;
}

.small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* === RIGHT SIDE === */
.welcome-right {
  width: 50%;
}

.welcome-subtitle {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00AEEF;
  margin-bottom: 10px;
}

.welcome-title {
  font-size: 42px;
  font-weight: 700;
  color: #003B73;
  margin-bottom: 20px;
}

.readmore-title {
  font-size: 22px;
  font-weight: 700;
  color: #003B73;
  margin-bottom: 20px;
}

.welcome-description {
  font-size: 17px;
  line-height: 1.75;
  color: #222;
  margin-bottom: 30px;
}

/* === READ MORE CONTENT === */
.read-more-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s ease;
  margin-top: 20px;
}

.read-more-content.active {
  height: auto;
  opacity: 1;
}

/* === BUTTONS === */
.read-more-btn,
.read-less-btn {
  background: linear-gradient(135deg, #00B4DB, #0083B0);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  font-size: 17px;
  box-shadow: 0 4px 10px rgba(0, 179, 219, 0.4);
}

.read-more-btn:hover,
.read-less-btn:hover {
  background: linear-gradient(135deg, #009ACD, #006C9A);
  box-shadow: 0 0 12px rgba(0, 179, 219, 0.7);
}

.read-less-btn {
  display: none;
}

/* === EXPANDED STATE === */
.welcome-container.expanded {
  transition: all 0.6s ease;
}

.welcome-container.expanded .welcome-left {
  display: none;
}

.welcome-container.expanded .welcome-right {
  flex: 1 1 100%;
  max-width: 100%;
  transition: all 0.6s ease;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.animate-fadeUp { animation: fadeUp 0.8s ease forwards; }
.animate-fadeRight { animation: fadeRight 0.8s ease forwards; }
.animate-popIn { animation: popIn 0.6s ease forwards; }

[data-delay="0.2s"] { animation-delay: 0.2s; }
[data-delay="0.4s"] { animation-delay: 0.4s; }
[data-delay="0.6s"] { animation-delay: 0.6s; }
[data-delay="0.8s"] { animation-delay: 0.8s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .welcome-container {
    flex-direction: column;
    text-align: center;
  }
.welcome-section::before{
	  display:none;
	  
  }
  .welcome-left,
  .welcome-right {
    width: 100%;
    margin-bottom: 30px;
  }

  .big-image {
    width: 90%;
    max-width: 500px;
    height: auto;
    margin: 0 auto 20px;
  }

  .small-image,
  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .welcome-title {
    font-size: 28px;
  }

  .welcome-description {
    font-size: 15px;
  }

  .read-more-btn,
  .read-less-btn {
    font-size: 14px;
  }

  .big-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 20px;
  }

  .small-image,
  .floating-card {
    display: none;
  }
}
/* === AMENITIES SECTION (Reverse Curved Flow) === */
.amenities-section {
  position: relative;
  padding: 80px 5% 100px;
  background: linear-gradient(to left, #F7FAFC 60%, #E8F6FC 100%);
  border-radius: 950px 0px;
 
  overflow: visible;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
  z-index: 1;
}

/* === BACKGROUND DECORATIVE LAYER === */
.amenities-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50px; /* mirror of right side from welcome section */
  width: 90%;
  height: 90%;
  background: #D7EEFA;
  border-radius: 0 150px 0 150px; /* reverse of welcome section */
  transform: rotate(2deg); /* opposite rotation for wave continuity */
  z-index: 0;
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
}

/* Keep content above decorative layer */
.amenities-heading,
.amenities-grid {
  position: relative;
  z-index: 2;
}



/* === HEADING === */
.amenities-heading {
  text-align: center;
  margin-bottom: 60px;
}

.amenities-subtitle {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #00AEEF;
  margin-bottom: 10px;
}

.amenities-title {
  font-size: 48px;
  font-weight: 800;
  color: #003B73;
  text-shadow: 2px 2px 8px rgba(0, 59, 115, 0.15);
  line-height: 1.3;
}

/* === GRID === */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  perspective: 1500px;
}

/* === CARDS === */
.amenity-card {
  height: 220px;
  position: relative;
  cursor: pointer;
  border-radius: 15px;
  transition: transform 0.3s ease;
  z-index: 3; /* ensure cards appear above curved background edge */
}

.amenity-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.amenity-card:hover .amenity-inner {
  transform: rotateY(180deg);
}

/* === CARD SIDES === */
.amenity-front,
.amenity-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-shadow: 0 8px 24px rgba(0, 59, 115, 0.1);
  border: 2px solid #00AEEF;
}

/* === FRONT === */
.amenity-front {
  background: #ffffff;
  color: #003B73;
  transition: all 0.3s ease;
}

.amenity-front:hover {
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.3);
  transform: translateY(-5px);
}

/* === BACK === */
.amenity-back {
  background: linear-gradient(135deg, #00AEEF, #007BB8);
  color: #ffffff;
  transform: rotateY(180deg);
  border: none;
  text-align: center;
  padding: 25px;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.15);
}

/* === ICON === */
.amenity-icon {
  font-size: 54px;
  margin-bottom: 16px;
  color: #00AEEF;
  transition: transform 0.3s ease, color 0.3s ease;
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.15);
  color: #007BB8;
}

/* === TEXT === */
.amenity-label {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.amenity-back p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  opacity: 0.95;
}

/* === RESPONSIVE === */
@media screen and (max-width: 1199px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .amenities-section::before{
	  display:none;
	  
  }
}

@media screen and (max-width: 991px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-section {
    border-radius: 100px 1px;
  }
}

@media screen and (max-width: 575px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .amenity-card {
    height: 200px;
  }
  .amenities-title {
    font-size: 36px;
  }
}


/* === ROOMS SECTION (Curved Flow, Blue Theme) === */
.rooms-section {
  position: relative;
  padding: 90px 5% 110px;
  background: linear-gradient(to right, #F7FAFC 60%, #E8F6FC 100%);
  border-radius: 0px 950px;
 
  overflow: visible;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
  text-align: center;
  z-index: 1;
}

/* === Decorative Background Layer (Mirrors Amenities Section) === */
.rooms-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 50px;
  width: 90%;
  height: 90%;
  background: #D7EEFA;
  border-radius: 150px 0 150px 0;
  transform: rotate(-2deg);
  z-index: 0;
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
}

/* === HEADER === */
.rooms-header {
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.rooms-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00AEEF;
  font-weight: 700;
  margin-bottom: 10px;
}

.rooms-title {
  font-size: 42px;
  font-weight: 800;
  color: #003B73;
  margin-bottom: 20px;
}

.rooms-desc {
  font-size: 18px;
  color: #222;
  line-height: 1.7;
}

/* === GRID === */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* === ROOM CARD === */
.room-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
  background: #fff;
}

.room-card:hover {
  transform: translateY(-10px);
}

/* === ROOM IMAGE === */
.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 6px solid transparent;
  background-image: linear-gradient(115deg, #00AEEF, #003B73);
  background-origin: border-box;
}

/* === ROOM OVERLAY === */
.room-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 59, 115, 0.85), rgba(0, 174, 239, 0.75));
  padding: 20px;
  text-align: center;
  border-top-left-radius: 60% 40px;
  border-top-right-radius: 60% 40px;
}

.room-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.room-facilities {
  font-size: 16px;
  color: #E8F6FC;
  margin-bottom: 18px;
}

/* === BUTTON === */
.room-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #00AEEF, #007BB8);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 174, 239, 0.3);
}

.room-btn:hover {
  background: linear-gradient(135deg, #007BB8, #003B73);
  box-shadow: 0 0 12px rgba(0, 174, 239, 0.6);
}
/* === PLACEHOLDER IMAGE (Soft Sky Blue Theme) === */
.room-placeholder {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8F6FC, #A9E3F7);
  color: #003B73;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 59, 115, 0.1);
}

.room-placeholder span {
  position: relative;
  z-index: 2;
}

/* === Subtle Moving Shine Effect === */
.room-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4),
    rgba(0, 174, 239, 0.2),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 2.8s infinite;
}

@keyframes shine {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: 125%; }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 991px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .rooms-section {
    border-radius: 100px 0;
  }
  .rooms-section::before{
	  display:none;
  }
}

@media (max-width: 575px) {
  .rooms-title {
    font-size: 32px;
  }
  .rooms-desc {
    font-size: 16px;
  }
  .room-overlay h3 {
    font-size: 20px;
  }
  .room-facilities {
    font-size: 14px;
  }
   .rooms-section::before{
	  display:none;
  }
}

/* === ATTRACTIONS SECTION (Blue Curved Flow Style) === */
.attractions-section {
  position: relative;
  padding: 90px 5% 110px;
  background: linear-gradient(to left, #F7FAFC 60%, #E8F6FC 100%);
  border-radius: 950px 0px;
  overflow: visible;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
  z-index: 1;
}

/* === Decorative Background Layer === */
.attractions-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50px;
  width: 90%;
  height: 90%;
  background: #D7EEFA;
  border-radius: 0 150px 0 150px;
  transform: rotate(2deg);
  z-index: 0;
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
}

/* === Center Container === */
.attractions-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* === HEADER === */
.attraction-header {
  text-align: center;
  margin-bottom: 60px;
}

.subtitle {
  color: #00AEEF;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 700;
}

.section-title1 {
  font-size: 42px;
  color: #003B73;
  font-weight: 800;
  margin-bottom: 20px;
  border-bottom: 3px solid #00AEEF;
  display: inline-block;
  padding-bottom: 6px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: #222;
  font-size: 17px;
  line-height: 1.7;
}

/* === GRID LAYOUT (ADJUSTED FOR 5 ATTRACTIONS) === */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* Keeps it responsive */
  gap: 30px;
  justify-content: center;
  padding: 15px; /* Added padding for smaller screens */
}

/* === ATTRACTION CARDS === */
.attraction {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 59, 115, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Hover effect */
.attraction:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 174, 239, 0.2);
}

/* === IMAGE === */
.attraction img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 5px solid #00AEEF;
  /* Ensure consistent height on mobile */
}

/* === INFO BLOCKS === */
.attraction-info-top,
.attraction-info-bottom {
  padding: 20px 25px;
  color: #003B73;
}

.attraction-info-top h3,
.attraction-info-bottom h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #003B73;
}

.attraction-info-top p,
.attraction-info-bottom p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .attractions-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusted for smaller screens */
    gap: 20px;
    padding: 10px; /* Reduced padding */
  }
  .attractions-section::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .attractions-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); /* Even smaller columns for mobile */
    gap: 15px; /* Reduced gap */
  }
  .attraction img {
    height: 200px; /* Smaller image height on mobile */
  }
}

/* === SWIPER SLIDER WRAPPER === */
.attractions-slider {
  width: 100%;
  padding-bottom: 60px;
}

/* === SLIDE CARD STYLE === */
.swiper-slide.attraction {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 59, 115, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.swiper-slide.attraction:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 174, 239, 0.2);
}

.swiper-slide img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 5px solid #00AEEF;
}

/* === INFO BLOCKS === */
.attraction-info-top {
  padding: 20px 25px;
  color: #003B73;
}

.attraction-info-top h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #003B73;
}

.attraction-info-top p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* === SWIPER NAVIGATION === */
.swiper-button-prev,
.swiper-button-next {
  color: #00AEEF;
}

.swiper-pagination-bullet {
  background: #00AEEF;
}


/* === MAP & GALLERY SECTION (Blue Curved Flow Style) === */
.map-gallery-section {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  background: linear-gradient(to right, #F7FAFC 60%, #E8F6FC 100%);
  color: #1e2a3a;
  min-height: 120vh;
  border-radius: 0px 950px;
  
  overflow: visible;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
  z-index: 1;
}

/* === Decorative Background Overlay (Mirrors Other Sections) === */
.map-gallery-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 50px;
  width: 90%;
  height: 90%;
  background: #D7EEFA;
  border-radius: 150px 0 150px 0;
  transform: rotate(-2deg);
  z-index: 0;
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
}

/* === MAP AREA === */
.map-area {
  flex: 1;
  min-width: 350px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  z-index: 2;
}

.map-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 90%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 59, 115, 0.2);
  transition: transform 0.3s ease;
  border: 3px solid #00AEEF;
}

.map-box:hover {
  transform: scale(1.015);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(1) contrast(1.05);
}

.map-overlay-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 59, 115, 0.8);
  padding: 10px 20px;
  color: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 59, 115, 0.3);
}

.map-overlay-text i {
  color: #00AEEF;
  margin-right: 8px;
}

/* === GALLERY AREA === */
.gallery-area {
  flex: 1;
  min-width: 350px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.gallery-container {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 80%;
  width: 100%;
  justify-content: center;
}

.gallery-strip {
  flex: 1;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  filter: brightness(0.85);
  box-shadow: 0 8px 24px rgba(0, 59, 115, 0.15);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-strip.main {
  flex: 2;
  filter: brightness(1);
  border: 3px solid #00AEEF;
  border-radius: 20px;
}

.gallery-strip:hover {
  flex: 2;
  filter: brightness(1);
}

.gallery-strip:hover img {
  transform: scale(1.05);
}

/* === BUTTON === */
.view-gallery-btn {
  margin-top: 20px;
  padding: 12px 28px;
  background: transparent;
  color: #003B73;
  border: 2px solid #00AEEF;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 174, 239, 0.25);
  text-decoration:none;
}

.view-gallery-btn:hover {
  background: linear-gradient(135deg, #00AEEF, #007BB8);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 174, 239, 0.6);
}

/* === POPUP OVERLAY (Fixed + Locks Scroll) === */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 59, 115, 0.97);
   z-index: 2147483646; /* 🔼 now above everything including back-to-top */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden; /* prevent scroll inside popup */
}

.popup-overlay.active {
  display: flex;
}

/* Centered image inside popup */
.popup-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 80px;
  right: 40px;
  font-size: 80px;
  color: #00AEEF;
  cursor: pointer;
  font-weight: bold;
  z-index: 2010; /* 🔼 the topmost layer */
  transition: all 0.3s ease;
}
.close-btn:hover {
  color: #fff;
  text-shadow: 0 0 12px #00AEEF;
}

/* Slider Navigation */
.popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 174, 239, 0.7);
  color: #fff;
  border: none;
  font-size: 40px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2010; /* 🔼 above everything else */
}

.popup-nav:hover {
  background: rgba(0, 174, 239, 0.9);
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.7);
}

@media (max-width: 768px) {
  .popup-nav {
    font-size: 28px;
    padding: 8px 12px;
  }
  .popup-nav.prev { left: 15px; }
  .popup-nav.next { right: 15px; }
}


/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .map-gallery-section {
    flex-direction: column;
    border-radius: 100px 0;
  }
  /* === Decorative Background Overlay (Mirrors Other Sections) === */
.map-gallery-section::before {

 display:none;
}

  .map-area,
  .gallery-area {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .map-box {
    height: 420px;
    max-width: 100%;
  }

  .gallery-container {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    height: auto;
    width: 100%;
    padding-bottom: 15px;
  }

  .gallery-strip {
    flex: 0 0 160px;
    height: 500px;
    border-radius: 15px;
    min-width: 160px;
  }

  .gallery-strip.main {
    flex: 0 0 200px;
    height: 500px;
  }

  .view-gallery-btn {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    margin-top: 15px;
  }

  .popup-img {
    max-width: 95%;
    max-height: 70%;
  }

  .close-btn {
    top: 15px;
    right: 20px;
    font-size: 32px;
  }

  .map-overlay-text {
    font-size: 14px;
    padding: 8px 16px;
  }
}


/* === FOOTER (Bright Blue Flow - Improved Readability) === */
.site-footer {
  position: relative;
  padding: 100px 20px 40px;
  background: linear-gradient(to right, #F7FAFC 20%, #E8F6FC 60%, #BCE6FA 85%, #007BB8 100%);
  color: #003B73;
  border-radius: 950px 0px;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
  overflow: visible;
  z-index: 1;
}

/* === Decorative Curved Top Layer for Continuity === */
.site-footer::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50px;
  width: 90%;
  height: 100%;
  background: #D7EEFA80;
  border-radius: 0 150px 0 150px;
  transform: rotate(2deg);
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
  z-index: -1;
}

/* === FOOTER LAYOUT === */
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* === TITLES === */
.footer-title {
  font-size: 25px;
  color: #003B73;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 45px;
  height: 3px;
  background-color: #00AEEF;
  border-radius: 2px;
}

/* === TEXT + LINKS === */
.footer-info .gen {
  font-size: 18px;
  color: #003B73;
  opacity: 0.85;
  margin-bottom: 10px;
}

.footer-info a {
  color: #007BB8;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  font-size: 18px;
}

.footer-info a:hover {
  color: #00AEEF;
}

/* === QUICK LINKS === */
.footer-links-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
}

.footer-links-columns li {
  margin-bottom: 10px;
}

.footer-links-columns a {
  color: #003B73;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  font-size: 18px;
}

.footer-links-columns a:hover {
  color: #00AEEF;
}

/* === SOCIAL MEDIA === */
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  margin-bottom: 12px;
}

.footer-social a {
  color: #003B73;
  font-size: 19px;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #00AEEF;
}

.footer-social i {
  color: #00AEEF;
  margin-right: 8px;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 59, 115, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 17px;
  color: #003B73;
}

.footer-bottom a {
  color: #007BB8;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: #00AEEF;
  text-decoration: underline;
}

.footer-bottom small {
  color: #004C92;
  opacity: 0.8;
   font-weight: 500;
   font-size:16px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  /* ✅ Make quick links appear in 2 columns */
  .footer-links-columns {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 15px 25px;
    justify-items: center;
  }

  .footer-links-columns ul {
    margin: 0;
  }

  .footer-links-columns li {
    margin-bottom: 8px;
  }

  .footer-links-columns a {
    font-size: 17px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .site-footer {
    border-radius: 100px 0 0 0;
  }

  .site-footer::before {
    height: 80px;
    top: -50px;
    left: 40px;
  }
}


.title5 {
  font-size: 1.8rem;
  color: #FFAB40;
  font-weight: 700;
  text-decoration: none;
}

.cgsl {
  color: #FFAB40;
  text-decoration: none;
  font-weight: 500;
}

.cgsl:hover {
  color: #FFD963;
  text-decoration: underline;
}
/* === Fresh Back-To-Top === */
.btt {
  position: fixed;
  inset: auto 24px 24px auto;     /* right:24px; bottom:24px */
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 30%, #00AEEF 0%, #007BB8 60%, #003B73 100%);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;

  /* Always on top of overlays, headers, ::before shapes, etc. */
  z-index: 3000;

  /* Hidden by default */
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 28px rgba(0, 59, 115, 0.35);
}

/* visible state */
.btt--show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.btt:hover {
  box-shadow: 0 12px 34px rgba(0, 174, 239, 0.55);
}

/* SVG icon */
.btt__icon {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btt {
    transition: none;
  }
}

/* Smaller on phones */
@media (max-width: 600px) {
  .btt { width: 48px; height: 48px; inset: auto 16px 18px auto; }
  .btt__icon { width: 22px; height: 22px; }
}


/* === Hero Section for Amenities (Refined Blue Theme) === */
.hero-amenities {
  position: relative;
  height: 75vh;
  width: 100%;
  overflow: hidden;
  background-color: #E8F6FC; /* Soft light-blue fallback */
  border-radius: 0 0 150px 0;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.1);
  background-size: cover; /* Ensure the background image covers the whole section */
  background-position: center; /* Ensure the center of the image is always shown */
}

/* Background Image */
.hero-image-amenities {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover; /* Ensures the image covers the entire container */
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Lighter Blue Overlay (fresh, modern look) */
.overlay-amenities {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom ,
    rgba(247, 250, 252, 0.1),   /* Soft white-blue top */
    rgba(232, 246, 252, 0.8),   /* Sky blue midtone */
    rgba(0, 174, 239, 0.5)     /* Hint of Rodeway blue at bottom */
  );
  z-index: 1;
  mix-blend-mode: lighten; /* Keeps the image vibrant and soft */
}

/* Text Layer */
.hero-text-amenities {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #003B73;
  z-index: 2;
  padding: 0 1rem;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Subtitle */
.subtitle-amenities {
  font-size: 1.5rem;
  color: #00AEEF; /* Brand accent */
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

/* Title */
.title-amenities {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: #003B73;
  text-shadow: 0 2px 5px rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-amenities {
    height: 40vh;
  }

  .title-amenities {
    font-size: 2.4rem;
  }

  .subtitle-amenities {
    font-size: 1.3rem;
  }

  .hero-text-amenities {
    max-width: 90%; /* Allow the text to be more responsive */
    padding: 0 2rem; /* Increase padding for better readability */
  }
}

@media (max-width: 768px) {
  .hero-amenities {
    height: 40vh;
    margin-top: 100px;
  }

  .title-amenities {
    font-size: 2rem;
  }

  .subtitle-amenities {
    font-size: 1.1rem;
  }

  .hero-text-amenities {
    padding: 0 1rem; /* Adjust padding for mobile */
  }
}

@media (max-width: 430px) {
  .hero-amenities {
    height: 30vh; /* Full viewport height on mobile */
    margin-top: 0; /* Remove margin-top for full screen */
  }

  .title-amenities {
    font-size: 1.6rem;
  }

  .subtitle-amenities {
    font-size: 1rem;
  }

  .hero-text-amenities {
    max-width: 95%; /* Allow more width for text on mobile */
    padding: 0 1rem; /* Adjust padding */
  }
}



/* === Amenities Section (Curved Blue Flow Style) === */
.inn-amenities-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(to right, #F7FAFC 60%, #E8F6FC 100%);
  border-radius: 0px 950px;
  color: #1e2a3a;
  text-align: center;
  overflow: visible;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
  z-index: 1;
}

/* === Decorative Background Overlay (Mirrors Map Section) === */
.inn-amenities-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: 50px;
  width: 90%;
  height: 90%;
  background: #D7EEFA;
  border-radius: 150px 0 150px 0;
  transform: rotate(-2deg);
  z-index: 0;
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
}

/* === Title Section === */
.budget-inn-section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.budget-inn-main-title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #003B73;
}

.budget-inn-main-title span {
  color: #00AEEF; /* Accent light blue matching site */
  font-weight: 700;
}

.budget-inn-description {
  font-size: 1.15rem;
  color: #1E2A3A;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === Amenities Grid === */
.inn-amenities-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

/* === Category Cards === */
.inn-amenity-category {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 59, 115, 0.1);
  border-top: 5px solid #00AEEF;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.inn-amenity-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 59, 115, 0.25);
  border-color: #007BB8;
}

/* === Category Title === */
.inn-amenity-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003B73;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* === List Styling === */
.inn-amenity-list {
  list-style-type: disc;
  padding-left: 20px;
  color: #1E2A3A;
  font-size: 1rem;
  line-height: 1.6;
}

.inn-amenity-list li {
  margin-bottom: 8px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .budget-inn-main-title {
    font-size: 2rem;
  }

  .budget-inn-description {
    font-size: 1rem;
  }

  .inn-amenities-container {
    grid-template-columns: 1fr;
  }

  .inn-amenity-category {
    padding: 20px;
    border-radius: 20px;
  }

  .inn-amenity-title {
    font-size: 1.3rem;
  }

  .inn-amenity-list li {
    font-size: 0.95rem;
  }
}
/* === Things to Do Section (Curved Blue Flow Style) === */
.budget-inn-things-to-do {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(to right, #F7FAFC 60%, #E8F6FC 100%);
  border-radius: 0px 950px;
  color: #1e2a3a;
  overflow: visible;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
  z-index: 1;
  text-align: center;
}

/* === Decorative Background Overlay (same as Amenities Section) === */
.budget-inn-things-to-do::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 50px;
  width: 85%;
  height: 90%;
  background: #D7EEFA;
  border-radius: 150px 0 150px 0;
  transform: rotate(-2deg);
  z-index: 0;
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
}

/* === Section Title === */
.budget-inn-section-title {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.budget-inn-main-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #003B73;
  letter-spacing: 1px;
}

.budget-inn-main-title span {
  color: #00AEEF; /* Accent blue for property name */
}

.budget-inn-description {
  font-size: 1.15rem;
  color: #1e2a3a;
  margin-top: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
}

/* === Grid Layout === */
.budget-inn-attractions-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

/* === Category Cards === */
.budget-inn-attraction-category {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 59, 115, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.budget-inn-attraction-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 59, 115, 0.15);
}

.budget-inn-attraction-category-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #003B73;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid #00AEEF;
  padding-left: 10px;
}

/* === Individual Attraction Cards === */
.budget-inn-attraction-card {
  background: #F7FAFC;
  padding: 18px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 59, 115, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.budget-inn-attraction-card:hover {
  background: #E8F6FC;
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 59, 115, 0.15);
}

.budget-inn-attraction-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #003B73;
  margin-bottom: 8px;
}

.budget-inn-attraction-card p {
  font-size: 1rem;
  color: #1e2a3a;
  line-height: 1.5;
}

/* === Responsive Adjustments === */
@media (max-width: 1024px) {
  .budget-inn-main-title {
    font-size: 2.4rem;
  }

  .budget-inn-description {
    font-size: 1rem;
  }

  .budget-inn-attractions-container {
    grid-template-columns: 1fr;
  }

  .budget-inn-attraction-category {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .budget-inn-main-title {
    font-size: 2rem;
  }

  .budget-inn-description {
    font-size: 1rem;
  }

  .budget-inn-attraction-card h4 {
    font-size: 1.15rem;
  }

  .budget-inn-attraction-card p {
    font-size: 0.95rem;
  }
}


/* === Contact Section (Rodeway Inn Jackson Style) === */
.contact-section-hero {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(to right, #F7FAFC 60%, #E8F6FC 100%);
  border-radius: 0px 950px;
  color: #1e2a3a;
  overflow: visible;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
  z-index: 1;
}

/* === Decorative Overlay (matches other curved sections) === */
.contact-section-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 60px;
  width: 90%;
  height: 90%;
  background: #D7EEFA;
  border-radius: 150px 0 150px 0;
  transform: rotate(-2deg);
  z-index: 0;
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
}

/* === Inner Wrapper === */
.contact-wrapper-hero {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 10px 35px rgba(0, 59, 115, 0.1);
  overflow: hidden;
}

/* === Left Content === */
.contact-info-box {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* === Title & Description === */
.contact-main-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #003B73;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-main-title span {
  color: #00AEEF;
}

.contact-description {
  font-size: 1.2rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 800px;
}

/* === Contact Details Card === */
.contact-details-area {
  background: linear-gradient(135deg, #00AEEF 0%, #0073A8 100%);
  padding: 25px 30px;
  border-left: 6px solid #003B73;
  margin-bottom: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 59, 115, 0.1);
  color: #ffffff;
}

.contact-details-area h4 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-details-area strong {
  color: #ffffff;
}

.contact-details-area a {
  color: #FFD700;
  font-weight: 600;
  text-decoration: none;
}

.contact-details-area a:hover {
  text-decoration: underline;
  color: #fff;
}

/* === Right Side Image === */
.contact-image-box {
  flex: 1;
  background: #E8F6FC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Responsive === */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-info-box {
    padding: 30px;
    text-align: center;
  }

  .contact-main-title {
    font-size: 2.2rem;
  }

  .contact-description {
    font-size: 1rem;
  }

  .contact-image-box {
    height: 300px;
  }
}

/* === Location Section (Rodeway Inn Jackson Style) === */
.location-section-hero {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(to right, #F7FAFC 60%, #E8F6FC 100%);
  border-radius: 0px 950px;
  color: #1e2a3a;
  overflow: visible;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
  z-index: 1;
}

/* === Decorative Overlay (matches other sections) === */
.location-section-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 60px;
  width: 90%;
  height: 90%;
  background: #D7EEFA;
  border-radius: 150px 0 150px 0;
  transform: rotate(-2deg);
  z-index: 0;
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
}

/* === Layout Wrapper === */
.location-wrapper-hero {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 10px 35px rgba(0, 59, 115, 0.1);
  overflow: hidden;
}

/* === Left Info Box === */
.location-info-box {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #003B73; /* Rodeway Inn Blue */
  margin-bottom: 15px;
  font-weight: 600;
}

.location-info-box p {
  font-size: 1.2rem;
  color: #334155;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* === Coordinates & Directions Boxes === */
.coordinates-area,
.directions-area {
  background: linear-gradient(135deg, #00AEEF 0%, #007BB8 100%);
  padding: 20px 25px;
  border-left: 6px solid #003B73;
  margin-bottom: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 59, 115, 0.1);
  color: #ffffff;
}

.coordinates-area h4,
.directions-area h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5;
}

/* === Directions Form === */
.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #d0d8e0;
  font-size: 1rem;
  color: #333;
}

.directions-area form button {
  width: 100%;
  padding: 12px;
  background: #003B73; /* Deep Rodeway Blue */
  color: #ffffff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.directions-area form button:hover {
  background: #007BB8; /* Light Blue Hover */
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.4);
}

/* === Right Map Box === */
.location-map-box {
  flex: 1;
  background: #E8F6FC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}

/* === Responsive Design === */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box {
    height: 300px;
  }

  .location-info-box {
    padding: 30px;
    text-align: center;
  }

  .location-info-box h2 {
    font-size: 2rem;
  }

  .location-info-box p {
    font-size: 1rem;
  }
}
/* === Sitemap Section (Rodeway Inn Jackson Refined Style) === */
.sitemap-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(to right, #F7FAFC 60%, #E8F6FC 100%);
  border-radius: 0px 950px;
  color: #1e2a3a;
  text-align: center;
  overflow: visible;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
  z-index: 1;
}

/* === Decorative Overlay === */
.sitemap-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 60px;
  width: 90%;
  height: 90%;
  background: #D7EEFA;
  border-radius: 150px 0 150px 0;
  transform: rotate(-2deg);
  z-index: 0;
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
}

/* === Section Title === */
.budget-inn-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #003B73;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.budget-inn-main-title span {
  color: #00AEEF;
}

.sitemap-subtitle {
  font-size: 1.15rem;
  color: #334155;
  margin: 0 auto 50px;
  line-height: 1.6;
  max-width: 900px;
}

/* === Sitemap Grid Layout === */
.sitemap-links {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* === Sitemap Cards === */
.sitemap-block {
  flex: 1 1 120px;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 59, 115, 0.08);
  border-top: 5px solid #00AEEF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  min-width: 300px;
  max-width: 340px;
}

.sitemap-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 59, 115, 0.15);
}

/* === Links === */
.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 15px;
}

.sitemap-block ul li a {
  font-size: 1.1rem;
  color: #003B73;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
  font-weight: 500;
}

.sitemap-block ul li a:hover {
  color: #00AEEF;
  text-decoration: underline;
}

/* === Responsive === */
@media (max-width: 992px) {
  .sitemap-links {
    flex-direction: column;
    align-items: center;
  }

  .sitemap-block {
    width: 90%;
    max-width: 500px; /* Adjust card size for tablets */
    padding: 25px 20px; /* Reduce padding to fit smaller screens */
    margin-bottom: 20px; /* Space out the cards */
  }

  .budget-inn-main-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .sitemap-links {
    flex-direction: column;
    align-items: center;
  }

  .sitemap-block {
    width: 100%;
    max-width: 400px; /* Adjust card width for mobile */
    padding: 20px 15px; /* Adjust padding for mobile */
    margin-bottom: 20px; /* Add some margin between cards */
  }

  .budget-inn-main-title {
    font-size: 1.8rem;
  }

  .sitemap-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  /* Adjust the sitemap link text size for better readability on mobile */
  .sitemap-block ul li a {
    font-size: 1rem;
  }
}

/* === FAQ Section (Rodeway Inn Jackson Style) === */
.faq-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(to right, #F7FAFC 60%, #E8F6FC 100%);
  border-radius: 0px 950px;
  color: #1e2a3a;
  text-align: center;
  overflow: visible;
  box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
  z-index: 1;
}

/* === Decorative Overlay (matches other sections) === */
.faq-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 60px;
  width: 90%;
  height: 90%;
  background: #D7EEFA;
  border-radius: 150px 0 150px 0;
  transform: rotate(-2deg);
  z-index: 0;
  box-shadow: 0 0 25px rgba(0, 59, 115, 0.08);
}

/* === Container === */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* === Section Title === */
.faq-title a {
  font-size: 2.8rem;
  font-weight: 700;
  color: #003B73; /* Deep Rodeway Blue */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 20px;
}

.faq-title a span {
  color: #00AEEF; /* Accent Sky Blue */
}

.faq-subtitle {
  font-size: 1.2rem;
  color: #334155;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* === FAQ List === */
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}

/* === FAQ Item Cards === */
.faq-item {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border-top: 5px solid #00AEEF; /* Accent Blue Border */
  box-shadow: 0 8px 25px rgba(0, 59, 115, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 59, 115, 0.15);
}

/* === FAQ Question Titles === */
.faq-item h2 {
  font-size: 1.7rem;
  color: #003B73; /* Dark Blue */
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px dashed #00AEEF;
  letter-spacing: 0.5px;
}

/* === FAQ Text === */
.faq-item p {
  font-size: 1.1rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* === FAQ Links === */
.faq-item a {
  color: #00AEEF;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.faq-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #003B73;
  transition: width 0.3s ease;
}

.faq-item a:hover {
  color: #003B73;
}

.faq-item a:hover::after {
  width: 100%;
}

/* === Responsive Design === */
@media (max-width: 992px) {
  .faq-title a {
    font-size: 2.2rem;
  }

  .faq-item h2 {
    font-size: 1.4rem;
  }

  .faq-item p {
    font-size: 1rem;
  }

  .faq-section {
    padding: 60px 15px;
  }
}
