﻿:root {
  --navy: #0a1628;
  --dark-blue: #0d2137;
  --mid-blue: #1a3a5c;
  --saffron: #ff6b00;
  --gold: #d4a017;
  --red: #c0392b;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --text-dark: #1a1a2e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--navy) !important;
  padding: 10px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.navbar.scrolled {
  padding: 6px 0;
  background: rgba(10, 22, 40, 0.98) !important;
}

.navbar-brand img {
  height: 55px;
  filter: brightness(1.1);
}
.navbar-brand span {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.navbar-brand span small {
  display: block;
  font-size: 0.65rem;
  color: var(--saffron);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 8px 12px !important;
  transition: color 0.3s;
  text-transform: uppercase;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--saffron) !important;
}
.navbar-toggler {
  border-color: var(--saffron);
}
.navbar-toggler-icon {
  filter: invert(1);
}

.btn-callnow {
  background: var(--saffron);
  color: white !important;
  border-radius: 4px;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border: 2px solid var(--saffron);
}
.btn-callnow:hover {
  background: transparent;
  color: var(--saffron) !important;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-item {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}
.slide-1 {
  background-image: url("../images/slider-1.jpg");
}
.slide-2 {
  background-image: url("../images/slider-2.jpg");
}
.slide-3 {
  background-image: url("../images/slider-3.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(13, 33, 55, 0.75) 60%,
    rgba(255, 107, 0, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--saffron);
  color: white;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}
.hero-title span {
  color: var(--saffron);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-hero-primary {
  background: var(--saffron);
  color: white;
  border: 2px solid var(--saffron);
  padding: 12px 30px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin-right: 12px;
  margin-bottom: 10px;
}
.btn-hero-primary:hover {
  background: transparent;
  color: var(--saffron);
}

.btn-hero-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 12px 30px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin-bottom: 10px;
}
.btn-hero-outline:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
}
.carousel-indicators button.active {
  background: var(--saffron);
}

/* ===== SECTION TITLES ===== */
.section-title-wrap {
  margin-bottom: 50px;
}
.section-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.light {
  color: white;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: 0 auto 16px;
}
.section-divider.left {
  margin-left: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--saffron), #e85d00);
  padding: 30px 0;
}
.stat-item {
  text-align: center;
  color: white;
  padding: 10px;
}
.stat-number {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.stat-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== ABOUT ===== */
.about-section {
  padding: 90px 0;
  background: var(--white);
}
.about-img-wrap {
  position: relative;
  padding-bottom: 20px;
  padding-right: 20px;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--saffron);
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  min-width: 110px;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}
.about-img-badge strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-img-badge span {
  font-size: 0.75rem;
  opacity: 0.9;
}

.about-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.mission-card {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid var(--saffron);
  margin-top: 20px;
}
.mission-card h5 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.mission-card p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* ===== COURSES ===== */
.courses-section {
  padding: 90px 0;
  background: var(--light-gray);
}
.course-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
.course-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.course-card:hover .course-img img {
  transform: scale(1.08);
}
.course-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--saffron);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.course-body {
  padding: 20px;
}
.course-body h5 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.course-body p {
  font-size: 0.86rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}
.btn-course-call {
  background: var(--navy);
  color: white;
  border: none;
  padding: 8px 16px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 6px;
}
.btn-course-call:hover {
  background: var(--saffron);
  color: white;
}
.btn-course-enquire {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
  padding: 7px 16px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 6px;
}
.btn-course-enquire:hover {
  background: var(--saffron);
  color: white;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--dark-blue) 50%,
    #0f2a45 100%
  );
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.05);
  pointer-events: none;
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--saffron);
  transition: width 0.35s;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}
.why-card:hover::after {
  width: 100%;
}
.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--saffron), #e85d00);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}
.why-card h5 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== DIRECTOR ===== */
.director-section {
  padding: 90px 0;
  background: var(--light-gray);
}
.director-img-wrap {
  position: relative;
}
.director-img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.director-rank-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: var(--navy);
  color: white;
  padding: 10px 18px;
  border-radius: 6px 0 0 6px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.achievement-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 16px;
  margin: 6px;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.achievement-badge i {
  color: var(--saffron);
}
.course-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #555;
}
.course-list-item i {
  color: var(--saffron);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== ELIGIBILITY ===== */
.eligibility-section {
  padding: 90px 0;
  background: var(--white);
}
.elig-accordion-item {
  background: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid #e8eaf0;
  transition: box-shadow 0.3s;
}
.elig-accordion-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.elig-accordion-btn {
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: background 0.3s;
  text-align: left;
}
.elig-accordion-btn:hover,
.elig-accordion-btn.open {
  background: var(--saffron);
}
.elig-accordion-btn .elig-acc-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.elig-accordion-btn.open .elig-acc-icon {
  transform: rotate(180deg);
}
.elig-accordion-btn .elig-acc-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.elig-accordion-body {
  display: none;
  padding: 24px;
  background: white;
}
.elig-accordion-body.open {
  display: block;
}
.elig-posts {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--light-gray);
  border-radius: 6px;
  border-left: 3px solid var(--saffron);
}
.elig-posts strong {
  color: var(--navy);
}
.elig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.elig-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--light-gray);
  border-radius: 8px;
  font-size: 0.88rem;
  color: #444;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
.elig-item:hover {
  border-left-color: var(--saffron);
}
.elig-item i {
  color: var(--saffron);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.elig-item strong {
  color: var(--navy);
  display: block;
  font-size: 0.8rem;
  margin-bottom: 2px;
}
.elig-apply-btn {
  margin-top: 18px;
  background: var(--saffron);
  color: white;
  border: none;
  padding: 10px 24px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.elig-apply-btn:hover {
  background: #e85d00;
}

/* ===== TRAINING ===== */
.training-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy), #0f2a45);
}
.training-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 35px 30px;
  height: 100%;
}
.training-card h4 {
  color: var(--saffron);
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.training-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}
.training-item i {
  color: var(--saffron);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ===== RULES ===== */
.rules-section {
  padding: 90px 0;
  background: var(--light-gray);
}
.rule-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  border-left: 4px solid var(--saffron);
  transition: all 0.3s;
}
.rule-card:hover {
  transform: translateX(6px);
  background: var(--mid-blue);
}
.rule-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 0, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rule-card span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== OUR SELECTED CANDIDATES ===== */
.testimonials-section {
  padding: 90px 0;
  background: white;
}
.selected-candidate-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: block;
}
.testimonial-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  height: 100%;
}
.testimonial-card::before {
  content: "\201C";
  font-size: 5rem;
  color: var(--saffron);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.author-info strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}
.author-info span {
  font-size: 0.8rem;
  color: var(--saffron);
}
.stars {
  color: #f39c12;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* ===== BRANCHES ===== */
.branches-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--saffron), #e85d00);
}
.branch-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
  color: white;
  transition: all 0.3s;
}
.branch-item:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(5px);
}
.branch-item i {
  font-size: 1.3rem;
  opacity: 0.9;
}
.branch-item strong {
  display: block;
  font-size: 1rem;
}
.branch-item span {
  font-size: 0.82rem;
  opacity: 0.85;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 90px 0;
  background: var(--light-gray);
}
.contact-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--saffron);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.contact-card-icon {
  width: 68px;
  height: 68px;
  background: rgba(255, 107, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--saffron);
  border: 2px solid rgba(255, 107, 0, 0.25);
}
.contact-card h5 {
  color: var(--saffron);
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-card p,
.contact-card a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
  text-decoration: none;
  display: block;
}
.contact-card a:hover {
  color: var(--saffron);
}

/* modal form controls */
.form-control,
.form-select {
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}

/* ===== MAP ===== */
.map-section {
  background: var(--white);
}
.map-section iframe {
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
footer a {
  color: var(--saffron);
  text-decoration: none;
}

/* ===== FLOATING BUTTONS ===== */
.float-call {
  position: fixed;
  bottom: 20px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.5);
  animation: pulse-call 2s infinite 0.5s;
}
@keyframes pulse-call {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.5);
  }
  50% {
    box-shadow: 0 4px 24px rgba(255, 107, 0, 0.8);
  }
}

/* ===== STICKY ENQUIRE (RIGHT SIDE) ===== */
.sticky-enquire {
  position: fixed;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  z-index: 998;
  background: var(--saffron);
  color: white;
  padding: 10px 22px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  border: none;
  box-shadow: 0 -3px 12px rgba(255, 107, 0, 0.4);
  transition:
    background 0.3s,
    right 0.3s;
  white-space: nowrap;
}
.sticky-enquire:hover {
  background: #e85d00;
  right: -36px;
}

/* ===== ENQUIRE POPUP MODAL ===== */
.enquire-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}
.enquire-modal-overlay.active {
  display: flex;
}
.enquire-modal {
  background: white;
  border-radius: 12px;
  width: 92%;
  max-width: 500px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: modalSlideIn 0.35s ease;
}
@keyframes modalSlideIn {
  from {
    transform: translateY(-40px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.enquire-modal-header {
  background: linear-gradient(135deg, var(--navy), var(--mid-blue));
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.enquire-modal-header h4 {
  color: white;
  font-size: 1.3rem;
  margin: 0;
}
.enquire-modal-header span {
  color: var(--saffron);
  display: block;
  font-size: 0.82rem;
  margin-top: 3px;
  font-family: "Open Sans";
  font-weight: 400;
}
.modal-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}
.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}
.enquire-modal-body {
  padding: 28px;
}
.enquire-modal-body .form-control,
.enquire-modal-body .form-select {
  margin-bottom: 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 0.9rem;
  width: 100%;
  display: block;
}
.enquire-modal-body .form-control:focus,
.enquire-modal-body .form-select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}
.btn-enquire-submit {
  width: 100%;
  background: var(--saffron);
  color: white;
  border: none;
  padding: 13px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}
.btn-enquire-submit:hover {
  background: #e85d00;
}

/* admission popup reuses enquire modal — no extra CSS needed */

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--saffron), #e85d00);
  padding: 60px 0;
}
.cta-band h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 0;
}
.btn-cta-white {
  background: white;
  color: var(--saffron);
  border: 2px solid white;
  padding: 12px 28px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  margin: 6px;
}
.btn-cta-white:hover {
  background: transparent;
  color: white;
}
.btn-cta-dark {
  background: var(--navy);
  color: white;
  border: 2px solid var(--navy);
  padding: 12px 28px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  margin: 6px;
}
.btn-cta-dark:hover {
  background: transparent;
  color: white;
  border-color: white;
}

/* ===== TOAST ANIMATION ===== */
@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* prevent any element from causing horizontal scroll */
  *,
  *::before,
  *::after {
    max-width: 100%;
  }

  .about-img-wrap {
    padding-bottom: 0;
    padding-right: 0;
    overflow: hidden;
  }
  .about-img-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 16px;
  }
  .sticky-enquire {
    position: fixed;
    right: auto;
    left: 0;
    bottom: 0;
    top: auto;
    transform: none;
    transform-origin: unset;
    width: 100%;
    border-radius: 0;
    padding: 14px 20px;
    font-size: 1rem;
    text-align: center;
    display: block !important;
    z-index: 999;
    box-shadow: 0 -3px 16px rgba(255, 107, 0, 0.4);
  }
  .hero-section {
    height: 100svh;
    min-height: 550px;
  }
  .stat-divider {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 16px;
    margin-bottom: 8px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .director-img {
    max-width: 100%;
  }
  .why-section,
  .training-section {
    padding: 60px 0;
  }
  .about-section,
  .courses-section,
  .eligibility-section,
  .director-section,
  .contact-section,
  .testimonials-section,
  .rules-section {
    padding: 60px 0;
  }
  .cta-band {
    padding: 40px 0;
  }
  .cta-band .text-lg-end {
    text-align: center !important;
  }
  .float-call {
    bottom: 68px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .enquire-modal {
    width: 96%;
  }
  .enquire-modal-body {
    padding: 20px;
  }
  /* add space so footer isn't hidden behind fixed enquire bar */
  footer {
    padding-bottom: 60px;
  }
  /* branches section text wrap */
  .branch-item {
    word-break: break-word;
  }
  /* elig grid single column */
  .elig-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.72rem;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .btn-hero-primary,
  .btn-hero-outline {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .footer-bottom {
    font-size: 0.76rem;
  }
}
