/* =========================================================
   mainfull.css
   Complete Website CSS - MBA / Business School Layout
   Visual Style: Modern navy + gold placement layout
   Font Style: Clean, bold, premium, responsive
   Recommended font import in HTML:
   <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
   ========================================================= */

/* ------------------------------
   01. Root Variables
------------------------------ */

:root {
  --primary-navy: #07162d;
  --secondary-navy: #0b2345;
  --deep-navy: #020b17;
  --royal-blue: #0f3e86;
  --gold: #f4b72a;
  --gold-dark: #d99a00;
  --gold-light: #ffd76a;
  --white: #ffffff;
  --off-white: #fbfcff;
  --soft-bg: #f5f7fb;
  --text-main: #10182f;
  --text-soft: #445066;
  --text-muted: #687385;
  --border-light: rgba(7, 22, 45, 0.10);
  --border-blue: rgba(15, 62, 134, 0.18);

  --shadow-sm: 0 8px 24px rgba(7, 22, 45, 0.06);
  --shadow-md: 0 14px 40px rgba(7, 22, 45, 0.10);
  --shadow-lg: 0 24px 70px rgba(7, 22, 45, 0.16);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --container-wide: 1440px;
}

/* ------------------------------
   02. Base Reset
------------------------------ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: 0.25s ease;
}

button,
input,
select,
textarea {
  font-family: inherit;
}
/* ==============================
   Hero Banner Section
============================== */

.hero-banner-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #07162d;
}

/* Desktop visible by default */
.desktop-hero-slider {
  display: block;
  width: 100%;
}

/* Mobile hidden by default */
.mobile-hero-slider {
  display: none;
  width: 100%;
}

/* Banner image wrapper */
.hero-banner-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Banner image */
.hero-banner-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Optional fixed height for desktop banner */
.desktop-hero-slider .hero-banner-img img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

/* Optional fixed height for mobile banner */
.mobile-hero-slider .hero-banner-img img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

/* ==============================
   Hero Arrows
============================== */

.hero-banner-section .carousel-control-prev,
.hero-banner-section .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(7, 22, 45, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 1;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-section .carousel-control-prev {
  left: 30px;
}

.hero-banner-section .carousel-control-next {
  right: 30px;
}

.hero-banner-section .carousel-control-prev i,
.hero-banner-section .carousel-control-next i {
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.hero-banner-section .carousel-control-prev:hover,
.hero-banner-section .carousel-control-next:hover {
  background: #f4b72a;
  border-color: #f4b72a;
}

.hero-banner-section .carousel-control-prev:hover i,
.hero-banner-section .carousel-control-next:hover i {
  color: #07162d;
}

/* ==============================
   Hero Indicators
============================== */

.hero-banner-section .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.hero-banner-section .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.65);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-banner-section .carousel-indicators .active {
  width: 34px;
  border-radius: 30px;
  background-color: #f4b72a;
}

/* ==============================
   Screen Width Condition
   600px and above: Desktop banner
   Less than 600px: Mobile banner
============================== */

@media (max-width: 599px) {
  .desktop-hero-slider {
    display: none !important;
  }

  .mobile-hero-slider {
    display: block !important;
  }

  .mobile-hero-slider .hero-banner-img img {
    width: 100%;
    min-height: auto;
    object-fit: cover;
  }

  .hero-banner-section .carousel-control-prev,
  .hero-banner-section .carousel-control-next {
    width: 38px;
    height: 38px;
  }

  .hero-banner-section .carousel-control-prev {
    left: 14px;
  }

  .hero-banner-section .carousel-control-next {
    right: 14px;
  }

  .hero-banner-section .carousel-control-prev i,
  .hero-banner-section .carousel-control-next i {
    font-size: 17px;
  }

  .hero-banner-section .carousel-indicators {
    bottom: 18px;
    gap: 7px;
  }

  .hero-banner-section .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
  }

  .hero-banner-section .carousel-indicators .active {
    width: 26px;
  }
}

@media (min-width: 600px) {
  .desktop-hero-slider {
    display: block !important;
  }

  .mobile-hero-slider {
    display: none !important;
  }
}
/* ------------------------------
   03. Common Layout Utilities
------------------------------ */

.section-space {
  padding: 30px 0;
}

.section-space-sm {
  padding: 70px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top right, rgba(244, 183, 42, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.section-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-dark);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-badge::before,
.section-badge::after {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-badge.centered {
  justify-content: center;
  width: 100%;
}

.section-title {
  color: var(--text-main);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 3px;
  font-weight: 900;
  margin-bottom: 18px;
}

.section-title span {
  color: var(--gold-dark);
}

.section-text {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.65;
  max-width: 760px;
  margin-bottom: 0;
}

.text-gold {
  color: var(--gold-dark) !important;
}

.text-navy {
  color: var(--primary-navy) !important;
}

/* ------------------------------
   04. Common Buttons
------------------------------ */

.btn-main,
 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--primary-navy);
  border: 0;
  border-radius: 8px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 14px 32px rgba(244, 183, 42, 0.28);
  transition: all 0.25s ease;
}

.btn-main:hover,
 {
  background: var(--gold-light);
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--primary-navy);
  color: var(--white);
  border: 0;
  border-radius: 8px;
  padding: 17px 42px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 14px 34px rgba(7, 22, 45, 0.18);
}

.btn-navy:hover {
  background: var(--secondary-navy);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-light-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  padding: 15px 30px;
  font-weight: 800;
}

.btn-outline-light-custom:hover {
  background: var(--white);
  color: var(--primary-navy);
}

/* ------------------------------
   05. Top Bar
------------------------------ */

.top-bar {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar i {
  color: var(--gold);
}

.top-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  margin-left: 18px;
}

.top-link:hover {
  color: var(--gold);
}

/* ------------------------------
   06. Navbar + Mega Menu
------------------------------ */

.main-nav {
  background: rgba(7, 22, 45, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  z-index: 1030;
}

.navbar-brand {
  color: var(--white) !important;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(244, 183, 42, 0.7);
  background: linear-gradient(135deg, rgba(244, 183, 42, 0.18), rgba(255, 255, 255, 0.04));
  color: var(--gold);
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  margin-right: 10px;
}

.brand-small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
}

.main-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px;
  font-weight: 800;
  padding: 1.1rem 0.75rem;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.dropdown-mega {
  position: static;
}

.mega-menu {
  display: none;
  width: min(1180px, calc(100vw - 32px));
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  border: 0;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  padding: 30px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 9999;
}

.mega-menu.active {
  display: block;
}

.mega-col {
  padding: 8px 14px;
  border-right: 1px solid rgba(7, 22, 45, 0.08);
  min-height: 210px;
}

.mega-col:last-child {
  border-right: 0;
}

.mega-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: rgba(244, 183, 42, 0.14);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.mega-heading {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--primary-navy);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.mega-menu a {
  display: block;
  color: #31425a;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 0;
}

.mega-menu a:hover {
  color: var(--gold-dark);
  padding-left: 4px;
}

/* ------------------------------
   07. Hero Slider
------------------------------ */
/* ==============================
   Hero Slider Button Fix
============================== */

.hero-section,
.hero-slider,
.carousel {
  position: relative;
  overflow: hidden;
}

/* Hero slide height */
.hero-slide,
.carousel-item {
  position: relative;
}

/* Bootstrap default carousel arrows reset */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next,
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 20;
  background: rgba(7, 22, 45, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Left button position */
.hero-section .carousel-control-prev,
.hero-slider .carousel-control-prev {
  left: 32px;
  right: auto;
}

/* Right button position */
.hero-section .carousel-control-next,
.hero-slider .carousel-control-next {
  right: 32px;
  left: auto;
}

/* Icon size */
.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon,
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  width: 22px;
  height: 22px;
  background-size: 100% 100%;
}

/* Hover effect */
.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover,
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  background: #f4b72a;
  border-color: #f4b72a;
}

/* Custom icon color for Bootstrap icons if used */
.hero-section .carousel-control-prev i,
.hero-section .carousel-control-next i,
.hero-slider .carousel-control-prev i,
.hero-slider .carousel-control-next i {
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.hero-section .carousel-control-prev:hover i,
.hero-section .carousel-control-next:hover i,
.hero-slider .carousel-control-prev:hover i,
.hero-slider .carousel-control-next:hover i {
  color: #07162d;
}

/* ==============================
   Hero Button Mobile Responsive
============================== */

@media (max-width: 991px) {
  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next,
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    width: 46px;
    height: 46px;
  }

  .hero-section .carousel-control-prev,
  .hero-slider .carousel-control-prev {
    left: 18px;
  }

  .hero-section .carousel-control-next,
  .hero-slider .carousel-control-next {
    right: 18px;
  }
}

@media (max-width: 767px) {
  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next,
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 34px;
    transform: none;
  }

  .hero-section .carousel-control-prev,
  .hero-slider .carousel-control-prev {
    left: 22px;
  }

  .hero-section .carousel-control-next,
  .hero-slider .carousel-control-next {
    right: 22px;
  }

  .hero-section .carousel-control-prev-icon,
  .hero-section .carousel-control-next-icon,
  .hero-slider .carousel-control-prev-icon,
  .hero-slider .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }
}
/* ------------------------------
   08. Program / Feature Cards
------------------------------ */

.program-card,
.feature-card {
  position: relative;
  height: 100%;
  min-height: 190px;
  color: var(--white);
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: 0.28s ease;
}

.program-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 22, 45, 0.96), rgba(7, 22, 45, 0.56));
}

.program-card > *,
.feature-card > * {
  position: relative;
  z-index: 1;
}

.program-card:hover,
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.program-card i,
.feature-card i {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 18px;
  display: inline-block;
}

.program-card h5,
.feature-card h5 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.program-card p,
.feature-card p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 15px;
  line-height: 1.6;
}

.program-card a,
.feature-card a {
  color: var(--gold-light);
  font-weight: 900;
}

/* ------------------------------
   10. Awards & Rankings
------------------------------ */

.awards-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top right, rgba(244, 183, 42, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  overflow: hidden;
}

.awards-title {
  color: var(--text-main);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 18px;
}

.awards-title span {
  color: var(--gold-dark);
}

.awards-text {
  max-width: 730px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.award-card {
  position: relative;
  height: 100%;
  padding: 38px 30px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(7, 22, 45, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  text-align: center;
  transition: 0.3s ease;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.award-card.featured {
  background: linear-gradient(145deg, var(--primary-navy), var(--secondary-navy));
  color: var(--white);
}

.award-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(244, 183, 42, 0.16);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 38px;
  margin: 0 auto 24px;
}

.award-label {
  display: inline-block;
  background: rgba(244, 183, 42, 0.32);
  color: var(--text-main);
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.award-card.featured .award-label {
  background: var(--gold);
}

.award-card h3 {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.award-card h3 span {
  color: var(--gold);
}

.award-card p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 270px;
}

.award-card.featured p {
  color: rgba(255, 255, 255, 0.88);
}

.ranking-strip {
  background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
  border-radius: 22px;
  padding: 34px 42px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(244, 183, 42, 0.35);
}

.ranking-strip h3 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.ranking-strip p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 0;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ranking-item {
  padding: 18px 24px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.ranking-item h4 {
  color: var(--gold);
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 8px;
}

.ranking-item span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.ranking-logo-area {
  margin-top: 36px;
  text-align: center;
}

.ranking-logo-area p {
  color: var(--text-main);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ranking-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.ranking-logo {
  min-height: 82px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(7, 22, 45, 0.08);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: var(--primary-navy);
  font-size: 21px;
  font-weight: 900;
  text-align: center;
  padding: 16px;
}

/* ------------------------------
   11. Placement Layout
------------------------------ */

/* ------------------------------
   12. Placement Stats Strip
------------------------------ */

.placement-stats-wrap {
  margin-top: 8px;
  margin-bottom: 64px;
}

.placement-stats-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border-blue);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(7, 22, 45, 0.06);
  padding: 28px 40px;
}

.placement-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  padding: 0 22px;
  border-right: 1px solid rgba(7, 22, 45, 0.18);
}

.placement-stat.last,
.placement-stat:last-child {
  border-right: 0;
}

.placement-stat-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 34px;
  box-shadow: 0 10px 25px rgba(7, 22, 45, 0.18);
}

.placement-stat h3 {
  color: var(--royal-blue);
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0 0 4px;
}

.placement-stat p {
  color: var(--text-main);
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}

/* ------------------------------
   13. Recruiter Showcase
------------------------------ */

.top-recruiter-showcase {
  margin-top: 20px;
}

.recruiter-heading {
  text-align: center;
  margin-bottom: 26px;
}

.recruiter-heading .section-badge {
  margin-bottom: 10px;
}

.recruiter-title {
  color: var(--text-main);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 3px;
  margin: 0;
}

.recruiter-logo-slider {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 0 54px 40px;
}

.recruiter-logo-slider::before,
.recruiter-logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 90px;
  z-index: 3;
  pointer-events: none;
}

.recruiter-logo-slider::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}

.recruiter-logo-slider::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}

.recruiter-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: recruiterScroll 28s linear infinite;
}

.recruiter-logo-slider:hover .recruiter-track {
  animation-play-state: paused;
}

.recruiter-logo {
  min-width: 176px;
  height: 82px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(7, 22, 45, 0.10);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: var(--primary-navy);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  padding: 14px;
  white-space: nowrap;
}

.recruiter-arrow {
  position: absolute;
  top: 34px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(7, 22, 45, 0.10);
  background: var(--white);
  color: var(--primary-navy);
  display: grid;
  place-items: center;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.recruiter-arrow.left {
  left: 0;
}

.recruiter-arrow.right {
  right: 0;
}

@keyframes recruiterScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ------------------------------
   14. Admissions / Forms
------------------------------ */

.admission-wrap {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffffff 0%, #f2f6fb 100%);
  border: 1px solid rgba(7, 22, 45, 0.07);
  box-shadow: var(--shadow-md);
}

.step-item {
  display: flex;
  gap: 18px;
  position: relative;
  padding-bottom: 22px;
}

.step-num {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef4fb;
  color: var(--primary-navy);
  font-weight: 900;
  border: 1px solid rgba(7, 22, 45, 0.12);
}

.enquiry-card {
  background: linear-gradient(145deg, var(--primary-navy), var(--secondary-navy));
  color: var(--white);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow-lg);
}

.enquiry-card .form-control,
.enquiry-card .form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-radius: 10px;
  min-height: 48px;
}

.enquiry-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.enquiry-card .form-select option {
  color: var(--text-main);
}

/* ==============================
   News, Events & Media Section
============================== */

.news-events-section {
  padding: 5px 0 10px;
  background:
    radial-gradient(circle at top right, rgba(244, 183, 42, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  overflow: hidden;
}

/* Header */

.news-events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 42px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d99a00;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label span {
  width: 38px;
  height: 2px;
  background: #d99a00;
}

.news-events-header h2 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 3px;
  color: #10182f;
  margin: 0 0 14px;
}

.news-events-header h2 strong {
  color: #d99a00;
  font-weight: 900;
}

.news-events-header p {
  color: #39445c;
  font-size: 17px;
  line-height: 1.55;
  max-width: 820px;
  margin: 0;
}

.view-btn {
  background: #07162d;
  color: #ffffff;
  padding: 17px 36px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(7, 22, 45, 0.16);
}

.view-btn:hover {
  background: #f4b72a;
  color: #07162d;
}

/* Main Layout */

.news-events-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

/* Latest News Main Card */

.latest-news-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(7, 22, 45, 0.10);
  box-shadow: 0 14px 40px rgba(7, 22, 45, 0.09);
  transition: 0.3s ease;
}

.latest-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(7, 22, 45, 0.15);
}

.main-news-image {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #07162d;
}

.main-news-image img {
  width: 100%;
  object-fit: cover;
  transition: 0.45s ease;
  min-width:300px;
}

.latest-news-card:hover .main-news-image img {
  transform: scale(1.06);
}

.news-category {
  position: absolute;
  left: 22px;
  top: 22px;
  background: #f4b72a;
  color: #07162d;
  padding: 9px 18px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-news-content {
  padding: 30px;
}

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d99a00;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}

.main-news-content h3 {
  color: #07162d;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 14px;
}

.main-news-content p {
  color: #39445c;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 22px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #07162d;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.read-more-btn:hover {
  color: #d99a00;
}

/* Upcoming Events */

.upcoming-events-card {
  background: #07162d;
  color: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(7, 22, 45, 0.16);
  position: relative;
  overflow: hidden;
}

.upcoming-events-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(244, 183, 42, 0.13);
}

.card-heading {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.card-heading span {
  display: block;
  color: #f4b72a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-heading h3 {
  color: #ffffff;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0;
}

.card-heading > i {
  color: #f4b72a;
  font-size: 44px;
}

.event-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.event-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-date-box {
  min-width: 64px;
  height: 70px;
  border-radius: 12px;
  background: #ffffff;
  color: #07162d;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1;
}

.event-date-box strong {
  font-size: 25px;
  font-weight: 900;
}

.event-date-box span {
  color: #d99a00;
  font-size: 12px;
  font-weight: 900;
}

.event-info h4 {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  margin: 0 0 8px;
}

.event-info p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  margin: 0;
}

.event-info p i {
  color: #f4b72a;
  margin-right: 5px;
}

.small-link-btn {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4b72a;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.small-link-btn:hover {
  color: #ffffff;
}

/* Media Coverage */

.media-coverage-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
  background: #07162d;
  box-shadow: 0 18px 45px rgba(7, 22, 45, 0.14);
}

.media-bg {
  position: absolute;
  inset: 0;
}

.media-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 45, 0.05) 0%, rgba(7, 22, 45, 0.48) 42%, rgba(7, 22, 45, 0.96) 100%);
  z-index: 1;
}

.media-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.media-content span {
  color: #f4b72a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.media-content h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 12px;
}

.media-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.media-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f4b72a;
  color: #07162d;
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.media-btn:hover {
  background: #ffffff;
  color: #07162d;
}

/* Mini News Grid */

.news-mini-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.mini-news-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(7, 22, 45, 0.10);
  box-shadow: 0 10px 30px rgba(7, 22, 45, 0.07);
  transition: 0.3s ease;
}

.mini-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(7, 22, 45, 0.12);
}

.mini-news-img {
  height: 100%;
  min-height: 170px;
  overflow: hidden;
  background: #07162d;
}

.mini-news-img img {
  object-fit: cover;
}

.mini-news-content {
  padding: 22px;
}

.mini-news-content span {
  color: #d99a00;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 9px;
  display: block;
}

.mini-news-content h4 {
  color: #07162d;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  margin: 0 0 8px;
}

.mini-news-content p {
  color: #39445c;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* ==============================
   Responsive
============================== */

@media (max-width: 1199px) {
  .news-events-layout {
    grid-template-columns: 1fr 1fr;
  }

  .latest-news-card {
    grid-column: span 2;
  }

  .media-coverage-card {
    min-height: 430px;
  }

  .news-mini-grid {
    grid-template-columns: 1fr;
  }

  .mini-news-card {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 991px) {
  .news-events-section {
    padding: 70px 0;
  }

  .news-events-header {
    flex-direction: column;
    gap: 20px;
  }

  .news-events-header h2 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .view-btn {
    margin-top: 0;
  }

  .news-events-layout {
    grid-template-columns: 1fr;
  }

  .latest-news-card {
    grid-column: auto;
  }

  .media-coverage-card {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .main-news-image {
    height: 260px;
  }

  .main-news-content h3 {
    font-size: 25px;
  }

  .card-heading h3 {
    font-size: 23px;
  }

  .media-content h3 {
    font-size: 24px;
  }

  .mini-news-card {
    grid-template-columns: 1fr;
  }

  .mini-news-img {
    min-height: 220px;
  }
}

@media (max-width: 575px) {
  .news-events-section {
    padding: 55px 0;
  }

  .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    gap: 12px;
  }

  .section-label span {
    width: 24px;
  }

  .news-events-header h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .news-events-header p {
    font-size: 15px;
  }

  .view-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 22px;
  }

  .main-news-image {
    height: 230px;
  }

  .main-news-content,
  .upcoming-events-card,
  .media-content {
    padding: 24px;
  }

  .main-news-content h3 {
    font-size: 22px;
  }

  .event-date-box {
    min-width: 58px;
    height: 64px;
  }

  .event-date-box strong {
    font-size: 22px;
  }

  .media-coverage-card {
    min-height: 390px;
  }

  .mini-news-content h4 {
    font-size: 17px;
  }
}

/* ------------------------------
   16. Footer
------------------------------ */

footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.70);
  padding: 72px 0 28px;
}

footer h6 {
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
}

footer a {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

footer a:hover {
  color: var(--gold);
}

.social a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  margin-right: 8px;
  color: var(--white);
}

.floating-apply {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1050;
  background: var(--gold);
  color: var(--primary-navy);
  border-radius: var(--radius-pill);
  padding: 13px 20px;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(244, 183, 42, 0.32);
}

.floating-apply:hover {
  color: var(--primary-navy);
  transform: translateY(-2px);
}

/* ------------------------------
   17. Responsive Styling
------------------------------ */

@media (max-width: 1399px) {
  .placement-prev {
    left: -10px;
  }

  .placement-next {
    right: -10px;
  }
}

@media (max-width: 1199px) {
  .student-placement-card {
    grid-template-columns: 44% 56%;
  }

  .company-box h5 {
    font-size: 28px;
  }

  .placement-stat {
    padding: 0 12px;
  }

  .placement-stat h3 {
    font-size: 34px;
  }

  .ranking-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ranking-item {
    border-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
  }
}

@media (max-width: 991px) {
  .section-space,
  .campus-life-section,
  .awards-section {
    padding: 74px 0;
  }

  .section-badge {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .section-badge::before,
  .section-badge::after {
    width: 28px;
  }

  .top-link {
    margin-left: 8px;
  }

  .main-nav .nav-link {
    padding: 0.75rem 0;
  }

  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    border-radius: 18px;
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
  }

  .mega-col {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 22, 45, 0.08);
    min-height: auto;
    padding: 16px 6px;
  }

  .hero-slide {
    min-height: 620px;
  }

  .hero-content {
    padding: 70px 0 95px;
  }

  .hero-title,
  .hero-content h1 {
    font-size: 54px;
  }

  .hero-text,
  .hero-subtitle,
  .hero-content p {
    font-size: 17px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 520px;
  }

  .carousel-control-prev,
  .carousel-control-next,
  .hero-arrow,
  .placement-arrow {
    display: none;
  }

  .campus-video-wrapper {
    padding: 0;
  }

  .main-video-card,
  .main-video-card img {
    min-height: 390px;
    height: 390px;
  }


  .floating-campus-card {
    top: 18px;
    right: 18px;
  }

  .ranking-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .student-placement-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .student-info {
    padding: 28px;
  }

  .placement-stats-card {
    padding: 28px;
  }

  .placement-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 22, 45, 0.12);
    padding: 18px 8px;
  }

  .placement-stat.last,
  .placement-stat:last-child {
    border-bottom: 0;
  }

  .recruiter-logo-slider {
    padding-left: 44px;
    padding-right: 44px;
  }

  .recruiter-logo {
    min-width: 160px;
    height: 74px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .desktop-hero {
    display: none;
  }

  .mobile-hero {
    display: block;
  }

  .hero-slide,
  .mobile-slide {
    min-height: 610px;
    background-position: center top;
  }

  .hero-slide::before {
    background: linear-gradient(
      180deg,
      rgba(2, 11, 23, 0.90) 0%,
      rgba(7, 22, 45, 0.82) 55%,
      rgba(7, 22, 45, 0.95) 100%
    );
  }

  .hero-content {
    max-width: 100%;
    padding: 70px 8px 100px;
    text-align: left;
  }

  .hero-title,
  .hero-content h1 {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .hero-text,
  .hero-subtitle,
  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-buttons,
  .hero-btns {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .hero-btns .btn {
    width: 100%;
  }

  .placement-title {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .placement-text {
    font-size: 16px;
  }

  .btn-navy {
    width: 100%;
  }

  .company-box h5 {
    font-size: 32px;
  }

  .package-box h3 {
    font-size: 28px;
  }

  .placement-stats-card {
    padding: 14px 22px;
  }

  .placement-stat {
    gap: 16px;
  }

  .placement-stat-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    font-size: 27px;
  }

  .placement-stat h3 {
    font-size: 30px;
  }

  .placement-stat p {
    font-size: 15px;
  }

  .campus-mini-grid {
    grid-template-columns: 1fr;
  }

  .ranking-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruiter-title {
    font-size: 30px;
    letter-spacing: 2px;
  }
}

@media (max-width: 575px) {
  .section-space,
  .campus-life-section,
  .awards-section,
  .placement-section {
    padding: 60px 0;
  }

  .section-badge {
    letter-spacing: 2px;
    font-size: 12px;
    gap: 10px;
  }

  .section-badge::before,
  .section-badge::after {
    width: 20px;
  }

  .section-title,
  .awards-title,
  .campus-title,
  .placement-title {
    font-size: 32px;
    letter-spacing: 0;
  }

  .section-text,
  .awards-text,
  .campus-text,
  .placement-text {
    font-size: 15px;
  }

  .btn-main,
  .btn-navy {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }

  .hero-stat {
    padding: 16px;
  }

  .hero-stat h4 {
    font-size: 21px;
  }

  .hero-stat p {
    font-size: 12px;
  }

  .campus-point {
    gap: 14px;
  }

  .campus-point i {
    min-width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .campus-point h5 {
    font-size: 18px;
  }

  .campus-point p {
    font-size: 14px;
  }

  .main-video-card,
  .main-video-card img {
    min-height: 330px;
    height: 330px;
    border-radius: 24px;
  }

  .video-overlay {
    padding: 24px;
  }

  .play-btn {
    width: 66px;
    height: 66px;
    min-width: 66px;
    font-size: 34px;
  }
 

  .floating-campus-card {
    position: static;
    margin-bottom: 16px;
    display: inline-block;
  }

  .award-card {
    padding: 28px 22px;
  }

  .award-card h3 {
    font-size: 36px;
  }

  .ranking-strip {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .ranking-grid {
    grid-template-columns: 1fr;
  }

  .ranking-item h4 {
    font-size: 30px;
  }

  .ranking-logo {
    min-height: 64px;
    font-size: 14px;
  }

  .student-info {
    padding: 24px;
  }

  .student-info h4 {
    font-size: 21px;
  }

  .company-box h5 {
    font-size: 30px;
  }

  .package-box::before {
    left: 18px;
    font-size: 28px;
  }

  .package-box h3 {
    font-size: 25px;
  }

  .student-quote {
    font-size: 13px !important;
  }

  .placement-stat {
    flex-direction: row;
    align-items: center;
  }

  .top-recruiter-showcase {
    margin-top: 44px;
  }

  .recruiter-logo-slider {
    padding-left: 36px;
    padding-right: 36px;
  }

  .recruiter-logo-slider::before,
  .recruiter-logo-slider::after {
    width: 45px;
  }

  .recruiter-track {
    gap: 14px;
  }

  .recruiter-logo {
    min-width: 140px;
    height: 64px;
    font-size: 16px;
  }

  .floating-apply {
    right: 14px;
    bottom: 14px;
    padding: 11px 15px;
  }
}

.placement-section {
      width: 100%;
      padding: 5px 2% 15px;
      background: #fff;
      overflow: hidden;
    }

    .placement-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 30px;
      margin-bottom: 35px;
    }

    .section-label {
      display: flex;
      align-items: center;
      gap: 18px;
      color: #e3a000;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 6px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-label::before,
    .section-label::after {
      content: "";
      width: 42px;
      height: 2px;
      background: #e3a000;
      display: inline-block;
    }

    .placement-title {
      font-size: 38px;
      line-height: 1.15;
      font-weight: 800;
      color: #080d1f;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .placement-title span {
      display: block;
      color: #e3a000;
    }

    .placement-subtitle {
      max-width: 690px;
      font-size: 16px;
      line-height: 1.6;
      color: #27324a;
      font-weight: 500;
    }

    .view-btn {
      margin-top: 42px;
      background: #061431;
      color: #ffffff;
      border: none;
      padding: 18px 35px;
      min-width: 275px;
      border-radius: 5px;
      font-size: 16px;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
      transition: 0.3s ease;
    }

    .view-btn span {
      margin-left: 16px;
      font-size: 28px;
      vertical-align: middle;
      line-height: 0;
    }

    .view-btn:hover {
      background: #e3a000;
      color: #061431;
    }

    .placement-slider-wrap {
      position: relative;
      margin-bottom: 45px;
    }

    .placement-slider {
      overflow: hidden;
      width: 100%;
    }

    .placement-track {
      display: flex;
      gap: 28px;
      transition: transform 0.45s ease;
    }

    .placement-card {
      min-width: calc((100% - 56px) / 3);
      background: #ffffff;
      border: 1px solid #e1e4ec;
      border-radius: 10px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 48% 52%;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    }

    .placed-tag {
      position: absolute;
      top: 18px;
      left: 18px;
      background: #ffc400;
      color: #061431;
      font-size: 12px;
      font-weight: 800;
      padding: 8px 16px;
      border-radius: 6px;
      text-transform: uppercase;
    }

    .student-content {
      padding: 2px 2px 2px;
      text-align:left;
    }

    .course {
      color: #004aad;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 3px;
    }

    .company-logo {
      min-height: 50px;
      display: flex;
      align-items: center;
      margin-bottom: 5px;
    }

    .company-logo strong {
      font-size: 20px;
      color: #111;
      font-weight: 800;
      letter-spacing: -1px;
    }

    .logo-deloitte::after {
      content: ".";
      color: #5baa1d;
    }

    .logo-amazon {
      font-size: 34px;
      font-weight: 600;
      color: #111;
      position: relative;
    }

    .logo-amazon::after {
      content: "";
      position: absolute;
      width: 72px;
      height: 11px;
      border-bottom: 4px solid #f5a400;
      border-radius: 50%;
      bottom: -1px;
      left: 28px;
    }

    .logo-kpmg {
      font-size: 30px;
      color: #1752a4;
      font-weight: 800;
      font-style: italic;
    }

    .package-box {
      background: #061431;
      color: #fff;
      padding: 12px 16px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .package-icon {
      font-size: 25px;
      color: #ffc400;
    }

    .package-amount {
      color: #ffc400;
      font-size: 20px;
      font-weight: 800;
      line-height: 1;
    }

    .package-text {
      font-size: 13px;
      font-weight: 700;
      margin-top: 3px;
    }

    .quote {
      font-size: 13px;
      line-height: 1.55;
      color: #1b2438;
      font-weight: 500;
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background: #061431;
      color: #ffffff;
      font-size: 34px;
      cursor: pointer;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    }

    .slider-arrow.left {
      left: -38px;
    }

    .slider-arrow.right {
      right: -38px;
    }

    .dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
    }

    .dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #c9c9c9;
      cursor: pointer;
    }

    .dot.active {
      background: #061431;
    }

    .stats-box {
      border: 1px solid #d6deeb;
      border-radius: 10px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      padding: 28px 35px;
      margin-bottom: 30px;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    }

    .stat-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      border-right: 1px solid #c8cfda;
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-icon {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #061431;
      color: #ffc400;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 31px;
      box-shadow: 0 4px 11px rgba(0, 0, 0, 0.22);
      flex-shrink: 0;
    }

    .stat-number {
      font-size: 33px;
      color: #06459c;
      font-weight: 800;
      line-height: 1;
      letter-spacing: 1px;
    }

    .stat-text {
      font-size: 15px;
      color: #11182a;
      margin-top: 6px;
      font-weight: 500;
    }

    .recruiters-section {
      text-align: center;
      position: relative;
    }

    .recruiter-label {
      color: #e3a000;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 7px;
      text-transform: uppercase;
      margin-bottom: 13px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }

    .recruiter-label::before,
    .recruiter-label::after {
      content: "❧";
      font-size: 22px;
      color: #e3a000;
    }

    .recruiter-title {
      font-size: 29px;
      font-weight: 800;
      color: #091126;
      letter-spacing: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      margin-bottom: 12px;
    }

    .recruiter-title::before,
    .recruiter-title::after {
      content: "";
      width: 70px;
      height: 2px;
      background: #e3a000;
    }

    .recruiter-slider-wrap {
      position: relative;
      margin-top: 10px;
    }

    .recruiter-slider {
      overflow: hidden;
      width: 100%;
    }

    .recruiter-track {
      display: flex;
      gap: 20px;
      transition: transform 0.45s ease;
    }

    .logo-card {
      min-width: calc((100% - 140px) / 8);
      height: 78px;
      border: 1px solid #e1e4ec;
      border-radius: 8px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 18px;
      box-shadow: 0 7px 18px rgba(0, 0, 0, 0.07);
      font-size: 22px;
      font-weight: 800;
      color: #111;
    }

    .logo-card.amazon {
      font-size: 27px;
      font-weight: 500;
      position: relative;
    }

    .logo-card.amazon::after {
      content: "";
      position: absolute;
      width: 60px;
      height: 10px;
      border-bottom: 3px solid #f5a400;
      border-radius: 50%;
      bottom: 20px;
      left: 50%;
      transform: translateX(-15%);
    }

    .logo-card.kpmg {
      color: #1752a4;
      font-style: italic;
      font-size: 28px;
    }

    .logo-card.ey {
      font-size: 28px;
    }

    .logo-card.pwc {
      font-size: 32px;
      font-family: Georgia, serif;
    }

    .logo-card.mck {
      font-size: 20px;
      font-family: Georgia, serif;
      font-weight: 500;
      line-height: 1.1;
    }

    .logo-card.hdfc {
      font-size: 15px;
      color: #ffffff;
    }

    .hdfc-box {
      background: #0b4b9f;
      color: #ffffff;
      padding: 5px 10px;
      font-size: 13px;
      font-weight: 800;
    }

    .logo-card.microsoft {
      font-size: 21px;
      color: #666;
      font-weight: 500;
    }

    .recruiter-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      background: #ffffff;
      border: 1px solid #e1e4ec;
      border-radius: 50%;
      font-size: 30px;
      color: #061431;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      z-index: 3;
    }

    .recruiter-arrow.left {
      left: -40px;
    }

    .recruiter-arrow.right {
      right: -40px;
    }

    @media (max-width: 1200px) {
      .placement-card {
        min-width: calc((100% - 28px) / 2);
      }

      .logo-card {
        min-width: calc((100% - 80px) / 5);
      }
    }

    @media (max-width: 991px) {
      .placement-section {
        padding: 30px 5%;
      }

      .placement-header {
        flex-direction: column;
      }

      .view-btn {
        margin-top: 0;
      }

      .placement-title {
        font-size: 32px;
      }

      .stats-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 0;
      }

      .stat-item:nth-child(2) {
        border-right: none;
      }

      .stat-item {
        padding: 10px;
      }

      .logo-card {
        min-width: calc((100% - 40px) / 3);
      }

      .slider-arrow.left,
      .recruiter-arrow.left {
        left: 0;
      }

      .slider-arrow.right,
      .recruiter-arrow.right {
        right: 0;
      }
    }

    @media (max-width: 767px) {
      .section-label {
        font-size: 12px;
        letter-spacing: 4px;
      }

      .section-label::before,
      .section-label::after {
        width: 28px;
      }

      .placement-title {
        font-size: 27px;
      }

      .placement-subtitle {
        font-size: 14px;
      }

      .placement-card {
        grid-template-columns: 1fr;
      }

      .stats-box {
        grid-template-columns: 1fr;
        padding: 22px;
      }

      .stat-item {
        border-right: none;
        border-bottom: 1px solid #c8cfda;
        justify-content: flex-start;
        padding-bottom: 20px;
      }

      .stat-item:last-child {
        border-bottom: none;
      }

      .recruiter-title {
        font-size: 22px;
        gap: 12px;
      }

      .recruiter-title::before,
      .recruiter-title::after {
        width: 35px;
      }

      .recruiter-label {
        font-size: 12px;
        letter-spacing: 4px;
      }

      .logo-card {
        min-width: calc((100% - 20px) / 2);
      }
    }

    @media (max-width: 480px) {
      .placement-section {
        padding: 25px 18px;
      }

      .view-btn {
        width: 100%;
        min-width: auto;
      }

      .logo-card {
        min-width: 100%;
      }

      .slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 28px;
      }
    }
    
    /* ==============================
   Carousel Indicators CSS
============================== */

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

/* Indicator buttons */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.65);
  opacity: 1;
  transition: all 0.3s ease;
}

/* Active indicator */
.carousel-indicators .active {
  width: 34px;
  height: 12px;
  border-radius: 30px;
  background-color: #f4b72a;
}

/* Hover */
.carousel-indicators [data-bs-target]:hover {
  background-color: #f4b72a;
}

/* Hero Indicators */
.hero-section .carousel-indicators,
.hero-slider .carousel-indicators {
  bottom: 34px;
}

.hero-section .carousel-indicators [data-bs-target],
.hero-slider .carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, 0.7);
}

.hero-section .carousel-indicators .active,
.hero-slider .carousel-indicators .active {
  background-color: #f4b72a;
}

@media (max-width: 767px) {
  .carousel-indicators {
    bottom: 22px;
    gap: 8px;
  }

  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
  }

  .carousel-indicators .active {
    width: 28px;
    height: 10px;
  }

  .placement-carousel .carousel-indicators,
  .placement-dots {
    margin-top: 18px;
  }
}

 .btn-gold {
      background: var(--gold);
      color: var(--navy);
      border: 0;
      border-radius: 999px;
      padding: 13px 24px;
      font-weight: 900;
      box-shadow: 0 13px 30px rgba(244, 183, 42, .28);
      transition: all .25s ease;
    }

    .btn-gold:hover,
    .btn-gold:focus {
      background: var(--gold-2);
      color: var(--navy);
      transform: translateY(-2px);
    }

    .btn-outline-light-custom {
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .72);
      border-radius: 999px;
      padding: 12px 22px;
      font-weight: 800;
    }

    .btn-outline-light-custom:hover {
      background: #fff;
      color: var(--navy);
    }

    .btn-outline-navy {
      color: var(--navy);
      border: 1px solid rgba(7, 22, 45, .25);
      border-radius: 999px;
      padding: 12px 22px;
      font-weight: 800;
    }

    .btn-outline-navy:hover {
      background: var(--navy);
      color: #fff;
    }

    /* Top Utility Bar */
    .top-bar {
      background: #020b17;
      color: rgba(255, 255, 255, .78);
      font-size: .78rem;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .top-bar i {
      color: var(--gold);
    }

    .top-link {
      color: rgba(255, 255, 255, .82);
      font-weight: 700;
      margin-left: 18px;
    }

    .top-link:hover {
      color: var(--gold);
    }

 /* Navbar + Mega Menu */
    .main-nav {
      background: rgba(7, 22, 45, .96);
      backdrop-filter: blur(16px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
      z-index: 1030;
    }

    .navbar-brand {
      color: #fff !important;
      font-weight: 900;
      letter-spacing: -.6px;
      line-height: 1.1;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: 1px solid rgba(244, 183, 42, .7);
      background: linear-gradient(135deg, rgba(244, 183, 42, .18), rgba(255, 255, 255, .04));
      color: var(--gold);
      display: inline-grid;
      place-items: center;
      font-weight: 900;
      margin-right: 10px;
    }

    .brand-small {
      display: block;
      color: rgba(255, 255, 255, .62);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .2px;
    }

    .main-nav .nav-link {
      color: rgba(255, 255, 255, .88) !important;
      font-size: .92rem;
      font-weight: 700;
      padding: 1.1rem .75rem;
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link.show {
      color: var(--gold) !important;
    }

    .navbar-toggler {
      border-color: rgba(255, 255, 255, .3);
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }

    .dropdown-mega {
      position: static;
    }

    .mega-menu {
      width: min(1180px, calc(100vw - 32px));
      left: 50% !important;
      transform: translateX(-50%);
      top: calc(100% - 4px) !important;
      border: 0;
      border-radius: 0 0 28px 28px;
      box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
      padding: 30px;
      background: rgba(255, 255, 255, .98);
      backdrop-filter: blur(12px);
    }

    .mega-col {
      padding: 8px 14px;
      border-right: 1px solid rgba(7, 22, 45, .08);
      min-height: 210px;
    }

    .mega-col:last-child {
      border-right: 0;
    }

    .mega-icon {
      width: 38px;
      height: 38px;
      border-radius: 13px;
      background: rgba(244, 183, 42, .14);
      color: var(--gold);
      display: grid;
      place-items: center;
      font-size: 1.15rem;
      margin-bottom: 10px;
    }

    .mega-heading {
      font-size: .78rem;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--navy);
      letter-spacing: .5px;
      margin-bottom: .65rem;
    }

    .mega-menu a {
      display: block;
      color: #31425a;
      font-size: .88rem;
      font-weight: 600;
      padding: .28rem 0;
    }

    .mega-menu a:hover {
      color: var(--gold);
      padding-left: 4px;
    }

/* Hero */
    .hero-section {
      background: var(--navy);
      color: #fff;
      position: relative;
    }

    .hero-slide {
      min-height: 680px;
      display: flex;
      align-items: center;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .hero-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(2, 11, 23, .92) 0%, rgba(7, 22, 45, .75) 48%, rgba(7, 22, 45, .22) 100%);
      z-index: 1;
    }

    .hero-slide::after {
      content: "";
      position: absolute;
      right: -120px;
      bottom: -160px;
      width: 520px;
      height: 520px;
      background: rgba(244, 183, 42, .14);
      border-radius: 50%;
      filter: blur(6px);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 60px 0 90px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 15px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 999px;
      font-size: .85rem;
      font-weight: 800;
      margin-bottom: 22px;
    }

    .hero-title {
      font-size: clamp(2.6rem, 6vw, 5.8rem);
      font-weight: 900;
      line-height: .94;
      letter-spacing: -3px;
      max-width: 720px;
    }

    .hero-title span {
      color: var(--gold);
    }

    .hero-subtitle {
      max-width: 580px;
      color: rgba(255, 255, 255, .82);
      font-size: 1.14rem;
      line-height: 1.7;
      margin: 24px 0 28px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      color: rgba(255, 255, 255, .86);
      font-weight: 700;
      font-size: .92rem;
      margin-bottom: 26px;
    }

    .hero-points i {
      color: var(--gold);
    }

    .hero-stat-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(130px, 1fr));
      gap: 1px;
      max-width: 670px;
      margin-top: 48px;
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, .16);
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(15px);
    }

    .hero-stat {
      padding: 19px 20px;
      background: rgba(255, 255, 255, .04);
    }

    .hero-stat h4 {
      color: var(--gold);
      font-weight: 900;
      margin-bottom: 2px;
    }

    .hero-stat small {
      color: rgba(255, 255, 255, .74);
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 50px;
      height: 50px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(7, 22, 45, .72);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 50%;
      opacity: 1;
    }

    .carousel-control-prev {
      left: 22px;
    }

    .carousel-control-next {
      right: 22px;
    }

    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, .8);
      border: 0;
    }

    .carousel-indicators .active {
      background-color: var(--gold);
      width: 28px;
      border-radius: 999px;
    }
    
    
    .placement-section {
  padding: 10px 0;
  background: #ffffff;
  overflow: hidden;
}

.placement-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 38px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d99a00;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label span {
  width: 38px;
  height: 2px;
  background: #d99a00;
}

.placement-header h2 {
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 3px;
  color: #10182f;
  margin: 0 0 14px;
}

.placement-header h2 strong {
  color: #d99a00;
  font-weight: 900;
}

.placement-header p {
  color: #39445c;
  font-size: 17px;
  line-height: 1.55;
  max-width: 760px;
  margin: 0;
}

.view-btn {
  background: #07162d;
  color: #ffffff;
  padding: 17px 36px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  white-space: nowrap;
  text-decoration: none;
}

.view-btn:hover {
  background: #f4b72a;
  color: #07162d;
}

/* Slider */

.placement-carousel {
  position: relative;
  padding-bottom: 45px;
}

.placement-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.placement-card {
  display: grid;
  grid-template-columns: 46% 54%;
  background: #ffffff;
  border: 1px solid rgba(7, 22, 45, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 22, 45, 0.08);
  transition: 0.3s ease;
}

.placement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(7, 22, 45, 0.14);
}

.student-img {
  position: relative;
  overflow: hidden;
}

.student-img img {
  width: 200px;
  height: 100%;
  object-fit: cover;
}

.placed-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #f4b72a;
  color: #07162d;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 5;
}

.student-content h4 {
  color: #07162d;
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 2px;
}

.student-content h6 {
  color: #0f3e86;
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 18px;
}

.placed-at {
  color: #10182f;
  font-size: 15px;
}

.student-content h3 {
  color: #050505;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 5px;
}

.student-content h3 span {
  color: #5ca900;
}

.student-content h3.kpmg {
  color: #164f9f;
  font-style: italic;
}

.package-box {
  background: #07162d;
  color: #ffffff;
  min-height: 72px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.package-box i {
  color: #f4b72a;
  font-size: 32px;
}

.package-box h5 {
  color: #f4b72a;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 4px;
}

.package-box p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.quote {
  color: #10182f;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Arrows */

.placement-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #07162d;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 22px;
  z-index: 10;
  box-shadow: 0 12px 28px rgba(7, 22, 45, 0.24);
}

.placement-prev {
  left: 0px;
}

.placement-next {
  right: 0px;
}

.placement-arrow:hover {
  background: #f4b72a;
  color: #07162d;
}

/* Dots */

.placement-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.placement-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(7, 22, 45, 0.20);
  opacity: 1;
  transition: all 0.3s ease;
}

.placement-dots button.active {
  width: 34px;
  border-radius: 30px;
  background: #07162d;
}

/* Animation */

.placed-tag.tag-animate {
  animation: placedTagPop 0.55s ease forwards;
}

@keyframes placedTagPop {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale(0.9);
  }

  60% {
    opacity: 1;
    transform: translateY(3px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */

@media (max-width: 1199px) {
  .placement-card-row {
    grid-template-columns: 1fr;
  }

  .placement-card {
    grid-template-columns: 38% 62%;
  }

  .placement-arrow {
    display: none;
  }
}

@media (max-width: 991px) {
  .placement-header {
    flex-direction: column;
    gap: 20px;
  }

  .placement-header h2 {
    font-size: 23px;
    letter-spacing: 2px;
  }

  .view-btn {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .placement-section {
    padding: 55px 0;
  }

  .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    gap: 12px;
  }

  .section-label span {
    width: 24px;
  }

  .placement-header h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .placement-header p {
    font-size: 15px;
  }

  .view-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 22px;
  }

  .student-content h3 {
    font-size: 30px;
  }

  .package-box h5 {
    font-size: 24px;
  }
}
    
  
.recruiter-slider {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.recruiter-logo-wrapper {
  width: 100%;
  overflow: hidden;
}

.recruiter-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.logo-card {
  min-width: 176px;
  height: 82px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(7, 22, 45, 0.10);
  box-shadow: 0 8px 24px rgba(7, 22, 45, 0.06);
  display: grid;
  place-items: center;
  color: #111111;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  flex-shrink: 0;
}

.logo-card span {
  color: #58a700;
}

.recruiter-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(7, 22, 45, 0.12);
  background: #ffffff;
  color: #07162d;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(7, 22, 45, 0.08);
  cursor: pointer;
}

.recruiter-arrow:hover {
  background: #07162d;
  color: #f4b72a;
}

@media (max-width: 767px) {
  .recruiter-slider {
    grid-template-columns: 1fr;
  }

  .recruiter-arrow {
    display: none;
  }

  .logo-card {
    min-width: 145px;
    height: 68px;
    font-size: 18px;
  }
}



/* ==============================
   Ranking Section
============================== */

.ranking-section {
  padding: 20px 0 20px;
  background:
    radial-gradient(circle at top right, rgba(244, 183, 42, 0.10), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  overflow: hidden;
}

.ranking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 42px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d99a00;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label span {
  width: 38px;
  height: 2px;
  background: #d99a00;
}

.ranking-header h2 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 3px;
  color: #10182f;
  margin: 0 0 14px;
}

.ranking-header h2 strong {
  color: #d99a00;
  font-weight: 900;
}

.ranking-header p {
  color: #39445c;
  font-size: 17px;
  line-height: 1.55;
  max-width: 760px;
  margin: 0;
}

.view-btn {
  background: #07162d;
  color: #ffffff;
  padding: 17px 36px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(7, 22, 45, 0.16);
}

.view-btn:hover {
  background: #f4b72a;
  color: #07162d;
}

/* Main Ranking Layout */

.ranking-layout {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 34px;
  align-items: stretch;
}

/* Image Card */

.ranking-image-card {
  position: relative;
  min-height: 620px;
  border-radius: 18px;
  overflow: hidden;
  background: #07162d;
  box-shadow: 0 18px 45px rgba(7, 22, 45, 0.14);
}

.ranking-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 22, 45, 0.10) 0%,
    rgba(7, 22, 45, 0.42) 45%,
    rgba(7, 22, 45, 0.95) 100%
  );
  z-index: 1;
}

.ranking-image-overlay {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 34px;
  z-index: 2;
  color: #ffffff;
}

.ranking-image-overlay span {
  display: inline-block;
  color: #f4b72a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ranking-image-overlay h3 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  margin: 0;
}

.ranking-floating-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 35px rgba(7, 22, 45, 0.18);
}

.ranking-floating-badge i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #07162d;
  color: #f4b72a;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.ranking-floating-badge h4 {
  color: #07162d;
  font-size: 20px;
  font-weight: 900;
  margin: 0;
}

.ranking-floating-badge p {
  color: #39445c;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* Ranking List */

.ranking-list {
  display: grid;
  gap: 18px;
}

.ranking-item-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 78px 1fr 150px;
  gap: 20px;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(7, 22, 45, 0.10);
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: 0 10px 30px rgba(7, 22, 45, 0.07);
  transition: all 0.3s ease;
  overflow: hidden;
}

.ranking-item-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #f4b72a;
  opacity: 0;
  transition: 0.3s ease;
}

.ranking-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(7, 22, 45, 0.13);
}

.ranking-item-card:hover::before {
  opacity: 1;
}

.ranking-number {
  color: rgba(7, 22, 45, 0.26);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.ranking-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #07162d;
  color: #f4b72a;
  display: grid;
  place-items: center;
  font-size: 31px;
  box-shadow: 0 10px 25px rgba(7, 22, 45, 0.18);
}

.ranking-content h4 {
  color: #07162d;
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 7px;
}

.ranking-content p {
  color: #39445c;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.ranking-position {
  background: #07162d;
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
  color: #ffffff;
}

.ranking-position h3 {
  color: #f4b72a;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 6px;
}

.ranking-position span {
  display: block;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

/* Logo Strip */

.ranking-logo-strip {
  margin-top: 54px;
  text-align: center;
}

.ranking-logo-strip p {
  color: #10182f;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.ranking-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.ranking-logo {
  min-height: 82px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(7, 22, 45, 0.10);
  box-shadow: 0 8px 24px rgba(7, 22, 45, 0.06);
  display: grid;
  place-items: center;
  color: #07162d;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  padding: 16px;
}

/* ==============================
   Responsive
============================== */

@media (max-width: 1199px) {
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .ranking-image-card {
    min-height: 460px;
  }

  .ranking-item-card {
    grid-template-columns: 50px 70px 1fr 140px;
  }

  .ranking-header h2 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .ranking-section {
    padding: 70px 0;
  }

  .ranking-header {
    flex-direction: column;
    gap: 20px;
  }

  .view-btn {
    margin-top: 0;
  }

  .ranking-header h2 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .ranking-item-card {
    grid-template-columns: 50px 70px 1fr;
  }

  .ranking-position {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 16px 22px;
  }

  .ranking-position h3 {
    margin: 0;
  }

  .ranking-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .ranking-image-card {
    min-height: 390px;
  }

  .ranking-image-overlay {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .ranking-image-overlay h3 {
    font-size: 26px;
  }

  .ranking-floating-badge {
    top: 20px;
    left: 20px;
    padding: 14px 16px;
  }

  .ranking-floating-badge i {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .ranking-floating-badge h4 {
    font-size: 17px;
  }

  .ranking-item-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

 
  .ranking-icon {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }

  .ranking-position {
    display: block;
    text-align: center;
  }

  .ranking-position h3 {
    margin-bottom: 6px;
  }

  .ranking-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ranking-section {
    padding: 55px 0;
  }

  .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    gap: 12px;
  }

  .section-label span {
    width: 24px;
  }

  .ranking-header h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .ranking-header p {
    font-size: 15px;
  }

  .view-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 22px;
  }

  .ranking-image-card {
    min-height: 340px;
    border-radius: 14px;
  }

  .ranking-image-overlay h3 {
    font-size: 22px;
  }

  .ranking-floating-badge {
    right: 18px;
    left: 18px;
    justify-content: center;
  }

  .ranking-content h4 {
    font-size: 20px;
  }

  .ranking-content p {
    font-size: 14px;
  }

  .ranking-logo-grid {
    grid-template-columns: 1fr;
  }

  .ranking-logo {
    min-height: 70px;
    font-size: 17px;
  }
}

/* ==============================
   Campus Life Creative Design
============================== */

.campus-showcase-section {
  padding: 90px 0 100px;
  background:
    radial-gradient(circle at top right, rgba(244, 183, 42, 0.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  overflow: hidden;
}

/* Header */

.campus-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 42px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d99a00;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label span {
  width: 38px;
  height: 2px;
  background: #d99a00;
}

.campus-showcase-header h2 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 3px;
  color: #10182f;
  margin: 0 0 14px;
}

.campus-showcase-header h2 strong {
  color: #d99a00;
  font-weight: 900;
}

.campus-showcase-header p {
  color: #39445c;
  font-size: 17px;
  line-height: 1.6;
  max-width: 820px;
  margin: 0;
}

.campus-view-btn {
  background: #07162d;
  color: #ffffff;
  padding: 17px 36px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(7, 22, 45, 0.16);
}

.campus-view-btn:hover {
  background: #f4b72a;
  color: #07162d;
}

/* Creative Grid */

.campus-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.85fr;
  grid-template-rows: 260px 260px;
  gap: 24px;
}

/* Large Story Card */

.campus-story-card {
  position: relative;
  grid-row: span 2;
  border-radius: 20px;
  overflow: hidden;
  background: #07162d;
  box-shadow: 0 20px 50px rgba(7, 22, 45, 0.14);
}

.campus-story-card img,
.campus-video-tall-card img,
.campus-image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 45, 0.04) 0%, rgba(7, 22, 45, 0.54) 45%, rgba(7, 22, 45, 0.96) 100%);
  z-index: 1;
}

.story-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  color: #ffffff;
}

.story-content span,
.video-tall-content span,
.campus-image-tile span {
  display: inline-block;
  color: #f4b72a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.story-content h3 {
  color: #ffffff;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 12px;
}

.story-content p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.6;
  max-width: 650px;
  margin: 0;
}

.story-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 4;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 35px rgba(7, 22, 45, 0.18);
}

.story-badge i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #07162d;
  color: #f4b72a;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.story-badge h4 {
  color: #07162d;
  font-size: 20px;
  font-weight: 900;
  margin: 0;
}

.story-badge p {
  color: #39445c;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* Tall Video Card */

.campus-video-tall-card {
  position: relative;
  grid-row: span 2;
  border-radius: 20px;
  overflow: hidden;
  background: #07162d;
  box-shadow: 0 18px 45px rgba(7, 22, 45, 0.14);
}

.video-tall-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 45, 0.05) 0%, rgba(7, 22, 45, 0.50) 45%, rgba(7, 22, 45, 0.96) 100%);
  z-index: 1;
}

.video-play-round {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: none;
  background: #f4b72a;
  color: #07162d;
  display: grid;
  place-items: center;
  font-size: 48px;
  box-shadow: 0 20px 50px rgba(244, 183, 42, 0.40);
}

.video-play-round i {
  margin-left: 5px;
}

.video-play-round:hover {
  background: #ffd76a;
  transform: translate(-50%, -50%) scale(1.08);
}

.video-tall-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 3;
}

.video-tall-content h4 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  margin: 0;
}

/* Mini Info Card */

.campus-mini-card {
  background: #ffffff;
  border: 1px solid rgba(7, 22, 45, 0.10);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(7, 22, 45, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.campus-mini-card.dark-card {
  background: #07162d;
  color: #ffffff;
}

.mini-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #07162d;
  color: #f4b72a;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.dark-card .mini-icon {
  background: #ffffff;
  color: #07162d;
}

.campus-mini-card h4 {
  color: #07162d;
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 10px;
}

.dark-card h4 {
  color: #ffffff;
}

.campus-mini-card p {
  color: #39445c;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.78);
}

/* Image Tiles */

.campus-image-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #07162d;
  box-shadow: 0 12px 34px rgba(7, 22, 45, 0.10);
}

.campus-image-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 45, 0.08) 0%, rgba(7, 22, 45, 0.86) 100%);
  z-index: 1;
}

.campus-image-tile div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.campus-image-tile h4 {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0;
}

.campus-image-tile img {
  transition: 0.45s ease;
}

.campus-image-tile:hover img {
  transform: scale(1.08);
}

/* Impact Row */

.campus-impact-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(15, 62, 134, 0.20);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(7, 22, 45, 0.06);
  overflow: hidden;
}

.impact-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid rgba(7, 22, 45, 0.12);
}

.impact-item:last-child {
  border-right: none;
}

.impact-item h3 {
  color: #0f3e86;
  font-size: 38px;
  font-weight: 900;
  margin: 0 0 6px;
}

.impact-item p {
  color: #10182f;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

/* Modal */

.campus-video-modal {
  background: #000000;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.campus-video-close {
  position: absolute;
  right: -44px;
  top: -44px;
  background-color: #ffffff;
  opacity: 1;
  z-index: 10;
  border-radius: 50%;
  padding: 12px;
}

/* Responsive */

@media (max-width: 1199px) {
  .campus-showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .campus-story-card {
    grid-column: span 2;
    min-height: 520px;
  }

  .campus-video-tall-card {
    grid-row: span 2;
    min-height: 540px;
  }

  .campus-impact-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-item:nth-child(2) {
    border-right: none;
  }

  .impact-item:nth-child(1),
  .impact-item:nth-child(2) {
    border-bottom: 1px solid rgba(7, 22, 45, 0.12);
  }
}

@media (max-width: 991px) {
  .campus-showcase-section {
    padding: 70px 0;
  }

  .campus-showcase-header {
    flex-direction: column;
    gap: 20px;
  }

  .campus-showcase-header h2 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .campus-view-btn {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .campus-showcase-grid {
    grid-template-columns: 1fr;
  }

  .campus-story-card,
  .campus-video-tall-card {
    grid-column: auto;
    min-height: 430px;
  }

  .story-content h3 {
    font-size: 28px;
  }

  .video-tall-content h4 {
    font-size: 24px;
  }

  .campus-impact-row {
    grid-template-columns: 1fr;
  }

  .impact-item {
    border-right: none;
    border-bottom: 1px solid rgba(7, 22, 45, 0.12);
  }

  .impact-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .campus-showcase-section {
    padding: 55px 0;
  }

  .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    gap: 12px;
  }

  .section-label span {
    width: 24px;
  }

  .campus-showcase-header h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .campus-showcase-header p {
    font-size: 15px;
  }

  .campus-view-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 22px;
  }

  .campus-story-card,
  .campus-video-tall-card {
    min-height: 390px;
    border-radius: 14px;
  }

  .story-content,
  .video-tall-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .story-content h3 {
    font-size: 24px;
  }

  .story-content p {
    font-size: 14px;
  }

  .story-badge {
    top: 18px;
    left: 18px;
    right: 18px;
    justify-content: center;
    padding: 14px 16px;
  }

  .video-play-round {
    width: 70px;
    height: 70px;
    font-size: 38px;
  }

  .campus-mini-card {
    padding: 24px;
  }

  .campus-mini-card h4,
  .campus-image-tile h4 {
    font-size: 21px;
  }

  .campus-video-close {
    right: 10px;
    top: 10px;
  }
}



.eventstype {
    display: flex;
    align-items: center;
    color: #d99a00;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}


/* ==============================
   Student Testimonial Home Section
============================== */

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

.student-testimonial-home-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.testimonial-home-container {
  width: min(100% - 80px, 1640px);
  margin: 0 auto;
}

/* Header */

.testimonial-home-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 38px;
}

.testimonial-subtitle {
  color: #f3b21b;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.testimonial-home-header h2 {
  color: #07102a;
  font-size: 78px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0;
}

.view-all-testimonials {
  color: #07102a;
  font-size: 20px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.view-all-testimonials:hover {
  color: #f3b21b;
}

/* Main Layout */

.testimonial-main-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 34px;
  align-items: stretch;
}

/* Left Gallery */

.student-campus-gallery {
  display: grid;
  grid-template-columns: 1.15fr 1.45fr;
  gap: 18px;
  min-height: 420px;
}

.gallery-big-image,
.small-gallery-card {
  overflow: hidden;
  background: #07162d;
}

.gallery-big-image {
  border-radius: 24px;
  height: 100%;
}

.gallery-small-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.small-gallery-card {
  border-radius: 18px;
  height: 190px;
}

.gallery-big-image img,
.small-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.gallery-big-image:hover img,
.small-gallery-card:hover img {
  transform: scale(1.06);
}

/* Testimonial Slider */

.testimonial-slider-box {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(7, 16, 42, 0.08);
  border-radius: 28px;
  padding: 5px 5px;
  box-shadow: 0 24px 70px rgba(7, 16, 42, 0.08);
}

.testimonial-slider-track {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: testimonialFade 0.55s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-quote-icon {
  color: #f3b21b;
  font-size: 70px;
  font-weight: 900;
  line-height: 0.4;
  margin-bottom: 6px;
}

.testimonial-content-row {
  display: grid;
  /* grid-template-columns: 1fr 200px; */
  gap: 20px;
  align-items: center;
}

.testimonial-text-content h3 {
  color: #07102a;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 18px;
}

.testimonial-text-content p {
  color: #687386;
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 5px;
}

.student-info-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.student-info-row img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.student-info-row h4 {
  color: #07102a;
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 6px;
}

.student-info-row span {
  color: #687386;
  font-size: 14px;
}

.testimonial-stars {
  color: #f3b21b;
  font-size: 22px;
  display: flex;
  gap: 3px;
}

.testimonial-student-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(7, 16, 42, 0.12);
}

.testimonial-student-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows */

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  border-radius: 50%;
  border: 0;
  background: #07102a;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 15px 35px rgba(7, 16, 42, 0.18);
}

.testimonial-arrow:hover {
  background: #f3b21b;
  color: #07102a;
}

.testimonial-prev {
  left: -31px;
}

.testimonial-next {
  right: -31px;
}

/* Dots */

.testimonial-dots {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: #d4d8df;
  cursor: pointer;
}

.testimonial-dot.active {
  background: #07102a;
}

/* Responsive */

@media (max-width: 1399px) {
  .testimonial-home-header h2 {
    font-size: 62px;
  }

  .testimonial-subtitle {
    font-size: 24px;
  }

  .testimonial-main-layout {
    grid-template-columns: 1fr;
  }

  .student-campus-gallery {
    min-height: 380px;
  }
}

@media (max-width: 991px) {
  .student-testimonial-home-section {
    padding: 65px 0;
  }

  .testimonial-home-container {
    width: min(100% - 40px, 820px);
  }

  .testimonial-home-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-home-header h2 {
    font-size: 46px;
  }

  .testimonial-subtitle {
    font-size: 18px;
    letter-spacing: 5px;
  }

  .student-campus-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-big-image {
    height: 360px;
  }

  .testimonial-slider-box {
    padding: 10px 10px;
  }

  .testimonial-content-row {
    grid-template-columns: 1fr;
  }

  .testimonial-student-photo {
    display: none;
  }

  .testimonial-arrow {
    width: 52px;
    height: 52px;
  }

  .testimonial-prev {
    left: 16px;
  }

  .testimonial-next {
    right: 16px;
  }
}

@media (max-width: 767px) {
  .testimonial-home-header h2 {
    font-size: 38px;
  }

  .testimonial-subtitle {
    font-size: 15px;
    letter-spacing: 3px;
  }

  .view-all-testimonials {
    font-size: 16px;
  }

  .gallery-small-images {
    grid-template-columns: 1fr;
  }

  .small-gallery-card {
    height: 220px;
  }

  .testimonial-slider-box {
    border-radius: 22px;
    padding: 10px 10px 10px;
  }

  .testimonial-text-content h3 {
    font-size: 24px;
  }

  .testimonial-text-content p {
    font-size: 18px;
  }

  .testimonial-quote-icon {
    font-size: 54px;
  }

  .student-info-row {
    align-items: flex-start;
  }

  .student-info-row span {
    font-size: 15px;
  }

  .testimonial-arrow {
    top: auto;
    bottom: 24px;
    transform: none;
    width: 46px;
    height: 46px;
  }

  .testimonial-prev {
    left: auto;
    right: 82px;
  }

  .testimonial-next {
    right: 24px;
  }

  .testimonial-dots {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-home-container {
    width: calc(100% - 26px);
  }

  .gallery-big-image {
    height: 300px;
  }

  .testimonial-home-header h2 {
    font-size: 32px;
  }

  .testimonial-text-content p {
    font-size: 16px;
  }

  .student-info-row img {
    width: 58px;
    height: 58px;
  }
}