.nav-link {
  color: #1e1e1e;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 24px) !important;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.logo {
  width: 100%;
}

.navbar-section {
  padding: 20px 0px;
    position: relative;
  z-index: 1050; /* higher than carousel's default */
}

.navbar-section {
  text-align: right;
  position: absolute;
  width: fit-content;
  top: 0;
  left: 0;

  z-index: 1050;
  background: rgba(
    255,
    255,
    255,
    0.9
  ); /* Optional: semi-transparent background */
  padding: 20px 0px;
}
.icon {
  max-width: clamp(16px, 3vw, 24px);
  height: auto;
  display: block;
}
/* Active tab styling */
.active-tabs {
  transform: scale(1.1); /* Slight scale for emphasis */
  color:#ffa717 !important; /* Bootstrap primary color or your brand color */
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}

/* Optional: smoother hover effect */
.nav-link:hover {
  transform: scale(1.05);
  color: #ffa717; /* Darker shade */
  transition: all 0.2s ease-in-out;
}
/* navbar-css-complete */

#home {
  margin-top: 200px;
  background-image: url("/assets/images/poster-img.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  
  height: 81vh;
  width: 100%;
  padding: 68px 50px;

  /* Make it responsive on smaller devices */
  @media (max-width: 768px) {
    background-size: cover;
    margin-top: 120px;
    padding: 120px 10px 5px 10px;
    height: auto;
  }
}
#home-section{
  margin-top: 67px;
}

/* marquee */

.quote-line {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background-color: #ffa717; /* Optional: background color */
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.course-continer {
  background-image: url("/assets/images/course-background.png");
  background-position: center;
  background-size: cover;
}
.footer-section {
  background: linear-gradient(180deg, #ffffff00 0%, #d4edff 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.grediant-background-footer {
  background-image: url("/assets/images/footer-background.png");
  background-position:bottom;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100vh;
  z-index: 5;
}
.footer-text{
    font-size: clamp(14px,2.2vw,18px);

}
@media (min-width: 900px) {
    .color-whiteires {
        color: black !important;
    }
}


.multi-underline {
  display: inline-block;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 10px;
}

.skip-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skip-btn:hover {
    opacity: 1;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

/* Make the video act as background */
#intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Content should be on top of video */
.video-overlay h2,
.video-overlay h3,
.video-overlay img,
.skip-btn {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Optional: add spacing to text/image */
.video-overlay h2,
.video-overlay h3 {
    margin: 10px 20px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}
@keyframes slideDownOut {
    0% {
        height: 100%;
    }
    100% {
      height: 0%;
    }
}
.video-overlay.slide-down {
    animation: slideDownOut 0.8s ease-out forwards;
}
.slider-bg{
 background-color:#081f4f ;
}
.nav-text-button{
  
}