/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  background-color: #ffffff;
  color: #111;
  font-family: "Montserrat", system-ui, sans-serif;
  overflow-x: hidden;
}
/* Disable text selection across the whole site */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* EXCEPTIONS: Allow selection in forms AND the contact section */
input, 
textarea, 
select, 
#contact {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* Hide scrollbar */
::-webkit-scrollbar {
  width: 0px;
}

:root {
  --fire: #ff6a00;
  --dark-bg: #111;
  --text-gray: #444;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

#loader-text {
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
}

#loader-text .fire {
  color: var(--fire);
}

/* ===== HERO SECTION ===== */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* ===== NAVBAR (Inside Hero) ===== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 32px 8vw;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 601px) and (max-width: 1024px) {
  .navbar {
    padding: 24px 6vw; /* Less padding than desktop */
  }

  .nav-links {
    gap: 12px; /* Tighter nav links */
  }

  .nav-links a {
    padding: 8px 16px; /* Smaller nav buttons */
    font-size: 12px;
  }
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: transparent;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  transform: translateY(-2px);
}
/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  position: relative;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Hamburger Animation when Active */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 600px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 16px;
    padding: 15px 30px;
    width: 100%;
    text-align: center;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation for links */
  .nav-links.active a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active a:nth-child(2) {
    transition-delay: 0.15s;
  }
  .nav-links.active a:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-links.active a:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links a:hover {
    background: rgba(255, 106, 0, 0.2);
    transform: translateX(5px);
  }

  /* Navbar container adjustment */
  .navbar {
    padding: 20px 6vw;
  }
}
/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(40px, 8vw, 90px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-content p {
  font-size: clamp(16px, 2vw, 24px);
  opacity: 0;
  transform: translateY(20px);
}

/* ===== SECTIONS GLOBAL ===== */
.about,
.why-us,
.programs,
.location,
.contact,
.footer {
  position: relative;
  z-index: 20;
  background: #ffffff;
}

.about,
.why-us,
.location,
.contact {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 601px) and (max-width: 1024px) {
  .about,
  .why-us,
  .location,
  .contact {
    min-height: auto; /* Remove forced full height on tablet */
  }
}

.about {
  margin-top: 100vh;
}

.about-inner,
.why-us-inner,
.location-inner,
.contact-inner {
  padding: 0 8vw;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  transform: translateY(60px);
}

/* ===== SHARED TYPOGRAPHY ===== */
.about-eyebrow {
  color: var(--fire);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
  display: block;
}

.about-title,
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  color: #111;
}

.iso-badge {
  display: inline-block;
  background: #f4f4f4;
  color: #111;
  padding: 10px 20px;
  border-left: 4px solid var(--fire);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.about-main-text {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: #444;
  max-width: 900px;
}
@media (min-width: 601px) and (max-width: 1024px) {
  .about-main-text {
    max-width: 100%; /* Use full width on tablet instead of constrained */
  }
}
/* ===== WHY US ===== */
.why-us {
  background: #f9f9f9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
/* Update existing feature-card to center text */
.feature-card {
  text-align: center; /* Centers icons and text */
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: none; /* Matches the clean look in image */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Optional: Soft shadow for depth */
}

/* Style for the orange icons */
.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* If you use black icons, this CSS filter can turn them orange (#ff6a00) */
  filter: invert(48%) sepia(96%) saturate(2347%) hue-rotate(1deg)
    brightness(103%) contrast(105%);
}

.feature-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-card p {
  color: #555;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TRAINING PROGRAMS (STACKING CARDS) ===== */
/* Programs Section - New Grid Layout */
#programs {
  background: #111;
  color: #fff;
  padding: 100px 0;
  position: relative;
  z-index: 20;
}

.programs-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8vw;
}

.programs-header {
  text-align: center;
  margin-bottom: 60px;
}

.programs-header .about-eyebrow {
  color: var(--fire);
  display: block;
  margin-bottom: 15px;
  font-size: 12px;
  letter-spacing: 0.3em;
}

.programs-header .section-title {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 10px;
  font-weight: 800;
}

.programs-subtitle {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Grid Layout */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

/* Course Card Styling */
.course-card-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.course-card-item.hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.course-card-item.revealed {
  display: block;
  animation: cardReveal 0.6s forwards;
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.course-card-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 0, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Card Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.category-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid;
}

.category-badge.diploma {
  color: #ff6a00;
  border-color: rgba(255, 106, 0, 0.3);
  background: rgba(255, 106, 0, 0.1);
}

.category-badge.pg {
  color: #4a9eff;
  border-color: rgba(74, 158, 255, 0.3);
  background: rgba(74, 158, 255, 0.1);
}

.category-badge.advance {
  color: #9b59b6;
  border-color: rgba(155, 89, 182, 0.3);
  background: rgba(155, 89, 182, 0.1);
}

.category-badge.degree {
  color: #2ecc71;
  border-color: rgba(46, 204, 113, 0.3);
  background: rgba(46, 204, 113, 0.1);
}

.category-badge.certificate {
  color: #f1c40f;
  border-color: rgba(241, 196, 15, 0.3);
  background: rgba(241, 196, 15, 0.1);
}

.duration-badge {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Card Body */
.course-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 15px;
  min-height: 46px;
  display: flex;
  align-items: center;
}

.course-code {
  font-family: "Space Grotesk", monospace;
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.course-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #aaa;
}

.meta-icon {
  width: 16px;
  height: 16px;
  color: var(--fire);
  flex-shrink: 0;
}

/* Hover Accent Line */
.course-card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.course-card-item:hover::before {
  transform: scaleX(1);
}

/* Load More Button */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.load-more-btn {
  background: transparent;
  border: 2px solid rgba(255, 106, 0, 0.5);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.load-more-btn:hover {
  background: var(--fire);
  border-color: var(--fire);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

.load-more-btn.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.load-more-btn.active:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.btn-count {
  background: rgba(255, 106, 0, 0.2);
  color: var(--fire);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.load-more-btn.active .btn-arrow {
  transform: rotate(180deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .course-title {
    font-size: 16px;
    min-height: auto;
  }

  .course-card-item {
    padding: 24px;
  }
}

/* ===== FREE BENEFITS SECTION ===== */
.free-benefits {
  background: #111111;
  color: #fff;
  padding: 120px 0;
  position: relative;
  z-index: 20;
}

.free-benefits-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8vw;
  text-align: center;
}

.free-benefits .section-title {
  color: #fff;
  margin-bottom: 10px;
}

.free-benefits-subtitle {
  color: #888;
  max-width: 600px;
  margin: 0 auto 70px;
  font-size: 16px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px;
  text-align: left;
  transition: all 0.35s ease;
}

.benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Highlight card for FREE English + Computer */
.benefit-card.highlight {
  border-color: rgba(255, 106, 0, 0.6);
  background: linear-gradient(
    135deg,
    rgba(255, 106, 0, 0.15),
    rgba(255, 255, 255, 0.05)
  );
}

.free-note {
  margin-top: 70px;
  font-size: 15px;
  color: #ccc;
  letter-spacing: 0.04em;
}
/* ===== IMAGE GALLERY (CAROUSEL) ===== */
.gallery-premium {
  width: 100%;
  min-height: 100vh;
  align-items: center;
}/* ===== PREMIUM GALLERY SECTION ===== */
.gallery-premium {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 0; /* Vertical spacing for desktop */
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  z-index: 25;
}

.gallery-header {
  text-align: center;
  padding: 0 8vw;
  margin-bottom: 30px; /* Tight gap to carousel */
}

.gallery-header .section-title {
  font-size: clamp(28px, 5vw, 48px);
  margin-top: 10px;
  color: #000000;
}

.gallery-subtitle {
  max-width: 500px;
  margin: 10px auto 0;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #888;
  line-height: 1.6;
}

.carousel-main {
  width: 100%;
  cursor: grab;
  padding: 20px 0;
  touch-action: pan-y;
}

.carousel-main.is-dragging {
  cursor: grabbing;
}

.carousel-track {
  white-space: nowrap;
  display: inline-block;
  will-change: transform;
}

.carousel-node {
  display: inline-block;
  width: 38vw; /* Desktop width */
  padding: 0 1.5vw;
  user-select: none;
  position: relative;
}

.carousel-node figure {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
  border-radius: 12px;
  background: #222;
  /* border: 1px solid rgba(255, 255, 255, 0.05); */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border:none;
}

.carousel-node img {
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform-origin: center;
}

.carousel-node h2 {
  position: absolute;
  bottom: 2vw;
  left: 3.5vw;
  z-index: 2;
  color: #ffffff;
  font-size: 3.5vw;
  font-weight: 800;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}

.carousel-stats {
  position: absolute;
  bottom: 8vh;
  left: 8vw;
  width: 20vw;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.carousel-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ff6a00;
  transform: scaleX(0);
  transform-origin: 0% 0%;
}

/* Tablet Optimizations (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .gallery-premium {
    min-height: auto;
    padding: 80px 0;
  }
  .carousel-node {
    width: 58.5vw; 
    padding: 0 3vw; /* Increased spacing between nodes */
  }
  .carousel-node h2 {
    font-size: 5vw;
  }
  .carousel-stats {
    width: 40vw;
    bottom: 6vh;
    left: 30vw; /* Centered progress bar */
  }
}

/* Mobile Optimizations (0px - 600px) */
@media (max-width: 600px) {
  .gallery-premium {
    min-height: auto;
    padding: 60px 0;
  }
  .gallery-header {
    margin-bottom: 20px;
    padding: 0 6vw;
  }
  .carousel-node {
    width: 68vw; /* Almost full width for impact */
    padding: 0 3vw;
  }
  .carousel-node h2 {
    font-size: 5vw;
    bottom: 5vw;
    left: 6vw;
  }
  .carousel-stats {
    width: 60vw;
    bottom: 5vh;
    left: 20vw; /* Centered progress bar */
  }
}


/* ===== LOCATION ===== */
.location {
  background: #f9f9f9;
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  height: 100%;
}
.location-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 24px 0 6px 0;
}
.location-content p,
.location-content a {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  text-decoration: none;
  display: block;
}
.location-content a:hover {
  color: var(--fire);
}
.location-highlight {
  font-weight: 700;
  color: #333;
  font-size: 20px;
  margin-top: 15px;
  display: block;
}

.location-map-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-shape {
  width: 100%;
  max-width: 55vh;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-91deg);
  overflow: hidden;
  border: 4px solid #fff;
  position: relative;
}
.map-shape iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%) rotate(91deg);
  border: 0;
  filter: grayscale(10%);
}
.map-marker-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(91deg);
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 900px) {
  .location-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .map-shape {
    margin: 0 auto;
    max-width: 40vh;
  }
}

/* ===== CONTACT ===== */
.contact {
  background: #111;
  color: #fff;
  text-align: center;
}
.contact-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
}
.contact-text {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 600px;
  margin: 0 auto 40px auto;
}
.contact-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--fire);
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-button:hover {
  background: #e65f00;
  transform: translateY(-2px);
}
.contact-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  text-align: left;
  align-items: center;
}

.contact-info .contact-text {
  margin-left: 0; /* Override the previous center alignment */
}

/* Form Container Style */
.contact-form-container {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Input Styling */
.enquiry-form .input-group {
  margin-bottom: 20px;
  position: relative;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #888;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--fire);
  background: rgba(255, 255, 255, 0.08);
}

.enquiry-form select option {
  background: #111;
  color: #fff;
}

/* Button Styling */
.enquiry-form .contact-button {
  width: 100%;
  cursor: pointer;
  border: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.enquiry-form .contact-button:hover:not(:disabled) {
  transform: translateY(-3px);
  background: #e65f00; /* Darker orange */
}

/* Loading Spinner */
.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 10px;
}

.contact-button.loading .spinner {
  display: inline-block;
}

.contact-button.loading .btn-text {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustment */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-info .contact-text {
    margin: 0 auto 40px auto;
  }
}

/* Style for fields with errors */
.input-group.error input,
.input-group.error select,
.input-group.error textarea {
  border-color: #ff4444 !important;
  background: rgba(255, 68, 68, 0.05);
}

/* Error message text */
.error-msg {
  color: #ff4444;
  font-size: 11px;
  margin-top: 5px;
  display: block;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Success Message Styles */
.success-message {
  text-align: center;
  padding: 40px;
  animation: fadeIn 0.8s ease;
}

.success-icon {
  font-size: 50px;
  color: var(--fire);
  margin-bottom: 20px;
}

.success-message h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

.success-message p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.reset-form-btn {
  background: transparent;
  border: 2px solid var(--fire);
  color: var(--fire);
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: all 0.3s ease;
}

.reset-form-btn:hover {
  background: var(--fire);
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  background: #000;
  color: #666;
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 30;
  font-size: 13px;
}
/* =========================
   MODERN BLACK & WHITE FOOTER
========================= */

.site-footer {
  background: #000;
  color: #fff;
  padding: 120px 8vw 50px;
  position: relative;
  z-index: 40;
}

.footer-inner {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 15px;
  color: #bdbdbd;
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-muted {
  font-size: 15px;
  color: #bdbdbd;
  line-height: 1.8;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 90px;
  padding-top: 35px;
  /* border-top: 1px solid #222; */
  text-align: center;
}
.footer-copyright {
  font-size: 12px;
  color: #666; /* Subdued color */
  margin-top: 15px;
  letter-spacing: 0.05em;
  text-transform: none; /* Keep it sentence case */
}
.footer-tagline {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #888;
}

.site-footer a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #ffffff;
}
.about,
.why-us,
.programs,
.free-benefits,
.location,
.contact,
.site-footer {
  font-family: "Montserrat", system-ui, sans-serif;
}

/* =========================
   WHY CHOOSE US – RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 1024px) {
  .why-us-inner {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature-card {
    padding: 36px 24px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .feature-card h4 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }
}
/* =========================
   CONTACT – RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-inner {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .contact-info .contact-text {
    margin: 0 auto 30px auto;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .contact-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .contact-text {
    font-size: 15px;
  }

  .contact-form-container {
    padding: 24px;
  }

  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea {
    font-size: 14px;
  }

  .contact-button {
    padding: 16px 0;
    font-size: 14px;
  }
}
/* =========================
   FOOTER – RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .site-footer {
    padding: 90px 6vw 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col ul li {
    font-size: 14px;
  }

  .footer-tagline {
    font-size: 13px;
  }
}
/* =========================
   MOBILE SECTION PADDING FIX
   ========================= */

@media (max-width: 600px) {
  .about-inner,
  .why-us-inner,
  .contact-inner,
  .location-inner {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  /* Extra safety for text containers */
  .about-main-text,
  .contact-text,
  .location-content {
    padding-left: 0;
    padding-right: 0;
  }
}
/* TABLET: 601px - 1024px - Tighter padding than desktop, less than mobile */
@media (min-width: 601px) and (max-width: 1024px) {
  section.about .about-inner,
  section.why-us .why-us-inner,
  section.contact .contact-inner,
  section.location .location-inner {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  /* Location specific - reduce gap */
  .location-inner {
    gap: 40px;
  }

  /* Map shape smaller on tablet */
  .map-shape {
    max-width: 45vh;
  }
}
@media (max-width: 600px) {
  section.about .about-inner,
  section.why-us .why-us-inner,
  section.contact .contact-inner,
  section.location .location-inner {
    padding-top: 27vw;
    padding-bottom: 27vw;
    padding-left: 6vw !important;
    padding-right: 6vw !important;
  }
}
/* Fix dropdown styling for dark theme */
.enquiry-form select {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

/* Remove default arrow in IE */
.enquiry-form select::-ms-expand {
  display: none;
}

/* Style the dropdown options and optgroups */
.enquiry-form select option,
.enquiry-form select optgroup {
  background-color: #111;
  color: #fff;
}

/* Optgroup labels styling */
.enquiry-form select optgroup {
  background-color: #1a1a1a;
  color: #ff6a00;
  font-weight: 700;
  font-style: normal;
  padding: 10px 0;
}

/* Individual options */
.enquiry-form select option {
  background-color: #111;
  color: #fff;
  padding: 12px 20px;
}

/* Hover effect for options */
.enquiry-form select option:hover,
.enquiry-form select option:focus,
.enquiry-form select option:checked {
  background-color: #ff6a00;
  color: #fff;
}

/* Firefox specific fix */
@-moz-document url-prefix() {
  .enquiry-form select {
    background-color: #111;
    color: #fff;
  }

  .enquiry-form select option,
  .enquiry-form select optgroup {
    background-color: #111;
    color: #fff;
  }
}
/* =========================
 