/********** Template CSS **********/


@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');



@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
*{
    font-family: 'Outfit', sans-serif;
}
/* ==============================
   🌐 Root Variables (Theme)
============================== */
:root {
  --primary: #001f54;          /* Deep Royal Blue – Core Brand Base */
  --secondary: #e31e26;        /* Electric Red – Accent & Highlights */
  --accent: #007bff;           /* Bright Blue Glow – For gradients */
  --dark: #070b1f;             /* Dark Blue-Black – Backgrounds */
  --light: #f9fbff;            /* Clean Ice White – Background */
  --text-dark: #0d1b2a;        /* Text on light backgrounds */
  --text-light: #ffffff;       /* Text on dark backgrounds */
  --gradient: linear-gradient(135deg, #001f54, #004aad, #007bff); /* Premium Gradient */
  --red-gradient: linear-gradient(135deg, #b31217, #e31e26, #ff5e62); /* Stylish red tone */
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s ease-in-out;
}

.btn-primary {
  background: var(--red-gradient);
  border: none;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 0 12px rgba(227, 30, 38, 0.4);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gradient);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
  transform: translateY(-3px);
}

h1, h2, h3, h4{
    color: var(--secondary) !important;
}
p{
    text-align: justify !important;
}
/* .all-course h5{
    color: #FDEE00!important;s
} */
.fw-medium {
    font-weight: 600 !important;
}


.fw-semi-bold {
    font-weight: 700 !important;
}

/* .back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
} */


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

/* ==============================
   🔝 Top Navbar
============================== */
.top-nav {
  background-color: var(--dark);
  font-size: 14px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-nav a {
  text-decoration: none;
  color: var(--text-light);
  transition: var(--transition);
}

.top-nav a:hover {
  color: var(--primary);
}

.nav-icon {
  color: var(--light);
  font-size: 20px;
  transition: var(--transition);
}

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

/* ==============================
   🧭 Main Navbar
============================== */
/* .navbar {
  background-color: #ffffff;
  padding: 0.8rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  height: 55px;
  border-radius: 10px;
}

.navbar-brand h3 {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
    font-family: "Libre Baskerville", serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler img {
  filter: brightness(0.3);
} */
.navbar-brand h3 {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
    font-family: "Libre Baskerville", serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
}

/* ===== Navbar Styling Fix ===== */
.navbar {
  height: auto;
  min-height: 75px;
  transition: all 0.3s ease;
  z-index: 1030; /* Ensures always on top */
}

.navbar-logo {
  width: 120px;
  height: auto;
  transition: all 0.3s ease;
}

/* Shrink effect when scrolling (optional) */
.navbar.scrolled {
  padding: 5px 0;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .navbar-logo {
  width: 95px;
}

/* Ensure text doesn't wrap weirdly */
.navbar-brand h3 {
  font-size: 18px;
  white-space: nowrap;
  color: #111a33;
}



/* Mobile adjustments */
@media (max-width: 991px) {
  .navbar {
    min-height: 65px;
    background: #fff !important;
  }

  .navbar-brand h3 {
    display: none;
  }

  .navbar-nav {
    background-color: #111a33;
    border-radius: 10px;
    padding: 10px 0;
  }

  .navbar-nav .nav-link {
    color: #ffffff !important;
    text-align: center;
    padding: 10px 0;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .show > .nav-link {
    color: #ff4081 !important;
  }

  .navbar-nav .dropdown-menu {
    background-color: #0f1938;
    border-radius: 8px;
    margin: 5px auto;
    text-align: center;
  }

  .dropdown-item:hover {
    background-color: #ff4081;
    color: #fff;
  }
}



/* ==============================
   🔗 Nav Links
============================== */
.navbar-nav .nav-link {
  position: relative;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  margin: 0 15px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition);
}

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


/* ==============================
   ⬇️ Dropdown Menu
============================== */
.dropdown-menu {
  background: var(--dark);
  border: none;
  border-radius: 10px;
  padding: 10px;
  box-shadow: var(--shadow);
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.dropdown-item {
  color: #d9e7f5;
  padding: 10px 15px;
  border-radius: 6px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--primary);
  color: var(--dark);
}

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

/* ==============================
   📱 Responsive Adjustments
============================== */
@media (max-width: 991px) {
  .navbar {
    background: #ffffff;
  }

  .navbar-nav {
    background-color: var(--dark);
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    color: var(--text-light);
    text-align: center;
    padding: 10px 0;
  }

  .navbar-nav .nav-link:hover::after {
    display: none;
  }

  .navbar-nav .dropdown-menu {
    background-color: #111a33;
    color: #ffffff;
   
  }

  .navbar-light .navbar-nav .show>.nav-link, .navbar-light .navbar-nav .nav-link.active{
    color: #ff4081;
  }

   .navbar-light .navbar-nav .show>.nav-link, .navbar-light .navbar-nav .nav-link{
    color: #ffffff;
  }

  .navbar-brand h3 {
    font-size: 16px;
    display: none;
  }
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.owl-carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.6);
}

/* ===== Overlay Content ===== */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 15, 31, 0.8), rgba(10, 15, 31, 0.3));
  display: flex;
  align-items: center;
  padding-left: 5%;
}

.tagline {
  letter-spacing: 1px;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
}

.highlights {
  color: var(--light) !important;
  text-shadow: 0 0 10px var(--primary);
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: none;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scale(1.05);
}

/* ===== Custom Navigation Buttons ===== */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
  z-index: 10;
}

.owl-nav button {
  background: rgba(0, 0, 0, 0.5) !important;
  color: var(--primary) !important;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-nav button:hover {
  background: var(--primary) !important;
  color: white !important;
  transform: scale(1.15);
  box-shadow: 0 0 20px var(--primary);
}

/* ===== Dots ===== */
.owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  display: block;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .owl-carousel-item img {
    height: 70vh;
  }

  .owl-nav button {
    width: 45px;
    height: 45px;
    font-size: 20px !important;
  }

  .display-4 {
    font-size: 1.9rem;
  }

  .btn-primary {
    font-size: 14px;
    padding: 10px 25px;
  }
}

/*** Section Title ***/
/* ===== Section ===== */
.services-section {
  background: var(--light);
  position: relative;
}



.section-subtitle {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
}

/* ===== Service Card ===== */
.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient);
  opacity: 0;
  transform: rotate(45deg);
  transition: all 0.5s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.1;
  transform: rotate(0deg);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 200, 255, 0.3);
}

/* ===== Icon Circle ===== */
.service-icon-box {
  background: var(--gradient);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.4);
  transition: all 0.4s ease;
  position: relative;
}

.service-icon-box i {
  font-size: 38px;
  color: var(--light);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-box {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 30px rgba(255, 64, 129, 0.6);
}

/* ===== Text ===== */
.service-title {
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 15px;
}

.service-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ===== Floating Glow Effect ===== */
.services-section::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: var(--gradient);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: floatGlow 8s ease-in-out infinite;
}

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

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .service-card {
    padding: 30px 20px;
  }

  .service-icon-box {
    width: 70px;
    height: 70px;
  }

  .service-icon-box i {
    font-size: 28px;
  }
}

/*** About ***/

.abt-arrow{
    font-size: 20px;
    font-weight: bolder;
    color: var(--primary);
}
.abt-head h6{
    /* color: var(--secondary) !important; */
}


/*** Service ***/
.service-item {
    /* border-top-right-radius: 50px; */
    /* border-bottom-left-radius: 50px; */
    /* border-bottom-right-radius: 50px; */
    background: var(--light);
    transition: .5s;
}

/* .service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
} */
.service-icon{
    font-size: 55px;
    color: #40aadb;
}

/*** Categories & Courses ***/
/* .category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
} */


/*** Team ***/
/* .team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
} */


/* ===== Section Styling ===== */
.testimonial-section {
  background: var(--light);
  position: relative;
}

.section-heading {
  color: var(--dark);
  font-weight: 700;
}

.section-subtitle {
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
}

/* ===== Testimonial Card ===== */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 200, 255, 0.3);
}

/* ===== Student Icon ===== */
.student-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 34px;
  margin: 0 auto 15px;
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.4);
  transition: all 0.4s ease;
}

.testimonial-card:hover .student-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 40px rgba(255, 64, 129, 0.6);
}

/* ===== Student Details ===== */
.student-name {
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 5px;
}

.student-course {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.student-course i {
  color: var(--primary) !important;
  margin-right: 5px;
}

/* ===== Stars ===== */
.stars {
  margin-bottom: 15px;
}

.stars i {
  color: var(--primary);
  font-size: 16px;
  margin: 0 1px;
}

/* ===== Testimonial Text ===== */
.testimonial-text {
  font-size: 15px;
  color: #444;
  font-style: italic;
  line-height: 1.7;
}

/* ===== Owl Carousel Dots ===== */
.owl-dots {
  text-align: center;
  margin-top: 25px;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

/* ===== Nav Buttons ===== */
.owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.owl-nav button {
  background: rgba(0, 0, 0, 0.5) !important;
  color: var(--primary) !important;
  font-size: 24px !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.owl-nav button:hover {
  background: var(--primary) !important;
  color: white !important;
  transform: scale(1.1);
}
.student-icon i{
    color: var(--light);
}
/* ===== Responsive ===== */
@media (max-width: 767px) {
  .testimonial-card {
    padding: 30px 20px;
  }

  .student-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
    color: var(--primary);
  }
.student-icon i{
    color: #ff4081;
}
  .testimonial-text {
    font-size: 14px;
  }
}

.cards img{
    height: 200px !important;
    width: 100%;
    object-fit: cover;
}
.cards:hover{
    cursor: pointer;
}

.modal-content button:focus{
    box-shadow: none !important;
}
.inr{
    font-size: 20px;
    color: var(--primary);
}
.prize h4{
    color: var(--primary) !important;
}
.prize span{
    color: var(--dark) !important;
}




.gallery-img{
    height: 200px !important;
    width: 100%;
    object-fit: cover;
}


/*** Contact ***/

input, textarea{
    border: none !important;
    border-bottom: 1px solid rgb(192, 192, 192) !important;
    border-bottom-right-radius: 5px !important; 
    border-bottom-left-radius: 5px !important;
}
.contact-btn{
    background-color: var(--primary) !important;
    color: white !important;
    border-radius: 0px !important;
}
.contact-btn:hover{
    background-color: #035269 !important;
}
.contact-bg{
    background-color: var(--primary);
}
.contact-icon{
    font-size: 20px;
    color: white;
    border-radius: 50px;
    border: 1px solid white;
}



/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--secondary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer-angle{
    font-size: 23px;
    font-weight: bold;
    color: white;
}
.footer-icon{
    font-size: 20px;
    color: white;
}
.footer-social-icon{
    font-size: 20px;
    color: white;
    border-radius: 50px !important;
    transition: .5s ease-in-out;
}
.footer-social-icon:hover{
    color: var(--primary) !important;
    background-color: white !important;
}
.quick-link a{
    transition: .5s ease-in-out;
}
.quick-link a:hover{
    letter-spacing: 2px;
}
@media(max-width:768px){
    .copy-right{
        text-align: center !important;
    }
}




.side-line{
    height: 45px;
    width: 0px;
    border: 2px solid var(--primary) !important;
}



/* ===== Section Headings ===== */
.courses-section {
  background: var(--light);
}

.section-title {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-heading {
  font-weight: 700;
  color: var(--dark);
}

.section-subtitle {
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
}

/* ===== Course Cards ===== */
.course-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: #fff;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 200, 255, 0.3);
}

/* ===== Equal Image Sizes ===== */
.course-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

/* ===== Course Info Overlay ===== */
.course-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 15, 31, 0.75);
  text-align: center;
  padding: 12px 0;
  transition: all 0.4s ease;
}

.course-info h5 {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.course-card:hover .course-info {
  background: var(--gradient);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .course-img {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .course-img {
    height: 180px;
  }
  .course-info h5 {
    font-size: 14px;
  }
}


/* ===== Section Styling ===== */
.testimonial-section {
  background: var(--light);
  position: relative;
}

.section-title {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-heading {
  color: var(--dark);
  font-weight: 700;
}

.section-subtitle {
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
}

/* ===== Testimonial Card ===== */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 200, 255, 0.3);
}

/* ===== Student Icon ===== */
.student-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 34px;
  margin: 0 auto 15px;
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.4);
  transition: all 0.4s ease;
}

.testimonial-card:hover .student-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 40px rgba(255, 64, 129, 0.6);
}

/* ===== Student Details ===== */
.student-name {
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 5px;
}

.student-course {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.student-course i {
  color: var(--primary);
  margin-right: 5px;
}

/* ===== Stars ===== */
.stars {
  margin-bottom: 15px;
}

.stars i {
  color: var(--primary);
  font-size: 16px;
  margin: 0 1px;
}

/* ===== Testimonial Text ===== */
.testimonial-text {
  font-size: 15px;
  color: #444;
  font-style: italic;
  line-height: 1.7;
}

/* ===== Owl Carousel Dots ===== */
.owl-dots {
  text-align: center;
  margin-top: 25px;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

/* ===== Nav Buttons ===== */
.owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.owl-nav button {
  background: rgba(0, 0, 0, 0.5) !important;
  color: var(--primary) !important;
  font-size: 24px !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.owl-nav button:hover {
  background: var(--primary) !important;
  color: white !important;
  transform: scale(1.1);
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .testimonial-card {
    padding: 30px 20px;
  }

  .student-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}


/* ===== Placement Section ===== */
.placement-section {
  background: var(--light);
  position: relative;
}

.section-title {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;

  display: inline-block;
}

/* ===== Placement Card ===== */
.placement-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}

.placement-card img {
  width: 100px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.4s ease;
  opacity: 0.8;
}

.placement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 200, 255, 0.3);
}

.placement-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* ===== Floating Gradient Glow ===== */
.placement-section::before {
  content: "";
  position: absolute;
  top: 15%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: var(--gradient);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: glowMove 8s ease-in-out infinite;
}

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

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .placement-card {
    height: 100px;
  }
  .placement-card img {
    width: 80px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .placement-card {
    padding: 20px;
    height: 90px;
  }
  .placement-card img {
    width: 70px;
  }
}


/* ===== Footer Section ===== */
.footer-section {
  background: var(--dark);
  color: #ddd;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: var(--gradient);
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
}

/* ===== Titles ===== */
.footer-title {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  position: relative;
  margin-bottom: 1rem;
}

.footer-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--primary);
  margin-top: 8px;
}

/* ===== About ===== */
.footer-logo {
  border-radius: 10px;
  background: #fff;
}

.footer-text {
  color: #bbb;
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}

/* ===== Links ===== */
.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-links a i {
  color: var(--primary);
  font-size: 13px;
  margin-right: 6px;
  transition: color 0.3s ease;
}

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

.footer-links a:hover i {
  color: var(--secondary);
}

/* ===== Contact ===== */
.footer-contact {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}

.footer-contact i {
  color: var(--light);
  font-size: 20px;
  margin-top: 3px;
}

.footer-contact p {
  color: #ccc;
  margin: 0;
}

/* ===== Social Icons ===== */
.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gradient);
  transform: scale(1.1);
}

/* ===== Divider & Bottom ===== */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.designer-link {
  color: orange;
  text-decoration: none;
  font-weight: 600;
}

.designer-link:hover {
  color: var(--secondary);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .footer-about {
    margin-bottom: 30px;
  }

  .footer-links {
    text-align: left;
  }

  .footer-section {
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}


/* ===== Parallax Header ===== */
.parallax-header {
  background-image: url("./img/about-bg.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed; /* Enables parallax effect */
  background-repeat: no-repeat;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 184, 245, 0.8), rgba(10, 15, 31, 0.8));
  z-index: 1;
}

.page-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeSlideDown 1s ease-in-out;
  position: relative;
  z-index: 2;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--secondary);
}

.breadcrumb-item.active {
  color: #ddd;
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #fff;
  font-weight: 700;
  padding: 0 8px;
}

/* ===== Text Animation ===== */
@keyframes fadeSlideDown {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== Optional Floating Glow ===== */
.parallax-header::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 20%;
  width: 180px;
  height: 180px;
  background: var(--gradient);
  opacity: 0.3;
  filter: blur(120px);
  animation: floatGlow 8s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  100% {
    transform: translateY(-25px) translateX(25px);
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .parallax-header {
    min-height: 280px;
    
  }

  .page-title {
    font-size: 2.2rem;
  }
}


/* ===== Section Headings ===== */
.section-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}



.section-subtitle {
  color: #777;
  
 
  font-size: 16px;
  text-align: center !important;
}

/* ===== Service Card ===== */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 184, 245, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.08;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 184, 245, 0.2);
}

/* ===== Service Icon ===== */
.service-icon {
  font-size: 48px;
  background: var(--gradient);
  color: var(--light);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 184, 245, 0.5);
}

/* ===== Service Content ===== */
.service-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.service-text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }
}



/* ===== Section Header ===== */
.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--dark);
  text-transform: uppercase;
}

.primary-text {
  color: var(--primary);
}

.section-subtitle {
  color: #666;
  max-width: 650px;
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== Mission & Vision Cards ===== */
.mv-card {
  background: #fff;
  border: 1px solid rgba(0, 184, 245, 0.15);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  overflow: hidden;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 184, 245, 0.2);
}

.mv-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.mv-card:hover::before {
  opacity: 0.08;
}

/* ===== Icon Styling ===== */
.mv-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--light);
  background: var(--gradient);
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.mv-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}

.mv-text {
  color: #555;
  font-size: 15.5px;
  line-height: 1.8;
  z-index: 1;
  position: relative;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .mv-card {
    text-align: center;
  }

  .mv-icon {
    margin: 0 auto 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}


/* ===== Section Heading ===== */
.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
}
.section-title .primary-text {
  color: var(--primary);
}
.section-subtitle {
  color: #666;
  max-width: 650px;
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== Course Card ===== */
.course-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: all 0.5s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 184, 245, 0.25);
}

/* ===== Image Styling ===== */
.course-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.course-card:hover img {
  transform: scale(1.1);
}

/* ===== Overlay ===== */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 184, 245, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.course-card:hover .overlay {
  opacity: 1;
}
.overlay i {
  font-size: 2.5rem;
  color: #fff;
  animation: floatIcon 1.5s ease-in-out infinite alternate;
}
@keyframes floatIcon {
  0% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(-4px);
  }
}

/* ===== Course Content ===== */
.course-content {
  text-align: center;
  padding: 20px;
  background: #fff;
}
.course-content h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.course-content p {
  color: #555;
  font-size: 15px;
  margin-bottom: 12px;
  min-height: 50px;
}
.course-info {
  color: #00c8ff;
  font-weight: 600;
  font-size: 15px;
}
.course-info i {
  color: var(--primary);
  font-size: 17px;
}
.course-info .divider {
  color: #aaa;
  margin: 0 8px;
}

/* ===== Glowing Border Effect ===== */
.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: var(--gradient);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.course-card:hover::before {
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .course-img {
    height: 200px;
  }
  .section-title {
    font-size: 1.9rem;
  }
}

/* ===== Section Title ===== */
.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
}
.section-title .highlight {
  color: var(--primary) !important;
}
.section-subtitle {
  color: #666;
  max-width: 650px;
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== Course Card ===== */
.course-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  cursor: pointer;
}
.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 184, 245, 0.25);
}

/* Gradient Glow Border */
.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.course-card:hover::before {
  opacity: 1;
}

/* ===== Image ===== */
.course-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.course-card:hover img {
  transform: scale(1.1);
}

/* Overlay Icon */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 184, 245, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.course-card:hover .overlay {
  opacity: 1;
}
.overlay i {
  font-size: 2.5rem;
  color: #fff;
  animation: floatIcon 1.5s ease-in-out infinite alternate;
}
@keyframes floatIcon {
  0% { transform: translateY(5px); }
  100% { transform: translateY(-5px); }
}

/* ===== Card Body ===== */
.course-body {
  text-align: center;
  padding: 20px;
}
.course-body h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.course-body p {
  color: #555;
  font-size: 15px;
  margin-bottom: 12px;
  min-height: 60px;
}
.course-footer {
  color: var(--secondary);
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.course-footer i {
  color: var(--secondary);
  font-size: 17px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .course-img {
    height: 200px;
  }
  .section-title {
    font-size: 1.9rem;
  }
}

/* Section Title */
.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
}
.highlight {
  color: var(--primary) !important;
}
.section-subtitle {
  color: #666;
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Card Container */
.eee-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.eee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 184, 245, 0.25);
}

/* Electric Border Glow */
.eee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.eee-card:hover::before {
  opacity: 1;
}

/* Card Image */
.eee-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.eee-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.eee-card:hover img {
  transform: scale(1.1);
}

/* Overlay Icon */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 184, 245, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}
.eee-card:hover .overlay {
  opacity: 1;
}
.overlay i {
  font-size: 2.5rem;
  color: #fff;
  animation: floatIcon 1.5s ease-in-out infinite alternate;
}
@keyframes floatIcon {
  0% { transform: translateY(5px); }
  100% { transform: translateY(-5px); }
}

/* Card Body */
.eee-body {
  text-align: center;
  padding: 20px;
}
.eee-body h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.eee-body p {
  color: #555;
  font-size: 15px;
  margin-bottom: 12px;
  min-height: 60px;
}
.eee-footer {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.eee-footer i {
  color: var(--primary);
  font-size: 17px;
}

/* Responsive */
@media (max-width: 768px) {
  .eee-img {
    height: 200px;
  }
  .section-title {
    font-size: 1.9rem;
  }
}

/* ===== Ethical Hacking Card Theme ===== */
.course-card-ethical {
  background: #0a0a0a;
  border: 1px solid rgba(0, 255, 153, 0.2);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
}

.course-card-ethical:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 255, 153, 0.4);
}

.course-card-ethical .course-img {
  position: relative;
  overflow: hidden;
}

.course-card-ethical .course-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

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

.course-card-ethical .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #00ff99;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.course-card-ethical:hover .overlay {
  opacity: 1;
}

.course-card-ethical .course-body {
  padding: 20px;
  color: #e0e0e0;
}

.course-card-ethical .course-body h5 {
  color: #00ff99;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-card-ethical .course-body p {
  color: #bfbfbf;
  font-size: 0.95rem;
  min-height: 70px;
}

.course-card-ethical .course-footer {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #00eaff;
  font-weight: 600;
}

/* Highlight Accent */
.highlight-ethical {
  color: #00ff99;
}

/* Modal Theme */
.modal-content {
  background: #0f0f0f;
  color: #eaeaea;
  box-shadow: 0 0 30px rgba(0, 255, 153, 0.25);
}
.modal h5 {
  color: #00ff99;
}
.modal .btn-close {
  filter: invert(1);
}

/* ===== Other Courses Card Styling ===== */
.course-card-other {
  background: #ffffff;
  border: 1px solid rgba(0, 123, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
}

.course-card-other:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
}

.course-card-other .course-img {
  position: relative;
  overflow: hidden;
}

.course-card-other .course-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

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

.course-card-other .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 123, 255, 0.4);
  color: #ffcc00;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.course-card-other:hover .overlay {
  opacity: 1;
}

.course-card-other .course-body {
  padding: 20px;
}

.course-card-other .course-body h5 {
  color: #007bff;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-card-other .course-body p {
  color: #555;
  font-size: 0.95rem;
  min-height: 70px;
}

.course-card-other .course-footer {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #ffcc00;
  font-weight: 600;
}

/* Highlight */
.highlight-other {
  color: #007bff;
}

/* Modal Theme */
.modal-content {
  background: #ffffff;
  color: #222;
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.25);
}
.modal h5 {
  color: #007bff;
}
.modal .btn-close {
  filter: invert(0);
}
.course-card:hover::before {
  background: linear-gradient(135deg, #ff4081, #00eaff);
}
.eee-card:hover::before {
  background: linear-gradient(135deg, #ff4081, #00eaff);
}


/* ===== Contact Section ===== */
.contact-section {
  background: linear-gradient(135deg, #f9fbff 0%, #eef4ff 100%);
}

/* Contact Info Card */
.contact-info-card {
  background: linear-gradient(135deg, #0047ab, #007bff);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -50px;
  right: -50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(30px);
  animation: pulse 5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0.3;
  }
}


.contact-info-card p {
  font-size: 0.95rem;
  color: #f8f9fa;
  line-height: 1.6;
}

/* Form Styling */
.contact-form input,
.contact-form textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.15);
}

.contact-btn {
  background: linear-gradient(90deg, #0047ab, #007bff);
  color: #fff;
  border: none;
  transition: all 0.4s ease;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #006eff, #00aaff);
  transform: translateY(-2px);
}

/* Map */
.map-wrapper iframe {
  filter: grayscale(10%) brightness(98%);
  border-radius: 10px;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  padding: 14px;
  border-radius: 50%;
  text-align: center;
  z-index: 999;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebd5f;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-info-card {
    text-align: left;
  }
  .contact-btn {
    width: 100%;
  }
}

/* ===== Expert Section ===== */
.expert {
  background: linear-gradient(135deg, #0047ab, #007bff);
  position: relative;
  overflow: hidden;
}

.expert::before,
.expert::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: floatGlow 8s infinite alternate ease-in-out;
}

.expert::before {
  top: -80px;
  left: -80px;
  background: #00d4ff;
}

.expert::after {
  bottom: -80px;
  right: -80px;
  background: #ffcc00;
}

/* Expert Cards */
.expert-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  cursor: default;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.expert-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Icon */
.icon-wrap img {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
  transition: transform 0.4s ease;
}

.expert-card:hover .icon-wrap img {
  transform: scale(1.1);
}

/* Texts */
.expert-card h4 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.expert-card h6 {
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.9;
}

/* Animation */
@keyframes floatGlow {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .expert {
    background-attachment: scroll;
  }
  .expert-card {
    margin-bottom: 1rem;
  }
  .expert-card h4 {
    font-size: 1.8rem;
  }
  .expert-card h6 {
    font-size: 0.9rem;
  }
}

/* ===== Navbar Styling Fix ===== */
.navbar {
  height: auto;
  min-height: 75px;
  transition: all 0.3s ease;
  z-index: 1030; /* Ensures always on top */
}

.navbar-logo {
  width: 120px;
  height: auto;
  transition: all 0.3s ease;
}

/* Shrink effect when scrolling (optional) */
.navbar.scrolled {
  padding: 5px 0;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .navbar-logo {
  width: 95px;
}

/* Ensure text doesn't wrap weirdly */
.navbar-brand h3 {
  font-size: 18px;
  white-space: nowrap;
  color: #111a33;
}


/* Mobile adjustments */
@media (max-width: 991px) {
  .navbar {
    min-height: 65px;
    background: #fff !important;
  }

  .navbar-brand h3 {
    display: none;
  }

  .navbar-nav {
    background-color: #111a33;
    border-radius: 10px;
    padding: 10px 0;
  }

  .navbar-nav .nav-link {
    color: #ffffff !important;
    text-align: center;
    padding: 10px 0;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .show > .nav-link {
    color: #ff4081 !important;
  }

  .navbar-nav .dropdown-menu {
    background-color: #0f1938;
    border-radius: 8px;
    margin: 5px auto;
    text-align: center;
  }

  .dropdown-item:hover {
    background-color: #ff4081;
    color: #fff;
  }
}

.navbar {
  min-height: 75px;
}

.navbar-logo {
  transition: all 0.3s ease-in-out;
  width: 120px !important;
}

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

@media (max-width: 991px) {
  .navbar-logo {
    width: 90px !important;
  }
  .navbar-brand {
    justify-content: center;
  }
  .navbar-nav {
    background-color: #111a33;
    border-radius: 10px;
    padding: 10px 0;
  }
  .navbar-nav .nav-link {
    color: #ffffff !important;
    text-align: center;
  }
  .navbar-nav .nav-link.active {
    color: #ff4081 !important;
  }
}



/* ===== Floating WhatsApp Button ===== */
.floating-chat {
  position: fixed;
  right: 5%;
  bottom: 5%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(18, 140, 126, 0.4);
  animation: floatPulse 2.5s ease-in-out infinite;
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-chat a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.floating-chat:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  animation: rotateWave 3s linear infinite;
}

.chat-text {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
}

/* ===== Floating Motion Animation ===== */
@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
  }
}

/* ===== Icon Wave Rotation ===== */
@keyframes rotateWave {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}

/* ===== Responsive for Small Screens ===== */
@media (max-width: 576px) {
  .floating-chat {
    left: 80%;
    bottom: 20px;
    transform: translateX(-50%);
    padding: 8px 18px;
  }
  .chat-text {
    display: none;
  }
  .whatsapp-icon {
    width: 40px;
    height: 40px;
  }
}
