/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

:root {
  --primary-color: #2db0fd;
  --secondary-color: #febd48;
  --dark: #000;
  --text-light: #e5e7eb;
}

h2 {
  color: var(--secondary-color) !important;
  font-family: "ubuntu", sans-serif;
}
span {
  font-family: "ubuntu", sans-serif;
}

p,
h3 {
  font-family: "Montserrat", sans-serif;
}
/* span{
    color: var(--primary-color) !important;
} */
/* TOP BAR */
.topbar {
  background: var(--primary-color)!important;
  color: #ffffff;
  font-size: 13px;
}

.topbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left span {
  margin-right: 20px;
}

.topbar-left span a {
  text-decoration: none;
  color: white;
  font-family: "monserrat", sans-serif;
}

.topbar-left i,
.topbar-right i {
  color: var(--secondary-color);
  margin-right: 6px;
}

.topbar-right a {
  color: #cbd5f5;
  margin-left: 12px;
  font-size: 14px;
}

/* TOPBAR SOCIAL ICONS – CIRCLE */
.topbar-right a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(226, 7, 7, 0.08);
  margin-left: 15px;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.topbar-right a:hover {
  background: var(--primary-color);

  transform: translateY(-2px);
}
.topbar {
  background: #000;
  color: #fff;
  font-size: 13px;
  transition: transform 0.35s ease;
}

.topbar.hide {
  transform: translateY(-100%);
}

/* Header normal */
.header {
  background: #000000!important;
  width: 100%;
  z-index: 999;
}

/* Header becomes fixed AFTER scroll */
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* HEADER */
.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(248, 248, 248, 0.15);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-left img {
  height: 96px;
}
.nav-left {
  overflow: hidden;
}

/* MENU */
.nav-center {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-center a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 2px;
  transition: color 0.3s ease;
}

/* hover effect */
.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-center a:hover {
  color: var(--primary-color);
}

.nav-center a:hover::after {
  width: 100%;
}
.nav-center a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 260px;
  background: #000;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s ease;
  z-index: 99999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CATEGORY ITEM */
.has-submenu {
  position: relative;
}

.has-submenu > a {
  padding: 12px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e5e7eb;
  font-size: 15px;
  text-decoration: none;
}

.has-submenu > a:hover {
  background: rgba(45, 176, 253, 0.12);
  color: var(--primary-color);
}

/* SUB MENU */
.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 240px;
  background: #000;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: 0.3s ease;
}

/* SHOW SUBMENU ON HOVER */
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* COURSE LINKS */
.submenu a {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  color: #e5e7eb;
  text-decoration: none;
}

.submenu a:hover {
  background: rgba(254, 189, 72, 0.15);
  color: var(--secondary-color);
}
.dropdown-menu,
.dropdown-menu ul,
.dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}


.dropdown {
  position: relative;
}

/* MAIN DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 260px;
  background: #000;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s ease;
  z-index: 99999;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* LINKS */
.dropdown-menu li a {
  padding: 12px 22px;
  display: block;
  font-size: 15px;
  color: #e5e7eb;
  text-decoration: none;
  transition: 0.25s ease;
}

.dropdown-menu li a:hover {
  background: rgba(45, 176, 253, 0.15);
  color: var(--primary-color);
}

/* RESET */
.dropdown-menu,
.dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}


.mobile-dropdown.open > .course-direct {
  max-height: 600px;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }

  .menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
  }

  /* OFFCANVAS */
  .offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #000;
    padding: 25px;
    z-index: 1001;
    transition: 0.4s ease;
    overflow-y: auto;
  }

  .offcanvas.active {
    right: 0;
  }

  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: 0.3s;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
  }

  /* MENU */
  .offcanvas-menu {
    list-style: none;
    padding: 50px 0 0;
    margin: 0;
  }

  .offcanvas-menu li {
    margin-bottom: 12px;
  }

  .offcanvas-menu a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
  }

  .offcanvas-menu a:hover {
    background: rgba(45, 176, 253, 0.15);
  }

  /* SUB MENU */
  .offcanvas-menu ul {
    list-style: none;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
  }

  .offcanvas-menu li.open > ul {
    max-height: 500px;
  }
}
/* Desktop dropdown hover */


.hero-slider {
  position: relative;
  
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.hero-arrow:hover {
  background: #2563eb;
}

.hero-arrow.left {
  left: 25px;
}
.hero-arrow.right {
  right: 25px;
}
@media (max-width: 500px) {
  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
    background: rgba(0, 0, 0, 0.65);
    top: 60%;
  }

  .hero-arrow.left {
    left: 10px;
  }

  .hero-arrow.right {
    right: 10px;
  }
}

/* BUTTON */
.btn-solid {
  background: rgb(238, 79, 40);
  color: #f1f1f1;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
font-family: 'montserrat';
  animation: heartbeat 2.4s infinite;
}

@keyframes heartbeat {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.1); }
  50%  { transform: scale(1); }
  75%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}



/* MOBILE MENU BUTTON */
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  
}

/* OFFCANVAS */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: #000;
  padding: 30px 25px;
  transition: 0.35s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.offcanvas.active {
  right: 0;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  align-self: flex-end;
  cursor: pointer;
}

.offcanvas-menu {
  list-style: none;
  margin-top: 40px;
}

.offcanvas-menu li {
  margin-bottom: 20px;
}

.offcanvas-menu a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.offcanvas-cta {
  margin-top: auto;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .topbar-container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* HEADER TRANSITION */
.header {
  transition: all 0.3s ease;
}



/* DEFAULT NAV HEIGHT */
.nav {
  padding: 16px 20px!important; /* ADD THIS */
  transition: all 0.3s ease;
}

/* SHRINK NAV */


/* LOGO SHRINK */


/* *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Inter", system-ui, sans-serif;
} */

.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
  margin-top: -70px;
}

.slides {
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}



/* DARK OVERLAY */
/* STRONG CINEMATIC OVERLAY */
.overlays {
  position: absolute;
  inset: 0;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* DARK OVERLAY */
/* STRONG CINEMATIC OVERLAY */
.overlays {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.801),
    rgba(0, 0, 0, 0.514),
    rgba(0, 0, 0, 0.644)
  );
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain!important;
}




/* CONTENT */
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  z-index: 2;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 20px;
  width: max-content;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--secondary-color);
}

.hero-content p {
  max-width: 550px;
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: var(--primary-color);
  padding: 14px 32px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  padding: 14px 32px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-slider {
    height: 85vh;
  }
}

.why-choose {
  background: #000000ec;
  padding: 80px 20px;
   position: relative;
  overflow: hidden;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.bg-texs{
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 180px;
  font-weight: 800;
  letter-spacing: 20px;
  color: rgba(252, 252, 252, 0.048); /* light fade */
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: #ffffff !important;
  font-weight: 700;
  line-height: 1.2;
}

.section-header h2 span {
  color: var(--primary-color);
}

.section-header p {
  font-size: 16px;
  color: rgb(255, 255, 255) !important;
  margin-top: 12px;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature {
  background: #ffffff31;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(247, 247, 247, 0.082);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.feature img {
  width: 60px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 12px;
  padding-top: 11px;
}

.feature p {
  font-size: 14px;
  color: #e6e6e6;
  font-family: "Montserrat", sans-serif;
}

/* MOBILE */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.courses-slider {
  position: relative;
  padding: 90px 20px;
  background: rgb(248, 248, 248);
  overflow: hidden;
}
.courses-container{
  position: relative;
  z-index: 2;
}
.courses-slider > * {
  position: relative;
  z-index: 2;
}
.course-text{
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(70px, 14vw, 180px);   /* auto responsive */
  font-weight: 800;
  letter-spacing: clamp(5px, 1.6vw, 20px);
  color: rgba(0, 0, 0, 0.11);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 576px){
  .course-text{
    top: 20%;
    opacity: 0.6;
  }
}

.section-headers.center {
  text-align: center;
  margin-bottom: 50px;
}

.heading {
  color: #000000!important;
  font-size: 40px;
}
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-window {
  overflow: hidden;
  width: 100%;
  padding: 20px;
}

.slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.course-card {
  min-width: calc(33.333% - 20px);
  background: #ffffff10;
  /* border:2px solid #ff7a18; */
  border-radius: 14px 25px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.course-card h3 {
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--secondary-color);
}

.course-card a {
  display: inline-block;
  padding: 8px 18px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
}

/* ARROWS */
.nav-btn {
  background: #fff;
  border: 1px solid #ddd;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

/* MOBILE */
@media (max-width: 900px) {
  .course-card {
    min-width: 100%;
  }
}

/* ===========================
   COURSES SLIDER SECTION
=========================== */
.courses-slider {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fb, #eef1f7);
}

/* section heading */
.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  padding-top: 50px;
}

.section-header h2 span {
  color: var(--primary-color);
}

.section-header p {
  color: #555;
}

/* ===========================
   SLIDER LAYOUT
=========================== */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-window {
  overflow: hidden;
  width: 100%;
  padding: 30px 10px;
}

.slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* ===========================
   COURSE CARD
=========================== */
.course-card {
  min-width: calc(33.333% - 20px);
  background: #fff;
  border-radius: 22px;
  padding: 45px 25px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* hover lift */
.course-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* ===========================
   ICON STYLE (MAIN ATTRACTION)
=========================== */
.course-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* different course vibes */
.course-ug {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.course-degree {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.course-pro {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}
.course-law {
  background: linear-gradient(135deg, #8e2de2, #4a00e0); /* purple */
}

.course-mgmt {
  background: linear-gradient(135deg, #11998e, #38ef7d); /* teal-green */
}

/* shine layer */
.course-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 24px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  opacity: 0.4;
}

/* icon animation */
.course-card:hover .course-icon {
  transform: rotate(-4deg) scale(1.12);
}

/* ===========================
   TEXT & BUTTON
=========================== */
.course-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.course-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.course-card a {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 13px;
  transition: 0.3s ease;
}

.course-card a:hover {
  background: #000;
}

/* ===========================
   ARROWS
=========================== */
.nav-btn {
  background: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 900px) {
  .course-card {
    min-width: 100%;
  }
}

/* .wave-section{
  position:relative;
  background:var(--secondary-color);
  padding:80px 20px;
}

.wave-top{
  position:absolute;
  top:-15px;
  left:0;
  width:100%;
  height: 90px;
} */

.faculty-slider-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fb, #eef1f7);
  padding: 120px 20px 100px;
  overflow: hidden;
}
.facul-container{
  position: relative;
  z-index: 2;
}
.facul-text{
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(70px, 14vw, 180px);   /* auto responsive */
  font-weight: 800;
  letter-spacing: clamp(5px, 1.6vw, 20px);
  color: rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 576px){
  .facul-text{
    top: 20%;
    opacity: 0.6;
  }
}


/* .faculty-slider-section {
  position: relative;
  background: #070707;
  padding: 120px 20px 100px;
} */

.faculty-slider-section svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.faculty-slider-wrapper {
  position: relative;
  margin-top: 50px;
}

.section-headeres {
  text-align: center;
  font-size: 25px;
}
.pit {
  font-size: 16px;
  margin-top: 10px;
}
.headings {
  color: #000 !important;
}

/* arrows hidden initially */
.faculty-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff6a00;
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  z-index: 5;
}

.faculty-slider-wrapper:hover .faculty-nav {
  opacity: 1;
}

.faculty-nav.prev {
  left: -20px;
}
.faculty-nav.next {
  right: -20px;
}

.faculty-slider-window {
  overflow: hidden;
  padding: 30px;
}

.faculty-slider-track {
  display: flex;
  gap: 30px;
  transition: 0.6s ease;
}

/* CARD */
.faculty-cards {
  flex: 0 0 calc((100% - 55px) / 3); /* 3 cards + 2 gaps */
  background: #ffffff11;
  border-radius: 18px;
  padding: 30px 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}

.images {
  width: 250px;
  height: 250px;
  object-fit: contain;
  border-radius: 50%;
  border: 4px solid var(--dark);
  margin-bottom: 15px;
}

.faculty-cards h3 {
  font-size: 20px;
  color: var(--primary-color);
}

.faculty-cards p {
  color: #f0a720;
  font-weight: 600;
}

.faculty-cards span {
  font-size: 14px;
  color: #000000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faculty-card {
    flex: 0 0 100%; /* mobile = 1 card */
  }
}

.video-lectures {
  padding: 80px 20px 60px;
  background: linear-gradient(rgb(11, 14, 19), rgb(0, 0, 0));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-container{
  position: relative;
  z-index: 2;
}

.video-text{
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(70px, 14vw, 180px);   /* responsive font */
  font-weight: 800;
  letter-spacing: clamp(5px, 1.6vw, 20px);
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 576px){
  .video-text{
    top: 20%;
    opacity: 0.6;
  }
}


.video-lectures h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffffff!important;
}
.vi {
  font-size: 16px;
  color: #dddbdb;
  margin-bottom: 30px;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.tab {
  color: #fff !important;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.tabs .tab {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  background: #ffffff1e;
  color: #496080;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  transition: all 0.25s ease;
}

.tabs .tab:hover {
  background: #eff6ff70;
  color: #2563eb;
}

.tabs .tab.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}
.video-card h3 {
  font-size: 18px;
  margin-top: 12px;
  color: #ffffff;
}
.view-more {
  margin-top: 30px;
}

.view-more-btn {
  background: orange;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  text-decoration: none;
}

.view-more button:hover {
  background: darkorange;
}

.video-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.video-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.video-grid::-webkit-scrollbar {
  display: none;
}

.video-card {
  min-width: 320px;
  flex-shrink: 0;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

.arrow {
  position: absolute;
  top: 45%;
  background: #2563eb;
  color: #fff;
  border: none;
  font-size: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.arrow.left {
  left: -10px;
}
.arrow.right {
  right: -10px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  position: relative;
  background: #f8f8f8;
  padding: 140px 20px;
  /* color: #e5e7eb; */
  overflow: hidden;
}
.contact-container{
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

.contact-text{
  position: absolute;
  top: 9%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(70px, 14vw, 170px);   /* responsive size */
  font-weight: 800;
  letter-spacing: clamp(5px, 1.6vw, 20px);
  color: rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  font-family: 'aldrich', sans-serif;

}
@media (max-width: 576px){
  .contact-text{
    top: 18%;
    opacity: 0.6;
  }
}

/* soft glow */
.contact-section::after {
  content: "";
  position: absolute;
  right: -200px;
  top: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.25),
    transparent 70%
  );
  transform: translateY(-50%);
}

/* layout */
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT CONTENT */
.contact-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark) !important;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #313131;
  margin-bottom: 14px;
}

/* social */
.contact-social {
  margin-top: 25px;
  display: flex;
  gap: 14px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 600;
  transition: 0.35s;
}

.contact-social a:hover {
  background: #38bdf8;
  color: #020617;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

/* RIGHT FORM */
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  padding: 45px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.contact-form .input-group {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(2, 6, 23, 0.6);
  color: #e5e7eb;
  font-size: 14px;
  transition: 0.3s;
}

.contact-form input::placeholder {
  color: #94a3b8;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

/* captcha */
.captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 22px;
}

/* button */
.contact-form button {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: var(--dark);
  color: #ffffff;
  transition: 0.35s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(56, 189, 248, 0.45);
}

/* Google Map styling */
.contact-map {
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-content h2 {
    font-size: 34px;
  }

  .contact-form {
    padding: 35px 25px;
  }

  .contact-form .input-group {
    flex-direction: column;
  }

  .contact-social {
    justify-content: center;
  }
}

/* ===== PREMIUM FOOTER ===== */
/* ================= FOOTER ================= */
.footer {
  position: relative;
  background: linear-gradient(180deg, #000000, #000000);
  box-shadow: inset 0 8px 40px rgba(0, 0, 0, 0.05);
  padding: 120px 20px 30px;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Layout */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 80px;
}

/* Brand */
.footer-logo {
  font-size: 32px;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* Paragraph */
.footer p {
  font-size: 15px;
  line-height: 1.8;
  color: #f2f2f3;
}

/* Headings */
.footer h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}

.footer h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, transparent);
  position: absolute;
  bottom: -8px;
  left: 0;
}

/* Quick links */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #fbfbfc;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}

.footer ul li a::before {
  content: "→";
  margin-right: 6px;
  opacity: 0;
  transform: translateX(-6px);
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #2563eb;
}

.footer ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact */
.footer .contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #334155;
}

/* ================= SOCIAL ICONS (UNCHANGED) ================= */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;   /* CENTER */
  gap: 20px;
  text-align: center;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 18px;
  transition: 0.35s;
}

.footer-social a:hover {
  background: #38bdf8;
  color: #020617;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.4);
}
@media (max-width: 900px) {
  .footer-social {
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }

  .footer-social h3 {
    text-align: center;
  }
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #ffffff;
  border-top: 1px solid rgba(143, 143, 143, 0.377);
  padding-top: 30px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    flex-wrap: wrap;
  }
}

/* Section Style */
.highlights {
  background: linear-gradient(180deg, #0b0e13, #12161c);
  color: #fff;
  padding: 50px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.high-text{
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(70px, 14vw, 180px);   /* responsive font */
  font-weight: 800;
  letter-spacing: clamp(5px, 1.6vw, 20px);
  color: rgba(255, 255, 255, 0.055);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 576px){
  .high-text{
    top: 20%;
    opacity: 0.6;
  }
}

.high-container{
  position: relative;
  z-index: 2;
}

/* Title */
.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  color: #ffffff !important;
}

.para {
  text-align: center;
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 80px;
}

/* ===== STATS ===== */
.stats-grid {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
}

.stat-card p {
  font-size: 38px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 15px;
  font-weight: 400;
  color: #d0d0d0;
  line-height: 1.4;
}

/* ===== FEATURES ===== */
.features {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 28px 25px;
  transition: all 0.35s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}

.feature-card h4 {
  font-size: 17px;
  font-weight: 500;
  color: #ff6600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #bdbdbd;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid,
  .features {
    grid-template-columns: 1fr;
  }
}
.high {
  color: var(--primary-color) !important;
}
.about-section.light {
  background: #f8f8f8;
  padding: 130px 20px;
  margin-top: -60px;
 
}
.about-section{
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 120px 0;
}

/* BACKGROUND BIG TEXT */
.bg-text{
  position: absolute;
  top: 17%;
  left: 60%;
  transform: translate(-50%, -50%);
  font-size: clamp(70px, 14vw, 240px);   /* responsive size */
  font-weight: 800;
  letter-spacing: clamp(5px, 4.6vw, 60px);
  color: rgba(0, 0, 0, 0.07);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  font-family: 'aldrich', sans-serif;
}
@media (max-width: 768px){
  .bg-text{
    left: 50%;          /* center on small screens */
    top: 12%;
  }
}


/* content upar rahe */
.about-container{
  position: relative;
  z-index: 2;
}


.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text{
  padding-top: 100px;
}

/* LEFT CONTENT */
.about-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000000;
}

.about-text h2 {
  font-size: 40px;
  color: #111 !important;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-highlight {
  font-weight: 600;
  color: #1a1a1a;
}

.about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 36px;
  background: #ff9f1c;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #ffb84d;
  transform: translateY(-2px);
}

/* RIGHT VISUAL */
.about-visual {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  display: block;
}

/* Decorative shape */
/* .about-visual::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: #ff9f1c;
  border-radius: 20px;
  top: -20px;
  right: -20px;
  z-index: -1;
} */

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-visual::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .about-text h2 {
    font-size: 32px;
  }
}
.testimonial-section {
  background: linear-gradient(rgb(11, 14, 19), rgb(18, 22, 28));
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.testional-container{
  position: relative;
  z-index: 2;
  
}
.testimonal-text{
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(60px, 12vw, 160px); /* 🔥 auto responsive */
  font-weight: 800;
  letter-spacing: clamp(4px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 576px){
  .testimonal-text{
    top: 18%;
    opacity: 0.6;
  }
}

.testimonial-slider {
  overflow: hidden;
  margin-top: 70px;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scrollTestimonial 28s linear infinite;
}

/* CARD */
.testimonial-card {
  width: 380px;
  padding: 35px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

/* QUOTE ICON */
.testimonial-card::before {
  content: "❝";
  font-size: 70px;
  color: var(--primary-color);
  position: absolute;
  top: -18px;
  right: 30px;
  opacity: 0.12;
}

/* TEXT */
.testimonial-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 30px;
}

/* STUDENT */
.student {
  display: flex;
  align-items: center;
  gap: 14px;
}

.student img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.student h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.student span {
  font-size: 13px;
  color: #64748b;
}

/* PAUSE ON HOVER */
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

/* INFINITE SCROLL */
@keyframes scrollTestimonial {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-card {
    width: 300px;
    padding: 28px;
  }
}
/* HERO */
.faculty-hero {
  padding: 120px 20px 100px;
  /* background: #000000; */
  position: relative;
  overflow: hidden;
  background: url('faculty-image.jpeg') no-repeat center center/cover;
}

.faculty-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 36, 36, 0.65); /* white overlay → image light */
  z-index: 1;
}

.faculty-hero > * {
  position: relative;
  z-index: 2;
}
.hero-inner {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.hero-text span {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
}

.hero-text h1 {
  font-size: 48px;
  color: var(--primary-color);
  margin: 15px 0;
  font-family: 'Montserrat', sans-serif;
}

.hero-text p {
  max-width: 520px;
  font-size: 17px;
  color: #cecece;
}



/* .hero-shape {
  position: absolute;
  right: -140px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    var(--primary-color),
    transparent 60%
  );
  opacity: 0.4;
} */

/* CONTENT */
.faculty-content {
  text-align: center;
  padding: 80px 20px 40px;
}

.faculty-content h2 {
  font-size: 36px;
  color: #000;
}

.faculty-content p {
  max-width: 750px;
  margin: 20px auto 0;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* SHOWCASE */
.faculty-showcase {
  padding: 80px 20px 120px;
}

.faculty-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.faculty-card {
  background: linear-gradient(180deg, #fff, #f5f8ff);
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  position: relative;
}

.faculty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(45, 176, 253, 0.15),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.faculty-card:hover::after {
  opacity: 1;
}

.faculty-card:hover {
  transform: translateY(-18px);
}

.faculty-card img {
  width: 260px;
  height: 220px;
  object-fit: contain;
  border-radius: 12px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.faculty-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.faculty-card span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

.faculty-card .line {
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  margin: 14px auto;
  border-radius: 2px;
}

.faculty-card p {
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .faculty-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 36px;
  }
}
/* HERO */
.course-hero {
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
  background: url('faculty-image.jpeg') no-repeat center center/cover;
}

.course-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37, 37, 37, 0.65); /* white overlay → image light */
  z-index: 1;
}

.course-hero > * {
  position: relative;
  z-index: 2;
}

.course-hero-inner {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.course-hero-text span {
  color: var(--secondary-color);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
}

.course-hero-text h1 {
  font-size: 48px;
  color: var(--primary-color);
  margin: 18px 0;
  font-family: 'Montserrat', sans-serif;
}

.course-hero-text p {
  max-width: 560px;
  font-size: 17px;
  color: #d1d5db;
}

/* .course-hero-shape {
  position: absolute;
  right: -120px;
  top: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    var(--primary-color),
    transparent 65%
  );
  opacity: 0.35;
} */

/* INTRO */
.course-intro {
  padding: 90px 20px;
  background: #fff;
}

.course-intro-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
  border: 4px solid rgb(0, 0, 0);
  padding: 20px;
}

.course-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-top: 20px;
}
.course-head {
  color: #000 !important;
}
/* HIGHLIGHTS */
.course-highlights {
  padding: 80px 20px;
  background: #f6f7fb;
}

.course-subhead {
  color: #000 !important;
}
.highlights-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-box {
  background: #5c5656;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.highlight-box h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.highlight-box p {
  color: #555;
  font-size: 15px;
}

/* WHY SECTION */
.why-bcom {
  padding: 90px 20px;
  background: #ffffff;
}

.why-inner {
  max-width: 1200px;
  margin: auto;
}

.why-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: #000;
  color: #fff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.why-card h4 {
  color: var(--secondary-color);
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .course-hero-text h1 {
    font-size: 36px;
  }
  .highlights-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.bcom-section {
  padding: 120px 20px;
  background: linear-gradient(
    135deg,
    rgba(45, 176, 253, 0.08),
    rgba(254, 189, 72, 0.06)
  );
}

.bcom-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.bcom-left span {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--secondary-color);
}

.bcom-left h2 {
  font-size: 44px;
  margin: 18px 0 20px;
  line-height: 1.2;
}

.bcom-left p {
  font-size: 18px;
  color: #444;
  max-width: 420px;
  line-height: 1.7;
}

.bcom-right {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.bcom-point {
  background: #000000;
  padding: 32px 35px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

.bcom-point:nth-child(2) {
  margin-left: 50px;
}

.bcom-point h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: white;
}

.bcom-point p {
  font-size: 16px;
  line-height: 1.8;
  color: #b3b2b2;
}

/* Responsive */
@media (max-width: 900px) {
  .bcom-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bcom-left h2 {
    font-size: 32px;
  }

  .bcom-point:nth-child(2) {
    margin-left: 0;
  }
}
.bcom-left {
  position: sticky;
  top: 120px; /* navbar ke niche chipka rahe */
  align-self: flex-start;
}
.footer-logo img {
  width: 150px; /* adjust as needed */
  max-width: 200px;
}
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.site {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 16px;

  padding: 10px;
}

.site:hover {
  color: var(--secondary-color);
}
.floating-social {
  position: fixed;
  left: 18px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-social a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

/* ORIGINAL BRAND COLORS */
.floating-social .yt {
  background: #ff0000;
} /* YouTube */
.floating-social .fb {
  background: #1877f2;
} /* Facebook */
.floating-social .ig {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.floating-social .wa {
  background: #25d366;
} /* WhatsApp */
.course-mini {
  padding: 90px 20px;
  background: #000000ec;
  position: relative;
    overflow: hidden;

}
.container{
  position: relative;
  z-index: 2;
}
.bg-tex{
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(70px, 14vw, 180px);   /* auto responsive */
  font-weight: 800;
  letter-spacing: clamp(5px, 1.6vw, 20px);
  color: rgba(255, 255, 255, 0.048);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 576px){
  .bg-tex{
    top: 25%;
    opacity: 0.6;
  }
}

.courses-title {
  text-align: center!important;
  margin-bottom: 50px;
}

.courses-title h2 {
  font-size: 45px;
  font-weight: 800;
  color: #ffffff!important;
}

.courses-title span {
  color:var(--primary-color)!important;
}

.courses-title p {
  color: #64748b;
  font-size: 15px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.courses-box {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.courses-box:hover {
  transform: translateY(-8px);
}

.courses-box h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.badge {
  display: inline-block;
  font-size: 12px;
  background: #eef2ff;
  color: #4338ca;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.courses-box p {
  font-size: 14.5px;
  color: #475569;
  margin-bottom: 15px;
}

.meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 15px;
}

.courses-box ul {
  padding-left: 18px;
}

.courses-box li {
  font-size: 14px;
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
}

.featured {
  background: linear-gradient(145deg, #000000, #030303cb);
  color: #fff;
}

.featured p,
.featured li,
.featured .meta {
  color: #e0e7ff;
}

.dark {
  background: #000000;
  color: #fff;
}

.dark p,
.dark li {
  color: #cbd5f5;
}

.batch-head {
  color: #000;
}

/* Mobile */
@media (max-width: 600px) {
  .courses-title h2 {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  .courses-box {
    animation: floatUpDown 6s ease-in-out infinite;
  }

  /* odd cards */
  .courses-box:nth-child(odd) {
    animation-delay: 0s;
  }

  /* even cards */
  .courses-box:nth-child(even) {
    animation-delay: 2.5s;
  }

  /* every 3rd card for snake depth */
  .courses-box:nth-child(3n) {
    animation-delay: 4s;
  }
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}
.courses-box:hover {
  animation-play-state: paused;
  transform: translateY(-30px) scale(1.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}
.vmv-section{
  padding:140px 20px;
  background: #000000dc;
}

/* HEADER */
.vmv-header{
  max-width:760px;
  margin:0 auto 90px;
  text-align:center;
}

.vmv-header h2{
  font-size:40px;
  font-weight:900;
  letter-spacing:-0.5px;
  margin-bottom:18px;
  color:#ffffff !important;
}

.vmv-header p{
  font-size:17px;
  line-height:1.9;
  color:#c5c5c5;
}

/* GRID */
.vmv-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;
}

/* CARD */
.vmv-card{
  position:relative;
  background:rgba(24, 24, 24, 0.85);
  backdrop-filter:blur(18px);
  border-radius:30px;
  padding:30px 10px 20px;
  text-align:center;
  box-shadow:0 30px 80px rgba(0,0,0,.12);
  transition:.5s cubic-bezier(.23,1,.32,1);
  overflow:hidden;
}

/* COLOR STRIP */
/* COLOR STRIP – hidden by default */
.vmv-card::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  opacity:0;
  transform:scaleX(0);
  transform-origin:left;
  transition:all .45s ease;
}

/* SHOW STRIP ON HOVER */
.vmv-card:hover::after{
  opacity:1;
  transform:scaleX(1);
}

/* COLORS (same as before) */
.vision::after{background:linear-gradient(90deg,#4facfe,#00f2fe);}
.mission::after{background:linear-gradient(90deg,#43e97b,#38f9d7);}
.values::after{background:linear-gradient(90deg,#f7971e,#ffd200);}


/* ICON */
.vmv-icon{
  width:96px;
  height:96px;
  margin:0 auto 32px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  color:#fff;
  border-radius:26px;
  box-shadow:0 25px 50px rgba(0,0,0,.35);
  transition:.55s cubic-bezier(.23,1,.32,1);
}

.vision .vmv-icon{
  background:linear-gradient(135deg,#4facfe,#00f2fe);
}
.mission .vmv-icon{
  background:linear-gradient(135deg,#43e97b,#38f9d7);
}
.values .vmv-icon{
  background:linear-gradient(135deg,#f7971e,#ffd200);
}

/* TEXT */
.vmv-card h3{
  font-size:24px;
  font-weight:800;
  margin-bottom:18px;
  color: var(--primary-color);
}

.vmv-card p{
  font-size:15.5px;
  line-height:1.9;
  color:#c9c9c9;
}

/* HOVER MAGIC */
.vmv-card:hover{
  transform:translateY(-22px) scale(1.02);
  box-shadow:0 60px 120px rgba(0,0,0,.2);
}

.vmv-card:hover .vmv-icon{
  transform:translateY(-14px) rotate(-6deg) scale(1.15);
}

/* RESPONSIVE */
@media(max-width:900px){
  .vmv-container{
    grid-template-columns:1fr;
    gap:40px;
  }
}

/* .popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
} */

/* ===== POPUP OVERLAY ===== */
/* ================= POPUP OVERLAY ================= */

.popup-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 16px;
}

/* ================= POPUP BOX ================= */

.popup-box{
  background: black;
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: 90vh;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ================= CLOSE ================= */

.popup-close{
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
  z-index: 20;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= SLIDER ================= */

.popup-slider{
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-slide{
  display: none;
  width: 100%;
  height: 100%;
}

.popup-slide.active{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= IMAGE ================= */

.popup-slide img{
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  display: block;
}

/* ================= DOTS ================= */

.popup-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
}

.popup-dots span{
  width: 9px;
  height: 9px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.popup-dots span.active{
  background: #000;
}

/* ================= TABLET ================= */

@media (max-width: 768px){
  .popup-box{
    max-width: 420px;
    border-radius: 12px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 480px){
  .popup-box{
    max-width: 100%;
    max-height: 92vh;
    border-radius: 10px;
  }

  .popup-slide img{
    max-height: 109vh;
  }

  .popup-dots{
    padding: 10px 0;
  }

  .popup-dots span{
    width: 8px;
    height: 8px;
  }
}

/* ===== GLOBAL SAFETY (NO RIGHT GAP) ===== */

/* ===== BODY SCROLL LOCK (OPTIONAL) ===== */
body.popup-open {
  overflow: hidden;
}

/* COMMON SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* OPTIONAL VARIATIONS */
.reveal.left {
  transform: translateX(-80px);
}

.reveal.right {
  transform: translateX(80px);
}

.reveal.zoom {
  transform: scale(0.9);
}

.reveal.active.left,
.reveal.active.right {
  transform: translateX(0);
}

.reveal.active.zoom {
  transform: scale(1);
}


.facilities-section {
  padding: 80px 0;
  background: #f7f9ff;
   position: relative;
  overflow: hidden;
}
.containers{
  position: relative;
  z-index: 2;
}
.bg-texts{
  position: absolute;
  top: 13%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(60px, 12vw, 140px);   /* responsive font */
  font-weight: 800;
  letter-spacing: clamp(4px, 1.5vw, 20px);
  color: rgba(0, 0, 0, 0.075);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 576px){
  .bg-texts{
    top: 18%;
    opacity: 0.6;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title span {
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 34px;
  margin: 10px 0;
  color: #000!important;
}

.section-title p {
  color: #666;
  font-size: 14px!important;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.facility-card {
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
  padding: 32px 28px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(74,108,247,0.12);
  transition: all 0.35s ease;
}

/* LEFT ACCENT BAR */
.facility-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), #6f8cff);
}

/* HOVER EFFECT */
.facility-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 45px rgba(74,108,247,0.25);
}

/* TITLE */
.facility-card h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #1f2a44;
}

/* LIST */
.facility-card ul {
  list-style: none;
  padding: 0;
}

.facility-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

/* ICON */
.facility-card ul li::before {
  content: "✦";
  color: #4a6cf7;
  font-size: 14px;
  margin-top: 3px;
}

/* SUB LIST */
.sub-list {
  margin-top: 10px;
  padding-left: 22px;
}

.sub-list li::before {
  content: "➜";
  color: #6b7280;
}

/* SPECIAL CARD */
.highlight {
  background: linear-gradient(180deg, #000, #000000);
  color: #fff;
}

.highlight h3,
.highlight ul li,
.highlight ul li::before {
  color: #fff;
}
.floating-app-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #1db4b9, #16889c);
  color: #fff;

  padding: 14px 20px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 12px 35px rgba(29, 185, 164, 0.45);
  z-index: 9999;

  transition: all 0.35s ease;
}

/* ICON */
.floating-app-btn i {
  font-size: 18px;
}

/* HOVER */
.floating-app-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(29,185,84,0.6);
}

/* MOBILE VIEW */
@media (max-width: 576px) {
  .floating-app-btn span {
    display: none;
  }

  .floating-app-btn {
    padding: 14px;
    border-radius: 50%;
  }
}

.material-zone{
  padding: 110px 0;
  background: radial-gradient(circle at top,rgb(15, 15, 15));
  color: #fff;
}

.mz-container{
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* header */
.mz-header{
  text-align: center;
  margin-bottom: 80px;
}

.mz-header span{
  font-size: 12px;
  letter-spacing: 2px;
  color: #8b8bff;
}

.mz-header h2{
  font-size: 44px;
  margin: 12px 0;
}

.mz-header p{
  color: #aaa;
}

/* course title */
.course-wrap{
  margin-bottom: 90px;
}

.course-title{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.course-title h3{
  font-size: 30px;
  white-space: nowrap;
}

.course-line{
  flex: 1;
  height: 2px;
  background: linear-gradient(to right,#6c63ff,transparent);
}

/* grid */
.mz-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(278px,1fr));
  gap: 35px;
}

/* subject card */
.mz-subject{
  background: linear-gradient(145deg,#161626,#10101a);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transition: .4s;
  position: relative;
}

.mz-subject::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.06);
  pointer-events: none;   /* 🔥 MOST IMPORTANT */
}


.mz-subject:hover{
  transform: translateY(-10px);
}

/* subject head */
.mz-subject-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}

.mz-subject-head h4{
  font-size:20px;
}

/* pdf list */
.mz-pdfs a{
  display:block;
  padding:12px 14px;
  margin-bottom:10px;
  border-radius:12px;
  background: linear-gradient(135deg,#23233a,#1a1a2c);
  text-decoration:none;
  color:#eaeaff;
  font-size:14px;
  transition:.3s;
}

.mz-pdfs a:hover{
  background: linear-gradient(135deg,#febe48e8);
  transform: translateX(6px);
}

/* mobile */
@media(max-width:600px){
  .mz-header h2{font-size:32px}
  .course-title h3{font-size:24px}
}
.mz-subject-head h4{
  display: flex;
  align-items: center;
  gap: 10px;
}

.mz-subject-head i{
  color: #6c63ff;
  font-size: 18px;
}

.mz-pdfs a{
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 12px 40px 12px 14px;
}

.mz-pdfs a i.fa-file-pdf{
  color: #ff4d4d;
}

.mz-pdfs a span{
  position: absolute;
  right: 14px;
  opacity: .6;
}

.mz-pdfs a:hover span{
  opacity: 1;
}
.mz-pdfs{
  max-height: 320px;          /* thoda bada – scroll kam hoga */
  overflow-y: auto;
  padding-right: 6px;
}


/* scrollbar styling */
.mz-pdfs::-webkit-scrollbar{
  width: 4px;                /* aur patla */
}

.mz-pdfs::-webkit-scrollbar-thumb{
  background: rgba(108,99,255,0.6);
  border-radius: 10px;
}

.mz-pdfs::-webkit-scrollbar-track{
  background: transparent;
}
.mz-pdfs{
  -webkit-overflow-scrolling: touch;
}


.video-zone{
  padding:110px 0;
  background: radial-gradient(circle at top,rgb(15, 15, 15));
  color:#000000;
}

.vz-container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

.vz-header{
  text-align:center;
  margin-bottom:80px;
}

.vz-header span{
  color:#888;
  letter-spacing:2px;
  font-size:12px;
}
.video-para{
  color: #cacaca;
}
.vz-header h2{
  font-size:44px;
  margin:12px 0;
}

/* course title */
.video-course{
  margin-bottom:90px;
}

.video-course-title{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:30px;
}

.video-course-title h3{
  font-size:30px;
  white-space:nowrap;
  color: white !important;
}

/* .video-course-title .line{
  flex:1;
  height:2px;
  background:linear-gradient(to right,#6c63ff,transparent);
} */

/* subject */
.video-subject h4{
  font-size:20px;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  gap:10px;
  color: white !important;
}

/* video row */
.video-row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 280px thoda bada rakha */
  gap: 30px; /* grid-gap thoda bada */
  padding: 10px 0; /* row ke andar thoda padding */
}

/* video card */
.video-card{
  background: linear-gradient(145deg,#161626,#10101a);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transition: .4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.video-card:hover{
  transform: translateY(-8px);
}

.video-thumb{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
}

.video-thumb img{
  width:100%;
  display:block;
}

.play-btn{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.4);
  font-size:26px;
  color:#fff;
  opacity:0;
  transition:.3s;
}

.video-thumb:hover .play-btn{
  opacity:1;
}

.video-card p{
  margin-top:12px;
  font-size:14px;
  color:#ddd;
}
.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.8);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.video-box{
  width:90%;
  max-width:800px;
  position:relative;
}

.video-box iframe{
  width:100%;
  height:450px;
  border-radius:14px;
}

.video-box .close{
  position:absolute;
  top:-40px;
  right:0;
  font-size:28px;
  cursor:pointer;
}
@media(max-width:768px){
  .video-row{
    grid-template-columns: 1fr; /* single column */
    gap:20px;
  }
}
/* ============================= */
/* COURSE STRUCTURE TABLE */
/* ============================= */

.course-structure {
  padding: 90px 0;
  background: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
}

.course-structure .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.course-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.course-title p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* TABLE WRAPPER */
.table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid #ddd;
}

/* TABLE */
.course-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

/* TABLE HEADER */
.course-table thead {
  background: #111;
}

.course-table th {
  padding: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  border-right: 1px solid #333;
}

.course-table th:last-child {
  border-right: none;
}

/* TABLE BODY */
.course-table td {
  padding: 18px;
  font-size: 15px;
  color: #222;
  vertical-align: top;
  border-bottom: 1px solid #e0e0e0;
}

/* BOARD NAME */
.course-table td strong {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

/* SUBJECT LIST SPACING */
.course-table td br {
  line-height: 1.9;
}

/* HOVER EFFECT */
.course-table tbody tr:hover {
  background: #f0f0f0;
  transition: 0.3s ease;
}

/* NOTE */
.note {
  font-size: 13px;
  color: #444;
  font-weight: 500;
}

/* BELOW TABLE NOTE */
.table-note {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 8px;

  color: #000000e7;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  .course-title h2 {
    font-size: 28px;
  }

  .course-table {
    min-width: 650px;
  }
}

@media (max-width: 480px) {
  .course-structure {
    padding: 60px 0;
  }

  .course-title h2 {
    font-size: 24px;
  }

  .course-title p {
    font-size: 14px;
  }

  .course-table th,
  .course-table td {
    padding: 14px;
    font-size: 14px;
  }
}

.header,
.nav {
  overflow: visible !important; /* desktop only */
}

/* ================= DESKTOP ================= */
/* DESKTOP DROPDOWN */
@media (min-width: 993px) {

  /* Parent */
  .courses-dropdown {
    position: relative;
  }

  /* Dropdown box */
  .course-direct {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    background: #0b0b0b;
    min-width: 230px;
    padding: 14px 0;
    border-radius: 14px;

    box-shadow: 0 25px 45px rgba(0,0,0,0.45);

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99999;

    list-style: none;   /* 🔥 DOT REMOVE */
  }

  /* Show dropdown */
  .courses-dropdown:hover .course-direct {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  /* Dropdown items */
  .course-direct li {
    list-style: none;
  }

  .course-direct li a {
    display: block;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  /* Hover effect */
  .course-direct li a:hover {
    background: rgba(45,176,253,0.15);
    color: #2db0fd;
    padding-left: 32px;
  }
}



/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .course-direct {
    position: static;        /* stacked inside menu */
    max-height: 0;           /* collapse by default */
    overflow: hidden;
    padding-left: 15px;
    transition: max-height 0.4s ease;
   
  }

  .mobile-dropdown.open > .course-direct {
    max-height: 600px;       /* expand on click */
  }
}
.director-desk {
  background: #f8f8f8;
  padding: 80px 0;
  color: #111;
}

.director-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

/* IMAGE */
.director-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  background: #fff;
}

/* TAG */
.director-tag {
  display: inline-block;
  background: #ffc107;
  color: #000;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 18px;
}

/* HEADINGS */
.director-content h2 {
  font-size: 36px;
  margin-bottom: 8px;
  color: #111;
}

.director-content h3 {
  font-size: 26px;
  margin-top: 14px;
  color: #c79100;
}

/* QUALIFICATION */
.director-qualification {
  font-size: 15px;
  color: #555;
  margin-bottom: 22px;
}

/* PARAGRAPHS */
.director-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
  color: #333;
}

/* SIGN LINE */
.director-sign {
  font-style: italic;
  font-size: 17px;
  color: #c79100;
  margin-top: 22px;
}

/* NAME */
.director-name {
  margin-top: 28px;
  font-weight: 700;
  color: #111;
}

.director-name span {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .director-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .director-image {
    max-width: 320px;
    margin: auto;
  }

  .director-content h2 {
    font-size: 30px;
  }
}

/* ================= BOOK SLIDER SECTION ================= */

.book-slider-section {
  background: #f8f8f8;
  padding: 80px 0;
}

.book-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */

.book-header {
  text-align: center;
  margin-bottom: 50px;
}

.book-header span {
  background: #ffc107 !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.book-header h2 {
  font-size: 36px;
  margin: 15px 0 8px;
  color: #111!important;
}

.book-header p {
  color: #666;
}

/* ================= SLIDER ================= */

.book-slider-wrapper {
  position: relative;
}

.book-slider {
  overflow: hidden;
}

.book-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

/* ================= CARD ================= */

.book-card {
  flex: 0 0 260px;              /* FIXED width for smooth infinite */
  max-width: 260px;
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.book-card:hover {
  transform: translateY(-8px);
}

.book-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ================= NAV BUTTONS ================= */

.book-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.book-nav.prev {
  left: -15px;
}

.book-nav.next {
  right: -15px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .book-card {
    flex: 0 0 230px;
    max-width: 230px;
  }
}

@media (max-width: 576px) {
  .book-card {
    flex: 0 0 200px;
    max-width: 200px;
  }

  .book-header h2 {
    font-size: 28px;
  }
}
/* ===== VIEW MORE BUTTON ===== */
.book-btn{
  display: inline-block;
  margin: 50px auto 0;
  padding: 14px 42px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #000;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s ease;
}

/* center align */
.book-container{
  text-align: center;
}
.book-btn{
  text-decoration: none !important;
}

/* hover effect */
.book-btn:hover{
  background: transparent;
  color: #000;
}

/* focus remove */
.book-btn:focus{
  outline: none;
}

/* mobile */
@media(max-width:600px){
  .book-btn{
    padding: 12px 32px;
    font-size: 13px;
  }
}
@media (min-width: 600px) and (max-width: 700px) {
  /* yaha apna CSS likh */

  .hero-slider{
    margin-top: -85px;
  }
}

@media (min-width: 500px) and (max-width: 599px) {
  /* yaha apna CSS likh */

  .hero-slider{
    margin-top: -105px;
  }
}


@media (min-width: 901px) and (max-width: 1200px) {
  /* yaha apna CSS likh */

  .hero-slider{
    margin-top: -5px;
  }
  .hero-image{
    height: auto;
  }
 .about-section.light {
margin-top: -80px;
  }
}
@media (min-width: 320px) and (max-width: 450px) {
  /* yaha apna CSS likh */

  .hero-slider{
    margin-top: -90px;
  }
  .hero-image{
    height: 300px;
  }
 .about-section.light {
margin-top: -80px;
  }
  .hero-slider{
    width: 100%;
    height: 240px;
  }
}





.book-box {
    animation: bookfloatUpDown 3s ease-in-out infinite;
  }

  /* odd cards */
  .book-box:nth-child(odd) {
    animation-delay: 0s;
  }

  /* even cards */
  .book-box:nth-child(even) {
    animation-delay: 2.5s;
  }

  /* every 3rd card for snake depth */
  .book-box:nth-child(3n) {
    animation-delay: 4s;
  }
@keyframes bookfloatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}