:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
    --default-color: #333;
    --accent-color: #f1c40f;
    --background-color: rgb(254, 248, 228);
    --border-color: #f1c40f;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --black: #000;
    --white: #fff;
  }

body{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
}
.white-shadow {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5); /* Adjust opacity as needed */
}
.header-bg {
  position: relative;
}
.header-bg img{
  height: 89vh;
  width: auto;
  object-fit: cover;
  object-position: center;
}
.success-story {
  position: relative;
}
.success-story img{
  height: 50vh;
  width: auto;
  object-fit: cover;
  object-position: center;
}
.overlay {
  position: absolute;
  top: 33.3333%; /* same as top-1/3 */
  bottom: 0;      /* same as bottom-0 */
  left: 0;
  right: 0;
  background: linear-gradient(to top, #ec4899, transparent);
  border-radius: 1rem; /* match image border-radius (rounded-4) */
  z-index: 2;
  pointer-events: none;
}
.black-overlay {
  position: absolute;
  top: 33.3333%; /* same as top-1/3 */
  bottom: 0;      /* same as bottom-0 */
  left: 0;
  right: 0;
  background: linear-gradient(to top, #000, transparent);
  z-index: 2;
  pointer-events: none;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-modal video {
  width: 90vw;
  height: 90vh;
  object-fit: cover;
  border-radius: 1rem;
  z-index: 2;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  cursor: pointer;
}

.watch-btn {
  z-index: 3;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0.5;
}

.watch-btn:hover {
  background-color: #ec4899;
  color: #fff;
}

.pillar-list li {
  font-size: 3rem;
  font-weight: 400;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.1;
}
.pillar-image-wrapper img {
  height: 70vh;          /* 70% of viewport height */
  width: 100%;          /* Maintain aspect ratio */
  
}

.pillar-list li:hover,
.pillar-list li.active {
  color: #000;
  font-weight: 700;
}

.explore-btn {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.pillar-list li.active ~ .explore-btn {
  opacity: 1;
  transform: translateX(0);
}

.pillar-image-wrapper {
  text-align: center;
}
.hero-jumbotron {
  position: relative;
  background: url('/static/img/portrait_lg.webp')  no-repeat;
  height: 60vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-jumbotron::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

.hero-jumbotron .content {
  position: relative;
  z-index: 2;
}
.home-jumbotron {
  position: relative;
  background: url('/static/img/portrait2_lg.webp')  no-repeat;
  height: 60vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-jumbotron::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

.home-jumbotron .content {
  position: relative;
  z-index: 2;
}
.course-carousel .item .card{
  height: 30rem;
}
/* --------------about-page------------ */

.about-header .about-img{
  height: 100vh;
}
.about-header .about-img img{
  height: 100%;
}
.about-section{
  position: relative;
  background-color: #fff;
  height: 60vh;
}


@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
@media (width: 1024px) {
  .about-header .about-img {
    height: 100%;
}
}

@media (max-width: 992px) {
  .hero-jumbotron {
    background: url('/static/img/image_sm.webp')  no-repeat;
    height: 80vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .about-header .about-img{
    height: 100%;
  }
}

