* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Banner Section */
.hero-section {
  width: 100%;
  line-height: 0; /* Removes bottom space from image */
}

.banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

body {
  font-family: Arial, sans-serif;
  background-color: white;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  background: white;
}

.container h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #b6081d;
  margin-bottom: 50px;
}

.accreditations-section {
  max-width: 1300px !important;
}

.accreditations {
  display: flex;
}

.column {
  padding: 0px 30px;
  border-right: 3px solid #000;
}

.column:first-child {
  flex: 1;
}

.column:nth-child(2) {
  flex: 1;
}

.column:nth-child(3) {
  flex: 1.5;
}

.column:last-child {
  flex: 1;
  border-right: none;
}

.column h3 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}

.logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  /* margin-bottom: 15px; */
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 4px;
  min-height: 80px;
}

.logo-box img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  /* margin-bottom: 8px; */
}

.logo-text {
  font-size: 10px;
  color: #000;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.grid-4x2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.grid-4x2 .logo-box {
  min-height: 80px;
  padding: 5px;
}

.grid-4x2 .logo-box img {
  max-width: 80px;
  max-height: 80px;
}

.side-by-side {
  display: flex;
  gap: 15px;
  /* margin-bottom: 5px; */
}

.side-by-side .logo-box {
  flex: 1;
  min-height: 70px;
}

.side-by-side .logo-box img {
  max-width: 80px;
  max-height: 80px;
}

.pgdm-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.pgdm-list li {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.pgdm-list li:before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.pgdm-list {
  counter-reset: item;
}

.exams-grid .logo-box img {
  max-width: 80px;
  max-height: 40px;
}

@media (max-width: 768px) {
  .accreditations {
    flex-direction: column;
  }

  .accreditations-section {
    margin: 40px auto;
  }

  .column {
    border-right: none;
    margin-bottom: 40px;
    padding: 0px;
  }

  .column h3 {
    margin-bottom: 20px;
  }

  .container h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .logo-box img {
    max-height: 100% !important;
    height: 100px;
    width: 100px !important;
    max-width: 100% !important;
  }

  .grid-4x2 .logo-box img {
    max-height: 80px !important;
    max-width: 80px !important;
  }

  .column:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .grid-4x2 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-2x2 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 360px) {
  .grid-4x2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* WHO WE ARE Section Styles */
.who-we-are {
  background-color: #f8f9fa;
  padding: 80px 0;
  padding-bottom: 100px;
  margin: 0;
}

.who-we-are-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column: Text Content */
.text-content {
  padding-right: 40px;
}

.subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #dc2626;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.main-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #1f2937;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-button {
  background-color: #b6081d;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* border-radius: 6px; */
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #910717;
  transform: translateY(-2px);
}

/* Right Column: Image Content */
.image-content {
  position: relative;
}

.image-wrapper {
  position: relative;
  /* border-radius: 8px; */
  /* overflow: hidden; */
}

.campus-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* L-shaped Green Border */
.green-border {
  position: absolute;
  top: 93px;
  left: -32px;
  width: 32px;
  height: 82%;
  background-color: #b6081d;
  z-index: 2;
}

.green-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 32px;
  background-color: #b6081d;
}

/* Overlay Card */
.overlay-card {
  position: absolute;
  bottom: -60px;
  right: -80px;
  background: white;
  padding: 20px;
  /* border-radius: 8px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 200px;
  z-index: 3;
}

.card-icon {
  font-size: 40px;
  /* margin-bottom: 15px; */
  text-align: center;
  color: #dc2626;
}

.card-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-wrapper {
    gap: 40px;
  }

  .main-title {
    font-size: 40px;
  }

  .campus-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .who-we-are {
    padding: 60px 0;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .text-content {
    text-align: center;
    padding-right: 0;
  }

  .main-title {
    font-size: 36px;
  }

  .overlay-card {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .who-we-are-container {
    padding: 0 15px;
  }

  .main-title {
    font-size: 28px;
  }

  .description {
    font-size: 15px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 13px;
  }

  .campus-image {
    height: 300px;
  }

  .overlay-card {
    padding: 20px;
    bottom: 15px;
    right: 15px;
    left: 15px;
  }

  .card-title {
    font-size: 18px;
  }
}

/* Courses Section Styles */
* Eligibility & Courses Section */ .eligibility-courses-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.eligibility-courses-section .container {
  display: flex;
  gap: 30px;
  max-width: 1300px;
  align-items: center;
}

.eligibility-courses-section .container h2 {
  margin-bottom: 20px !important;
}

.eligibility-card {
  flex: 1;
  background-color: #fdfaf1;
  /* border-radius: 12px; */
  padding: 30px;
  border: 1px solid #f0e6d1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.eligibility-card .card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.eligibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
  /* flex-grow: 1; */
}

.eligibility-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.eligibility-list .icon {
  margin-right: 15px;
  color: #50c878;
  font-size: 18px;
  margin-top: -2px;
}

.sub-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.sub-list li {
  margin-bottom: 8px;
  font-size: 14px;
}

.apply-button {
  background-color: #f7d160;
  color: #333;
  border: none;
  padding: 14px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.apply-button:hover {
  background-color: #f5c540;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.courses-card-section {
  flex: 1.2;
}

.courses-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  /* height: 100%; */
}

.course-card-new {
  background-color: #fff;
  /* border-radius: 12px; */
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.course-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.course-card-new.highlighted {
  background-color: #e8f5e9;
  border-color: #a5d6a7;
}

.course-card-new h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.course-card-new p {
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
  color: #555;
  margin-bottom: 20px;
}

.course-card-new button {
  background-color: transparent;
  color: #333;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.course-card-new.highlighted button {
  background-color: #66bb6a;
  color: white;
  border-color: #66bb6a;
}

.course-card-new button:hover {
  background-color: #333;
  color: white;
  border-color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .eligibility-courses-section .container {
    flex-direction: column-reverse;
  }
}

@media (max-width: 576px) {
  .courses-grid-new {
    grid-template-columns: 1fr;
  }
}

/* University Partners Section */
.university-partners {
  padding: 60px 20px;
  background-color: #f7f7f7;
  background-image: radial-gradient(
    circle at 1px 1px,
    #b6081d 1px,
    transparent 0
  );
  background-size: 20px 20px;
}

/* Placement Stats */
.placement-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* .stat-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 25px 30px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  background-color: #b6081d;
  border-radius: 50%;
  padding: 12px;
  margin-right: 20px;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.stat-info .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.stat-info .stat-label {
  font-size: 15px;
  color: #718096;
  margin: 0;
} */

/* Stats Banner Section */
/* .stats-banner {
  padding: 60px 0;
  background-image: radial-gradient(circle at 1px 1px, #a0d1a7 1px, transparent 0);
  background-size: 25px 25px;
} */

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  margin: 40px auto;
  background-color: transparent;
}

.stat-item {
  background-color: white;
  padding: 15px;
  width: 100%;
  /* text-align: center; */
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 54px;
  /* padding: 2px; */
  background-color: #e0e0e0;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #b6081d;
  margin: 0;
}

.stat-text {
  font-size: 16px;
  color: #4a5568;
  margin-top: 8px;
}

.university-partners h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #b6081d;
  margin-bottom: 50px;
}

.university-partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.university-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
}

.university-logo {
  background-color: #fff;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.university-logo img {
  max-width: 100%;
  height: auto;
  max-height: 70px;
}

/* Grid lines */
.university-logo:not(:nth-child(4n)) {
  border-right: 1px dashed #ccc;
}
.university-logo:nth-child(-n + 8) {
  border-bottom: 1px dashed #ccc;
}

/* Plus symbols */
.university-logo:nth-child(1)::after,
.university-logo:nth-child(2)::after,
.university-logo:nth-child(3)::after,
.university-logo:nth-child(5)::after,
.university-logo:nth-child(6)::after,
.university-logo:nth-child(7)::after {
  content: "+";
  position: absolute;
  bottom: -11px;
  right: -6px;
  font-size: 18px;
  font-weight: normal;
  color: #d9534f;
  z-index: 2;
}

@media (max-width: 1024px) {
  .university-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .university-logo {
    border-right: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
  }
  .university-logo:nth-child(3n) {
    border-right: none;
  }
  .university-logo:nth-child(n + 10) {
    border-bottom: none;
  }

  .university-logo::after {
    content: "" !important;
  }

  .university-logo:nth-child(1)::after,
  .university-logo:nth-child(2)::after,
  .university-logo:nth-child(4)::after,
  .university-logo:nth-child(5)::after,
  .university-logo:nth-child(7)::after,
  .university-logo:nth-child(8)::after {
    content: "+" !important;
    position: absolute;
    bottom: -11px;
    right: -6px;
    font-size: 18px;
    font-weight: normal;
    color: #d9534f;
    z-index: 2;
  }

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

  /* .university-logo:nth-child(2n-1):not(:nth-child(n + 7))::after {
    content: "+";
    position: absolute;
    bottom: -11px;
    right: -6px;
    font-size: 18px;
    font-weight: normal;
    color: #d9534f;
    z-index: 2;
  } */
}

@media (max-width: 768px) {
  .university-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .university-logo {
    border-right: 1px dashed #ccc !important;
    border-bottom: 1px dashed #ccc !important;
  }

  .university-logo:nth-child(2n) {
    border-right: none !important;
  }
  .university-logo:nth-child(n + 11) {
    border-bottom: none !important;
  }

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

  .stat-number {
    font-size: 20px;
  }

  .stat-icon {
    padding: 5px;
  }

  /* .university-logo:nth-child(-n + 6) {
    border-bottom: 1px dashed #ccc;
  } */
  /* .university-logo:last-child {
    border-bottom: none;
  } */
  .university-logo::after {
    content: "" !important;
  }

  .university-logo:nth-child(2)::after,
  .university-logo:nth-child(4)::after,
  .university-logo:nth-child(8)::after {
    content: "" !important;
  }

  .university-logo:nth-child(1)::after,
  .university-logo:nth-child(3)::after,
  .university-logo:nth-child(5)::after,
  .university-logo:nth-child(7)::after,
  .university-logo:nth-child(9)::after {
    content: "+" !important;
    position: absolute;
    bottom: -11px;
    right: -6px;
    font-size: 18px;
    font-weight: normal;
    color: #d9534f;
    z-index: 2;
  }
}

@media (max-width: 1400px) {
  .overlay-card {
    right: -20px;
  }
}

@media (max-width: 1300px) {
  .overlay-card {
    right: 0px;
  }

  .university-partners {
    padding: 60px 20px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .accreditations {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .courses-section {
    padding: 60px 0;
  }

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

  .course-image {
    height: 200px;
  }

  .course-label {
    font-size: 14px;
    padding: 15px 10px;
    min-height: 50px;
  }

  .university-partners h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #b6081d;
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .courses-container {
    padding: 0 15px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .green-border {
    top: 86px;
  }

  .course-image {
    height: 220px;
  }

  .course-label {
    font-size: 15px;
    padding: 18px 15px;
    min-height: 55px;
  }

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

  .stat-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .stat-content {
    text-align: center;
  }

  .university-partners h3 {
    margin-bottom: 40px !important;
  }

  .stat-icon {
    font-size: 24px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-text {
    font-size: 14px;
  }
}

/* Alumni Section Styles */
.alumni-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.alumni-section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #b6081d;
  margin-bottom: 50px;
}

.alumni-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.alumni-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.alumni-slider-container {
  overflow: hidden;
  /* border-radius: 12px; */
}

.alumni-grid {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 20px;
}

/* Alumni slider class for JavaScript targeting */

.alumni-card {
  flex: 0 0 calc(25% - 15px); /* 4 cards per slide on desktop */
  min-width: 0;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  /* border-radius: 16px; */
  padding: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alumni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.alumni-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.alumni-prev-btn,
.alumni-next-btn {
  background-color: #b6081d;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(182, 8, 29, 0.3);
}

.alumni-prev-btn:hover,
.alumni-next-btn:hover {
  background-color: #940618;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 8, 29, 0.4);
}

.alumni-slider-indicators {
  display: flex;
  gap: 8px;
}

.alumni-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.alumni-indicator.active {
  background-color: #b6081d;
  border-color: #b6081d;
  transform: scale(1.2);
}

.alumni-image-wrapper {
  background-color: #f1f5f9;
  /* border-radius: 12px; */
  overflow: hidden;
  margin-bottom: 16px;
}

.alumni-image {
  width: 100%;
  height: auto;
  display: block;
  /* border-radius: 12px; */
}

.alumni-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.alumni-header {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  margin-bottom: 12px;
}

.alumni-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
}

.alumni-role {
  font-size: 14px;
  color: #718096;
}

.alumni-desc {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.alumni-meta {
  /* padding-top: 12px; */
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 13px;
  /* flex-wrap: wrap; */
  gap: 10px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item svg {
  width: 16px;
  height: 16px;
  color: #718096;
}

.alumni-company {
  font-weight: 500;
  color: #2d3748;
}

.alumni-batch {
  color: #718096;
}

.alumni-socials {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.alumni-socials a {
  color: #4a5568;
  transition: color 0.3s;
}

.alumni-socials a:hover {
  color: #1a202c;
}

/* Responsive Breakpoints */
@media (max-width: 1023px) {
  .alumni-card {
    flex: 0 0 calc(33.333% - 14px); /* 3 cards per slide on medium devices */
  }

  .alumni-section h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .alumni-card {
    flex: 0 0 calc(50% - 10px); /* 2 cards per slide on small devices */
  }

  .alumni-section h2 {
    font-size: 36px;
  }

  .alumni-container {
    padding: 0 15px;
  }
}

@media (max-width: 499px) {
  .alumni-container {
    padding: 0 15px;
  }

  .alumni-slider-wrapper {
    margin: 0 -15px;
    padding: 0 15px;
  }

  .alumni-card {
    flex: 0 0 calc(100vw - 30px); /* Full viewport width minus container padding */
    max-width: calc(100vw - 30px);
    margin: 0;
  }

  .alumni-grid {
    gap: 0; /* Remove gap on mobile to prevent overflow */
  }

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

  .alumni-section h2 {
    font-size: 32px;
  }

  .alumni-prev-btn,
  .alumni-next-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .alumni-slider-controls {
    gap: 15px;
    margin-top: 25px;
  }

  .overlay-card {
    max-width: 150px;
    margin-left: auto;
    bottom: -60px;
  }
}

/* Internal Immersions Section */
.immersions-section {
  padding: 0;
}

.immersions-section h2 {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #b6081d;
  margin-bottom: 50px;
}

.immersions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 600px;
}

.immersion-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.immersion-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.immersion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.immersion-card:hover img {
  transform: scale(1.05);
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .immersions-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .immersion-card.large {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .immersions-grid {
    grid-template-columns: 1fr;
  }
  .immersion-card.large {
    grid-column: span 1;
    height: 300px;
  }
}

/* Admission Process Section */

/* Admission Process Section */

.admission-process-section {
  /* padding: 80px 0; */
  background-color: #fff;
}

.international-section {
  background-color: #ddd;
}

.international-section .container {
  background-color: #ddd;
}

.admission-process-section .container {
  padding: 80px 20px;
  max-width: 1350px;
  margin: 0 auto;
}

.admission-process-section .section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.admission-process-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #d4a017;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.international-section .process-steps {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.international-section .process-steps::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.international-section .step-card {
  flex: 0 0 auto;
  width: 25%; /* Show 4 cards at a time on desktop */
  scroll-snap-align: start;
}

.international-section .process-steps {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background-color: #0a2351;
  color: #ffffff;
  padding: 20px 15px;
  /* border-radius: 15px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.international-section .step-card {
  background-color: #fff;
  color: #000;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d4a017;
  padding: 15px;
  /* border-top-left-radius: 15px; */
  border-bottom-right-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.step-label span {
  font-size: 14px;
  font-weight: 600;
  color: #0a2351;
}

.step-label strong {
  font-size: 28px;
  font-weight: 700;
  color: #0a2351;
}

.step-icon {
  margin-bottom: 25px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.international-section .step-icon {
  margin-bottom: 0;
}

.step-icon img {
  width: 80px;
  height: 80px;
  max-width: 100%;
  max-width: 100%;
}

.international-section .step-icon img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  vertical-align: middle;
}

.international-section .step-title {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  vertical-align: middle;
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .international-section .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .international-section .step-card {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .international-section .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .international-section .step-card {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: repeat(1, 1fr);
  }

  .international-section .process-steps {
    grid-template-columns: repeat(1, 1fr);
  }

  .international-section .step-card {
    width: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Banner Section */
.hero-section {
  width: 100%;
  line-height: 0; /* Removes bottom space from image */
}

.banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

body {
  font-family: Arial, sans-serif;
  background-color: white;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  background: white;
}

.container h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #b6081d;
  margin-bottom: 50px;
}

.accreditations-section {
  max-width: 1300px !important;
}

.accreditations {
  display: flex;
}

.column {
  padding: 0px 30px;
  border-right: 3px solid #000;
}

.column:first-child {
  flex: 1;
}

.column:nth-child(2) {
  flex: 1;
}

.column:nth-child(3) {
  flex: 1.5;
}

.column:last-child {
  flex: 1;
  border-right: none;
}

.column h3 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}

.logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  /* margin-bottom: 15px; */
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 4px;
  min-height: 80px;
}

.logo-box img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  /* margin-bottom: 8px; */
}

.logo-text {
  font-size: 10px;
  color: #000;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.grid-4x2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.grid-4x2 .logo-box {
  min-height: 80px;
  padding: 5px;
}

.grid-4x2 .logo-box img {
  max-width: 80px;
  max-height: 80px;
}

.side-by-side {
  display: flex;
  gap: 15px;
  /* margin-bottom: 5px; */
}

.side-by-side .logo-box {
  flex: 1;
  min-height: 70px;
}

.side-by-side .logo-box img {
  max-width: 80px;
  max-height: 80px;
}

.pgdm-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.pgdm-list li {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.pgdm-list li:before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.pgdm-list {
  counter-reset: item;
}

.exams-grid .logo-box img {
  max-width: 80px;
  max-height: 40px;
}

@media (max-width: 768px) {
  .accreditations {
    flex-direction: column;
  }

  .accreditations-section {
    margin: 40px auto;
  }

  .column {
    border-right: none;
    margin-bottom: 40px;
    padding: 0px;
  }

  .column h3 {
    margin-bottom: 20px;
  }

  .container h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .logo-box img {
    max-height: 100% !important;
    height: 100px;
    width: 100px !important;
    max-width: 100% !important;
  }

  .grid-4x2 .logo-box img {
    max-height: 80px !important;
    max-width: 80px !important;
  }

  .column:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .grid-4x2 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-2x2 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 360px) {
  .grid-4x2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* WHO WE ARE Section Styles */
.who-we-are {
  background-color: #f8f9fa;
  padding: 80px 0;
  padding-bottom: 100px;
  margin: 0;
}

.who-we-are-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column: Text Content */
.text-content {
  padding-right: 40px;
}

.subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #dc2626;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.main-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #1f2937;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-button {
  background-color: #b6081d;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* border-radius: 6px; */
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #910717;
  transform: translateY(-2px);
}

/* Right Column: Image Content */
.image-content {
  position: relative;
}

.image-wrapper {
  position: relative;
  /* border-radius: 8px; */
  /* overflow: hidden; */
}

.campus-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* L-shaped Green Border */
.green-border {
  position: absolute;
  top: 93px;
  left: -32px;
  width: 32px;
  height: 82%;
  background-color: #b6081d;
  z-index: 2;
}

.green-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 32px;
  background-color: #b6081d;
}

/* Overlay Card */
.overlay-card {
  position: absolute;
  bottom: -60px;
  right: -80px;
  background: white;
  padding: 20px;
  /* border-radius: 8px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 200px;
  z-index: 3;
}

.card-icon {
  font-size: 40px;
  /* margin-bottom: 15px; */
  text-align: center;
  color: #dc2626;
}

.card-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-wrapper {
    gap: 40px;
  }

  .main-title {
    font-size: 40px;
  }

  .campus-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .who-we-are {
    padding: 60px 0;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .text-content {
    text-align: center;
    padding-right: 0;
  }

  .main-title {
    font-size: 36px;
  }

  .overlay-card {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .who-we-are-container {
    padding: 0 15px;
  }

  .main-title {
    font-size: 28px;
  }

  .description {
    font-size: 15px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 13px;
  }

  .campus-image {
    height: 300px;
  }

  .overlay-card {
    padding: 20px;
    bottom: 15px;
    right: 15px;
    left: 15px;
  }

  .card-title {
    font-size: 18px;
  }
}

/* Courses Section Styles */
.courses-section {
  background-color: white;
  padding: 80px 0;
  margin: 0;
}

.courses-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
}

.course-card {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  height: 100%; /* Ensure all cards take full height */
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.course-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0; /* Prevent image from shrinking */
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-label {
  background-color: #ccc;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 20px 15px;
  margin: 0;
  line-height: 1.3;
  min-height: 80px; /* Increased min-height for consistent spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1; /* Allow label to expand and fill remaining space */
}

/* University Partners Section */
.university-partners {
  padding: 60px 20px;
  background-color: #f7f7f7;
  background-image: radial-gradient(
    circle at 1px 1px,
    #b6081d 1px,
    transparent 0
  );
  background-size: 20px 20px;
}

/* Placement Stats */
.placement-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* .stat-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 25px 30px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  background-color: #b6081d;
  border-radius: 50%;
  padding: 12px;
  margin-right: 20px;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.stat-info .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.stat-info .stat-label {
  font-size: 15px;
  color: #718096;
  margin: 0;
} */

/* Stats Banner Section */
/* .stats-banner {
  padding: 60px 0;
  background-image: radial-gradient(circle at 1px 1px, #a0d1a7 1px, transparent 0);
  background-size: 25px 25px;
} */

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  margin: 40px auto;
  background-color: transparent;
}

.stat-item {
  background-color: white;
  padding: 15px;
  width: 100%;
  /* text-align: center; */
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  font-size: 40px;
  padding: 2px;
  background-color: #e0e0e0;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #b6081d;
  margin: 0;
}

.stat-text {
  font-size: 16px;
  color: #4a5568;
  margin-top: 8px;
}

.university-partners h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #b6081d;
  margin-bottom: 50px;
}

.university-partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.university-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
}

.university-logo {
  background-color: #fff;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.university-logo img {
  max-width: 100%;
  height: auto;
  max-height: 70px;
}

/* Grid lines */
.university-logo:not(:nth-child(4n)) {
  border-right: 1px dashed #ccc;
}
.university-logo:nth-child(-n + 8) {
  border-bottom: 1px dashed #ccc;
}

/* Plus symbols */
.university-logo:nth-child(1)::after,
.university-logo:nth-child(2)::after,
.university-logo:nth-child(3)::after,
.university-logo:nth-child(5)::after,
.university-logo:nth-child(6)::after,
.university-logo:nth-child(7)::after {
  content: "+";
  position: absolute;
  bottom: -11px;
  right: -6px;
  font-size: 18px;
  font-weight: normal;
  color: #d9534f;
  z-index: 2;
}

@media (max-width: 1024px) {
  .university-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .university-logo {
    border-right: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
  }
  .university-logo:nth-child(3n) {
    border-right: none;
  }
  .university-logo:nth-child(n + 10) {
    border-bottom: none;
  }

  .university-logo::after {
    content: "" !important;
  }

  .university-logo:nth-child(1)::after,
  .university-logo:nth-child(2)::after,
  .university-logo:nth-child(4)::after,
  .university-logo:nth-child(5)::after,
  .university-logo:nth-child(7)::after,
  .university-logo:nth-child(8)::after {
    content: "+" !important;
    position: absolute;
    bottom: -11px;
    right: -6px;
    font-size: 18px;
    font-weight: normal;
    color: #d9534f;
    z-index: 2;
  }

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

  /* .university-logo:nth-child(2n-1):not(:nth-child(n + 7))::after {
    content: "+";
    position: absolute;
    bottom: -11px;
    right: -6px;
    font-size: 18px;
    font-weight: normal;
    color: #d9534f;
    z-index: 2;
  } */
}

@media (max-width: 768px) {
  .university-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .university-logo {
    border-right: 1px dashed #ccc !important;
    border-bottom: 1px dashed #ccc !important;
  }

  .university-logo:nth-child(2n) {
    border-right: none !important;
  }
  .university-logo:nth-child(n + 11) {
    border-bottom: none !important;
  }

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

  .stat-number {
    font-size: 20px;
  }

  .stat-icon {
    padding: 5px;
  }

  /* .university-logo:nth-child(-n + 6) {
    border-bottom: 1px dashed #ccc;
  } */
  /* .university-logo:last-child {
    border-bottom: none;
  } */
  .university-logo::after {
    content: "" !important;
  }

  .university-logo:nth-child(2)::after,
  .university-logo:nth-child(4)::after,
  .university-logo:nth-child(8)::after {
    content: "" !important;
  }

  .university-logo:nth-child(1)::after,
  .university-logo:nth-child(3)::after,
  .university-logo:nth-child(5)::after,
  .university-logo:nth-child(7)::after,
  .university-logo:nth-child(9)::after {
    content: "+" !important;
    position: absolute;
    bottom: -11px;
    right: -6px;
    font-size: 18px;
    font-weight: normal;
    color: #d9534f;
    z-index: 2;
  }
}

@media (max-width: 1400px) {
  .overlay-card {
    right: -20px;
  }
}

@media (max-width: 1300px) {
  .overlay-card {
    right: 0px;
  }

  .university-partners {
    padding: 60px 20px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .accreditations {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .courses-section {
    padding: 60px 0;
  }

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

  .course-image {
    height: 200px;
  }

  .course-label {
    font-size: 14px;
    padding: 15px 10px;
    min-height: 50px;
  }

  .university-partners h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #b6081d;
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .courses-container {
    padding: 0 15px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .green-border {
    top: 86px;
  }

  .course-image {
    height: 220px;
  }

  .course-label {
    font-size: 15px;
    padding: 18px 15px;
    min-height: 55px;
  }

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

  .stat-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .stat-content {
    text-align: center;
  }

  .university-partners h3 {
    margin-bottom: 40px !important;
  }

  .stat-icon {
    font-size: 24px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-text {
    font-size: 14px;
  }
}

/* Alumni Section Styles */
.alumni-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.alumni-section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #b6081d;
  margin-bottom: 50px;
}

.alumni-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.alumni-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.alumni-slider-container {
  overflow: hidden;
  /* border-radius: 12px; */
}

.alumni-grid {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 20px;
}

.alumni-slider {
  display: flex;
  transition: transform 0.3s ease;
}

.alumni-card {
  flex: 0 0 calc(25% - 15px); /* 4 cards per slide on desktop */
  min-width: 0;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  /* border-radius: 16px; */
  padding: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alumni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.alumni-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.alumni-prev-btn,
.alumni-next-btn {
  background-color: #b6081d;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(182, 8, 29, 0.3);
}

.alumni-prev-btn:hover,
.alumni-next-btn:hover {
  background-color: #940618;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 8, 29, 0.4);
}

.alumni-slider-indicators {
  display: flex;
  gap: 8px;
}

.alumni-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.alumni-indicator.active {
  background-color: #b6081d;
  border-color: #b6081d;
  transform: scale(1.2);
}

.alumni-image-wrapper {
  background-color: #f1f5f9;
  /* border-radius: 12px; */
  overflow: hidden;
  margin-bottom: 16px;
}

.alumni-image {
  width: 100%;
  height: auto;
  display: block;
  /* border-radius: 12px; */
}

.alumni-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.alumni-header {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  margin-bottom: 12px;
}

.alumni-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
}

.alumni-role {
  font-size: 14px;
  color: #718096;
}

.alumni-desc {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.alumni-meta {
  /* padding-top: 12px; */
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 13px;
  /* flex-wrap: wrap; */
  gap: 10px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item svg {
  width: 16px;
  height: 16px;
  color: #718096;
}

.alumni-company {
  font-weight: 500;
  color: #2d3748;
}

.alumni-batch {
  color: #718096;
}

.alumni-socials {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.alumni-socials a {
  color: #4a5568;
  transition: color 0.3s;
}

.alumni-socials a:hover {
  color: #1a202c;
}

/* Responsive Breakpoints */
@media (max-width: 1023px) {
  .alumni-card {
    flex: 0 0 calc(33.333% - 14px); /* 3 cards per slide on medium devices */
  }

  .alumni-section h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .alumni-card {
    flex: 0 0 calc(50% - 10px); /* 2 cards per slide on small devices */
  }

  .alumni-section h2 {
    font-size: 36px;
  }

  .alumni-container {
    padding: 0 15px;
  }
}

@media (max-width: 499px) {
  .alumni-container {
    padding: 0 15px;
  }

  .alumni-slider-wrapper {
    margin: 0 -15px;
    padding: 0 15px;
  }

  .alumni-card {
    flex: 0 0 calc(100vw - 30px); /* Full viewport width minus container padding */
    max-width: calc(100vw - 30px);
    margin: 0;
  }

  .alumni-grid {
    gap: 0; /* Remove gap on mobile to prevent overflow */
  }

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

  .alumni-section h2 {
    font-size: 32px;
  }

  .alumni-prev-btn,
  .alumni-next-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .alumni-slider-controls {
    gap: 15px;
    margin-top: 25px;
  }

  .overlay-card {
    max-width: 150px;
    margin-left: auto;
    bottom: -60px;
  }
}

/* Internal Immersions Section */
.immersions-section {
  padding: 0;
}

.immersions-section h2 {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #b6081d;
  margin-bottom: 50px;
}

.immersions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 600px;
}

.immersion-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.immersion-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.immersion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.immersion-card:hover img {
  transform: scale(1.05);
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .immersions-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .immersion-card.large {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .immersions-grid {
    grid-template-columns: 1fr;
  }
  .immersion-card.large {
    grid-column: span 1;
    height: 300px;
  }
}

/* Admission Process Section */

.admission-process-section {
  /* padding: 80px 0; */
  background-color: #fff;
}

.international-section {
  background-color: #ddd;
}

.international-section .container {
  background-color: #ddd;
}

.admission-process-section .container {
  padding: 80px 20px;
  max-width: 1350px;
  margin: 0 auto;
}

.admission-process-section .section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.admission-process-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #d4a017;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.international-section .process-steps {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  gap: 20px;
  padding-bottom: 15px; /* Add some space at the bottom */
}

.international-section .process-steps::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.international-section .step-card {
  flex: 0 0 calc(25% - 15px);
  width: calc(25% - 15px);
  scroll-snap-align: start;
}

.step-card {
  background-color: #0a2351;
  color: #ffffff;
  padding: 20px 15px;
  /* border-radius: 15px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.international-section .step-card {
  background-color: #fff;
  color: #000;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d4a017;
  padding: 15px;
  /* border-top-left-radius: 15px; */
  border-bottom-right-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.step-label span {
  font-size: 14px;
  font-weight: 600;
  color: #0a2351;
}

.step-label strong {
  font-size: 28px;
  font-weight: 700;
  color: #0a2351;
}

.step-icon {
  margin-bottom: 25px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.international-section .step-icon {
  margin-bottom: 0;
}

.step-icon img {
  width: 80px;
  height: 80px;
  max-width: 100%;
  max-width: 100%;
}

.international-section .step-icon img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  vertical-align: middle;
}

.international-section .step-title {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  vertical-align: middle;
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .international-section .process-steps {
    gap: 15px;
  }

  .international-section .step-card {
    flex-basis: calc(33.333% - 10px);
    width: calc(33.333% - 10px);
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .international-section .process-steps {
    gap: 15px;
  }

  .international-section .step-card {
    flex-basis: calc(50% - 7.5px);
    width: calc(50% - 7.5px);
  }
}

@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: repeat(1, 1fr);
  }

  .international-section .process-steps {
    gap: 15px;
  }

  .international-section .step-card {
    flex-basis: 100%;
    width: 100%;
  }
}

/* Slider Controls */
.international-section .slider-controls {
  display: none;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.slider-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background-color 0.3s ease;
}

.indicator.active {
  background-color: #d4a017;
}

/* Student Speak Section */
.student-speak-section {
  padding: 80px 0;
  background-color: #f7f7f7;
  background-image: radial-gradient(
    circle at 1px 1px,
    #b6081d 1px,
    transparent 0
  );
  background-size: 20px 20px;
}

.alumni-speak-section {
  background-color: #f8f9fa !important;
  background-image: none !important;
}

.student-speak-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.student-speak-container .section-title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #b6081d;
  margin-bottom: 50px;
}

.student-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -10px;
}

.student-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.student-video-card {
  flex: 0 0 25%;
  padding: 0 10px;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}

.video-thumbnail-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail-wrapper img {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.play-button::after {
  content: "▶";
  font-size: 24px;
  color: white;
  margin-left: 4px;
}

.student-video-card:hover .play-button {
  background-color: rgba(255, 0, 0, 0.8);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.slider-btn:hover {
  background-color: #b6081d;
  color: white;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.slider-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-indicators .indicator.active {
  background-color: #b6081d;
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s;
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  margin: 0;
  padding: 0;
  width: 80%;
  max-width: 900px;
  animation: slideIn 0.3s;
}

.video-modal-content iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.close-modal-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Breakpoints for Student Speak Slider */
@media (max-width: 1023px) {
  .student-video-card {
    flex: 0 0 33.333%;
  }
  .video-modal-content iframe {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .student-video-card {
    flex: 0 0 50%;
  }
  .student-speak-container .section-title {
    font-size: 32px;
  }
  .video-modal-content {
    width: 90%;
  }
  .video-modal-content iframe {
    height: 350px;
  }
}

@media (max-width: 499px) {
  .student-video-card {
    flex: 0 0 100%;
  }
  .video-modal-content iframe {
    height: 250px;
  }

  .international-section .process-steps {
    justify-content: unset;
  }

  .international-section .slider-controls {
    display: flex;
  }
}

/* Scholarship Banner Section */
.scholarship-banner-section {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  position: relative;
  margin-bottom: 60px;
}

.scholarship-banner-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 450px;
  position: relative;
}

/* Left Side - Image */
.scholarship-image-wrapper {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.scholarship-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

.scholarship-student-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scholarship-banner-section:hover .scholarship-student-img {
  transform: scale(1.02);
}

/* Diagonal Overlay Effect */
.diagonal-overlay {
  position: absolute;
  top: 0;
  right: -2px;
  width: 150px;
  height: 100%;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 3;
}

/* Right Side - Content */
.scholarship-content-wrapper {
  flex: 0 0 55%;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 60px 100px;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Pattern */
.scholarship-content-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.scholarship-content-wrapper::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.scholarship-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.scholarship-banner-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

/* Amount Box */
.scholarship-amount-box {
  display: inline-block;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 28px 45px;
  margin-bottom: 35px;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.scholarship-amount-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.scholarship-banner-section:hover .scholarship-amount-box::before {
  transform: translateX(100%);
}

.scholarship-amount {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1px;
  display: block;
}

.scholarship-amount sup {
  font-size: 28px;
  font-weight: 700;
  margin-left: 4px;
  color: #fbbf24;
}

/* Note Text */
.scholarship-banner-note {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 500px;
  font-weight: 400;
  letter-spacing: 0.3px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.scholarship-banner-note .asterisk {
  color: #fbbf24;
  font-weight: 700;
  margin-right: 4px;
  font-size: 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .scholarship-content-wrapper {
    padding: 50px 60px 50px 80px;
  }

  .scholarship-banner-title {
    font-size: 48px;
  }

  .scholarship-amount {
    font-size: 42px;
  }

  .scholarship-amount sup {
    font-size: 24px;
  }

  .scholarship-banner-note {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .scholarship-banner-container {
    min-height: 400px;
  }

  .scholarship-image-wrapper {
    flex: 0 0 40%;
  }

  .scholarship-content-wrapper {
    flex: 0 0 60%;
    padding: 40px 50px 40px 70px;
  }

  .scholarship-banner-title {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .scholarship-amount-box {
    padding: 24px 38px;
    margin-bottom: 30px;
  }

  .scholarship-amount {
    font-size: 38px;
  }

  .scholarship-banner-note {
    font-size: 15px;
  }

  .diagonal-overlay {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .scholarship-banner-container {
    flex-direction: column;
    min-height: auto;
  }

  .scholarship-image-wrapper {
    flex: 0 0 auto;
    height: 350px;
    width: 100%;
  }

  .diagonal-overlay {
    display: none;
  }

  .scholarship-content-wrapper {
    flex: 0 0 auto;
    padding: 50px 30px;
    text-align: center;
  }

  .scholarship-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .scholarship-banner-title {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .scholarship-amount-box {
    padding: 22px 35px;
    margin-bottom: 25px;
  }

  .scholarship-amount {
    font-size: 36px;
  }

  .scholarship-amount sup {
    font-size: 22px;
  }

  .scholarship-banner-note {
    font-size: 15px;
    text-align: center;
  }

  .scholarship-banner-section {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .scholarship-image-wrapper {
    height: 300px;
  }

  .scholarship-content-wrapper {
    padding: 40px 20px;
  }

  .scholarship-banner-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .scholarship-amount-box {
    padding: 18px 30px;
    margin-bottom: 20px;
  }

  .scholarship-amount {
    font-size: 32px;
  }

  .scholarship-amount sup {
    font-size: 20px;
  }

  .scholarship-banner-note {
    font-size: 14px;
    line-height: 1.6;
  }

  .scholarship-banner-note .asterisk {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .scholarship-image-wrapper {
    height: 250px;
  }

  .scholarship-content-wrapper {
    padding: 35px 15px;
  }

  .scholarship-banner-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .scholarship-amount-box {
    padding: 16px 25px;
  }

  .scholarship-amount {
    font-size: 28px;
  }

  .scholarship-amount sup {
    font-size: 18px;
  }

  .scholarship-banner-note {
    font-size: 13px;
  }
}

/* Smooth scroll reveal animation */
.scholarship-banner-section {
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.scholarship-banner-section.visible {
  opacity: 1;
}

/* Fixed Apply Now Button */
.fixed-apply-btn {
  transform: translateY(50%) rotate(-90deg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: fixed;
  bottom: 50%;
  right: -65.5px;
  background-color: #f5c643;
  color: black;
  padding: 15px 35px;
  /* border-radius: 50px; */
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  /* position: relative; */
  overflow: hidden;
}

.fixed-apply-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: flash 3s infinite 1s;
}

.fixed-apply-btn.show {
  opacity: 1;
  visibility: visible;
}

.fixed-apply-btn:hover {
  background-color: #ffcf4a;
  /* transform: translateY(-3px); */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .fixed-apply-btn {
    padding: 12px 70px;
    width: max-content;
    font-size: 14px;
    transform: translateX(50%) rotate(0deg);
    /* width: 100%; */
    text-align: center;
    bottom: 1px;
    right: 50%;
  }

  .fixed-apply-btn.show {
    transform: translateX(50%) rotate(0deg);
  }
}

@keyframes flash {
  0% {
    transform: translateX(-100%) skewX(-30deg);
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
  }
}

/* Scholarship Section Styles */
.scholarship-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 0;
}

.scholarship-section .container {
  background-color: transparent;
  padding: 0;
  margin: 0 auto;
  max-width: 1300px;
}

.scholarship-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.scholarship-title {
  font-size: 48px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  position: relative;
}

.scholarship-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

.criteria-box {
  display: inline-block;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #fbbf24;
  padding: 14px 28px;
  /* border-radius: 8px; */
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.15);
  transition: all 0.3s ease;
}

.criteria-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 41, 59, 0.25);
}

.scholarship-description {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

.scholarship-description em {
  font-style: italic;
  color: #64748b;
  /* font-size: 14px; */
}

.scholarship-table-container {
  background: white;
  /* border-radius: 16px; */
  padding: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.table-title {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  /* border-radius: 12px; */
  border: 1px solid #e2e8f0;
}

.table-wrapper {
  overflow-x: auto;
  /* border-radius: 12px; */
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.scholarship-table {
  width: 100%;
  border-collapse: collapse;
  /* font-size: 14px; */
  min-width: 1000px;
  background: white;
}

.scholarship-table thead {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.scholarship-table th {
  padding: 20px 16px;
  text-align: center;
  font-weight: 600;
  color: #1e293b;
  border-right: 1px solid #e2e8f0;
  /* font-size: 13px; */
  line-height: 1.5;
  white-space: nowrap;
}

.scholarship-table th:last-child {
  border-right: none;
}

.scholarship-table td {
  padding: 18px 16px;
  text-align: center;
  color: #374151;
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f8fafc;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.academic-table td:first-child {
  text-align: left !important;
}

.scholarship-table td:last-child {
  border-right: none;
}

.scholarship-table tbody tr:nth-child(even) {
  background: #fafbfc;
}

.scholarship-table tbody tr:nth-child(odd) {
  background: white;
}

.scholarship-table tbody tr:hover {
  background: #f0f9ff;
}

.scholarship-table tbody tr:hover td {
  color: #1e40af;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .scholarship-table-container {
    padding: 40px 30px;
  }

  .scholarship-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .scholarship-section {
    padding: 60px 0;
  }

  .scholarship-title {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .criteria-box {
    padding: 12px 24px;
    font-size: 15px;
  }

  .scholarship-description {
    font-size: 15px;
    padding: 0 15px;
  }

  .scholarship-table-container {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .table-title {
    font-size: 20px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .scholarship-table {
    font-size: 16px;
    min-width: 800px;
  }

  .scholarship-table th,
  .scholarship-table td {
    padding: 14px 10px;
  }

  .scholarship-table th {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .scholarship-title {
    font-size: 32px;
  }

  .scholarship-table-container {
    padding: 25px 15px;
    margin: 0 10px;
  }

  .table-title {
    font-size: 18px;
    padding: 10px;
  }

  .scholarship-table {
    /* font-size: 12px; */
    min-width: 700px;
  }

  .scholarship-table th,
  .scholarship-table td {
    padding: 12px 8px;
  }

  .scholarship-header {
    padding: 0 20px;
  }

  /* .scholarship-table th {
    font-size: 11px;
  } */
}

/* Academic Table Responsive Design */
@media (max-width: 1200px) {
  .academic-table {
    font-size: 15px;
    min-width: 850px;
  }

  .academic-table th,
  .academic-table td {
    padding: 18px 16px;
  }

  .criteria-cell {
    padding: 20px 16px;
  }
}

@media (max-width: 768px) {
  .academic-table {
    font-size: 14px;
    min-width: 750px;
  }

  .academic-table th {
    font-size: 13px;
    padding: 16px 12px;
  }

  .academic-table td {
    padding: 16px 12px;
  }

  .criteria-cell {
    padding: 18px 12px;
    /* font-size: 13px; */
  }

  .amount-cell {
    font-size: 14px;
  }

  .total-cell {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .academic-table {
    font-size: 13px;
    min-width: 650px;
  }

  .academic-table th {
    font-size: 12px;
    padding: 14px 10px;
  }

  .academic-table td {
    padding: 14px 10px;
  }

  .criteria-cell {
    padding: 16px 10px;
    /* font-size: 12px; */
  }

  .amount-cell {
    font-size: 13px;
  }

  .total-cell {
    font-size: 14px;
  }
}

/* Animation classes for JavaScript */
.scholarship-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scholarship-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.scholarship-table tbody tr {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInRow 0.6s ease forwards;
}

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

/* Active row state */
.scholarship-table tbody tr.active {
  background: #f0f9ff !important;
}

/* Enhanced mobile interactions */
@media (max-width: 768px) {
  .scholarship-table tbody tr {
    cursor: pointer;
  }
}

/* Smooth transitions for interactive elements */
.criteria-box {
  transition: all 0.3s ease;
}

/* Focus states for accessibility */
.criteria-box:focus,
.scholarship-table tbody tr:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Academic Background Scholarship Table Styles */
.scholarship-section .container + .container {
  margin-top: 40px;
}

.academic-table {
  font-size: 16px;
  min-width: 900px;
}

.academic-table th {
  padding: 24px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-right: 1px solid #e2e8f0;
  text-align: center;
}

.academic-table th:first-child {
  text-align: left;
  width: 50%;
}

.academic-table th:last-child {
  border-right: none;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  color: #0369a1;
  font-weight: 700;
}

.academic-table td {
  padding: 20px;
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f8fafc;
  transition: background-color 0.3s ease;
}

.academic-table td:last-child {
  border-right: none;
}

.criteria-cell {
  text-align: left;
  color: #374151;
  font-weight: 500;
  line-height: 1.6;
  padding: 24px 20px;
}

.amount-cell {
  text-align: center;
  color: #059669;
  font-weight: 600;
  font-size: 15px;
  padding: 20px;
}

.total-cell {
  text-align: center;
  color: #0369a1;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 20px;
}

.academic-table tbody tr:nth-child(even) {
  background: #fafbfc;
}

.academic-table tbody tr:nth-child(odd) {
  background: white;
}

.academic-table tbody tr:hover {
  background: #f0f9ff;
}

.academic-table tbody tr:hover .criteria-cell {
  color: #1e40af;
}

.academic-table tbody tr:hover .amount-cell {
  color: #047857;
}

.academic-table tbody tr:hover .total-cell {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
}

/* Alumni Testimonials Section */
.alumni-testimonials-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  /* padding: 80px 0; */
  position: relative;
  overflow: hidden;
}

.alumni-testimonials-section .container {
  background: none;
}

.alumni-testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.alumni-testimonials-section .container {
  position: relative;
  z-index: 2;
  padding: 0;
}

.alumni-header {
  text-align: center;
  margin-bottom: 60px;
}

.alumni-header .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Alumni Slider Container */
.alumni-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.alumni-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0;
}

.alumni-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
  touch-action: pan-y;
  will-change: transform;
  width: 100%;
  flex-wrap: nowrap;
}

.alumni-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  background: white;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.alumni-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.alumni-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #e2e8f0;
}

.alumni-card:hover::before {
  opacity: 1;
}

.alumni-image-container {
  margin-bottom: 20px;
  position: relative;
}

.alumni-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f8fafc;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.alumni-card:hover .alumni-image {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #e2e8f0;
}

.alumni-info {
  width: 100%;
}

.alumni-name {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.alumni-designation {
  font-size: 15px;
  color: #3b82f6;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

.company-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.alumni-card:hover .company-logo {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: #bfdbfe;
}

.company-logo-img {
  height: 25px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.alumni-card:hover .company-logo-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  opacity: 0.8;
  pointer-events: auto;
  user-select: none;
}

.slider-nav:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  color: #1e40af;
}

.slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.slider-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.slider-nav:disabled:hover {
  transform: translateY(-50%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Slider Pagination */
.slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pagination-dot:hover {
  background: #94a3b8;
  transform: scale(1.2);
}

.pagination-dot.active {
  background: #3b82f6;
  transform: scale(1.3);
}

.pagination-dot.active::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

/* Alumni Slider Responsive Design */
@media (max-width: 1200px) {
  .alumni-slider-container {
    padding: 0 60px;
  }

  .alumni-card {
    flex: 0 0 calc(33.333% - 13.333px);
  }

  .alumni-slider {
    gap: 20px;
  }

  .alumni-header .section-title {
    font-size: 38px;
  }

  .slider-nav {
    width: 45px;
    height: 45px;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }
}

@media (max-width: 768px) {
  .alumni-testimonials-section {
    padding: 60px 0;
  }

  .alumni-header {
    margin-bottom: 50px;
  }

  .alumni-header .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .alumni-slider-container {
    padding: 0 40px;
  }

  .alumni-card {
    flex: 0 0 calc(50% - 10px);
  }

  .alumni-slider {
    gap: 20px;
  }

  .alumni-card {
    padding: 25px 15px;
  }

  .alumni-image {
    width: 80px;
    height: 80px;
  }

  .alumni-name {
    font-size: 18px;
  }

  .alumni-designation {
    font-size: 14px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }

  .slider-pagination {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .alumni-testimonials-section {
    padding: 50px 0;
  }

  .alumni-header {
    margin-bottom: 40px;
  }

  .alumni-header .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
    padding: 0 20px;
  }

  .alumni-slider-container {
    padding: 0 40px;
    margin: 0 auto;
    max-width: 100%;
  }

  .alumni-slider-wrapper {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .alumni-card {
    flex: 0 0 100%;
    padding: 25px 20px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .alumni-slider {
    gap: 20px;
    width: 100%;
  }

  .alumni-image {
    width: 90px;
    height: 90px;
  }

  .alumni-name {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .alumni-designation {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .company-logo {
    padding: 8px 12px;
  }

  .company-logo-img {
    height: 50px;
    max-width: 120px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    opacity: 0.9;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }

  .slider-pagination {
    margin-top: 30px;
    gap: 8px;
  }

  .pagination-dot {
    width: 8px;
    height: 8px;
  }

  .pagination-dot.active {
    transform: scale(1.2);
  }
}

/* Criteria-3 Table Specific Styles */
.criteria-3-table {
  font-size: 15px;
  min-width: 900px;
}

.criteria-3-table th {
  padding: 20px 16px;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-right: 1px solid #e2e8f0;
  text-align: center;
}

.criteria-3-table th:first-child {
  text-align: center;
  width: 25%;
}

.criteria-3-table th:nth-child(2) {
  width: 35%;
}

.criteria-3-table th:last-child {
  border-right: none;
  width: 40%;
}

.criteria-3-table td {
  padding: 20px 18px;
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f8fafc;
  transition: background-color 0.3s ease;
  vertical-align: middle;
}

.criteria-3-table td:last-child {
  border-right: none;
}

.institution-cell {
  text-align: center;
  color: #1e40af;
  font-weight: 600;
  font-size: 15px;
}

.eligibility-cell {
  text-align: center;
  color: #374151;
  font-weight: 500;
  line-height: 1.6;
}

.scholarship-amount-cell {
  text-align: center;
  color: #374151;
  font-weight: 500;
  line-height: 1.6;
}

.scholarship-amount-cell strong {
  color: #059669;
  font-weight: 700;
  font-size: 16px;
}

.criteria-3-table tbody tr:nth-child(even) {
  background: #fafbfc;
}

.criteria-3-table tbody tr:nth-child(odd) {
  background: white;
}

.criteria-3-table tbody tr:hover {
  background: #f0f9ff;
}

.criteria-3-table tbody tr:hover .institution-cell {
  color: #1e40af;
  transform: scale(1.02);
}

.criteria-3-table tbody tr:hover .scholarship-amount-cell strong {
  color: #047857;
}

/* President Scholarship Banner */
.president-scholarship-banner {
  margin-top: 40px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 25px 35px;
  border-left: 5px solid #fbbf24;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.president-scholarship-text {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.president-scholarship-text .highlight-text {
  color: #fbbf24;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.president-scholarship-text .highlight-amount {
  color: #fbbf24;
  font-weight: 800;
  font-size: 20px;
  padding: 0 4px;
}

/* Scholarship Notes */
.scholarship-notes {
  margin-top: 30px;
  padding: 25px 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-left: 4px solid #3b82f6;
  border-radius: 0;
}

.notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notes-list li {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 25px;
  position: relative;
}

.notes-list li:last-child {
  margin-bottom: 0;
}

.note-bullet {
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
  font-size: 18px;
}

/* Criteria-3 Responsive Design */
@media (max-width: 1200px) {
  .criteria-3-table {
    font-size: 14px;
    min-width: 850px;
  }

  .criteria-3-table th,
  .criteria-3-table td {
    padding: 18px 14px;
  }

  .president-scholarship-text {
    font-size: 16px;
  }

  .president-scholarship-text .highlight-amount {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .criteria-3-table {
    font-size: 13px;
    min-width: 750px;
  }

  .criteria-3-table th {
    font-size: 13px;
    padding: 16px 12px;
  }

  .criteria-3-table td {
    padding: 16px 12px;
  }

  .institution-cell,
  .eligibility-cell {
    font-size: 14px;
  }

  .scholarship-amount-cell strong {
    font-size: 15px;
  }

  .president-scholarship-banner {
    padding: 20px 25px;
    margin-top: 30px;
    margin-bottom: 25px;
  }

  .president-scholarship-text {
    font-size: 15px;
  }

  .president-scholarship-text .highlight-amount {
    font-size: 18px;
  }

  .scholarship-notes {
    padding: 20px 25px;
  }

  .notes-list li {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {
  .criteria-3-table {
    font-size: 12px;
    min-width: 650px;
  }

  .criteria-3-table th {
    font-size: 12px;
    padding: 14px 10px;
  }

  .criteria-3-table td {
    padding: 14px 10px;
  }

  .institution-cell,
  .eligibility-cell {
    font-size: 13px;
  }

  .scholarship-amount-cell strong {
    font-size: 14px;
  }

  .president-scholarship-banner {
    padding: 18px 20px;
    border-left-width: 3px;
  }

  .president-scholarship-text {
    font-size: 14px;
  }

  .president-scholarship-text .highlight-amount {
    font-size: 17px;
  }

  .scholarship-notes {
    padding: 18px 20px;
    border-left-width: 3px;
  }

  .notes-list li {
    font-size: 13px;
    margin-bottom: 12px;
    padding-left: 20px;
  }

  .note-bullet {
    font-size: 16px;
  }
}

/* Alumni Section Animation Classes */
.alumni-testimonials-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.alumni-testimonials-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.alumni-card {
  opacity: 0;
  transform: translateY(20px);
  animation: slideInCard 0.6s ease forwards;
}

@keyframes slideInCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Active card state */
.alumni-card.active {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.alumni-card.active::before {
  opacity: 1;
}

/* Focus states for accessibility */
.alumni-card:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 4px;
}

/* Smooth transitions for all interactive elements */
.alumni-card,
.alumni-image,
.company-logo,
.company-logo-img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* LBSIM Rankings & Accolades Section */
      .accolades-section {
        /* opacity: 0.8; */

        padding: 80px 0;
        background-image: url("images/LBSIM\ Campus.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        font-family: "Helvetica Neue", Arial, sans-serif;
        position: relative;
      }
      .accolades-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
      }

      .accolades-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0f33b4;
        opacity: 0.85;
        /* z-index: 1; */
      }

      .accolades-container h2 {
        text-align: center;
        font-size: 40px;
        font-weight: bold;
        color: #fff;
        margin-bottom: 50px;
      }

      .accolades-grid {
        display: grid;
        grid-template-columns: 1fr repeat(5, 1.5fr);
        align-items: center;
        text-align: center;
        gap: 60px 20px;
        color: #f7b500;
      }
      .accolade-header {
        font-weight: 700;
        font-size: 28px;
        letter-spacing: 0.5px;
      }
      .accolade-region {
        font-weight: 700;
        font-size: 40px;
        text-align: left;
        line-height: 1.2;
      }
      .accolade-card {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #fff;
      }
      .award-image {
        width: 140px;
        height: auto;
      }
      .accolade-rank {
        position: absolute;
        font-size: 38px;
        font-weight: 700;
        color: #fff;
        transform: translateY(-10px);
      }
      .accolade-rank sup {
        font-size: 20px;
        font-weight: 600;
        margin-left: 2px;
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
        .accolades-grid {
          grid-template-columns: 1fr repeat(5, 1fr);
          gap: 30px 15px;
        }
        .award-image {
          width: 120px;
        }
        .accolade-rank {
          font-size: 32px;
        }
        .accolade-rank sup {
          font-size: 18px;
        }
        .accolade-region {
          font-size: 22px;
        }
      }
      @media (max-width: 768px) {
        .accolades-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 40px 20px;
        }
        .accolade-header {
          display: none;
        }
        .accolade-region {
          grid-column: 1 / -1;
          text-align: center;
          margin-bottom: -10px;
        }
        .accolade-card {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 12px;
        }
        .accolade-card::after {
          content: attr(data-publication);
          font-weight: 600;
          font-size: 12px;
          line-height: 1.2;
        }

        .accolade-rank {
          transform: translateY(-20px);
        }

        .accolades-container h2 {
          font-size: 32px !important;
        }
      }