.custom-navbar {
      background:rgb(240 240 240);
      border-radius: 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      position: sticky;
      top: 10px;  /* small gap from top */
      z-index: 1030;
      padding: 10px 20px;
    }
    .navbar-brand img {
      height: 40px;
      margin-right: 10px;
    }
    .brand-text span {
      color: #FFB300;
      font-weight: bold;
    }
    .apply-btn {
      background-color: #FFB300;
      color: #000000ff;
      border-radius: 25px;
      padding: 14px 20px;
      font-weight: 500;
    }
    .apply-btn:hover {
      background-color: #D81B60;
      color: #fff;
    }
    body {
      background: #ffffff; /* dark background to match your screenshot */
    }
    @media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px !important;
    }
}

/* //hero section // */
.custom-section {
    padding: 134px 0 80px;
    margin-top: -109px;
    background: url("../images/banner.webp") no-repeat center center; /* desktop / tablet */
    background-size: cover;
    width: 100%;
    min-height: 95vh;
}

/* ✅ Mobile view override */
@media (max-width: 767.98px) {   /* Bootstrap's md breakpoint */
    .custom-section {
        background: url("../images/mobile.webp") no-repeat center center;
        background-size: cover;
    }
    .gradient-text{
      font-size: 2rem !important;
    }
}

   .gradient-text {
  font-size: 3rem; /* adjust as needed */
  font-weight: bold;
  
  /* Gradient background */
  background: linear-gradient(90deg, #ff0054, #ffc700, #cc235b, #002147);
  background-size: 400% 400%; /* smooth animation */
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Animation */
  animation: gradientAnimation 8s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-texttwo{
      font-size: 2rem; /* adjust as needed */
      line-height: 45px;
  font-weight: bold;
  background: linear-gradient(90deg, #ff0054, #ffc700, #cc235b, #002147);
  background-size: 400% 400%; /* smooth animation */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Animation */
  animation: gradientAnimation 8s ease infinite;
}

    .left-box h1 {
      font-weight: bold;
      font-size: 3.4rem;
    }
    .left-box .highlight {
      background: #ffb300;
      color: #111;
      font-weight: 500;
      padding: 3px 10px;
      border-radius: 5px;
    }
    .btn-brochure {
      background: #ffb300;
      color: #111;
      border-radius: 25px;
      font-weight: 500;
      padding: 10px 25px;
      border: none;
    }
    .btn-brochure:hover{
       background-color: #D81B60;
      color: #fff;
      border-radius: 25px;
      font-weight: 500;
      padding: 10px 25px;
      border: none;
    }
    .right-box {
      background: #ffffff;
      border-radius: 10px;
      padding: 8px;
      /* display: none; */
    }

.bootstrap-select>.dropdown-toggle.bs-placeholder, .bootstrap-select>.dropdown-toggle.bs-placeholder:active, .bootstrap-select>.dropdown-toggle.bs-placeholder:focus, .bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    border-radius: 1px;
    height: 35px;
    background: white;
}
    .right-box .form-control {
      border-radius: 1px;
    }
    .btn-enroll {
      background: #FFB300;
      color: #fff;
      border-radius: 25px;
      font-weight: 500;
      padding: 10px 25px;
      width: 100%;
    }
    .btn-enroll:hover {
      background: #d9531e;
    }
    /* // feature section // */
  .features-section {
    background: #fff;
  }
  .feature-box {
    background: #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
  }
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }
  .feature-box h4 {
    font-weight: bold;
    font-size: 1rem;
    color: #111;
    margin: 0;
  }
  .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #FFB300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .icon-img {
    width: 30px;
  }
  .rankings-accreditations .item {
  border-radius: 10px;
  transition: transform 0.3s;
}

.rankings-accreditations .item:hover {
  transform: translateY(-5px);
}

.rankings-accreditations h6 {
  font-weight: 600;
  margin-top: 10px;
}
.card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* Nav Tabs Container */
#programsTab {
  border-bottom: 2px solid #ffc700; /* underline for tab bar */
  padding: 9px;
}

/* Individual Tab Buttons */
#programsTab .nav-link {
  color: #002147; /* default text color */
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 25px;
  margin-right: 10px;
  border-radius: 50px; /* rounded pill shape */
  transition: all 0.3s ease;
  background-color: #e2e2e2; /* light background */
  border: 1px solid transparent; /* no border initially */
  margin: 2px;
}

/* Hover Effect */
#programsTab .nav-link:hover {
  color: #ff0054;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Active Tab */
#programsTab .nav-link.active {
  color: #fff;
  background-color: rgb(204 35 91);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Remove default border for active tab */
#programsTab .nav-link.active:focus, 
#programsTab .nav-link.active:hover {
  border: none;
  outline: none;
}

/* Optional: make tabs responsive */
@media (max-width: 768px) {
  #programsTab .nav-link {
    padding: 8px 15px;
    font-size: 1rem;
  }
}
.footer {
  font-size: 14px;
}
.footer p {
  font-size: 16px;
  letter-spacing: 0.5px;
}
.parallax-section {
  height: 40vh; /* Adjust height */
  background-image: url('../images/parallax.webp'); /* Replace with your image */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgb(25 26 51 / 82%); /* Dark overlay for readability */
  z-index: 1;
}

.parallax-section .content {
  position: relative;
  z-index: 2;
}

.parallax-section .btn {
  margin-top: 15px;
  padding: 27px 51px;
  background-color: #FFB433;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

.extra-content {
  padding: 50px;
  text-align: center;
  font-size: 18px;
}
.testimonial-item {
    margin: 10px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}
.testimonial-item:hover {
  transform: translateY(-5px);
}
.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: #555;
}
.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-dot span {
  width: 12px;
  height: 12px;
  background: #ddd;
  display: block;
  margin: 5px 7px;
  border-radius: 50%;
  transition: 0.3s;
}
.owl-dot.active span {
  background: #ffb433;
}
/* Desktop - Vertical Button on Right */
.apply-now-btn {
  position: fixed !important;
  right: 0 !important;
  top: 30% !important;
  transform: translateY(-50%) rotate(-90deg) !important; /* Rotate vertical */
  transform-origin: right center !important;
  background: #ffb433 !important;
  color: #111 !important;
  font-weight: bold !important;
  padding: 12px 28px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2) !important;
  transition: all 0.3s ease !important;
  z-index: 1050 !important;
  display: inline-block !important;
  white-space: nowrap !important;
  right: 25px !important;
}

.apply-now-btn:hover {
  background: #e09b2f;
  color: #fff;
}
.accimg {             /* Center the image */
  position: relative;
}

.accimg img {
  max-width: 300px;                /* Keep it neat size */
  width: 100%;
  height: auto;
  border-radius: 12px;             /* Smooth rounded corners */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Soft shadow */
  transition: all 0.4s ease;
}

/* Hover effect */
.accimg img:hover {
  transform: scale(1.05);          /* Zoom slightly */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


/* Mobile - Bottom Full Width */
@media (max-width: 768px) {
  .apply-now-btn {
    transform: none !important;            /* Remove rotation */
    top: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    text-align: center !important;
    border-radius: 0 !important;
    padding: 15px !important;
  }
  .left-box h1 {
    font-weight: bold;
    font-size: 35px !important;
  }

}
 