/* Variables */
:root {
  --primary: #0c0f3c; /* Main blue */
  --primary-dark: #003d82; /* Darker blue for hover states */
  --primary-light: #e6f0ff; /* Light blue for backgrounds */
  --secondary: #2c3e50; /* Dark blue-gray for text */
  --accent: #0b0e3c; /* Gold accent */
  --text-dark: #2c3e50; /* Dark text */
  --text-light: #6c757d; /* Light text */
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-800: #343a40;
  --footer-bg: #1a2436; /* Dark blue for footer */
  --transition: all 0.3s ease;
}

/* Top Header */
.top-header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 8px 0;
  font-size: 14px;
  color: var(--white);
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 24px;
}

.contact-info a,
.contact-info span {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.contact-info a:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  color: var(--white);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Main Header */
.main-header {
  background: var(--white);
  padding: 0px 0;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
}

.navbar-brand img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.brand-text h1 {
  font-size: 24px;
  color: var(--primary);
  margin: 0;
  font-weight: 600;
}

.brand-text span {
  font-size: 14px;
  color: var(--text-light);
}

/* Navigation */
.navbar-nav {
  gap: 10px;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--primary) !important;
  background: var(--primary-light);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  /* background: var(--primary); */
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Dropdown */
.dropdown-menu {
  padding: 8px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateX(5px);
}

.dropdown-divider {
  margin: 8px 0;
  opacity: 0.1;
}

/* Header Buttons */
.header-buttons {
  margin-left: 24px;
}
.header-buttons a {
  background-color: #0b0e3c;
  padding: 13px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header-buttons:hover a {
  background-color: transparent;
  padding: 13px;
  color: black !important;
  border: 1px solid var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
  color: white;
}

.btn-custom-primary {
  background: var(--primary);
  border-color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-custom-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-custom-primary:hover {
  background: transparent;
  border-color: var(--primary-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(25, 135, 84, 0.2);
  border: 1px solid var(--primary) !important;
}

.btn-custom-outline:hover {
  background: var(--primary);
  color: white;
}

/* Footer Styles */
.main-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.footer-top {
  padding: 80px 0 50px;
}

/* Footer Logo & Description */

.footer-logo {
  margin-bottom: 0px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo h3 {
  color: var(--white);
  font-size: 24px;
  margin: 0;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Footer Widgets */
.footer-widget {
  margin-bottom: 30px;
}

.widget-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: white;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: rgb(187 190 195);
  opacity: 1;
  transform: translateX(-8px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Contact Info */
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-contact .contact-item i {
  color: white;
  font-size: 18px;
  margin-right: 15px;
  margin-top: 5px;
}

.footer-contact .contact-item p {
  margin: 0;
}

.footer-contact .contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact .contact-item a:hover {
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Additional Accent Colors */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

/******************************************HERO SECTION ******************************************/
/* Hero Section Styles */
/* Swiper Slider Styles */
.custom-slider {
  width: 100%;
  /* height: 85vh; */
  height: auto;
  position: relative;
  overflow: hidden;
}

.custom-swiper {
  width: 100%;
  height: 100%;
}

.custom-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: #fff;
  background-size: cover;
  background-position: center;
  height: 85vh;
}

.custom-slide-inner {
  width: 100%;
  /* height: 650px; */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background-size: cover;
  background-position: center;
  position: relative;
}

.custom-slide-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: linear-gradient(
    90deg,
    rgba(12, 15, 60, 0.8) 0%,
    rgba(12, 15, 60, 0.4) 100%
  );
}

.custom-container {
  position: relative;
  z-index: 2;
  padding: 0 50px;
}

.custom-slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 800px;
}

.custom-slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.6;
}

.custom-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.custom-btn:hover {
  background: transparent;
  color: var(--white);
}

/* Swiper Navigation */
.custom-next,
.custom-prev {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transform: scale(1);
  opacity: 0.8;
  display: none !important;
}

.custom-next:hover,
.custom-prev:hover {
  background: var(--primary);
  transform: scale(1.1);
  opacity: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}

.custom-next:active,
.custom-prev:active {
  transform: scale(0.95);
}

/* Swiper Pagination */
.custom-pagination {
  bottom: 30px !important;
}

.custom-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.custom-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.hero-a {
  position: relative;
  z-index: 1;
}

.sub-heading {
  background: rgba(12, 15, 60, 0.1);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.sub-heading span {
  color: var(--primary);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sub-heading span::before {
  content: "⭐";
}

.main-heading {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.theme-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.theme-btn:first-child {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.theme-btn:last-child {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.theme-btn:first-child:hover {
  background: transparent;
  color: var(--primary);
}

.theme-btn:last-child:hover {
  background: var(--primary);
  color: var(--white);
}

.hero-img {
  position: relative;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-section {
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
  /* padding: 50px 0px; */
}

/* Hero Section */
.hero-section {
  /* padding: 100px 0; */
  /* min-height: 80vh; */
  display: flex;
  align-items: center;
}

.hero-content {
  padding-right: 50px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-content .btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  background: white;
  color: var(--primary);
  border: 2px solid white;
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  background: transparent;
  color: white;
}

.hero-img {
  text-align: center;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  animation: none 3s ease-in-out infinite;
  -webkit-animation: none 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/*****************************Abouts SECTION ******************************************/

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-head {
  margin-bottom: 30px;
}

.about-head span {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.about-head h2 {
  font-size: 48px;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 20px;
  margin-bottom: 30px;
}

.about-img {
  margin-top: 0px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  transition: var(--transition);
}

.about-img:hover img {
  transform: scale(1.05);
}

/* Vision Box Styles */
.vision-box {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.vision-box::before,
.vision-box::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.vision-box::before {
  top: 0;
  left: 0;
}

.vision-box::after {
  bottom: 0;
  right: 0;
}

.vision-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vision-box:hover::before,
.vision-box:hover::after {
  width: 100%;
}

.vision-box i {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 2em;
  transition: transform 0.3s ease;
}

.vision-box:hover i {
  transform: scale(1.2) rotate(360deg);
}

.vision-box h3 {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.vision-box:hover h3 {
  color: var(--primary);
}

.vision-box p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Mission Box Styles */
.mission-box {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.mission-box::before,
.mission-box::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.mission-box::before {
  top: 0;
  left: 0;
}

.mission-box::after {
  bottom: 0;
  right: 0;
}

.mission-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-box:hover::before,
.mission-box:hover::after {
  width: 100%;
}

.mission-box i {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 2em;
  transition: transform 0.3s ease;
}

.mission-box:hover i {
  transform: scale(1.2) rotate(360deg);
}

.mission-box h3 {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.mission-box:hover h3 {
  color: var(--primary);
}

.mission-box p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Motto Box Styles */
.motto-box {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.motto-box::before,
.motto-box::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.motto-box::before {
  top: 0;
  left: 0;
}

.motto-box::after {
  bottom: 0;
  right: 0;
}

.motto-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.motto-box:hover::before,
.motto-box:hover::after {
  width: 100%;
}

.motto-box i {
  color: var(--primary);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.motto-box:hover i {
  transform: scale(1.2) rotate(360deg);
}

.motto-box h3 {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.motto-box:hover h3 {
  color: var(--primary);
}

.motto-box p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/***************************** SERVICES SECTION ******************************************/
/* Course Section */
.course-section {
  padding: 40px 0;
  /* background: #fff; */
  background: #e4e4f9;
  /* margin: 10px 30px; */
  /* border-radius: 30px; */
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 48px;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

.section-heading p {
  color: var(--text-light);
  font-size: 18px;
}

.course-box {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: var(--transition);
}

.course-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-img {
  position: relative;
  overflow: hidden;
  height: 240px;
  width: 100%;
  /* height: 352px; */
  object-fit: cover;
  /* height: auto; */
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.course-box:hover .course-img img {
  transform: scale(1.1);
}

.course-content {
  padding: 25px;
}

.course-content h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.course-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.course-content .theme-btn {
  padding: 10px 25px;
  font-size: 15px;
  background: var(--primary-light);
  color: var(--primary);
}

.course-content .theme-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/***************************** WHY CHOOSE US SECTION ******************************************/
/* Why Choose IFA Section */
.why-ifa-section {
  background: var(--white);
  padding: 40px;
  margin: 10px 30px;
  border-radius: 30px;
}

.feature-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box i {
  color: var(--primary);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-box:hover i {
  transform: scale(1.2) rotate(360deg);
}

.feature-box h4 {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/***************************** Placement SECTION ******************************************/
/* Placement Section */
.placements-section {
  background: #eef5ff;
  margin: 10px 0px;
  padding: 40px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.company-logo {
  background: white;
  padding: 20px;
  border-radius: 10px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.company-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.company-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: none;
  transition: var(--transition);
  -webkit-filter: none;
}

.company-logo:hover img {
  filter: grayscale(0%);
}

.stat-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
  color: var(--primary);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-box p {
  color: var(--text-light);
  font-size: 16px;
  margin: 0;
}

/***************************** TESTIMONIAL SECTION ******************************************/
/* Testimonial Section */
.testimonial-section {
  background: var(--white);
  margin: 10px 30px;
  padding: 40px;
  border-radius: 30px;
}

.testimonial-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.testimonial-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-content i {
  color: var(--primary);
  font-size: 24px;
  opacity: 0.5;
}

.testimonial-content p {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin: 15px 0;
}

.testimonial-author img {
  border: 3px solid var(--primary-light);
  margin-right: 15px;
}

.testimonial-author h5 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
}

.testimonial-author small {
  color: var(--text-light);
  font-size: 14px;
}

/* Contact Section */
.contact-section {
  background: #eef5ff;
  margin: 10px 30px;
  padding: 40px;
  border-radius: 30px;
}

.contact-info-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info-box i {
  color: var(--primary);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact-info-box:hover i {
  transform: scale(1.2);
}

.contact-info-box h4 {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-info-box p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  color: var(--text-dark);
  font-weight: 600;
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.form-group label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 8px;
}

.map-container {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.map-container h3 {
  color: var(--text-dark);
  font-weight: 600;
}

.map-container iframe {
  border-radius: 8px;
  margin-top: 15px;
}

/* Comment out original Contact heading style */
/*
.contact-section {
    background: #eef5ff;
    margin: 10px 30px;
    padding: 40px;
    border-radius: 30px;
}
*/

/* Breadcrumb Styles */
.breadcrumb-area {
  background: linear-gradient(rgba(12, 15, 60, 0.8), rgba(12, 15, 60, 0.8));
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.breadcrumb-area {
  position: relative;
}

.breadcrumb-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(12, 15, 60, 0.9) 0%,
    rgba(12, 15, 60, 0.7) 100%
  );
}
.breadcrumb-area h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  font-size: 16px;
  position: relative;
  padding: 0 15px;
}

.breadcrumb li a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb li.active {
  color: var(--primary-light);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -3px;
}

/* Contact Info Styles */
/* .contact-info {
    background: var(--white);
} */

.contact-box {
  padding: 40px 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  margin-bottom: 30px;
}

.contact-box:hover {
  transform: translateY(-10px);
}

.contact-box i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-box p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Contact Form Section Styles */
.contact-form-section {
  background: var(--gray-100);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-form .form-control {
  height: auto;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 5px;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.contact-form textarea.form-control {
  min-height: 150px;
}

.contact-form .btn-primary {
  background: var(--primary);
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  transition: var(--transition);
}

.contact-form .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.map-container {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
  background: var(--primary-light);
  border-bottom: none;
  border-radius: 15px 15px 0 0;
  padding: 20px 30px;
}

.modal-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 24px;
}

.btn-close {
  background-color: var(--primary);
  opacity: 1;
  border-radius: 50%;
  padding: 10px;
  transition: var(--transition);
}

.btn-close:hover {
  transform: rotate(90deg);
  background-color: var(--primary-dark);
}

.modal-body {
  padding: 30px;
}

.modal-body .form-label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 8px;
}

.modal-body .form-control,
.modal-body .form-select {
  padding: 12px 15px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: var(--transition);
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.modal-body .btn-primary {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  border: none;
  font-weight: 500;
  transition: var(--transition);
}

.modal-body .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/**About **/
/* About Section */
.about-section {
  background-color: #f8f9fa;
}

.section-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.about-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-section ul li {
  color: var(--text-dark);
  font-size: 1.1rem;
  padding: 8px 0;
  position: relative;
}

.about-section ul li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 10px;
  font-weight: bold;
}

.about-section img {
  transition: transform 0.3s ease;
  max-height: 400px;
  object-fit: cover;
  width: 100%;
}

.about-section img:hover {
  transform: scale(1.02);
}

.shadow {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Values Section */
.values-section {
  background: #eef5ff;
  margin: 10px 30px;
  padding: 40px;
  border-radius: 30px;
}

.values-section h3 {
  font-size: 48px;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

.values-section .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.values-section .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.values-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.values-section .card:hover::before {
  transform: scaleX(1);
}

.values-section .card-body {
  padding: 30px;
}

.values-section .card i {
  color: var(--primary);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.values-section .card:hover i {
  transform: scale(1.2) rotate(360deg);
}

.values-section .card h4 {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.values-section .card p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Course Card Styles */
.course-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.course-card .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-card:hover .card-img-top {
  transform: scale(1.1);
}

.course-card .card-body {
  padding: 25px;
}

.course-card .card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.course-card .card-text {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.course-details {
  display: flex;
  justify-content: left;
  color: var(--text-light);
  font-size: 14px;
  gap: 18px;
}

.course-details span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-details i {
  color: var(--primary);
  font-size: 16px;
}

.course-card .btn {
  width: 100%;
  padding: 10px;
  font-weight: 500;
  background: var(--primary);
  border: 1px solid var(--primary);
}

.course-card .btn:hover {
  background: transparent;
  color: var(--primary);
}

/* Modal styling for course details */
.coursemodel .modal-dialog {
  max-width: 800px;
}

.coursemodel .modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.coursemodel .modal-header {
  background: var(--primary-light);
  padding: 20px 30px;
  border-bottom: none;
}

.coursemodel .modal-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 24px;
}

.coursemodel .modal-body {
  padding: 30px;
}

.coursemodel .modal-body img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.coursemodel .modal-body h4 {
  color: var(--text-dark);
  font-size: 20px;
  margin-bottom: 15px;
}

.coursemodel .modal-body p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}

.coursemodel .modal-body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.coursemodel .modal-body ul li {
  color: var(--text-dark);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.coursemodel .modal-body ul li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
}

.coursemodel .btn {
  padding: 10px 20px;
  margin: 5px;
  font-weight: 500;
  transition: var(--transition);
}

.coursemodel .btn-success {
  background: #25d366;
  border: none;
}

.coursemodel .btn-info {
  background: #0dcaf0;
  border: none;
  color: white;
}

.coursemodel .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coursemodel .modal-footer {
  border-top: 1px solid var(--gray-200);
  padding: 20px 30px;
}

.coursemodel .modal-footer .btn-primary {
  background: var(--primary);
  border: none;
  padding: 12px 30px;
}

.coursemodel .modal-footer .btn-primary:hover {
  background: var(--primary-dark);
}

/* Values Section */
.values-section {
  padding: 60px 0;
}

.values-section .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.values-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.values-section .card-title {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.values-section .card-text {
  color: var(--text-light);
  line-height: 1.6;
}

/* Founder Section */
.founder-section {
  background: var(--white);
}

.founder-profile {
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.founder-profile h3 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 10px;
}

.founder-profile .lead {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 20px;
}

.founder-profile p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Team Section */
.team-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card h4 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 5px;
}

.team-card p {
  color: var(--text-light);
  margin: 0;
}

/* Features Section */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  color: var(--text-dark);
  padding: 15px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.section-title {
  color: var(--primary);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}
/* Values Section */
.values-section {
  padding: 80px 0;
}

.values-section .card {
  padding: 40px 30px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to bottom right,
    #fff 50%,
    var(--primary-light) 200%
  );
}

.values-section .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.values-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.values-section .card:hover::before {
  transform: scaleX(1);
}

.values-section .card-title {
  color: var(--primary);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.values-section .card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.values-section .card-text {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

/* Founder Section */
.founder-section {
  padding: 80px 0;
}

.founder-profile {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.founder-profile::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 120px;
  color: var(--primary-light);
  font-family: serif;
  opacity: 0.3;
}

.founder-profile:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.founder-profile h3 {
  color: var(--primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.founder-profile .lead {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
  opacity: 0.9;
}

.founder-profile p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.team-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card h4 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card p {
  color: var(--text-light);
  font-size: 16px;
  margin: 0;
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  color: var(--text-dark);
  font-size: 16px;
  padding: 20px 0;
  padding-left: 35px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 18px;
  opacity: 0.8;
  transition: var(--transition);
}

.feature-list li:hover {
  color: var(--primary);
  transform: translateX(10px);
}

.feature-list li:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

/* Benefits Section Styles */
.benefits-section {
  padding: 80px 0;
  background: #eef5ff;
  margin: 10px 00px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.benefits-section .section-heading {
  margin-bottom: 40px;
}

.benefits-section h2 {
  color: var(--primary);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.benefits-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.benefits-section p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.6;
}
.benefits-list li {
  padding: 20px 30px;
  margin-bottom: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

.benefits-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: var(--primary-light);
}

.benefits-list li i {
  color: var(--primary);
  margin-right: 15px;
  font-size: 20px;
  transition: var(--transition);
}

.benefits-list li:hover i {
  transform: scale(1.2) rotate(360deg);
}

/* New styles for benefits wrapper */
.benefits-wrapper {
  padding: 20px;
}

.benefit-points {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefit-item {
  background: white;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background: var(--primary);
}

.benefit-item:hover p {
  color: white;
}
.benefit-icon {
  background: var(--primary-light);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  color: var(--primary);
  font-size: 18px;
  transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
  background: var(--primary);
}

.benefit-item:hover .benefit-icon i {
  color: white;
  transform: rotate(360deg);
}

.benefit-item p {
  margin: 0;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  /* border-radius: 15px; */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

/* Learning Models Section */
.learning-models-section {
  background: var(--white);
  padding: 80px 0;
  margin: 10px 30px;
  border-radius: 30px;
}

.model-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.model-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.model-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.model-box:hover::before {
  transform: scaleX(1);
}

.model-icon {
  margin-bottom: 25px;
}

.model-icon i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.model-box:hover .model-icon i {
  transform: scale(1.2) rotate(360deg);
}

.model-box h3 {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.model-box p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.course-vertical button {
  border: 0px;
  padding: 15px 5px;
  margin: 10px 0px;
  border-radius: 5px;
  border: 1px solid black;
  background: white;
}
.vertical-bg {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.course-vertical button {
  background: white;
  width: 100%;
  text-align: left;
  border: 1px solid var(--gray-200);
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 15px;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.course-vertical button:hover,
.course-vertical button.active {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateX(5px);
}

.course-vertical button::after {
  content: "→";
  position: absolute;
  right: 15px;
  opacity: 0;
  transition: var(--transition);
}

.course-vertical button:hover::after,
.course-vertical button.active::after {
  opacity: 1;
  transform: translateX(5px);
}

.vertical-bg img {
  height: auto;
  object-fit: cover;
}

/* Modal Button Styles */
.btn[data-bs-toggle="modal"] {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: white;
  padding: 8px 20px;
  font-weight: 500;
  transition: var(--transition);
}

.btn[data-bs-toggle="modal"]:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .top-header {
    display: none;
  }
  .navbar-brand img {
    height: 40px;
    width: auto;
    transition: var(--transition);
  }
  .course-details {
    display: grid;
    justify-content: left;
    color: var(--text-light);
    font-size: 14px;
    gap: 18px;
  }

  .hero-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .hero-section {
    /* padding: 40px 0; */
    min-height: auto;
    display: flex;
    align-items: center;
  }
  .hero-content .btn {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    background: white;
    color: var(--primary);
    border: 2px solid white;
    transition: all 0.3s ease;
  }
  .hero-img img {
    height: fit-content;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    /* margin-top: 30px; */
  }

  .hero-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
  }
  .hero-content {
    padding-right: 0px;
  }
  .course-section {
    padding: 40px 0;
    background: #fff;
    margin: 10px 0px;
    border-radius: 30px;
  }
  .section-heading h2 {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
  }
  .section-heading p {
    color: var(--text-light);
    font-size: 14px;
  }
  .benefits-section {
    padding: 40px 0;
    background: #eef5ff;
    margin: 10px 00px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
  .benefits-wrapper {
    padding: 0px;
  }
  .benefit-points {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .learning-models-section {
    background: var(--white);
    padding: 40px 0;
    margin: 10px 0px;
    border-radius: 0px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .custom-slide-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    width: fit-content;
  }
  .custom-slide-inner {
    width: 100%;
    /* height: 400px; */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .custom-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: var(--transition);
  }

  .custom-slider {
    width: 100%;
    /* height: fit-content; */
    height: auto;
    position: relative;
    overflow: hidden;
  }

  .testimonial-section {
    background: var(--white);
    margin: 10px 0px;
    padding: 5px;
    border-radius: 30px;
  }

  .placements-section {
    background: #eef5ff;
    margin: 10px 0px;
    padding: 5px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }

  .hero-section .hero-img img {
    width: 100%;
  }
  .breadcrumb-area {
    background: linear-gradient(rgba(12, 15, 60, 0.8), rgba(12, 15, 60, 0.8));
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    color: var(--white);
  }
  .breadcrumb-area h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
  }
  .section-title {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
  }
  .about-section p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  .about-section ul li {
    color: var(--text-dark);
    font-size: 14px;
    padding: 8px 0;
    position: relative;
  }
  .values-section {
    padding: 40px 0;
  }
  .values-section {
    background: transparent;
    margin: 10px 0px;
    padding: 0px;
    border-radius: 0px;
  }
  .values-section .card-body {
    padding: 0px;
  }
  .values-section .card {
    padding: 25px 10px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: linear-gradient(
      to bottom right,
      #fff 50%,
      var(--primary-light) 200%
    );
  }
}

@media (max-width: 425px) {
  .top-header {
    display: none;
  }
  .navbar-brand img {
    height: 40px;
    width: auto;
    transition: var(--transition);
  }
  .hero-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .hero-section {
    /* padding: 40px 0; */
    min-height: auto;
    display: flex;
    align-items: center;
  }
  .hero-content .btn {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    background: white;
    color: var(--primary);
    border: 2px solid white;
    transition: all 0.3s ease;
  }
  .hero-img img {
    height: fit-content;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    /* margin-top: 30px; */
  }

  .hero-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
  }
  .hero-content {
    padding-right: 0px;
  }
  .course-section {
    padding: 40px 0;
    background: #fff;
    margin: 10px 0px;
    border-radius: 30px;
  }
  .section-heading h2 {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
  }
  .section-heading p {
    color: var(--text-light);
    font-size: 14px;
  }
  .benefits-section {
    padding: 40px 0;
    background: #eef5ff;
    margin: 10px 00px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
  .benefits-wrapper {
    padding: 0px;
  }
  .benefit-points {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .learning-models-section {
    background: var(--white);
    padding: 40px 0;
    margin: 10px 0px;
    border-radius: 0px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .custom-slide-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    width: fit-content;
  }
  .custom-slide-inner {
    width: 100%;
    /* height: 400px; */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .custom-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: var(--transition);
  }

  .custom-slider {
    width: 100%;
    height: fit-content;
    position: relative;
    overflow: hidden;
  }

  .testimonial-section {
    background: var(--white);
    margin: 10px 0px;
    padding: 5px;
    border-radius: 30px;
  }

  .placements-section {
    background: #eef5ff;
    margin: 10px 0px;
    padding: 5px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }

  .hero-section .hero-img img {
    width: 100%;
  }
  .breadcrumb-area {
    background: linear-gradient(rgba(12, 15, 60, 0.8), rgba(12, 15, 60, 0.8));
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    color: var(--white);
  }
}

@media (max-width: 375px) {
  .top-header {
    display: none;
  }
  .navbar-brand img {
    height: 40px;
    width: auto;
    transition: var(--transition);
  }
  .hero-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .hero-section {
    /* padding: 40px 0; */
    min-height: auto;
    display: flex;
    align-items: center;
  }
  .hero-content .btn {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    background: white;
    color: var(--primary);
    border: 2px solid white;
    transition: all 0.3s ease;
  }
  .hero-img img {
    height: fit-content;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    /* margin-top: 30px; */
  }

  .hero-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
  }
  .hero-content {
    padding-right: 0px;
  }
  .course-section {
    padding: 40px 0;
    background: #fff;
    margin: 10px 0px;
    border-radius: 30px;
  }
  .section-heading h2 {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
  }
  .section-heading p {
    color: var(--text-light);
    font-size: 14px;
  }
  .benefits-section {
    padding: 40px 0;
    background: #eef5ff;
    margin: 10px 00px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
  .benefits-wrapper {
    padding: 0px;
  }
  .benefit-points {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .learning-models-section {
    background: var(--white);
    padding: 40px 0;
    margin: 10px 0px;
    border-radius: 0px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .custom-slide-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    width: fit-content;
  }
  .custom-slide-inner {
    width: 100%;
    /* height: 40apx; */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .custom-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: var(--transition);
  }

  .custom-slider {
    width: 100%;
    height: fit-content;
    position: relative;
    overflow: hidden;
  }

  .testimonial-section {
    background: var(--white);
    margin: 10px 0px;
    padding: 5px;
    border-radius: 30px;
  }

  .placements-section {
    background: #eef5ff;
    margin: 10px 0px;
    padding: 5px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }

  .breadcrumb-area {
    background: linear-gradient(rgba(12, 15, 60, 0.8), rgba(12, 15, 60, 0.8));
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    color: var(--white);
  }
}
@media (max-width: 430px) {
  .card-body .my-btn {
    margin-bottom: 20px;
  }
}

@media (max-width: 320px) {
  .top-header {
    display: none;
  }
  .navbar-brand img {
    height: 40px;
    width: auto;
    transition: var(--transition);
  }
  .hero-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .hero-section {
    /* padding: 40px 0; */
    min-height: auto;
    display: flex;
    align-items: center;
  }
  .hero-content .btn {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    background: white;
    color: var(--primary);
    border: 2px solid white;
    transition: all 0.3s ease;
  }
  .hero-img img {
    height: fit-content;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    /* margin-top: 30px; */
  }

  .hero-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
  }
  .hero-content {
    padding-right: 0px;
  }
  .course-section {
    padding: 40px 0;
    background: #fff;
    margin: 10px 0px;
    border-radius: 30px;
  }
  .section-heading h2 {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
  }
  .section-heading p {
    color: var(--text-light);
    font-size: 14px;
  }
  .benefits-section {
    padding: 40px 0;
    background: #eef5ff;
    margin: 10px 00px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
  .benefits-wrapper {
    padding: 0px;
  }
  .benefit-points {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .learning-models-section {
    background: var(--white);
    padding: 40px 0;
    margin: 10px 0px;
    border-radius: 0px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .custom-slide-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    width: fit-content;
  }
  .custom-slide-inner {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .custom-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: var(--transition);
  }

  .custom-slider {
    width: 100%;
    height: fit-content;
    position: relative;
    overflow: hidden;
  }

  .testimonial-section {
    background: var(--white);
    margin: 10px 0px;
    padding: 5px;
    border-radius: 30px;
  }

  .placements-section {
    background: #eef5ff;
    margin: 10px 0px;
    padding: 5px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }

  .breadcrumb-area {
    background: linear-gradient(rgba(12, 15, 60, 0.8), rgba(12, 15, 60, 0.8));
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    color: var(--white);
  }
}
.fa-envelope {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}
@media (max-width: 767px) {
  .footer-bottom-links {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .main-header .resp-menu {
    display: block;
    background-color: #0b0e3c;
    /* color: #fff; */
  }
  .nav-link {
    color: #ffffff !important;
  }
  .header-buttons {
    margin-left: 15px;
  }
  .btn[data-bs-toggle="modal"] {
    background: white;

    color: var(--primary);
  }
  .header-buttons {
    margin-top: 20px;
  }
  .offcanvas-body {
    background-color: var(--primary) !important;
  }
}
.icon-phone {
  transform: rotate(90deg); /* Can be rotated */
}
.seminar-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.seminar-slide-inner {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.seminar-slide-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.seminar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
}

.seminar-slide-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 800px;
}

.seminar-slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 800px;
}

.seminar-slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.6;
}

.seminar-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.seminar-btn:hover {
  background: transparent;
  color: var(--white);
}

.seminar-next,
.seminar-prev {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transform: scale(1);
  opacity: 0.8;
  display: none !important;
}
.seminar-next:hover,
.seminar-prev:hover {
  background: var(--primary);
  transform: scale(1.1);
  opacity: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}

.seminar-next:active,
.seminar-prev:active {
  transform: scale(0.95);
}
.seminar-pagination {
  /* bottom: 30px !important; */
}
.seminar-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.seminar-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

@media (max-width: 768px) {
  .seminar-slider {
    height: 400px;
  }

  .seminar-slide-inner {
    height: 400px;
  }

  .seminar-slide-content h1 {
    font-size: 32px;
  }

  .seminar-slide-content p {
    font-size: 16px;
  }
}