:root {
  --navy: #1a2e5a;
  --navy-dark: #0d1b3e;
  --red: #c0392b;
  --red-bright: #e74c3c;
  --saffron: #ff9933;
  --saffron-light: #ffb347;
  --white: #ffffff;
  --light-bg: #f4f6fb;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100%;
}
h1,
h2,
h3,
h4 {
  font-family: "Oswald", sans-serif;
}

/* ── NAVBAR ── */
.navbar {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  border-bottom: 3px solid var(--saffron);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.navbar-brand img {
  height: 55px;
  width: auto;
  object-fit: contain;
}
.brand-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
  display: block;
}
.brand-tagline {
  font-size: 0.62rem;
  color: var(--saffron);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}


@media screen and (max-width: 500px) {
  .brand-name {
    font-size: 0.8rem;
  }
  .brand-tagline {
    letter-spacing: 0px;

    font-size: 0.5rem;
  }
}


.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 1.5rem 0.9rem !important;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--saffron);
  transition: width 0.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 75%;
}
.navbar-nav .nav-link:hover {
  color: var(--saffron) !important;
}
.btn-call-nav {
  background: linear-gradient(135deg, var(--saffron), var(--red));
  color: var(--white) !important;
  border: none;
  border-radius: 25px;
  padding: 0.45rem 1.2rem !important;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}
.btn-call-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 51, 0.5);
}
.navbar-toggler {
  border-color: var(--saffron);
  padding: 0.35rem 0.55rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,153,51,1)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
.hero-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 62, 0.88) 0%,
    rgba(26, 46, 90, 0.72) 55%,
    rgba(192, 57, 43, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: var(--saffron);
  color: var(--navy-dark);
  padding: 0.28rem 1rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: "Rajdhani", sans-serif;
}
.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}
.hero-title span {
  color: var(--saffron);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--saffron), #e67e22);
  color: var(--navy-dark);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
  cursor: pointer;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 153, 51, 0.6);
  color: var(--navy-dark);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  border: 2px solid var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.btn-hero-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--saffron);
  background: transparent;
  transition: all 0.3s;
}
.carousel-indicators .active {
  background: var(--saffron);
}

/* ── STATS STRIP ── */
.stats-strip {
  background: linear-gradient(135deg, var(--red), var(--navy));
  padding: 38px 0;
}
.stat-item {
  text-align: center;
  padding: 8px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── SECTION TITLES ── */
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.title-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.8rem;
}
.tl-bar {
  height: 4px;
  border-radius: 2px;
}
.tl-navy {
  width: 55px;
  background: var(--navy);
}
.tl-saffron {
  width: 18px;
  background: var(--saffron);
}
.tl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* ── ABOUT ── */
#about {
  padding: 80px 0;
  background: var(--light-bg);
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(26, 46, 90, 0.2);
  width: 100%;
  /* height: 460px; */
  object-fit: cover;
}
.about-badge-box {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 18px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.35);
  border: 3px solid var(--saffron);
}
.about-badge-box .num {
  font-family: "Oswald", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.about-badge-box .lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--white);
  border-left: 4px solid var(--saffron);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  margin-bottom: 0.8rem;
}
.highlight-item:hover {
  transform: translateX(5px);
  border-left-color: var(--navy);
  box-shadow: 0 5px 20px rgba(26, 46, 90, 0.1);
}
.highlight-item .hi-icon {
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}
.highlight-item h6 {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.highlight-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── COURSES ── */
#courses {
  padding: 80px 0;
  background: var(--white);
}
.course-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  height: 100%;
}
.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(26, 46, 90, 0.16);
}
.card-img-wrap {
  height: 195px;
  overflow: hidden;
  position: relative;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.course-card:hover .card-img-wrap img {
  transform: scale(1.1);
}
.card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    rgba(13, 27, 62, 0.65)
  );
}
.course-label {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 2;
  background: var(--saffron);
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.course-card .card-body {
  padding: 1.15rem;
  background: var(--white);
}
.course-card .card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.course-card .card-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.btn-cc {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.38rem 0.95rem;
  border-radius: 20px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.btn-cc-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-cc-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-cc-saffron {
  background: linear-gradient(135deg, var(--saffron), var(--red));
  color: var(--white);
}
.btn-cc-saffron:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

/* ── WHY CHOOSE US ── */
#why-choose {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
#why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(255, 153, 51, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(192, 57, 43, 0.08) 0%,
      transparent 40%
    );
}
#why-choose .section-title {
  color: var(--white);
}
#why-choose .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
  backdrop-filter: blur(4px);
}
.why-card:hover {
  background: rgba(255, 153, 51, 0.14);
  border-color: var(--saffron);
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3);
}
.why-icon-wrap {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--saffron), var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 153, 51, 0.3);
  transition: all 0.3s;
}
.why-card:hover .why-icon-wrap {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 15px 35px rgba(255, 153, 51, 0.5);
}
.why-card h5 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.45rem;
}
.why-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  line-height: 1.6;
}

/* ── GALLERY ── */
#gallery {
  padding: 80px 0;
  background: var(--light-bg);
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 62, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-play {
  width: 48px;
  height: 48px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}
.video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(13, 27, 62, 0.8);
  color: var(--saffron);
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 10px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid var(--saffron);
}

/* ── CONTACT ── */
#contact {
  padding: 80px 0;
  background: var(--white);
}
.contact-info-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 15px;
  padding: 32px;
  color: var(--white);
  height: 100%;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-row:last-child {
  border-bottom: none;
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 153, 51, 0.18);
  border: 1px solid var(--saffron);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--saffron);
  flex-shrink: 0;
}
.ci-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.2rem;
}
.ci-val,
.ci-val a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  line-height: 1.55;
}
.ci-val a:hover {
  color: var(--saffron);
}
.contact-form-wrap {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 32px;
}
.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  transition: all 0.3s;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 0.2rem rgba(26, 46, 90, 0.12);
}
.btn-submit {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 0.75rem 2.5rem;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  width: 100%;
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--saffron), var(--red));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 153, 51, 0.4);
  color: var(--white);
}
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
}
.footer-logo {
  height: 58px;
  margin-bottom: 0.9rem;
}
.footer-about {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1.2rem;
}
.footer-head {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(255, 153, 51, 0.3);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}
.footer-links a:hover {
  color: var(--saffron);
  padding-left: 5px;
}
.footer-links a::before {
  content: "›";
  color: var(--saffron);
  font-size: 1.1rem;
  line-height: 1;
}
.footer-ci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.9rem;
  font-size: 0.87rem;
}
.footer-ci i {
  color: var(--saffron);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-ci a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}
.footer-ci a:hover {
  color: var(--saffron);
}
.social-icons {
  display: flex;
  gap: 9px;
  margin-top: 0.9rem;
}
.soc-btn {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.soc-btn:hover {
  background: var(--saffron);
  color: var(--navy-dark);
  transform: translateY(-3px);
  border-color: var(--saffron);
}
.footer-bottom {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom span {
  color: var(--saffron);
}

/* ── FLOATING ENQUIRE BUTTON ── */
.float-enquire {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
}
.float-enquire button {
  background: linear-gradient(180deg, var(--saffron), var(--red));
  color: var(--white);
  border: none;
  padding: 18px 11px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: -4px 0 20px rgba(255, 153, 51, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.float-enquire button i {
  font-size: 1.05rem;
  display: block;
}
.float-enquire button span {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.float-enquire button:hover {
  background: linear-gradient(180deg, var(--red), var(--saffron));
  box-shadow: -6px 0 28px rgba(192, 57, 43, 0.5);
}

/* ── MODAL ── */
.modal-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-bottom: 3px solid var(--saffron);
}
.modal-header .modal-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  color: var(--white);
}
.modal-header .btn-close {
  filter: invert(1);
}

/* ── GALLERY LIGHTBOX ── */
#galleryLightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0, 0, 0, 0.94);
  align-items: center;
  justify-content: center;
}
#galleryLightbox.active {
  display: flex;
}
#glContent {
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#glImg {
  max-width: 92vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
  object-fit: contain;
  display: block;
}
#glVideo {
  max-width: 92vw;
  max-height: 85vh;
  width: 860px;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
  background: #000;
  display: block;
}
#glClose {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 99999;
  width: 44px;
  height: 44px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.25s;
}
#glClose:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.1);
}
#glPrev,
#glNext {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s;
}
#glPrev {
  left: 14px;
}
#glNext {
  right: 14px;
}
#glPrev:hover,
#glNext:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--navy-dark);
}
#glCounter {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  z-index: 99999;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .about-badge-box {
    display: none;
  }
  .navbar-nav .nav-link {
    padding: 0.7rem 0.5rem !important;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-slide {
    height: 88vh;
  }
  .section-title {
    font-size: 2rem;
  }
  .stat-num {
    font-size: 2.1rem;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn-hero-primary,
  .hero-btns .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}






#callme {
        position: fixed;
        right: 30px;
        bottom: 50px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(images/mini.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
    @-webkit-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-webkit-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }