:root {
  --topbar-bg: #ffdd00;      /* yellow */
  --header-bg: #ffcc00;      /* darker yellow */
  --accent-gold: #facc15;    /* bright yellow */
  --beige: #000000;          /* black text */
  --white: #000000;          /* black text */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Inter", sans-serif; color: #000; background: #ffdd00; }
.container { width: 100%; margin: 0 auto; padding: 0 16px; }

/* Topbar */
.topbar { background: var(--topbar-bg); color: #000; font-size: 14px; }
.topbar__inner { display: flex; justify-content: space-between; padding: 10px 0; }

@media (max-width: 768px) {
  .topbar { display: none; }
}

/* Header */
/* Header */
.header {
  background: #ffdd00;
  color: #000;
  position: sticky;   /* 👈 makes it stick */
  top: 0;             /* 👈 keeps it at the top */
  z-index: 1000;      /* 👈 stays above other content */
}

.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 17px 0; }

/* Logo */
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px; /* spacing between logo and text */
  text-decoration: none;
  color: var(--white);
}

.logo__img {
  width: 50px;
  height: auto;
 
  margin-left: 10px;
}

.logo__text {
  font-size: 14px;
  font-weight: 700;
  color: rgb(14, 8, 88);
  font-weight: 900;
  white-space: nowrap;
}

/* Nav */
.nav { flex: 1; }
.nav__list { list-style: none; gap: 24px; align-items: center; justify-content: center; display: none; }
.nav__list a { color: #000; text-decoration: none; font-weight: 600; }
.nav__list a:hover { text-decoration: underline; }

/* Show nav on desktop */
@media (min-width: 769px) {
  .nav__list { display: flex; }
}

/* Search */
.nav__search form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.nav__search input {
  border: none;
  padding: 6px 10px;
  outline: none;
  border: 2px solid #000;
  border-radius: 4px;
}
.nav__search button {
  background: var(--header-bg);
  border: none;
  color: #000;
  padding: 6px 10px;
  cursor: pointer;
}

/* Social links */
.nav__social a {
  color: #000;
  margin-left: 8px;
  font-size: 18px;
  text-decoration: none;
}




/* Mobile Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 221, 0, 0.98);
  z-index: 1000;
  padding: 50px 20px;
  text-align: center;
}

.nav-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-overlay li {
  margin: 20px 0;
}

.nav-overlay a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  display: block;
  padding: 10px;
}

.nav-overlay__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  cursor: pointer;
  color: #333;
}

/* FAQ Styles */
.faq__answer {
  display: none;
  padding: 15px;
  background: #f9f9f9;
  border-top: 1px solid #ddd;
}

.faq__question.active {
  background: #1E90FF;
  color: white;
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 15px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  margin: 5px 0;
}

/* Flip Card Styles */
.pricing__inner {
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  height: 100%;
}

.pricing__inner.flipped {
  transform: rotateY(180deg);
}

.pricing__front, .pricing__back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  top: 0;
  left: 0;
}

.pricing__back {
  transform: rotateY(180deg);
}

/* Image Slider Styles */
.hero__image, .departments__img {
  display: none;
  width: 100%;
  height: auto;
}

.hero__image.active, .departments__img.active {
  display: block;
}





/* Mobile nav overlay with slide-down animation */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 221, 0, 0.95); /* yellow overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Show overlay */
.nav-overlay.active {
  transform: translateY(0);
  opacity: 1;
}

/* List styling */
.nav-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

/* Each list item */
.nav-overlay ul li {
  margin: 16px 0;
}

/* Links */
.nav-overlay ul li a {
  display: flex;
  align-items: center;
  justify-content: center; /* center the text and icon */
  gap: 12px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  background: #ffffff; /* white background */
  padding: 12px 24px;
  border-radius: 12px;
  width: 80%; /* make links a nice block */
  max-width: 400px;
  margin: 0 auto; /* center horizontally */
  transition: all 0.3s ease;
}

/* Hover effect */
.nav-overlay ul li a:hover {
  background: #ffd700; /* gold hover */
  color: #000;
  transform: translateY(-2px);
}

/* Icon inside link */
.nav-overlay ul li a i {
  font-size: 1.6rem;
}

/* Close button */
.nav-overlay__close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
}



@media (max-width: 768px) {
  .nav__toggle {
    display: block !important; /* show hamburger menu */
  }
}

.nav__toggle {
  display: none; /* hidden by default on desktop */
  background: none;
  border: none;
  font-size: 24px;
  color: #000;
  cursor: pointer;
}








/* Buttons - common styles */
.btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none; /* ✅ remove underline */
  display: inline-block; /* ensures clickable area covers padding */
}

/* Primary buttons (blue) */
.btn--primary {
  background: #007bff; /* blue */
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn--primary:hover {
  background: #0056b3; /* darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Apply buttons with gradient and hover glow */
.apply-btn, .btn--apply {
  background: linear-gradient(135deg, #e63946, #ff4d6d); /* red gradient */
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 28px;
  display: inline-block;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.979);
}

/* Hover effect */
.apply-btn:hover, .btn--apply:hover {
  background: linear-gradient(135deg, #c5303f, #ff2b50); /* darker gradient */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229,57,70,0.6); /* subtle red glow */
}

/* Outline buttons */
.btn--outline {
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  color: #fff;
  text-decoration: none; /* remove underline */
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}




/* Hero Section with Blue Background */
.hero { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  min-height: 400px; 
  position: relative;
  background: #1e3a8a; /* deep blue background for the whole hero */
  color: #fff;           /* text color default to white */
}

/* Left Column */
.hero__left { 
  background: rgba(255,255,255,0.05); /* subtle transparent overlay to distinguish */
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center;        
  text-align: center;         
  padding: 64px 24px;
  gap: 16px;
  border-radius: 1px; /* optional rounded corners */
}

/* Headline */
.hero__headline { 
  font-family: "Merriweather", serif; 
  font-size: clamp(36px, 6vw, 64px);  
  line-height: 1.1;          
  margin: 0;                  
  color: #fff; /* white headline for contrast */
}

.hero__line--green { color: #facc15; } /* gold accent */
.hero__line--gold { color: #ffffff; }  /* white accent */

.hero__decor { 
  width: 80px; 
  height: 6px; 
  background: #fea100; /* bright accent for decor line */
  border-radius: 3px;
  margin: 12px 0;              
}

.hero__sub { 
  color: #f3f4f6; /* light gray/white for subtext */
  font-size: 1.125rem;   
  line-height: 1.5;            
  max-width: 520px;
  margin: 12px 0;              
}

.hero__controls { 
  display: flex; 
  gap: 16px; 
  align-items: center; 
  justify-content: center;    
  flex-wrap: wrap;            
  margin-top: 16px;              
}



/* Mobile view adjustments for hero */
@media (max-width: 768px) {
  .hero__left {
    padding: 32px 16px; /* reduce overall padding */
  }

  .hero__headline {
    font-size:80px; /* slightly larger on small screens */
    margin-top: -15px;                   /* reduce top margin */
  }

  .hero__sub {
    font-size: 3.25rem; /* larger subtext for readability */
    margin-top: -20px;    /* reduce top spacing */
    margin-bottom: 10px;
    
  }

  .hero__controls {
    margin-top: 12px; /* reduce spacing above buttons */
    flex-direction: column;
    gap: 12px;
  }
}



/* Hero Buttons */
.hero__controls .btn {
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none; /* remove underline */
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

/* Primary Hero Button - Yellow */
.hero__controls .btn--primary {
  background: #facc15;  /* yellow */
  color: #1e3a8a;       /* dark text for contrast */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero__controls .btn--primary:hover {
  background: #fbbf24;  /* darker yellow on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Secondary Hero Button - White */
.hero__controls .btn--secondary {
  background: #ffffff;  /* white */
  color: #1e3a8a;       /* dark blue text */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero__controls .btn--secondary:hover {
  background: #f3f4f6;  /* light gray hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}









.hero__right { 
  position: relative; 
  overflow: hidden; 
  border-radius: 1px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.975);
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease, transform 1.2s ease;
  z-index: 0;
  border-radius: inherit;
}

.hero__image.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.05);
}




/* Animations */
@keyframes flyIn {
  0% { transform: translateX(100%) rotate(10deg) scale(1.2); opacity: 0; }
  100% { transform: translateX(0) rotate(0) scale(1); opacity: 1; }
}

@keyframes zoomIn {
  0% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes tiltIn {
  0% { transform: rotate(-20deg) translateY(-100%); opacity: 0; }
  100% { transform: rotate(0) translateY(0); opacity: 1; }
}

.hero__image.animate-fly { animation: flyIn 1s ease forwards; }
.hero__image.animate-zoom { animation: zoomIn 1s ease forwards; }
.hero__image.animate-fade { animation: fadeIn 1s ease forwards; }
.hero__image.animate-tilt { animation: tiltIn 1s ease forwards; }



/* Responsive */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero__left, 
  .hero__right { min-height: 400px; }

  .hero__left {
    padding: 24px 0;   /* ✅ only top & bottom padding on mobile too */
  }

  .hero__headline { font-size: 36px; }   /* smaller headline */
  .hero__sub { font-size: 16px;  padding: 10px;}        /* smaller paragraph */
}


/* Hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--white);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav__toggle { 
    display: block; 
    position: absolute; 
    right: 16px; 
    top: 50%; 
    transform: translateY(-50%); 
  }
}

.nav__search form { width: 100%; }

  .hero { grid-template-columns: 1fr; }
  .hero__left, .hero__right { min-height: 400px; }

  .hero__headline { font-size: 36px; }   /* smaller headline on mobile */
  .hero__sub { font-size: 16px; }        /* smaller paragraph on mobile */
}




/* Administration Section */
.admin {
  background: #f3f4f6; /* slightly softer gray */
  padding: 80px 20px;
  text-align: center;
}

.admin__title {
  font-family: "Merriweather", serif;
  font-size: clamp(28px, 5vw, 36px); /* responsive */
  color: var(--header-bg);
  margin-bottom: 50px;
  position: relative;
}

.admin__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Grid */
/* Grid */
.admin__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* increased min-width from 250px → 300px */
  gap: 22px;
}

/* Card */
.admin__card {
  background: #ffffff;
  border-radius: 16px; 
  border: 2px soloid rgb(0, 0, 0);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.986);
  padding: 24px; /* slightly more padding for larger card feel */
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.admin__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.998);
}

/* Image */
.admin__img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* Role and Name */
.admin__role {
  font-size: 22px;
  font-weight: 700;
  color: var(--header-bg);
  margin-bottom: 6px;
}

.admin__name {
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

/* Description */
.admin__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
 
}

.admin__desc .admin__full {
  display: none; /* can be toggled with JS */
}

/* Read More Button */
.read-more-btn {
  background: var(--header-bg);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  margin-top: 12px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: var(--accent-gold);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .admin__grid {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .admin__grid {
    grid-template-columns: 1fr;
  }
  .admin__title {
    font-size: 28px;
  }
}







/* Departments Section */
.departments {
  background: #1c15a4e6;
  padding: 60px 20px;
  text-align: center;
}

.departments__title {
  font-family: "Merriweather", serif;
  font-size: 36px;
  color: var(--header-bg);
  margin-bottom: 40px;
  color: white;
}

.departments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.departments__card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.999);
  text-align: left;
  transition: transform 0.3s ease;
}


.departments__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}


.card-slider {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 16px;
}

.levels .card-slider {
  height: 300px;
}

.card-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.card-slider img.active {
  opacity: 1;
}


.departments__card:hover {
  transform: translateY(-5px);
}

.departments__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--header-bg);
  margin-bottom: 16px;
}

.departments__list {
  list-style: disc inside;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Levels Section */
.levels {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.986);
  text-align: left;
}

.levels__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--header-bg);
  margin-bottom: 12px;
}

.levels__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.levels__full {
  display: none;
}

.read-more-btn {
  background: var(--header-bg);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  margin-top: 12px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background: var(--accent-gold);
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .departments__grid {
    grid-template-columns: 1fr;
  }
  .departments__title {
    font-size: 28px;
  }

  
}









/* FAQ */
.faq {
  background: #f9fafb;
  padding: 60px 20px;
}

.faq__title {
  font-family: "Merriweather", serif;
  font-size: 36px;
  text-align: center;
  color: var(--header-bg);
  margin-bottom: 40px;
}

.faq__accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
  color: #222;
  transition: background 0.3s;
}

.faq__question:hover {
  background: #eef3ff;
}

.faq__answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 16px;
  color: #070707;
  line-height: 1.5;
}

.faq__item.active .faq__answer {
  display: block;
}

/* Pricing Flip Cards */
.pricing {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.pricing__title {
  font-family: "Merriweather", serif;
  font-size: 36px;
  color: var(--header-bg);
  margin-bottom: 40px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing__card {
  perspective: 1000px; /* 3D effect */
}

.pricing__inner {
  position: relative;
  width: 100%;
  height: 360px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.pricing__card.flipped .pricing__inner {
  transform: rotateY(180deg);
}

.pricing__front, .pricing__back {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.989);
  padding: 30px;
  backface-visibility: hidden;
  background: #ffffff;
}

.pricing__front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing__back {
  transform: rotateY(180deg);
  text-align: left;
}

.pricing__plan {
  font-size: 24px;
  font-weight: 700;
  color: var(--header-bg);
  margin-bottom: 10px;
}

.pricing__duration {
  color: #060505;
  margin-bottom: 20px;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing__features li {
  margin-bottom: 10px;
  font-size: 16px;
}

.pricing__back h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--header-bg);
}

.pricing__back ul {
  padding-left: 20px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .pricing__title {
    font-size: 28px;
  }
}







/* Contact Section */
.contact {
  background: #f9fafb;
  padding: 60px 20px;
}

.contact__title {
  font-family: "Merriweather", serif;
  font-size: 36px;
  color: var(--header-bg);
  text-align: center;
  margin-bottom: 40px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact__info h3,
.contact__form h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--header-bg);
}

.contact__info p {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

.contact__map {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.977);
}

.contact__form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form input,
.contact__form textarea {
  padding: 12px;
  border: 3px solid #000;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--header-bg);
  box-shadow: 0 0 4px rgba(1, 1, 1, 0.989);
}

.contact__form button {
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .contact__title {
    font-size: 28px;
  }
}







/* Footer */
.footer {
  background: #0a1a3c;
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffdd00;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer__logo img {
  width: 50px;
  height: auto;
}

.footer__col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffdd00;
}

.footer__col ul {
  list-style: none;
  padding: 0;
}

.footer__col ul li {
  margin-bottom: 8px;
}

.footer__col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__col ul li a:hover {
  color: #ffdd00;
}

.footer__col p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
}

.footer__social a {
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
  transition: color 0.3s;
}

.footer__social a:hover {
  color: #ffdd00;
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.footer__bottom p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__logo {
    justify-content: center;
  }
  .footer__social {
    justify-content: center;
  }
}





/* Sticky Apply Button */
.apply-btn {
  position: fixed;
  bottom: 20px;   /* distance from bottom */
  right: 20px;    /* distance from right */
  background: var(--header-bg, #b22222); /* fallback color if var not defined */
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 1000; /* make sure it stays on top */
}

.apply-btn:hover {
  background: var(--accent-gold, #ffd700);
  color: #000;
  transform: scale(1.05);
}














/* Welcome Modal */
.welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 19, 21, 0.925); /* deep blue with slight transparency */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.welcome-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Animate modal content */
.welcome-modal__content {
  background: #ffffff;
  color: #1e3a8a;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 600px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.977);
  transform: translateY(-50px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.welcome-modal.active .welcome-modal__content {
  transform: translateY(0);
  opacity: 1;
}

/* Closing animation */
.welcome-modal.closing {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.welcome-modal.closing .welcome-modal__content {
  transform: translateY(-50px);
  opacity: 0;
}

/* Close Button */
.welcome-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #1e3a8a;
  cursor: pointer;
}

/* Heading & Paragraphs */
.welcome-modal h2 {
  font-family: "Merriweather", serif;
  font-size: clamp(24px, 5vw, 32px);
  margin-bottom: 16px;
}

.welcome-modal p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* CTA Button */
#welcome-modal .btn--primary {
  background: #facc15; /* gold button */
  color: #1e3a8a;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

#welcome-modal .btn--primary:hover {
  background: #f59e0b;
  color: #fff;
}

/* Payment Modal Loading Spinner */
.modal-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
}

.spinner {
  border: 4px solid rgba(255, 221, 0, 0.3);
  border-top: 4px solid #ffdd00;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal-loader p {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}
