@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --primary-color: rgb(10, 73, 139);
  --secondary-color: rgb(240, 22, 30);
  --background-color: rgba(244, 248, 236, 1);
  --text-color: rgba(0, 0, 0, 1);
  --white-color: rgba(255, 255, 255, 1);
  --footer-bg-color: rgba(38, 70, 71, 1);
  --grey-color: rgb(218, 218, 218);
}
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4f54a0;
}

body {
  font-family: "Lato", sans-serif;
  background-color: var(--white-color);
}
a {
  text-decoration: none;
}
.navbar {
  padding: 12px 0;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

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

.nav-link {
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  color: #222 !important;
  position: relative;
  padding: 8px 12px !important;
  transition: all 0.3s ease-in-out;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link.active {
  color: var(--primary-color) !important;
}

.nav-link.active::after {
  width: 100%;
}

.offcanvas-body ul {
  gap: 8px;
}

.offcanvas-body .nav-link {
  padding: 12px 10px !important;
  font-size: 18px;
}

.offcanvas-header {
  background: #f8f9fa;
}

.hero-video-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-headings {
  position: relative;
  min-height: 90px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.hero-heading-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 12s infinite;
}

.hero-heading-item:nth-child(1) {
  animation-delay: 0s;
}
.hero-heading-item:nth-child(2) {
  animation-delay: 2.4s;
}
.hero-heading-item:nth-child(3) {
  animation-delay: 4.8s;
}
.hero-heading-item:nth-child(4) {
  animation-delay: 7.2s;
}
.hero-heading-item:nth-child(5) {
  animation-delay: 9.6s;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  8% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}

.hero-heading {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: white;
  margin: 0;
  display: inline-block;
}

.hero-gradient-text {
  background: var(--secondary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subheading {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.hero-btn {
  padding: 10px 10px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 210px;
  text-align: center;
  display: inline-block;
}

.hero-btn-primary {
  background: var(--secondary-color);
  color: white;
  box-shadow: 0 10px 30px rgba(99, 104, 176, 0.3);
  cursor: pointer;
}

.hero-btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(99, 104, 176, 0.4);
}

.hero-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  cursor: pointer;
}

.hero-btn-outline:hover {
  background: white;
  color: #000;
  transform: translateY(-6px);
}

@media (max-width: 992px) {
  .hero-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-video-section {
    height: 60vh;
  }

  .hero-heading {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .hero-subheading {
    font-size: 1.2rem;
  }

  .hero-btn-primary {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 80%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.5rem;
  }

  .hero-container {
    padding: 0 15px;
  }

  .hero-subheading {
    font-size: 1.1rem;
  }

  .hero-headings {
    min-height: 80px;
  }
}

.main-heading h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.main-heading h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 8px;
}

.main-heading .subtitle {
  font-size: 1rem;
  color: #444;
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .main-heading h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .main-heading h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .main-heading h2 {
    font-size: 1.5rem;
  }

  .main-heading h2::before {
    width: 80px;
    height: 4px;
  }

  .main-heading h2::after {
    width: 40px;
  }
}

.white-heading h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.white-heading h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 8px;
}

.white-heading .subtitle {
  font-size: 1.15rem;
  color: #eaeaea;
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .white-heading h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .white-heading h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .white-heading h2 {
    font-size: 1.8rem;
  }

  .white-heading h2::before {
    width: 80px;
    height: 4px;
  }

  .white-heading h2::after {
    width: 40px;
  }
}

.feature-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(10, 73, 139, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(10, 73, 139, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 73, 139, 0.15);
  border-color: var(--primary-color);
}

.icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.icon-box {
  animation: float 6s ease-in-out infinite;
}

.what-we-offer {
  background: var(--background-color);
}

.offer-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(10, 73, 139, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(10, 73, 139, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.offer-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(10, 73, 139, 0.18);
}

.offer-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(10, 73, 139, 0.3);
}

.offer-title {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.offer-desc {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.offer-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  color: #555;
  font-size: 0.92rem;
}

.offer-features li {
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
}

.offer-features li::before {
  content: "✓";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.offer-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  transition: color 0.3s;
  border: 1px solid var(--primary-color);
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.offer-link:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}

@media (max-width: 768px) {
  .offer-card {
    padding: 1.8rem 1.2rem;
  }
  .offer-title {
    font-size: 1.25rem;
  }
}

.btn-explore-all {
  position: absolute;
  right: 30px;
  bottom: 0px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.4s ease;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  border: none;
  background: var(--secondary-color);
  color: white;
}

.btn-explore-all:hover {
  background: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(99, 104, 176, 0.4);
}

.btn-explore-all i {
  transition: transform 0.3s ease;
}

.btn-explore-all:hover i {
  transform: translateX(8px);
}

@media (max-width: 992px) {
  .btn-explore-all {
    position: static;
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
  }
}

.partner-logo {
  height: 100px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: all 0.4s ease;
  padding: 10px;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.our-industry-partners-carousel .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.our-industry-partners-carousel .owl-dots {
  margin-top: 30px;
}

.our-industry-partners-carousel .owl-dot span {
  background: #ddd !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
}

.our-industry-partners-carousel .owl-dot.active span {
  background: var(--primary-color) !important;
  transform: scale(1.3);
}

.cta-section {
  position: relative;
  color: white;
  background: transparent;
}

.cta-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/background/coding-man.jpg");
  background-size: cover;
  background-position: center left;
  background-attachment: fixed;
  z-index: 1;
}

.cta-bg-shape::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.78) 100%
  );
  backdrop-filter: blur(2px);
  z-index: 2;
}

.cta-section > .container {
  position: relative;
  z-index: 3;
}

.cta-heading {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.cta-subheading {
  font-size: 1.35rem;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.btn-cta-primary {
  background: var(--secondary-color);
  color: white;
  padding: 18px 40px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 12px 35px rgba(240, 22, 30, 0.5);
  transition: all 0.4s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(240, 22, 30, 0.6);
}

.btn-cta-outline {
  background: transparent;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
  padding: 16px 36px;
  font-size: 1.15rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.btn-cta-outline:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-5px);
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badges span {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .cta-bg-shape {
    background-attachment: scroll;
  }
  .cta-heading {
    font-size: 2.3rem;
  }
  .btn-cta-primary,
  .btn-cta-outline {
    width: 90%;
    max-width: 380px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.site-footer {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  font-family: "Poppins", sans-serif;
  border-top: 2px solid #fff;
}

.footer-logo {
  height: 60px;
  filter: brightness(0) invert(1);
}

.footer-title {
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

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

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 8px;
}

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

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: var(--secondary-color);
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(240, 22, 30, 0.4);
}

.contact-info li {
  margin: 12px 0;
  color: var(--white-color);
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--secondary-color);
  width: 20px;
}

.footer-divider {
  border-color: var(--white-color);
}

.copyright {
  font-size: 0.95rem;
  opacity: 0.8;
}

#year::before {
  content: "2025";
}

@media (max-width: 768px) {
  .footer-title {
    font-size: 1.2rem;
  }
  .social-links {
    justify-content: center;
  }
  .copyright {
    font-size: 0.9rem;
  }
}

.about-hero-banner {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transform: scale(1.08);
  transition: transform 10s ease;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.78) 100%
  );
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
}

.about-page-title {
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.about-page-title::after {
  content: "";
  display: block;
  width: 70%;
  height: 7px;
  background: var(--secondary-color);
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(240, 22, 30, 0.8);
}

.about-tagline {
  font-size: 1.45rem;
  font-weight: 500;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
  .about-page-title {
    font-size: 3.8rem;
  }
}

@media (max-width: 768px) {
  .about-hero-banner {
    min-height: 60vh;
  }
  .about-page-title {
    font-size: 3rem;
  }
  .about-tagline {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .about-page-title {
    font-size: 2.5rem;
  }
}

.nav-courses-tabs {
  gap: 20px;
}
.nav-courses-tabs .nav-courses-link {
  background: #f1f3f5;
  color: #333;
  border: none;
  font-weight: 600;
  transition: all 0.4s;
}

.nav-courses-tabs .nav-courses-link.active,
.nav-courses-tabs .nav-courses-link:hover {
  background: var(--secondary-color);
  color: white;
  box-shadow: 0 15px 30px rgba(240, 22, 30, 0.3);
}

.course-card-premium {
  transition: all 0.5s ease;
  border: 1px solid rgba(10, 73, 139, 0.1);
}

.course-card-premium:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18) !important;
}

.course-title {
  color: var(--primary-color);
}
.popular-ribbon {
  position: absolute;
  top: 35px;
  right: -45px;
  padding: 8px 55px;
  font-size: 0.9rem;
  font-weight: bold;
  transform: rotate(45deg);
  z-index: 10;
}
.card-img-top {
  max-height: 200px;
}

.courses-btn {
  gap: 10px;
}

.courses-view-details-btn {
  border: 1px solid var(--secondary-color);
  background: transparent;
  color: var(--secondary-color);
  font-weight: 600;
  transition: all 0.4s;
}

.courses-view-details-btn:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

.book-demo-btn {
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.4s;
}

.book-demo-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.book-demo-modal {
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.book-demo-header {
  background: linear-gradient(135deg, var(--primary-color), #0a3d78);
  padding: 1rem 1.5rem;
}

.selected-course-badge {
  background: #fafcff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 20px;
  text-align: center;
  font-size: 0.95rem;
}

.book-demo-body {
  max-height: 70vh;
  overflow-y: auto;
  padding: 1.5rem;
  scrollbar-width: thin;
}

.book-demo-body::-webkit-scrollbar {
  width: 6px;
}
.book-demo-body::-webkit-scrollbar-track {
  background: #f1f3f5;
  border-radius: 10px;
}
.book-demo-body::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

.book-input,
.book-demo-modal .form-floating > .form-control,
.book-demo-modal .form-floating > .form-select {
  height: 56px;
  border: 2px solid #e3e8ff;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.book-demo-modal .form-floating > .form-control:focus,
.book-demo-modal .form-floating > .form-select:focus {
  border-color: var(--primary-color);
  background-color: white;
  box-shadow: none;
}

.book-demo-modal .form-floating > label {
  color: var(--text-color);
  font-weight: 500;
  padding-left: 1.2rem;
  padding-top: 0.6rem;
}

.book-demo-modal textarea.form-control {
  border-radius: 16px !important;
  padding-top: 1.5rem;
}

.book-submit-btn {
  background: var(--secondary-color);
  color: white;
  height: 58px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 8px 25px rgba(240, 22, 30, 0.3);
}

.book-submit-btn:hover {
  background: #c01225;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(240, 22, 30, 0.4);
  color: white;
}
.courses-faq-section .accordion-button {
  position: relative;
  padding-right: 45px;
}

.courses-faq-section .accordion-button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f067";
  font-size: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  background: none !important;
}

.courses-faq-section .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: var(--primary-color);
}

.why-choose-us,
.advisor-section {
  background: var(--background-color);
}

.advisor-form {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #fff;
  border-radius: 15px;
}

.advisor-list li {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
}

.advisor-list li i {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-right: 12px;
  margin-top: 3px;
}

.form-title {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.curriculum-accordion .accordion-item {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.08);
}

.curriculum-accordion .accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 22px rgba(0, 0, 0, 0.12);
}

.curriculum-accordion .accordion-button {
  background: #fff;
  padding: 18px 22px;
  font-size: 1.12rem;
  font-weight: 700;
  color: #333;
  border: none;
  border-radius: 18px !important;
  transition: all 0.4s ease-in-out;
}

.curriculum-accordion .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: #fff;
  box-shadow: none;
}

.curriculum-accordion .accordion-button:focus {
  box-shadow: none;
}

.curriculum-accordion .accordion-button::after {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-weight: 900;
  color: var(--primary-color);
  transition: transform 0.4s ease;
}

.curriculum-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: #fff;
}

.curriculum-accordion .accordion-body {
  padding: 20px 25px;
  background: #f8f9fc;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.curriculum-accordion .accordion-item + .accordion-item {
  margin-top: 15px;
}

.course-features .feature-box {
  background: var(--white-color);
  border: 1px solid rgba(10, 73, 139, 0.08);
  border-radius: 18px;
  transition: all 0.35s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.course-features .feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(10, 73, 139, 0.18);
  border: 2px solid var(--secondary-color);
}

.course-features .feature-box h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.course-features .feature-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
}

.course-features .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.course-features .feature-box:hover .icon-circle {
  transform: scale(1.08);
}

.course-features .feature-box h5::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  margin: 6px auto 0;
  transition: width 0.3s ease;
  border-radius: 8px;
}

.course-features .feature-box:hover h5::after {
  width: 35%;
}

.skills-tools-section .skills-subtitle {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 10px;
}

.skill-box {
  background: var(--white-color);
  text-align: center;
  padding: 22px 10px;
  border-radius: 18px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 73, 139, 0.12);
  box-shadow: rgba(100, 100, 111, 0.15) 0px 6px 20px 0px;
}

.skill-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(240, 22, 30, 0.22);
}

.skill-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--secondary-color);
  border-radius: 18px;
  clip-path: inset(0 50% 100% 50%);
  transition: clip-path 0.6s ease;
  pointer-events: none;
}

.skill-box:hover::before {
  clip-path: inset(0 0 0 0);
}

.skill-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(10, 73, 139, 0.15);
  transition: transform 0.3s ease;
}

.skill-box:hover .skill-icon {
  transform: scale(1.1);
}

.skill-icon img {
  width: 44px;
  height: auto;
}

.skill-box h6 {
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 8px;
  font-size: 1rem;
}

.secondary-icon {
  color: var(--secondary-color);
}

.way-success-section {
  background: #fafafa;
}

.vision-mission {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
  height: 100%;
}

.vision-mission:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.alumni-carousel .item {
  position: relative;
  overflow: hidden;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alumni-carousel img {
  transition: all 0.4s ease;
  object-fit: contain;
  height: 100px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.alumni-carousel .item:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.alumni-carousel .item::before,
.alumni-carousel .item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid var(--primary-color);
  opacity: 0;
  transition: all 0.6s ease;
}

.alumni-carousel .item::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.alumni-carousel .item::after {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

.alumni-carousel .item:hover::before,
.alumni-carousel .item:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.faculty-card {
  background: white;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.4s ease;
  border: 1px solid rgba(10, 73, 139, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.faculty-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.faculty-card:hover::before {
  transform: scaleX(1);
}
.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(10, 73, 139, 0.18);
}

.faculty-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.faculty-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.faculty-info {
  padding: 0.5rem 1.5rem 1rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.faculty-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.faculty-role {
  font-size: 1.05rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.skill-badge {
  display: inline-block;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.faculty-badge {
  display: inline-block;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.faculty-badge:hover {
  transform: translateY(-3px);
}

.faculty-skills {
  list-style: none;
  padding: 0;
  margin: 0 10px;
  flex-grow: 1;
  color: #555;
  font-size: 0.92rem;
  text-align: left;
}

.faculty-skills li {
  padding: 6px 0;
  position: relative;
  padding-left: 24px;
}

.faculty-skills li::before {
  content: "✓";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.1em;
}

.faculty-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  transition: color 0.3s;
  border: 1px solid var(--primary-color);
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.faculty-link:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
@media (max-width: 768px) {
  .faculty-info {
    padding: 1.5rem 1.2rem;
  }
  .faculty-name {
    font-size: 1.25rem;
  }
}

/* ===============================
   Premium Faculty Section
================================ */

.premium-faculty-section {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* Left Profile Card */
.premium-faculty-card {
  background: var(--white-color);
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 110px;
}

.premium-faculty-img-wrapper {
  width: 220px;
  height: 220px;
  margin: auto;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.premium-faculty-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

/* Text */
.premium-faculty-name {
  font-weight: 800;
  margin-top: 20px;
  font-size: 22px;
}

.premium-faculty-specialization {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 10px;
}

.premium-faculty-experience-badge {
  display: inline-block;
  background: rgba(10, 73, 139, 0.1);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

/* Right Content Card */
.premium-faculty-content-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
}

.premium-faculty-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.premium-faculty-title span {
  color: var(--primary-color);
}

.premium-faculty-description {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

/* Expertise */
.premium-faculty-subtitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.premium-faculty-expertise-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.premium-faculty-expertise-item {
  background: #f8fafc;
  border-left: 4px solid var(--primary-color);
  padding: 14px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.premium-faculty-expertise-item i {
  color: var(--primary-color);
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-faculty-content-card {
    padding: 30px;
  }

  .premium-faculty-title {
    font-size: 26px;
  }
}

.batch-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-color);
  color: white;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 50px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(10, 73, 139, 0.4);
}

.job-role {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
}

.company-logo {
  height: 40px !important;
  object-fit: contain !important;
  border-radius: 8px;
  padding: 4px;
}

.package-badge {
  background: var(--primary-color);
  color: white;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.4rem 0.5rem;
  border-radius: 50px;
}

.student-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.student-card:hover {
  transform: translateY(-8px);
}
.student-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s;
}
.student-card:hover img {
  transform: scale(1.08);
}

.student-info {
  padding: 1.4rem 1rem 1.8rem;
  text-align: center;
}
.student-info h5 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.4rem;
}
.placement-statistics {
  background-color: var(--primary-color);
}
.placement-stat-card {
  background: white;
  border-radius: 16px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}
.placement-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}
.placement-stat-label {
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
}

.contact-form,
.contact-box {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.contact-description {
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.contact-text {
  margin: 0;
  color: #6c757d;
}

.blog-card {
  background: #fff;
  transition: 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

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

.blog-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.blog-excerpt {
  font-size: 14px;
}
.search-icon {
  background-color: var(--primary-color) !important;
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.read-more:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.sidebar-categories li,
.recent-posts li {
  margin-bottom: 10px;
}

.sidebar-categories li a,
.recent-posts li a {
  color: #444;
  text-decoration: none;
}

.sidebar-categories li a:hover,
.recent-posts li a:hover {
  color: var(--primary-color);
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  transition: 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}
.service-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 15px;
  margin-bottom: 10px;
}
.service-icon {
  font-size: 35px;
  color: var(--primary-color);
}

#advertiseCarousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

#advertiseCarousel .owl-nav .owl-prev,
#advertiseCarousel .owl-nav .owl-next {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.3) !important;
  color: white !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px !important;
  transition: 0.3s ease;
}

#advertiseCarousel .owl-nav .owl-prev:hover,
#advertiseCarousel .owl-nav .owl-next:hover {
  background: rgba(0, 0, 0, 0.8) !important;
}

#advertiseCarousel .owl-nav .owl-prev {
  position: absolute;
  left: 0px;
}

#advertiseCarousel .owl-nav .owl-next {
  position: absolute;
  right: 0px;
}
#advertiseModal .owl-carousel .item img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#advertiseModal .owl-carousel .item img:hover {
  transform: scale(1.03);
}
.close-inside {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  height: 20px;
  width: 20px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-inside:hover {
  transform: scale(1.1);
  transition: 0.3s ease;
}
