/* *************** Full website css *********** */
:root {
  --primary-color: #A00B44;
  --primary-rgb: 160, 11, 68;
  --secondary-bg: #191919;
  --light-bg: #efefef;
  --box-grey: rgb(54, 54, 54);
  --box-bg-light: #ffffff96;
  --box-bg-pink: #fff0f3;
  --badge-bg: #e7e7e785;
  --badge-border: #e4e4e4;
  --text-dark: #3b3b3b;
  --shadow-light: 0px 5px 55px #0000001a;
  --light-grey: #b5b5b5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif !important;
}

body.navbar-fixed {
  padding-top: 80px;
}

.btn {
  padding: 12px 30px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  border-radius: 8px !important;
}

/* Reusable Lead Brand Buttons */
.btn-brand {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(160, 11, 68, 0.15);
}

.btn-brand:hover {
    background: #800936 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 11, 68, 0.25);
    color: #ffffff !important;
}

/* Standardized Custom Classes untouched for layout integrity */
.fs12 {
  font-size: 12px !important;
}

.fs50 {
  font-size: 50px !important;
}

.fs30 {
  font-size: 30px !important;
}

.mjntop-5 {
  margin-top: -5px !important;
}

body .fs-5 {
  font-size: 1.15rem !important;
}


/* ************************ Navbar *********************/
/* -------------------------------------------------------------------------
   Reusable Brand Components
------------------------------------------------------------------------- */
/* 1. Global Buttons (Reused across header, cards, and forms) */
.btn-brand, 
.btn-view-course, 
.btn-book, 
.navbar.scrolled .mybtn,
.btn-book-demo {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-brand:hover, 
.btn-view-course:hover, 
.btn-book:hover, 
.navbar.scrolled .mybtn:hover {
    background: #800936 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 11, 68, 0.25);
    color: #ffffff !important;
}

/* 2. Global Cards (Standardized shadow and radius) */
.edu-card,
.course-card,
.form-card,
.sticky-card {
    background: #fff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.edu-card:hover,
.course-card:hover,
.sticky-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ************************ Navbar *********************/
.navbar {
  transition: background-color 0.5s ease, top 0.5s ease, opacity 0.5s ease;
  background: transparent !important;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.navbar.scrolled {
  background: white !important;
  position: fixed;
  top: 0;
  opacity: 1;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease-in-out;
}

/* Nav links on scroll */
.navbar.scrolled .nav-link {
  color: #000 !important;
}

.navbar.scrolled .nav-link.active {
  color: var(--primary-color) !important;
}

/* Logos */
.navbar-brand img {
  height: 60px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .navbar-brand img {
    height: 45px;
  }
}

.navbar.scrolled .navbar-brand img.dark-logo {
  display: inline;
}

.navbar.scrolled .navbar-brand img.light-logo {
  display: none;
}

.navbar .navbar-brand img.dark-logo {
  display: none;
}

.navbar .navbar-brand img.light-logo {
  display: inline;
}

.navbar.show-navbar {
  top: 0;
  opacity: 1;
}

.my-link {
  transition: none;
  color: rgb(255, 255, 255);
  margin-left: 10px;
  margin-right: 10px;
  font-size: 19px !important;
}

.courses-dropdown-menu {
  width: 300px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 12px;
}

.courses-dropdown-menu li {
  margin-bottom: 4px;
}

.courses-dropdown-menu li:last-child {
  margin-bottom: 0;
}

.courses-dropdown-menu .dropdown-item {
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
}

.courses-dropdown-menu .dropdown-item:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateX(6px);
}

@media (min-width: 992px) {
  .dropdown-hover>.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 0;
  }

  .dropdown-hover:hover>.dropdown-menu,
  .dropdown-hover>.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/******************************** Responsive ****************************************/
@media (min-width: 991px) {
  .lapy {
    display: none !important;
  }

  body h2 {
    font-size: 1.8rem !important;
  }

  .mt-25 {
    margin-top: -25px;
  }

  .fs13 {
    font-size: 13px !important;
  }
}

@media (max-width: 991px) {
  .mobile {
    display: none !important;
  }

  .t-cntr {
    text-align: center !important;
  }

  .fs16 {
    font-size: 17px !important;
  }

  .fs13 {
    font-size: 15px !important;
  }

  .wdth-100 {
    width: 100% !important;
  }

  .ptm-6 {
    padding-top: 6px;
  }

  .custom-collapse {
    position: fixed;
    top: 0;
    right: -260px;
    height: 100%;
    width: 260px;
    background: #ffffff;
    padding: 2rem 1rem;
    transition: right 0.4s ease-in-out;
    z-index: 1050;
    overflow-y: auto;
  }

  .custom-collapse.show {
    right: 0;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .courses-dropdown-menu {
    border: none !important;
    box-shadow: none !important;
    padding: 10px 15px !important;
    width: 100% !important;
    background-color: #f7f7f7 !important;
    border-radius: 12px !important;
    margin-top: 10px !important;
  }

  .courses-dropdown-menu .dropdown-item {
    font-size: 16px !important;
    padding: 12px 15px !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    margin-bottom: 5px;
  }

  .custom-collapse .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    filter: invert(0%);
  }

  .my-link {
    transition: none;
    color: rgb(36, 36, 36) !important;
    margin-left: 8px;
    margin-right: 8px;
    font-size: 19px !important;
  }

  .mybtn {
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none;
  }

  .navbar-toggler {
    border: var(--bs-border-width) solid #ffffff !important;
    padding: 2px 6px !important;
  }

  .navbar.scrolled .navbar-toggler {
    border: var(--bs-border-width) solid var(--primary-color) !important;
  }

  .navbar.scrolled .navbar-toggler-icon {
    filter: invert(35%) sepia(73%) saturate(4716%) hue-rotate(340deg) brightness(95%) contrast(90%);
  }

  .sticky-card {
    position: relative !important;
    top: 0 !important;
    padding: 15px !important;
  }


  h5 {
    font-size: 1.12rem !important;
  }

  p {
    margin-bottom: .75rem !important;
  }


}

/******************************** Hero & Layout ************************************/
.hero {
  position: relative;
  width: 100%;
  padding-bottom: 80px;
  margin-bottom: 45px;
  overflow: hidden;
  margin-top: -90px;
  display: flex;
  align-items: center;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-content {
  z-index: 2;
  padding-top: 11rem;
}

/* Backgrounds & Boxes */
.boxsml {
  border-radius: 5px;
  background-color: var(--box-bg-light);
}

.boxsml1 {
  border-radius: 5px;
  background-color: var(--box-bg-pink);
}

.bg-lght {
  background-color: var(--light-bg);
}

/* Navigation & Tabs */
.nav-pills .nav-link {
  border: 1px solid #343a40;
  color: #343a40;
  margin: 7px;
  padding: 10px;
  width: 30vh;
}

.tab-link:hover,
.nav-pills .nav-link.active,
.nav-pills .show.nav-link {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}

/* Badges */
.custom-badge {
  background-color: var(--badge-bg) !important;
  color: var(--text-dark) !important;
  border: solid 1px var(--badge-border);
}

/* Section Header Decorators */
.header-container {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #333;
}

.header-container::before,
.header-container::after {
  content: '';
  flex-grow: 1;
  height: .5px;
  background-color: #ccc;
}

.header-container::before {
  margin-right: 1rem;
}

.header-container::after {
  margin-left: 1rem;
}

/* Sliders */
.logo-img {
  height: 18px;
  flex: 0 0 auto;
}

.logo-slider {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.logo-slider::-webkit-scrollbar {
  display: none;
}

/* Buttons */
.first-btn {
  background: var(--primary-color) !important;
  color: #fff !important;
  padding: 12px 35px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: 0.3s !important;
  font-weight: 600 !important;
}

.first-btn:hover {
  background: #800936 !important;
  color: white !important;
  transform: translateY(-2px) !important;
}


/* Sticky Mentorship Cards */
.sticky-section {
  position: relative;
  margin-bottom: 60px;
}

.sticky-card {
  position: sticky;
  top: 80px;
  margin-bottom: 50px;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
}

/******************************** Footer & Socials *********************************/
.bc-clr {
  background-color: var(--secondary-bg);
}

.bc-clr hr {
  width: 50px;
  border-top: 2px solid var(--primary-color);
  opacity: 1;
  margin: 5px 0 15px 0;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footr-decor {
  text-decoration: none;
  color: white;
  display: inline-block;
  transition: transform 0.5s ease;
}

.footr-decor:hover {
  color: #bcbcbc;
  transform: scale(1.02);
}

.social-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid white;
  border-radius: 25%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
  position: relative;
  /* Keeps tooltip contained within the icon */
}

.social-circle:hover {
  background: white;
  color: #333;
  transform: scale(1.1);
}

.tooltip-text {
  visibility: hidden;
  background-color: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 5px 8px;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  font-size: x-small;
}

.social-circle:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* ******************* Impact Numbers *********************/
.custom-box {
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  height: 200px;
}

.grid .box1 {
  background-color: var(--primary-color);
  color: white;
}

.grid .box2,
.grid .box3 {
  background-color: var(--light-grey);
  color: white;
}

.grid .box4 {
  border: solid 4px var(--primary-color);
}

.tall-box {
  height: 100%;
}

/******************************** Batch images **************************************/
.slider-section {
  overflow: hidden;
  background: #fff;
}

.marquee-container {
  display: flex;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.marquee-container::-webkit-scrollbar {
  display: none;
}

.marquee-container:active {
  cursor: grabbing;
}



.track {
  display: flex;
  gap: 20px;
}

.img-box {
  width: 300px;
  height: 140px;
  border-radius: 12px !important;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#imageModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#previewImg {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 50px;
  cursor: pointer;
}

/* ************************************* Testimonials *********************************** */
.video-accordion-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 400px;
  gap: 12px;
}

.accordion-item {
  position: relative;
  flex: 1;
  border-radius: 15px !important;
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.accordion-item:hover {
  flex: 2;
}

.accordion-item.playing .play-button {
  color: white;
  font-weight: 800;
}

.bg-video {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  z-index: 2;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
}

.play-button {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}

@media (max-width: 768px) {
  .video-accordion-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 0 20px;
    height: 450px;
  }

  .accordion-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .accordion-item:hover {
    flex: 0 0 85%;
  }

  .video-accordion-container::-webkit-scrollbar {
    display: none;
  }
}

/* ************************************* Career Journey Form *********************************** */
.career-journey {
  background-color: #1a1a1a;
  color: white;
  padding: 80px 0;
  margin-bottom: 45px !important;
}

.form-section {
  padding-top: 20px;
}

.trusted-badge {
  background: white;
  color: black;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.trusted-badge i {
  color: #f1c40f;
}

.career-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.1;
}

.career-desc {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  max-width: 90%;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(160, 11, 68, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.feature-text h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #b0b0b0;
}


.form-card {
  background: #222222;
  border: 1px solid #333;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.form-card p {
  color: #888;
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.dark-input {
  background-color: #ffffff !important;
  border: 1px solid #ffffff00 !important;
  color: #333 !important;
  border-radius: 12px !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
}

.dark-input::placeholder {
  color: #666;
  opacity: 1;
}

.dark-input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(160, 11, 68, 0.25) !important;
}

/* Custom Dropdown Styling */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: #ffffff !important;
  color: #333 !important;
  position: relative;
  z-index: 2;
}

.custom-select i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: #666;
}

.custom-select.open i {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #222;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  margin-top: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 100;
  overflow: hidden;
}

.custom-options.show {
  display: block;
}

.custom-option {
  padding: 12px 20px;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.custom-option:hover {
  background-color: var(--primary-color);
  color: white;
}

.custom-option.selected {
  background-color: #333;
}

.btn-book {
  gap: 12px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-book:hover {
  background: linear-gradient(135deg, #b50b4d 0%, #A00B44 100%);
  transform: translateY(-1px);
  color: white !important;
}

.btn-book i {
  transition: transform 0.3s ease;
}

.btn-book:hover i {
  transform: translateX(2px);
}


.privacy-text {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Form Validation Styles */
.form-error {
  display: none;
  color: #ff4d4d;
  font-size: 0.8rem;
  margin-top: 6px;
  padding-left: 5px;
}

.input-error {
  border: 1.5px solid #ff4d4d !important;
  box-shadow: 0 0 0 0.15rem rgba(255, 77, 77, 0.15) !important;
}

@keyframes formShake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-8px);
  }

  40% {
    transform: translateX(8px);
  }

  60% {
    transform: translateX(-5px);
  }

  80% {
    transform: translateX(5px);
  }
}

.form-shake {
  animation: formShake 0.4s ease;
}

/* Career Journey Responsive Styles */
@media (max-width: 991px) {
  .career-journey {
    padding: 50px 0;
    text-align: center;
  }

  .career-title {
    font-size: 2.2rem;
  }

  .career-title br {
    display: none;
  }

  .career-desc {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .feature-box {
    justify-content: center;
    text-align: left;
    margin-bottom: 25px;
  }

  .form-card {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .career-title {
    font-size: 1.8rem;
  }

  .form-card {
    margin-top: 20px;
    border-radius: 20px;
  }

  .form-card h3 {
    font-size: 1.3rem;
  }
}


/* ************************************* FAQ Section *********************************** */
.faq-section {
  background-color: #ffffff;
}


.faq-item {
  background: #ececec;
  border: 1.5px solid #f0f0f0;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #e0e0e0;
  transform: translateY(-2px);
}

.faq-question {
  padding: 22px 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  user-select: none;
  background: white;
}

.faq-question i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: #333;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fcfcfc;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 10px 30px 25px 30px;
  border-top: 1px solid #f0f0f0;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 10px 20px 20px 20px;
  }
}



/* Two-Column Module Accordion */
.module-accordion .accordion-item {
  background: white;
  border-radius: 15px !important;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.module-accordion .accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
  border-color: var(--primary-color) !important;
}

.module-accordion .accordion-button {
  padding: 20px 25px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  background: white;
  box-shadow: none !important;
}

.module-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: white;
}

.module-accordion .accordion-button::after {
  background-size: 1rem;
  transition: transform 0.3s ease;
}

.module-accordion .module-num {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: var(--box-bg-pink);
  color: var(--primary-color);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 0.9rem;
  font-weight: 800;
}

.module-accordion .accordion-button:not(.collapsed) .module-num {
  background: var(--primary-color);
  color: white;
}

.module-accordion .accordion-body {
  padding: 0 25px 25px 75px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* -------------------------------------------------------------------------
   Modern About Page Styles
------------------------------------------------------------------------- */
.modern-hero {
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modern-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.modern-title {
  font-family: 'Epunda Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding-left: 10px;
  padding-right: 10px;
}

.hover-elevate {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-elevate:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  padding: 2rem;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 24px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.team-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.team-img-wrapper {
  overflow: hidden;
  height: 350px;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.1);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.team-card:hover .team-info {
  transform: translateY(0);
}

.journey-item {
  padding: 2rem;
  border-left: 3px solid var(--primary-color);
  position: relative;
  margin-left: 20px;
}

.journey-item::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 2.5rem;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 4px solid #fff;
}

@media (max-width: 768px) {
  .modern-hero {
    height: 60vh;
  }
}

/* Career Journey Light Theme (for Contact Page) */
.light .career-journey {
  background-color: #ffffff;
  /* Light background for section */
  color: var(--text-dark);
  margin-bottom: 0 !important;
}

.light .form-section {
  padding-top: 0 !important;
}

.light .career-journey .career-title {
  color: var(--text-dark);
}

.light .career-journey .career-desc,
.light .career-journey .feature-text p {
  color: #666;
}

/* Ensure Form Card stays DARK within the light section */
.light .career-journey .form-card {
  background: #222222 !important;
  border: 1px solid #333 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}


.light .career-journey .form-card h3 {
  color: #ffffff;
}

.light .career-journey .form-card p {
  color: #aaa;
}

.light .trusted-badge {
  background: #dedede;
}

.light .career-journey .form-group label {
  color: #eee;
}

/* Contact Info Section */
.contact-card {
  transition: all 0.3s ease;
  background-color: #ffffff;
  border: 1px solid #f0f0f0 !important;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: #e0e0e0 !important;
}

.contact-icon-bg {
  width: 70px;
  height: 70px;
  background: rgba(30, 30, 30, 0.05);
  transition: all 0.3s;
}

.contact-card:hover .contact-icon-bg {
  background: rgba(30, 30, 30, 0.1) !important;
}

/* ********************************* Utility Classes ********************************* */
.overflow-x-hidden {
  overflow-x: hidden;
}

.line-height-0 {
  line-height: 0;
}

.icon-primary {
  color: var(--primary-color);
}

.value-icon-warning {
  background: #ffc107;
}

.value-icon-success {
  background: #28a745;
}

.glass-card-sm {
  width: 250px;
}

.thank-you-progress {
  height: 6px;
  background-color: #eee;
}

/* ********************************* Thank You Page ********************************* */
.thank-you-card {
  background: white;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 100px auto;
  padding: 60px 40px;
  text-align: center;
}

.color-primary {
  color: var(--primary-color);
}

.anim-bounce {
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

#redirectProgress {
  background-color: var(--primary-color);
  height: 6px;
  width: 0%;
  transition: width 3s linear;
}

.thank-you-body {
  background: #f8f9fa !important;
}

/* ********************************* Fixed Floating Contacts ********************************* */
.fixed-contacts-wrapper {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.fixed-contacts-wrapper.visible {
  opacity: 1;
  visibility: visible;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #111111da;
  color: white !important;
  text-decoration: none !important;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  white-space: nowrap;
}

.contact-item:hover {
  width: 230px;
}

.contact-label {
  padding-left: 20px;
  padding-right: 15px;
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
  flex-grow: 1;
  text-align: left;
}

.contact-item:hover .contact-label {
  opacity: 1;
  transform: translateX(0);
}

.contact-icon {
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  background: white;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}

.contact-item:hover .contact-icon i {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .fixed-contacts-wrapper {
    background: transparent;
    box-shadow: none;
  }

  .contact-item {
    width: 50px !important;
    height: 50px;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
    justify-content: center;
    border-right: none;
  }

  .contact-item:hover {
    width: 80px !important;
  }

  .contact-label {
    display: none;
  }

  .contact-icon {
    min-width: 50px;
    height: 50px;
    width: 50px;
  }

  .contact-item.whatsapp i {
    color: #25d366;
  }
}

/* -------------------------------------------------------------------------
   Course Gallery / Grid Styles
------------------------------------------------------------------------- */
.course-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
    margin-bottom: 30px;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(160, 11, 68, 0.1);
}

.course-card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.course-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-card-img {
    transform: scale(1.1);
}

.course-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.course-desc {
    color: #6c757d;
    font-size: 0.95rem;
    flex-grow: 1;
}

.course-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.course-features li {
    font-size: 0.85rem;
    color: #495057;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.course-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 15px;
}

.course-card-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.duration-info {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.salary-info {
    font-weight: 700;
    color: #28a745;
    font-size: 1rem;
}

.course-card .btn-view-course { width: 100%; }
