/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #111;
}

/* NAVBAR CONTAINER */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO AREA */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto; /* Push logo to the left */
  padding-left: 10px; /* Add some spacing from the left edge */
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  color: #004aad; /* Matches your logo blue */
  letter-spacing: 0.5px;
}

/* NAV LINKS (DESKTOP) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto; /* Push links to the right */
  padding-right: 20px; /* Add some spacing from the right edge */
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

/* Hover underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #004aad;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #004aad;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER MENU ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #004aad;
}

/* ===== TABLET & MOBILE STYLES ===== */
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
    margin-left: auto; /* Push menu toggle to the right */
  }

  .nav-links {
    position: absolute;
    top: 75px;
    right: 5%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 280px;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 20px;
    margin: 0;
    font-size: 16px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: rgba(0, 74, 173, 0.05);
    border-left: 3px solid #002b64;
    color: #002b64;
  }
}

/* SMALL DEVICES (PHONES) */
@media (max-width: 576px) {
  .logo img {
    height: 42px;
  }

  .logo span {
    font-size: 18px;
  }

  .navbar .container {
    padding: 10px 15px;
  }
}

/* HERO SLIDER */
/* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slide base style */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* Smooth professional fade */
}

/* Active slide visible */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Dark overlay to reduce background visibility */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
  z-index: 1;
}

/* HERO TEXT CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 10px;
  animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #f2f2f2;
}

/* HERO BUTTON STYLES */
.hero-slider .btn {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #fff;
  padding: 14px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
}

.hero-slider .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #34495e, #2c3e50);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.hero-slider .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.hero-slider .btn:hover::before {
  opacity: 1;
}

.hero-slider .btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* General button style (for other buttons on the site) */
.btn {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  background: linear-gradient(135deg, #34495e, #2c3e50);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
}

/* SLIDER NAVIGATION ARROWS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 22px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 3;
  opacity: 0.8;
}

.prev:hover, .next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.05);
  opacity: 1;
}

.prev:active, .next:active {
  transform: translateY(-50%) scale(0.95);
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

/* DOTS NAVIGATION */
.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 15px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.dot.active {
  background: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn {
    padding: 12px 28px;
  }
}

/* ABOUT US SECTION */
.about-section {
  padding: 80px 0;
  background: #f9f9f9;
  color: #222;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* IMAGE */
.about-image {
  flex: 1 1 45%;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* CONTENT */
.about-content {
  flex: 1 1 50%;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #002f6d;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.about-content h3 {
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-content p {
  line-height: 1.7;
  color: #555;
  font-size: 1rem;
  margin-bottom: 25px;
}

/* HIGHLIGHTS LIST */
.about-highlights {
  list-style: none;
  margin-bottom: 35px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.about-highlights li span {
  color: #004aad;
  font-weight: 700;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* BUTTON STYLE */
.about-btn {
  display: inline-block;
  background: linear-gradient(135deg, #004aad, #00327d);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(0, 74, 173, 0.3);
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: linear-gradient(135deg, #005aff, #003a8a);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 74, 173, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    margin-top: 40px;
  }

  .about-image img {
    width: 90%;
  }
}

/* ===== VISION & MISSION SECTION (robust gradient outline) ===== */
.vision-mission-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.vision-mission-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #002f6d;
  margin-bottom: 10px;
}

.vm-intro {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Cards container */
.vm-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 32px;
}

/* Wrapper that provides padding for the gradient outline */
.vm-card-wrap {
  position: relative;
  flex: 1 1 45%;
  min-width: 300px;
  border-radius: 20px;        /* outer radius */
  padding: 3px;               /* thickness of the outline */
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s;
  display: flex;
  z-index: 1;
  overflow: visible;
}

/* Gradient layer (fills the wrapper) */
.vm-card-gradient {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #004aad, #005aff, #00c6ff);
  filter: blur(0px);
  z-index: 0;
  /* optional animated gradient:
     background-size: 300% 300%;
     animation: gradMove 8s ease infinite;
  */
}

/* Inner card (content) */
.vm-card-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 16px;        /* slightly smaller so gradient shows */
  padding: 25px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: background 0.4s ease, transform 0.45s cubic-bezier(.2,.8,.2,1);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Content styling */
.vm-card-inner h3 {
  font-size: 1.7rem;
  color: #004aad;
  margin-bottom: 16px;
  font-weight: 700;
}

.vm-card-inner p {
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
}

/* Hover effects: lift + stronger glow */
.vm-card-wrap:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 18px 45px rgba(0,74,173,0.12);
}

.vm-card-wrap:hover .vm-card-gradient {
  filter: blur(0.75px);
  /* optionally increase brightness via opacity or pseudo-element */
}

/* Optional animated gradient (uncomment background-size/animation above to enable) */
@keyframes gradMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive: stack cards */
@media (max-width: 992px) {
  .vm-cards {
    flex-direction: column;
    gap: 22px;
    align-items: center;
  }

  .vm-card-wrap {
    width: 92%;
    padding: 3px;
  }

  .vm-card-inner {
    padding: 28px 22px;
  }

  .vision-mission-section {
    padding: 50px 0;
  }
}


/* ===== COURSES SECTION (Dark Theme) ===== */
.courses-section {
  padding: 85px 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #0c0f18 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #f0f4ff;
}

.courses-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.courses-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.courses-intro {
  color: #b8c1d8;
  font-size: 1.05rem;
  margin-bottom: 45px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 300;
}

/* SLIDER */
.course-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.course-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* CARD STYLING */
.course-card {
  flex: 0 0 100%;
  background: linear-gradient(145deg, #252d40 0%, #1e2433 100%);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(5px);
}

.course-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, #2a344a 0%, #222a3c 100%);
}

.course-card h3 {
  color: #4dabff;
  font-size: 1.7rem;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.course-card p {
  color: #b8c1d8;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}



/* DOTS */
.course-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 12px;
}

.course-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
}

.course-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.course-dot:hover::after {
  transform: scale(1);
}

.course-dot.active {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.course-dot.active::after {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .course-card {
    padding: 40px 25px;
    max-width: 90%;
    margin: 0 auto;
  }

  .course-btn {
    width: 44px;
    height: 44px;
    padding: 12px;
  }

  .course-btn.prev {
    left: -50px;
  }
  
  ​​.course-btn.next {
    right: -50px;
  }

  .btn-icon {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .course-btn {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .course-btn.prev {
    left: -40px;
  }
  
  ​​.course-btn.next {
    right: -40px;
  }

  .course-card h3 {
    font-size: 1.5rem;
  }

  .course-card p {
    font-size: 1rem;
  }
}

/* ===== CORE VALUES SECTION ===== */
.values-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f2f3f5 0%, #e9ebee 100%);
  text-align: center;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.values-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #002f6d;
  margin-bottom: 12px;
}

.values-intro {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* GRID LAYOUT — 4 per row, centered alignment */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  justify-items: center;
  align-items: stretch;
  gap: 45px;
}

/* VALUE CARD */
.value-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 30px 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
}

/* Gradient Outline */
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #004aad, #00c6ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
}

/* ICON STYLE */
.icon-box {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #004aad, #00c6ff);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 74, 173, 0.25);
  color: #fff;
  font-size: 32px;
}

/* TEXT STYLE */
.value-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 15px;
}

.value-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

/* Hover Effect */
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 74, 173, 0.18);
}

/* Center the last card if uneven */
.value-card:last-child {
  justify-self: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .icon-box {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .value-card {
    padding: 45px 25px;
  }
}



/* ===== FACILITIES SECTION ===== */
.facilities-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f2f3f5 0%, #e9ebee 100%);
  text-align: center;
}

.facilities-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.facilities-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #002f6d;
  margin-bottom: 10px;
}

.facilities-intro {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* === MAIN CONTENT SPLIT === */
.facility-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 100px;
  text-align: left;
}
.facility-image {
  padding-top: 90px;
}
.facility-image img {
  width: 100%;
  
  max-width: 300px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid transparent;
  background-clip: padding-box;
  transition: transform 0.5s ease;
}

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

/* RIGHT SIDE DETAILS */
.facility-details {
  flex: 1;
  min-width: 350px;
}

.facility-details h3 {
  color: #004aad;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.facility-details p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* FACILITY LIST – CLEANER STYLE */
.facility-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 12px 30px;
}

.facility-list li {
  background: #ffffff;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  color: #222;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #004aad;
  transition: all 0.3s ease;
}

.facility-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 74, 173, 0.15);
  border-left-color: #00aaff;
}

.facility-list i {
  color: #004aad;
  font-size: 1.1rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.facility-list span {
  color: #004aad;
  font-weight: 600;
}

/* For responsive alignment */
@media (max-width: 768px) {
  .facility-list {
    grid-template-columns: 1fr;
  }
}


/* === OTHER FACILITIES === */
.other-facilities {
  text-align: center;
}

.other-facilities h3 {
  font-size: 1.8rem;
  color: #004aad;
  margin-bottom: 40px;
  font-weight: 700;
}

.facility-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.highlight-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 40px;
  width: 220px;
  transition: all 0.4s ease;
}

.highlight-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 74, 173, 0.2);
}

.highlight-box i {
  font-size: 28px;
  color: #004aad;
  margin-bottom: 15px;
}

.highlight-box h4 {
  color: #004aad;
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.highlight-box p {
  color: #333;
  font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .facility-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .facility-list {
    columns: 1;
  }

  .facility-details {
    text-align: center;
  }

  .facility-image img {
    max-width: 100%;
  }

  .highlight-box {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .highlight-box {
    width: 100%;
  }
}

/* ===== WHY CHOOSE US SECTION ===== */
.choose-section {
  background: #f3f4f6;
  padding: 100px 0;
  text-align: center;
}

.choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.choose-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 10px;
}

.choose-intro {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* GRID WRAPPER */
.choose-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1100px;
  box-sizing: border-box;
}

/* CARD STYLING */
.choose-card {
  width: 33.33%;
  background: #fff;
  padding: 45px 30px;
  color: #333;
  text-align: center;
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #004aad, #00c6ff) 1;
  border-top: none;
  border-bottom: none;
  box-sizing: border-box;
}

/* Remove side borders for clean edges */
.card-1, .card-4 { border-left: none; }
.card-3, .card-6 { border-right: none; }

/* Remove top border only from first row */
.card-1, .card-2, .card-3 {
  border-top: none !important;
}

/* Add top border to the second row */
.card-4, .card-5, .card-6 {
  border-top: 2px solid transparent;
  border-image: linear-gradient(135deg, #004aad, #00c6ff) 1;
}

/* ICON STYLE */
.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #004aad, #00c6ff);
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  box-shadow: 0 5px 15px rgba(0, 74, 173, 0.2);
}

.choose-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 14px;
}

.choose-card p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: #333;
  margin: 0 auto;
  max-width: 290px;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 992px) {
  .choose-card {
    width: 50%;
    border-right: none;
  }

  .card-2, .card-5 { border-right: none; }

  /* Maintain top border visibility rules */
  .card-1, .card-2 { border-top: none; }
  .card-3, .card-4, .card-5, .card-6 {
    border-top: 2px solid transparent;
    border-image: linear-gradient(135deg, #004aad, #00c6ff) 1;
  }
}

@media (max-width: 600px) {
  .choose-card {
    width: 100%;
    border: none;
    border-top: 2px solid transparent;
    border-image: linear-gradient(135deg, #004aad, #00c6ff) 1;
  }
}

@keyframes chooseFadeUp {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes iconFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.choose-card {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  will-change: transform, opacity;
}

.choose-card.in-view {
  animation: chooseFadeUp .7s cubic-bezier(.2,.8,.2,1) forwards;
}

.choose-grid .choose-card:nth-child(1).in-view { animation-delay: 0.00s; }
.choose-grid .choose-card:nth-child(2).in-view { animation-delay: 0.08s; }
.choose-grid .choose-card:nth-child(3).in-view { animation-delay: 0.16s; }
.choose-grid .choose-card:nth-child(4).in-view { animation-delay: 0.24s; }
.choose-grid .choose-card:nth-child(5).in-view { animation-delay: 0.32s; }
.choose-grid .choose-card:nth-child(6).in-view { animation-delay: 0.40s; }

.icon-circle {
  animation: iconFloat 3.8s ease-in-out infinite alternate;
}

.choose-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 14px 30px rgba(0, 74, 173, 0.18);
}

@media (max-width: 992px) {
  .choose-grid .choose-card:nth-child(1).in-view { animation-delay: 0.00s; }
  .choose-grid .choose-card:nth-child(2).in-view { animation-delay: 0.08s; }
  .choose-grid .choose-card:nth-child(3).in-view { animation-delay: 0.16s; }
  .choose-grid .choose-card:nth-child(4).in-view { animation-delay: 0.24s; }
  .choose-grid .choose-card:nth-child(5).in-view { animation-delay: 0.32s; }
  .choose-grid .choose-card:nth-child(6).in-view { animation-delay: 0.40s; }
}

@media (max-width: 600px) {
  .icon-circle { animation-duration: 3.2s; }
}

/* ===== CONTACT US SECTION ===== */
.contact-section {
  background: linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
  padding: 100px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 10px;
}

.contact-intro {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.8px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #004aad;
  outline: none;
}

/* VERIFY CHECKBOX */
.form-verify {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: #333;
}

/* SUBMIT BUTTON */
.submit-btn {
  background: linear-gradient(135deg, #004aad, #00c6ff);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, #003b8f, #009ce0);
}

/* MAP */
.contact-map iframe {
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  height: 100%;
  min-height: 400px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    margin-top: 40px;
  }
}


/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(0,122,255,0.15), transparent 60%),
              radial-gradient(1000px 600px at 90% 20%, rgba(0,74,173,0.18), transparent 60%),
              linear-gradient(180deg, #0a1b3d 0%, #0d1f45 100%);
  color: #e8eef9;
  padding: 80px 0 40px;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* CTA */
.footer-cta {
  text-align: center;
  margin-bottom: 50px;
}
.footer-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.footer-cta p {
  color: #c9d7f0;
  margin-bottom: 18px;
}
.footer-newsletter {
  display: inline-flex;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  padding: 8px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.footer-newsletter input {
  border: none;
  outline: none;
  background: transparent;
  color: #e8eef9;
  padding: 12px 16px;
  width: 260px;
  font-size: 0.95rem;
}
.footer-newsletter input::placeholder { color: #9fb2d9; }
.footer-btn {
  background: linear-gradient(135deg, #004aad, #0078ff);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .3s ease;
}
.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 120, 255, 0.3);
  background: linear-gradient(135deg, #003b8f, #0066cc);
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.footer-brand i {
  background: linear-gradient(135deg, #00c6ff, #004aad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 20px;
}
.footer-col p { color: #c9d7f0; line-height: 1.7; }

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li a {
  display: inline-block;
  color: #c9d7f0;
  text-decoration: none;
  padding: 6px 0;
  transition: color .25s ease, transform .25s ease;
}
.footer-links li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.footer-contact li {
  color: #c9d7f0;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact i {
  color: #7fb4ff;
  margin-top: 4px;
}

/* Social */
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #004aad, #0078ff);
  box-shadow: 0 8px 18px rgba(0, 120, 255, 0.35);
}
/* Two-column layout for Quick Links inside footer */
.footer-links-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.footer-links-two .footer-links {
  margin: 0;
}

/* Tighten spacing for the Why Choose Us list in footer */
.site-footer .footer-col ul.footer-links li {
  list-style: none;
  padding: 6px 0;
}

/* On small screens, stack Quick Links columns */
@media (max-width: 576px) {
  .footer-links-two {
    grid-template-columns: 1fr;
  }
}
/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 22px;
  color: #b7c7e6;
  font-size: 0.95rem;
}
.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-legal a {
  color: #c9d7f0;
  text-decoration: none;
}
.footer-legal a:hover { color: #ffffff; }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #004aad, #0078ff);
  box-shadow: 0 10px 24px rgba(0, 120, 255, 0.35);
  display: none;
  z-index: 1001;
}
.back-to-top.show { display: inline-flex; align-items: center; justify-content: center; }

/* Responsive */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-newsletter { width: 100%; }
  .footer-newsletter input { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

 /* Human Verification Checkbox Styles */
    .human-verification {
      margin: 20px 0;
      padding: 12px;
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .checkbox-container {
      display: flex;
      align-items: center;
      position: relative;
      cursor: pointer;
      user-select: none;
      padding-left: 35px;
      margin: 0;
    }

    .checkbox-container input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }

    .checkmark {
      position: absolute;
      left: 0;
      height: 22px;
      width: 22px;
      background-color: #fff;
      border: 2px solid #adb5bd;
      border-radius: 4px;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .checkbox-container:hover input ~ .checkmark {
      border-color: #0d6efd;
    }

    .checkbox-container input:checked ~ .checkmark {
      background-color: #0d6efd;
      border-color: #0d6efd;
    }

    .checkmark svg {
      width: 14px;
      height: 14px;
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .checkbox-container input:checked ~ .checkmark svg {
      opacity: 1;
    }

    .checkbox-label {
      margin-left: 8px;
      color: #495057;
      font-size: 14px;
      font-weight: 400;
    }

    /* Disabled submit button style */
    #submitBtn:disabled {
      background-color: #e9ecef;
      cursor: not-allowed;
      opacity: 0.7;
    }
