body {
  padding-top: 80px;
  font-family: "Inter", sans-serif;
}

:root {
  --primary: #4f4d4a;
  --light: #000;
}

/* HERO */
/* HERO */
/* HERO BASE */
.navbar-brand .logo {
  max-width: 168px;
}

/* NAVBAR */
.custom-nav {
  padding: 14px 0;
}

/* Links */

/* NAVBAR */
.custom-nav {
  padding: 14px 0;
}

/* Nav Links */
.navbar .nav-link {
  color: #111;
}

.navbar .nav-link:hover {
  color: var(--primary);
}

/* Mega Menu */
.mega-menu {
  width: 540px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Dropdown Item */
.dropdown-item-custom {
  display: block;
  padding: 10px 0;
  color: #111;
  text-decoration: none;
}

.dropdown-item-custom strong {
  display: block;
}

.dropdown-item-custom span {
  font-size: 13px;
  color: #6b7280;
}

.dropdown-item-custom:hover strong {
  color: var(--primary);
}

/* Image */
.menu-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.menu-image img {
  transition: transform 0.5s ease;
}

.menu-image:hover img {
  transform: scale(1.08);
}

/* Overlay */
.menu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Mobile */
@media (max-width: 991px) {
  .mega-menu {
    width: 100%;
  }

  .dropdown-menu {
    box-shadow: none;
  }
}
/* hero */
.hero {
  background: linear-gradient(120deg, #fff6df);
  padding: 80px 0;
}

.badge-custom {
  background: #e3f2fd;
  color: #0d6efd;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 15px;
}

.highlight-text {
  color: #dc3545;
}

.course-tag {
  display: inline-block;
  background: #f1f1f1;
  padding: 6px 12px;
  margin: 3px;
  border-radius: 20px;
  font-size: 14px;
}

.offer-box {
  background: #e9f7ef;
  border-left: 5px solid #28a745;
  padding: 15px;
  border-radius: 10px;
}

.offer-box h2 {
  color: #dc3545;
  margin: 0;
}

.admission-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.admission-card h2 {
  color: #dc3545;
  font-weight: 700;
}

.divider {
  height: 2px;
  width: 50px;
  background: #dc3545;
  margin: 15px auto;
}

.small-text {
  color: #777;
  font-size: 14px;
}
.bihar-highlight {
  background: #e7f1ff;
  color: #0d6efd;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding: 50px 20px;
  }
}
.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  /* display: block; */
  visibility: hidden;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* REMOVE THIS */
.dropdown:hover .dropdown-menu {
  /* display: block; */
}

/* Mobile dropdown fix */
@media (max-width: 991px) {
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    margin-top: 6px;
  }
}

.dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Subtle grid texture */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.25;
}

/* Tag */
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title span {
  color: #f59e0b;
}

.hero-text {
  font-size: 18px;
  color: #555;
  margin-top: 15px;
}

/* Buttons */
.hero-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Image */
.hero-img {
  max-height: 420px;
  /* animation: float 6s ease-in-out infinite; */
}

.hero-content {
  animation: fadeUp 0.8s ease forwards;
}

/* Image animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Fade text animation */
.carousel-item.active .hero-content {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DOTS */
/* .carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

.carousel-indicators .active {
  background-color: var(--primary);
} */

/* ARROWS */
/* .carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: #111;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
} */


/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }

  .hero-visual {
    position: relative;
  }

  .hero-img {
    opacity: 0.9;
  }

  /* Glass Layer */

  .hero-card {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    color: white;
    position: absolute;
    bottom: -28px;
    left: 15px;
    right: 15px;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  }

  .hero-title {
    font-size: 28px;
    color: white;
  }

  .hero-text {
    color: #ddd;
    font-size: 15px;
  }

  .hero-actions .btn-outline-dark {
    color: white;
    border-color: white;
  }

  .hero-actions .btn-outline-dark:hover {
    background: white;
    color: black;
  }

  .Eligibility h3 {
    font-size: 15px;
  }

  .step-circle {
    height: 33px !important;
  }
}

/* sandeep_image */
.small-img {
  max-width: 250px;   
  height: auto;
}
/* Carousel Controls - Visible */
.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 18px 18px;
  filter: invert(1);
}

/* Hover */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

@media (max-width: 768px) {

  .carousel-control-prev,
  .carousel-control-next {
    width: 44px;
    height: 44px;
  }
}

/* PROGRAM CARDS */
.program-card {
  padding: 30px;
  border-radius: 16px;
  border: none;
  background: #111;
  color: #fff;
  height: 100%;
}

.program-card h5 {
  color: #ffb703;
}

/* FEATURES */
.feature-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding: 20px 0;
}

/* SECTION */
.academy-why-section {
  background: radial-gradient(circle at top left, #fff6df, #ffffff);
  padding: 80px 0;
}

/* HEADER */
.why-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
}

.why-header p {
  font-size: 16px;
  color: #6b7280;
  margin-top: 6px;
}

/* CARD */
.why-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.why-card h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* ICON */
.why-icon {
  width: 48px;
  height: 48px;
  background: #f2e0c4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 22px;
  color: #fff;
}

/* IMAGE PANEL */
.image-panel {
  background: #ffffff;
  padding: 20px;
  border-radius: 24px 0 0 24px;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  align-items: center;
}

.image-panel img {
  width: 100%;
  border-radius: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .image-panel {
    border-radius: 24px;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .why-header {
    text-align: center;
  }
}

.card-custom {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.card-custom:hover {
  transform: translateY(-6px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #000;
}

.cta {
  background: var(--light);
}

.section {
  padding: 80px 0;
}

.card-custom {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: none;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
  padding: 30px;
}

.badge-brand {
  background: var(--primary);
  color: #ffff;
}

.compare-table {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.check {
  width: 26px;
  height: 26px;
  background: #2ecc71;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.campus-card img {
  width: 100%;
  border-radius: 16px;
}

.contact-box {
  background: linear-gradient(135deg, #ffe082, #ffecb3);
  border-radius: 22px;
  padding: 50px;
}

/* CAMPUS CARDS */
.campus-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: none;
  transition: 0.4s ease;
}

.campus-card:hover {
  transform: translateY(-8px);
}

.img-wrap {
  overflow: hidden;
}

.campus-card img {
  transition: transform 0.6s ease;
}

.campus-card:hover img {
  transform: scale(1.08);
}

/* Scroll animation */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* EDU BANNER */
.edu-banner {
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 0px;
  padding: 60px 40px;
  color: #fff;
}

/* Title */
.banner-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.banner-title span {
  color: var(--primary);
}

/* List */
.banner-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.banner-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #f3f4f6;
}

.banner-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Icon */
.banner-icon {
  width: 180px;
  height: 180px;
  background: rgba(248, 248, 248, 0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: var(--primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .edu-banner {
    padding: 40px 25px;
  }

  .banner-title {
    font-size: 26px;
  }
}

/* EARN SECTION */
.earn-section {
  background: linear-gradient(180deg, #fffaf0, #ffffff);
}

/* Points */
.earn-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.earn-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.earn-icon {
  width: 54px;
  height: 54px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.earn-item h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

.earn-item p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 0;
}

/* Visual Card */
.earn-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.earn-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Overlay */
.earn-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.earn-overlay h5 {
  font-weight: 800;
  margin-bottom: 4px;
}

.earn-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .earn-card img {
    height: 320px;
  }
}

/* LIFE SHOWCASE */
.life-showcase {
  background: radial-gradient(circle at top left, #fff6df, #ffffff);
}

/* IMAGE STACK */
.image-stack {
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* Floating Images */
.img-float {
  position: absolute;
  width: 260px;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transition: 0.5s ease;
}

.img-float.one {
  bottom: -40px;
  left: -40px;
}

.img-float.two {
  top: -40px;
  right: -40px;
}

.image-stack:hover .img-float {
  transform: translateY(-12px) scale(1.05);
}

/* INFO */
.life-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.life-box {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.life-box:hover {
  transform: translateX(6px);
}

.life-box span {
  font-size: 30px;
}

.life-box h6 {
  font-weight: 800;
  margin-bottom: 4px;
}

.life-box p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 991px) {
  .img-float {
    display: none;
  }
}

.admission-section {
  background: radial-gradient(circle at top, #fff7e6, #ffffff);
}

/* Eligibility Card */
.admission-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.admission-card.highlight {
  border-left: 6px solid var(--primary);
}

.eligibility-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 15px;
}

.eligibility-item span {
  font-size: 26px;
}

/* Parent Note */
.note-box {
  color: white;
  background: var(--light);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  margin-top: 20px;
}

/* Steps */
.admission-flow {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.step {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  transition: 0.35s ease;
}

.step:hover {
  transform: translateX(8px);
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h6 {
  font-weight: 800;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: #6b7280;
}

/* Mobile */
@media (max-width: 768px) {
  .admission-card {
    padding: 28px;
  }
}

.academy-footer {
  position: relative;
  padding: 80px 0 60px;
  background: radial-gradient(circle at top left, #2a2a35, #505055);
  color: #e5e5e5;
  overflow: hidden;
}

.form-colors {
  padding-bottom: 20px;
  border-radius: 20px;
  background-color: #373635;
}

/* Yellow wave */
.academy-footer::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 120px;
  background: ;
  border-radius: 100% 100% 0 0;
}

/* Titles */
.footer-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.footer-subtitle {
  color: #bfbfbf;
  margin-bottom: 25px;
}

.footer-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Career list */
.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-list i {
  color: #fff;
  font-size: 22px;
  margin-top: 5px;
}

.footer-list h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.footer-list p {
  font-size: 14px;
  color: #cfcfcf;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-links li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links i {
  color: #fff;
  margin-right: 6px;
}

/* Contact */
.footer-contact {
  margin-top: 20px;
  line-height: 33px;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-contact i {
  color: #fff;
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 14px;
}

.footer-bottom p {
  color: #9ca3af;
}

/* Policy Links */
.footer-policy {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 18px;
}

.footer-policy li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-policy li a:hover {
  color: #ffb703;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-policy {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Button */
.contact-btn {
  margin-top: 15px;
  background: #000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
}

.img-fluid {
  max-width: 281%;
  height: 231px;
}

.contact-btn:hover {
  background: #ffcc4d;
  color: #000;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #000;
  color: #000;
  transform: translateY(-4px);
}

.faq-section {
  background: #ffffff;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.faq-subtitle {
  color: #666;
  font-size: 16px;
}

.faq-accordion .accordion-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid #eee;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: #111;
  padding: 18px 20px;
  background: #fff;
}

.btn-warning {
  background-color: #000;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #000;
  background: #fff;
}

.faq-accordion .accordion-button::after {
  background-size: 18px;
}

.faq-accordion .accordion-body {
  color: #555;
  line-height: 1.7;
  padding: 20px;
}

/* ALUMNI SECTION */
.alumni-section {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
}

/* Slider Container */
.alumni-slider {
  overflow: hidden;
  position: relative;
}

/* Track */
.alumni-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* Pause on hover */
.alumni-slider:hover .alumni-track {
  animation-play-state: paused;
}

/* Logo Card */
.alumni-logo {
  background: #fff;
  border-radius: 16px;
  padding: 20px 30px;
  min-width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}



.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title span {
  color: #f2e0c4;
}

.hero-text {
  font-size: 18px;
  color: #555;
  margin-top: 15px;
}

.hero-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* MOBILE DESIGN */

@media (max-width:768px) {

  .hero-section {
    padding: 60px 20px;
  }

  .hero-visual {
    position: relative;
  }

  .hero-img {
    opacity: 0.9;
  }

  /* Glass Layer */

  .hero-card {

    background: rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(10px);

    padding: 30px;

    border-radius: 15px;

    color: white;

    position: absolute;

    bottom: 30px;

    left: 15px;

    right: 15px;

    z-index: 2;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  }

  .hero-title {
    font-size: 28px;
    color: white;
  }

  .hero-text {
    color: #ddd;
    font-size: 15px;
  }

  .hero-actions .btn-outline-dark {
    color: white;
    border-color: white;
  }

  .hero-actions .btn-outline-dark:hover {
    background: white;
    color: black;
  }

}








.alumni-logo img {
  max-height: 66px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s ease;
}

.alumni-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .alumni-logo {
    min-width: 10px;
    height: 25px;
  }
}

.mentors-visual {
  background: radial-gradient(circle at top, #fef3c7, #ffffff 55%);
}

/* Glass Card */
.mentor-glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: 0.45s ease;
  position: relative;
  overflow: hidden;
}

.navbar-collapse {
  transform: translateY(-10px);
  margin-top: 20px;
  /* opacity: 0; */
}

navbar-nav {
  margin-left: 593px !important;
  margin-bottom: -26px;
}

.navbar-collapse.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    position: absolute;
    width: 100%;
    top: 82px;
    left: 0;
    z-index: 999;
  }
}

.mentor-glass::before {
  content: "";
  position: absolute;
  /* inset: 0; */
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 193, 7, 0.25),
      transparent);
  opacity: 0;
  transition: 0.4s;
}

.mentor-glass:hover::before {
  opacity: 1;
}

.mentor-glass:hover {
  transform: translateY(-14px) scale(1.02);
}

/* Image */
.mentor-img-wrap {
  width: 130px;
  height: 130px;
  margin: auto;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #facc15, #f97316);
}

.mentor-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Tag */
.mentor-tag {
  text-align: center;
  margin-bottom: 16px;
  display: inline-block;
  margin-top: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #111827;
  border-radius: 50px;
}

/* Icons */
.mentor-icons {
  margin-top: 16px;
}

.mentor-icons i {
  font-size: 18px;
  margin: 0 6px;
  cursor: pointer;
  color: #374151;
  transition: 0.3s;
}

.mentor-icons i:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

/* SECTION BACKGROUND */
.success-cream-section {
  background: #fff7e6;
  padding: 80px 0;
}

/* Heading */
.success-title {
  font-size: 42px;
}

.success-subtitle {
  color: #6b7280;
  font-size: 18px;
  margin-top: 10px;
  max-width: 520px;
}

/* Card */
.success-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}


/* Image */
.success-img {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  object-fit: cover;
  border: 4px solid #fbbf24;
}

/* Text */
.success-text {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 18px;
}

.success-course {
  font-size: 14px;
  color: #6b7280;
}

/* Badge */
.success-badge {
  display: inline-block;
  margin-top: 12px;
  background: #fbbf24;
  color: #111;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
}

/* Slider full width + height */
#carouselExampleFade {
  width: 100%;
}

/* Image styling */
.slider-img {
  width: 100%;
  height: 100vh;
  /* desktop full screen */
  object-fit: cover;
  /* image cut hogi but stretch nahi hogi */
}

/* Tablet */
@media (max-width: 992px) {
  .slider-img {
    height: 70vh;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .slider-img {
    height: 50vh;
  }
}

/* Dots */
.success-dots {
  bottom: -40px;
}

.success-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111;
  opacity: 0.25;
}

.success-dots .active {
  background: #fbbf24;
  opacity: 1;
}

/* Arrows */
#successStoryCarousel .carousel-control-prev,
#successStoryCarousel .carousel-control-next {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

#successStoryCarousel .carousel-control-prev-icon,
#successStoryCarousel .carousel-control-next-icon {
  filter: invert(1);
}

/* Mobile */
@media (max-width: 768px) {
  .success-card {
    padding: 26px 22px;
    text-align: center;
  }

  .success-img {
    width: 110px;
    height: 110px;
  }

  #successStoryCarousel .carousel-control-prev,
  #successStoryCarousel .carousel-control-next {
    display: none;
  }
}

/* Founder Section */
.founder-section {
  background: #fff7e6;
  /* same cream theme */
}

/* Tag */
.section-tag {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
}

/* Title */
.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #111;
}

.section-title span {
  color: #ffb703;
}

/* =========================
   MOBILE HERO DESIGN
========================= */

@media (max-width: 768px) {
  .hero-section .carousel-item {
    padding: 60px 20px;
  }

  /* image background banega */
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
  }



  /* text upar */
  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
  }

  /* text color white */
  /* .hero-title,
  .hero-text,
  .hero-tag {
    color: white;
  } */

  .hero-tag {
    color: black;
    background-color: #000;
  }

  .founder-img {
    max-width: 330px !important;
  }

  .hero-section {
    padding-top: 0px;
  }

  /* buttons center */
  .hero-actions {
    justify-content: center;
  }

  /* arrows hide */
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  /* image column hide layout space */
  .hero-visual {
    position: absolute;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

/* course page  */
/* for program page aage chalakardelete krna parega */
.our-program-title {
  color: #000;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
}

.program-card {
  width: 100%;
  height: auto;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 2px dotted #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding: 3px;
  margin: auto;
  display: inline-block;
}

.image-containers {
  position: relative;
}

.program-image {
  height: 350px;
  width: 100%;
  object-fit: cover;
}

.price-tag {
  position: absolute;
  bottom: 00px;
  right: 0px;
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  /* border-radius: 5px; */
  font-weight: bold;
  text-align: right;
}

.program-content {
  padding: 15px;
}

.program-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.program-duration {
  color: #666;
  margin-bottom: 20px;
}

/* bca all  page */
.card1 {
  border: 1px solid transparent;
  /* border-image: linear-gradient(to right, #000000, #c89116) 1; */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding-left: 25px;
}

.job_percentage {
  background-color: #000;
  float: right;
  margin-top: -5%;
  width: 230px;
  border-radius: 0px;
}

.job_percentage {
  width: 270px;
}

.star-text {
  color: #000;
}

.time {
  color: #565a5f;
}

.timo2 {
  width: 90%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 5%;
}

.Eligibility {
  flex: 1;
  padding: 10px;
}

.bca-program-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #000;
  transition: all 0.4s ease-out;
  cursor: pointer;
  height: 100%;
}

.bca-program-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.bca-program-card ul {
  padding-left: 0;
  list-style: none;
}

.bca-program-card ul li {
  padding: 8px 0;
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: center;
}

/* Icon Before List */
.bca-program-card ul li::before {
  content: "✔";
  color: #000;
  font-weight: bold;
  margin-right: 10px;
}

/* Hover Animation */
.bca-program-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  background: linear-gradient(to bottom, #fffaf2, #ffffff);
}

.mission-title {
  color: #000;
}

.bca-feature-card {
  background: white;
  padding: 28px 20px;
  border-radius: 18px;
  border-top: 5px solid #000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-out;
  cursor: pointer;
  height: 100%;
}

.bca-feature-card h5 {
  font-weight: 700;
  margin-top: 15px;
  font-size: 18px;
  color: #222;
}

.bca-feature-card p {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
  line-height: 1.5;
}

/* Hover Effect */
.bca-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  background: linear-gradient(to bottom, #fffaf2, #ffffff);
}

/* Icon Hover Animation */
.bca-feature-card:hover .icon-box {
  background: #000;
  color: white;
  transform: rotate(8deg) scale(1.05);
}

.career-card {
  background: white;
  padding: 35px 25px;
  border-radius: 18px;
  border-top: 5px solid #000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-out;
  cursor: pointer;
  height: 100%;
}

.career-card h5 {
  font-weight: 700;
  margin-top: 18px;
  font-size: 20px;
  color: #222;
}

.career-card p {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}

/* Icon Circle */
.career-icon {
  width: 70px;
  height: 70px;
  background: #fff3e0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: auto;
  font-size: 32px;
  color: #000;
  transition: all 0.4s ease-out;
}

/* Hover Effect */
.career-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  background: linear-gradient(to bottom, #fffaf2, #ffffff);
}

/* pdsc page csss */
.tech-stack-item {
  height: 200px;
  border: 2px solid #eaeaea;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-stack-item img {
  max-width: 50px;
  margin-bottom: 10px;
}

.tech-stack-item h6 {
  font-size: 16px;
  margin: 0;
}

.tech-stack-item p {
  margin-top: 2%;
  font-size: 13px;
  color: #716b6b;
}

.popup {
  position: fixed;
  top: 20px;
  /* right: 20px; */
  padding: 15px 25px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  display: none;
  z-index: 9999;
  animation: slideIn 0.4s ease;
}

.success {
  background-color: #28a745;
}

.error {
  background-color: #dc3545;
}

/* for sccoll and read more logic */
.founder-img {
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s;
}

.founder-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.section-title span {
  color: #f4a000;
  font-weight: 700;
}

.badge-brand {
  background: #000;
  color: #fff;
}

.readBtn {
  color: white;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.why-section {
  background: #f8f9fa;
}

.mission-title {
  font-size: 14px;
  font-weight: 600;
  color: #f4a000;
  letter-spacing: 2px;
}

.future-control-title {
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: all 0.35s ease;

  height: 100%;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Hover Animation */

.feature-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* subtle border highlight */

.feature-card::before {
  content: "";

  position: absolute;

  width: 0%;

  height: 4px;

  background: #f4a000;

  left: 0;

  top: 0;

  transition: 0.4s;
}

.feature-card:hover::before {
  width: 100%;
}