/* Google font imports */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Montserrat:wght@400;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900&family=Open+Sans:wght@400;600;700&display=swap");

/* root variables for colors and typography */
:root {
  --primary: #4169e1;
  /* royal blue */
  --secondary: #ffffff;
  --accent: #ffa500;
  /* orange CTA */
}

/* global reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: var(--secondary);
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Roboto", "Open Sans", sans-serif;
}

.container-fluid {
  padding: 0 25px;
}

/* Development Scroll Button Start */
.dev-scroll-group {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.dev-scroll-btn {
  width: 50px;
  height: 50px;
  background-color: #ff5722;
  /* Bright orange for dev visibility */
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.dev-scroll-btn:hover {
  transform: scale(1.1);
  background-color: #e64a19;
}

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 66px;
  height: 66px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  z-index: 9999;
}

.whatsapp-float:hover {
  color: #fff;
  background: #1ebe5d;
  transform: scale(1.08);
}

/* Development Scroll Button End */

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.6s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;
  font-family: "Poppins", "Montserrat", sans-serif;
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Roboto", "Open Sans", sans-serif;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 75px;
}

h2 {
  font-size: 56px;
}

h3 {
  font-size: 39px;
}

h4 {
  font-size: 23px;
}

h5 {
}

h6 {
}

/* ---------- */

.bg_cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.button_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input,
textarea,
select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  color: #c1c0bd;
}

.flex_box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.color h4 > span,
.text_blue {
  color: var(--primary) !important;
}

.text_yellow {
  color: #ffc916 !important;
}

.border_blue {
  border: 1px solid var(--primary) !important;
  /* border-color: var(--primary) !important; */
}

.border_black {
  border: 1px solid #666 !important;
}

.shadow_black {
  box-shadow: 2px 2px 12px 2px rgb(51 51 51 / 25%) !important;
}

/* animation keyframes */
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Styles ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  background: var(--primary) !important;
  color: var(--secondary) !important;
  font-weight: 400;
  transition: 0.5s;
}

.btn.btn-primary:hover {
  background: var(--secondary) !important;
  color: var(--primary) !important;
}

.btn.btn-light {
  background: var(--secondary) !important;
  color: var(--primary) !important;
  font-weight: 400;
  transition: 0.5s;
}

.btn.btn-light:hover {
  background: var(--primary) !important;
  color: var(--secondary) !important;
}

a.comon_btn,
button.comon_btn {
  color: #fff;
  background-color: var(--primary);
  display: inline-block;
  font-size: 16px;
  padding: 13px 6px;
  border-radius: 55px;
  width: 210px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.5s ease;
}

a.comon_btn:hover,
button.comon_btn:hover {
  background: #fff;
  color: var(--primary);
  transition: all 0.6s ease;
}

a.comon_btn2,
button.comon_btn2 {
  color: var(--primary);
  display: inline-block;
  font-size: 17px;
  padding: 12px 5px;
  border-radius: 55px;
  width: 160px;
  text-align: center;
  /* text-transform: uppercase; */
  font-weight: 600;
  letter-spacing: 2px;
  border: 2px solid var(--primary);
  transition: all 0.6s ease;
}

a.comon_btn2:hover,
button.comon_btn2:hover {
  background: var(--primary);
  color: var(--secondary);
  transition: all 0.6s ease;
}

a.comon_btn3,
button.comon_btn3 {
  color: #fff;
  background-color: var(--accent);
  display: inline-block;
  font-size: 16px;
  padding: 13px 6px;
  border-radius: 55px;
  width: 210px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.6s ease;
}

a.comon_btn3:hover,
button.comon_btn3:hover {
  background: var(--secondary);
  color: var(--accent);
  transition: all 0.6s ease;
}

a.btn-white {
  background: var(--secondary);
  color: #1e1e1e;
}

/* accent utilities */
.text-accent {
  color: var(--accent) !important;
}

.btn-accent {
  background: var(--accent) !important;
  color: var(--secondary) !important;
  transition: 0.5s;
}

.btn-accent:hover {
  background: var(--secondary) !important;
  color: var(--accent) !important;
}

/* logo sizing and spacing */
.navbar-brand .logo {
  height: auto;
  width: 90px;
  margin-right: 8px;
  vertical-align: middle;
}

.admission-marquee {
  padding: 8px 0;
  color: #1a237e;
  background: #ffd600;
  border-top: 5px solid #1a237e;
  border-bottom: 5px solid #1a237e;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

a.nav-link {
  font-family: "Poppins";
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
}

.site-header {
  position: relative;
  height: 100px;
  width: 100%;
  z-index: 1030;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.site-header.is-fixed {
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(248, 249, 250, 0.96) !important;
  box-shadow: 0 12px 30px rgba(20, 68, 119, 0.12);
  backdrop-filter: blur(8px);
}

body.has-fixed-header {
  padding-top: var(--header-height, 0px);
}

/* hero section extras */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  color: var(--secondary);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* dark overlay */
  pointer-events: none;
  z-index: 1;
}

.hero .container-fluid {
  position: relative;
  z-index: 2;
}

.hero .list-unstyled li {
  margin-bottom: 10px;
  display: flex;
  gap: 5px;
}

.hero .list-unstyled li i {
  color: var(--accent);
  margin-right: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .button_container {
  justify-content: inherit;
  gap: 10px;
}

.hero .illustration {
  max-width: 80%;
  height: auto;
  border-radius: 55%;
}

/* story/about section */

.story small {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #333;
}

.story h2 {
  font-size: 48px;
}

.story p {
  color: #555;
}

.story ul li i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story .stats-box {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.story .stats-box > div {
  flex: 1;
}

.story .stats-box h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
}

.story .stats-box small {
  display: block;
  color: #666;
  font-weight: 700;
}

/* why choose section */
.why-choose {
  background: var(--primary);
  color: var(--secondary);
  padding: 80px 0;
}

.why-choose .section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* .why-choose .section-header h2 {
  font-size: 2.5rem;
} */

.why-choose .why-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 120px;
  transition: 0.3s;
}

.why-choose .why-card:hover {
  background: rgb(105 139 242);
  transition: 0.3s;
}

.why-choose .why-card i {
  font-size: 1.5rem;
  background: var(--secondary);
  color: var(--primary);
  padding: 10px;
  border-radius: 8px;
}

.why-choose .why-card h5 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--secondary);
}

.why-choose .why-card p {
  margin: 0;
  color: #eee;
}

/* learning outcomes section */
.learning {
  background: #f5f9ff;
  /* padding: 80px 0; */
}

.learning .section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* .learning .section-header h2 {
  font-size: 2.5rem;
} */

.learning .middle-content {
  min-height: 300px;
}

.learning .outcome-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  /* transition: transform .3s, box-shadow .3s; */
  position: relative;
  transition: all 0.3s ease-in-out;
}

.learning .outcome-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent);
  transition: all 0.3s ease-in-out;
}

.learning .outcome-card .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.learning .outcome-card .icon {
  /* background: #6c5ce7; */
  transition: all 0.3s ease;
}

/* .icon-blue {
  background: #2962ff !important;
}
.icon-purple {
  background: #6c5ce7 !important;
}
.icon-green {
  background: #00b894 !important;
} */
.learning .outcome-card:hover .icon {
  background: var(--accent) !important;
  transition: all 0.3s ease;
}

.learning .outcome-card h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.learning .outcome-card p {
  margin: 0;
  color: #555;
}

.learning .btn-learn {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  padding: 12px 32px;
  border-radius: 50px;
  margin-top: 40px;
  transition: background 0.3s;
}

.learning .btn-learn:hover {
  background: #002a6c;
}

.why-choose .bottom_content {
  text-align: center;
  margin-top: 20px;
}

/* courses section */

.courses-tabs {
  text-align: center;
  margin-bottom: 40px;
}

.courses-tabs .nav-link {
  display: inline-block;
  margin: 0 10px;
  padding: 8px 20px;
  border-radius: 50px;
  transition: 0.3s;
}

.courses-tabs .nav-link.active,
.courses-tabs .nav-link:hover {
  background: var(--primary);
  color: var(--secondary) !important;
  transition: 0.3s;
}

.course-card {
  width: 100%;
  perspective: 1000px;
  /* margin-bottom: 30px; */
  height: 500px;
}

.course-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.course-card:hover .course-card-inner {
  transform: rotateY(180deg);
  transition: 0.3s;
}

.course-card-front,
.course-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}

.course-card-front {
  background: #fff;
}

.course-card-back {
  background: var(--primary);
  color: var(--secondary);
  transform: rotateY(180deg);
  padding: 30px;
}

.courses .course-card .course-card-back ul li {
  list-style: disc;
  margin-left: 20px;
}

.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.course-card-body {
  padding: 20px;
  height: 48%;
}

.course-card-body h5 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.course-card-body p {
  font-size: 0.95rem;
  color: #555;
  /* flex-grow: inherit; */
}

.course-duration {
  font-size: 0.85rem;
  color: #777;
}

.course-price {
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  border-top: 1px solid #e0e0e0;
  padding: 15px;
  position: relative;
  bottom: 0;
}

.course-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.courses .bottom_content {
  text-align: center;
  margin-top: 20px;
}

.courses .bottom_content a.comon_btn:hover {
  background: var(--accent);
  color: var(--secondary);
}

/* founder section */
.founder-section {
  background: radial-gradient(circle at 70% 40%, #1a237e 0%, #233e8b 100%);
  color: #fff;
}

.founder-img-wrap {
  display: inline-block;
  border: 5px solid var(--accent);
  /* border-radius: 20px 20px 40px 40px; */
  padding: 8px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.founder-img {
  border-radius: 16px 16px 32px 32px;
  width: 500px;
  /* min-height: 500px; */
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.founder-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.founder-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.founder-bio {
  font-size: 1.05rem;
  color: #e0e0e0;
}

.founder-vision {
  background: rgb(40 54 110 / 64%);
  border: 1px solid var(--accent);
  color: #fff;
  font-size: 1rem;
}

.founder-motto {
  background: var(--accent);
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0 0 16px 16px;
}

.founder-stat {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 1rem;
  color: #fff;
  margin-top: 0.2rem;
}

@media (max-width: 991px) {
  .founder-section {
    padding: 60px 0 40px 0;
  }

  .founder-img {
    max-width: 220px;
    min-height: 260px;
  }

  .founder-content h2 {
    font-size: 2rem;
  }
}

/* --- Expert Team Section --- */
.team-section {
  background: #f8fafc;
}

.section-header small {
  color: #1a237e;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-header .text-accent {
  color: #144477;
}

.section-underline {
  width: 60px;
  height: 4px;
  background: #ffd600;
  border-radius: 2px;
}

.team-swiper {
  height: auto;
  padding-bottom: 40px;
}

.team-swiper .swiper-wrapper,
.team-swiper .swiper-slide {
  height: auto;
}

.team-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(20, 68, 119, 0.08);
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
}

.team-card:hover {
  box-shadow: 0 8px 32px 0 rgba(20, 68, 119, 0.16);
  transform: translateY(-6px) scale(1.03);
}

.team-img-wrap {
  width: 100%;
  height: 240px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  position: relative;
  background: #e3eaf6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-info {
  padding: 24px 18px 18px 18px;
  text-align: left;
  width: 100%;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 4px;
}

.team-role {
  font-size: 1rem;
  color: #144477;
  font-weight: 500;
}

/* Swiper navigation custom style */
.team-swiper-next,
.team-swiper-prev {
  background: #ffd600;
  color: #1a237e;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(20, 68, 119, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}

.team-swiper-next:after,
.team-swiper-prev:after {
  font-size: 1.3rem;
  font-weight: bold;
}

.team-swiper-next {
  right: -20px;
}

.team-swiper-prev {
  left: -20px;
}

@media (max-width: 991.98px) {
  .team-swiper-next {
    right: 0;
  }

  .team-swiper-prev {
    left: 0;
  }
}

@media (max-width: 767.98px) {
  .team-card {
    min-height: 340px;
  }

  .team-img-wrap {
    height: 180px;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* 1. The anchor that keeps buttons from flying to the top of the page */
.team-slider-wrapper {
  position: relative;
  padding: 0 60px;
  /* This creates the "outside" gutter for the buttons */
}

/* 2. Vertically center the buttons relative to the wrapper */
.team-swiper-prev,
.team-swiper-next {
  position: absolute;
  top: 60%;
  /* Moves them to the middle vertically */
  transform: translateY(-60%);
  /* Perfectly offsets them so they are centered */
  z-index: 10;
  margin-top: 0;
  /* Reset Swiper's default margin */
}

/* 3. Push them to the far edges of the padding we created */
.team-swiper-prev {
  left: 0;
}

.team-swiper-next {
  right: 0;
}

/* --- Testimonials Section --- */
.testimonials-section {
  background: radial-gradient(ellipse at top right, #1a237e 60%, #0a1836 100%);
  color: #fff;
}

.testimonial-swiper {
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
  padding: 0 60px 54px;
}

.testimonial-swiper .swiper-wrapper,
.testimonial-swiper .swiper-slide {
  height: auto;
}

.testimonial-card {
  background: rgb(41 59 118 / 64%);
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(20, 68, 119, 0.18);
  min-height: 320px;
  transition: all 0.3s ease-in-out;
}

.testimonial-card:hover {
  box-shadow: 0 8px 40px 0 rgba(20, 68, 119, 0.28);
  /* transform: translateY(-4px) scale(1.02); */
}

.testimonial-quote {
  font-size: 2.5rem;
  color: #ffd600;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: #ffd600;
  color: #1a237e;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #ffd600;
  opacity: 1;
}

.testimonial-swiper-next,
.testimonial-swiper-prev {
  background: #ffd600;
  color: #1a237e;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(20, 68, 119, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 27px);
  transform: translateY(-50%);
}

.testimonial-swiper-next:after,
.testimonial-swiper-prev:after {
  font-size: 1.3rem;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .testimonial-card {
    min-height: 260px;
    padding: 1.2rem !important;
  }
}

/* --- FAQ Section --- */
.faq-section {
  background: #f8fafc;
}

.faq-accordion .accordion {
  background: transparent;
}

.faq-accordion .accordion-item {
  border: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(20, 68, 119, 0.06);
  overflow: hidden;
}

.faq-accordion .accordion-header {
  border-radius: 16px;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1.08rem;
  color: #1a237e;
  background: #fff;
  border-radius: 16px;
  box-shadow: none;
  transition:
    background 0.2s,
    color 0.2s;
  padding: 1.1rem 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #144477;
  background: #f8fafc;
  border-bottom: 1.5px solid #ffd600;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 2px #ffd60033;
}

.faq-accordion .accordion-body {
  color: #3a4256;
  background: #f8fafc;
  border-radius: 0 0 16px 16px;
  padding: 1.1rem 1.5rem;
}

.faq-accordion .accordion-item.mb-3 {
  margin-bottom: 18px !important;
}

@media (max-width: 767.98px) {
  .faq-accordion .accordion-button,
  .faq-accordion .accordion-body {
    padding: 1rem 1.1rem;
    font-size: 1rem;
  }
}

/* --- Footer Section --- */
.site-footer {
  background: radial-gradient(ellipse at top right, #1a237e 60%, #0a1836 100%);
  color: #fff;
  border-top: 4px solid #ffd600;
  font-size: 1.05rem;
}

.footer-brand img {
  height: 48px;
}

.footer-desc {
  color: #e3eaf6;
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
}

.footer-social {
  gap: 0.5rem;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  font-size: 1.3rem;
  background: #2956d7;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(20, 68, 119, 0.1);
}

.footer-social-icon:hover {
  background: #ffd600 !important;
  color: #1a237e !important;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #e3eaf6;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-links a.active,
.footer-links a:hover {
  color: #ffd600;
  font-weight: 600;
}

.footer-contact li {
  margin-bottom: 0.6rem;
  color: #e3eaf6;
  font-size: 1.01rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: #ffd600;
  min-width: 20px;
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-payments img {
  height: 28px;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-payments img:last-child {
  margin-right: 0;
}

@media (max-width: 991.98px) {
  .site-footer .row > div {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    font-size: 0.98rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .footer-brand img {
    height: 38px;
  }

  .footer-social-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

/* --- About Page Styles --- */
/* --- About Hero Section --- */
.about-hero {
  background-image: url("../img/about-hero.jpg");
  display: flex;
  align-items: center;
  min-height: 350px;
  position: relative;
}

.about-hero .overlay {
  min-height: 350px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: rgba(20, 68, 119, 0.7);
}

/* --- Learning Platform Section --- */
.learning-platform {
  background: #f0f4f8;
}

.learning-platform h2 {
  font-size: 2.5rem;
  color: #1a237e;
}

.learning-platform small {
  color: #144477;
}

.platform-underline {
  width: 60px;
  height: 4px;
  background: #e63946;
  border-radius: 2px;
}

.platform-card {
  min-height: 200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  border-radius: 5px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: none;
}

.platform-card-red {
  background: #e63946;
}

.platform-card-blue {
  background: #0f4c75;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(20, 68, 119, 0.2);
}

.platform-card .card-icon {
  font-size: 2.5rem;
}

.platform-card p {
  font-size: 0.95rem;
}

.platform-image {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.learning-platform a.comon_btn3:hover {
  background: var(--primary);
  color: var(--secondary);
  transition: all 0.6s ease;
}

@media (max-width: 767.98px) {
  .learning-platform h2 {
    font-size: 2rem;
  }

  .platform-card {
    min-height: 150px !important;
  }
}

/* --- Gallery Section Styles --- */
.gallery-section {
  background: #f8fafc;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(20, 68, 119, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.video-card {
  position: relative;
}

.video-card .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 214, 10, 0.95);
  border: none;
  color: #0a1b41;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.video-card .play-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.gallery-section .btn {
  min-width: 180px;
}

.popular-courses .course-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 68, 119, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.popular-courses .course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(20, 68, 119, 0.2);
}

.course-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0d3d92;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.course-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.course-body {
  min-height: 230px;
}

.course-level {
  font-size: 0.9rem;
  color: #6c7a89;
}

.featured {
  border: 2px solid #ffd600;
}

.learning-outcomes {
  background: #f5f9ff;
}

.learning-outcomes .outcome-card,
.course-benefits .benefit-card {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(20, 68, 119, 0.08);
  padding: 25px;
  /* text-align: center; */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.course-benefits .benefit-card {
  text-align: center;
}

.course-benefits .benefit-card i {
  font-size: 30px;
}

.learning-outcomes .outcome-card:hover,
.course-benefits .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(20, 68, 119, 0.15);
}

.benefit-card {
  font-size: 1.7rem;
  color: #0d3d92;
  margin-bottom: 12px;
}

.outcome-card .icon {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 30px;
}

.course-benefits h5,
.learning-outcomes h5 {
  margin-top: 12px;
  margin-bottom: 10px;
  color: #1a237e;
}

.course-benefits p,
.learning-outcomes p {
  color: #6c7a89;
}

.cta-courses {
  padding: 70px 0;
  background: linear-gradient(120deg, #0a1836 45%, #144477 100%);
}

.cta-courses h2,
.cta-courses p {
  color: #fff;
}

.cta-courses .btn-warning {
  background: #ffd600;
  border: none;
  color: #1f2a57;
}

@media (max-width: 767.98px) {
  .courses-hero {
    min-height: 320px;
  }
}

.contact-us a {
  color: rgba(33, 37, 41, 0.75);
}

.contact-us a:hover {
  color: var(--accent);
}

.contact-us a.comon_btn3:hover,
.contact-us button.comon_btn3:hover,
.admission-form button.comon_btn3:hover {
  background: var(--primary);
  color: var(--secondary);
  transition: all 0.6s ease;
}
