/* Global Font Family */
body {
  font-family: "Montserrat", sans-serif;
}

/* Header Styles */
.top-bar {
  background-color: var(--gray-light);
  height: 4px;
  width: 100%;
}

.navbar {
  padding: 1rem 0;
  border-bottom: none;
  box-shadow: none;
}

.navbar .container {
  display: flex;
  align-items: center;
  position: relative;
}

.navbar-brand {
  padding: 0;
  flex-shrink: 0;
  margin-right: 0;
}

.navbar-toggler {
  order: 3;
  margin-left: auto;
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
  flex: 1;
  align-items: center;
  position: relative;
  flex-basis: auto;
  min-width: 0;
}

/* Show navbar-collapse on desktop */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
  }
}

.navbar-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.nav-link.active:hover {
  color: var(--primary-hover) !important;
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
}

.navbar-actions {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  gap: 0.5rem;
  z-index: 1;
}

.navbar-actions .btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .navbar .container {
    flex-wrap: wrap;
  }

  .navbar-toggler {
    order: 2;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
  }

  .navbar-collapse {
    flex-basis: 100% !important;
    order: 3;
    margin-top: 1rem;
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: auto;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: flex !important;
  }

  .navbar-nav {
    position: static !important;
    transform: none !important;
    top: auto;
    left: auto;
    width: 100%;
    flex-direction: column !important;
    align-items: center;
    margin-bottom: 1rem;
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .navbar-actions {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    z-index: auto;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .navbar-actions .btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Button Styles */
.btn.rounded-pill {
  border-radius: 50px !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.bg-primary-custom:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-1px);
}

.btn.border-dark-custom:hover {
  background-color: var(--dark-color) !important;
  color: var(--light-color) !important;
  border-color: var(--dark-color) !important;
}

/* Hero Banner Styles */
.hero-banner {
  background-color: var(--light-color);
}

/* Section 1: Text Content */
.hero-content-section {
  background-color: var(--light-color);
  padding-top: 100px !important;
  /* padding-bottom: 150px !important; */
}

.hero-heading {
  color: #252525;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--dark-color);
}

.btn-explore {
  font-size: 18px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  padding-left: 14px;
  padding-right: 4px;
  width: 200px;
}

.btn-explore:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 128, 102, 0.3);
}

.arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 2px;
}

.arrow-icon i {
  color: var(--primary-color);
  font-size: 10px;
}

.explore-now-image {
  width: 52px;
  height: 52px;
  display: inline-block;
  object-fit: contain;
}

/* Section 2: Images Row */
.hero-images-section {
  background-color: var(--light-color);
  padding: 80px 0;
  padding-bottom: 150px !important;
  position: relative;
}

/* Hide hero images section on screens up to 1440px */
@media (max-width: 1200px) {
  .hero-images-section {
    display: none;
  }
}

.hero-images-row {
  position: relative;
}

/* Override Bootstrap row for hero images on larger screens */
@media (min-width: 992px) {
  .hero-images-row {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }

  .hero-images-row > [class*="col-"] {
    flex: 0 0 auto;
    width: auto;
    padding: 0;
  }
}

.hero-img-item {
  width: 180px;
  height: 300px;
  filter: grayscale(100%);
  opacity: 0.9;
  position: relative;
  top: -80px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.hero-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 150px;
  /* Creates oval/stadium shape */
}

/* Specific top positions for outer images - Desktop */
.hero-img-1,
.hero-img-5 {
  top: -200px;
}

.hero-img-3 {
  top: -20px;
}

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
  .hero-img-item {
    width: 200px;
    height: 340px;
    top: -90px;
  }

  .hero-img-1,
  .hero-img-5 {
    top: -275px;
  }

  .hero-img-3 {
    top: -25px;
  }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-img-item {
    width: 180px;
    height: 300px;
    top: -80px;
  }

  .hero-img-1,
  .hero-img-5 {
    top: -275px;
  }

  .hero-img-3 {
    top: -20px;
  }
}

/* Large Tablet (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-img-item {
    width: 140px;
    height: 230px;
    top: -60px;
  }

  .hero-img-1,
  .hero-img-5 {
    top: -150px;
  }

  .hero-img-3 {
    top: -15px;
  }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-section {
    padding: 60px 0;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-images-section {
    padding: 60px 0;
  }

  .hero-img-item {
    width: 110px;
    height: 180px;
    top: -50px;
  }

  .hero-img-1,
  .hero-img-5 {
    top: -120px;
  }

  .hero-img-3 {
    top: -10px;
  }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-content-section {
    padding: 50px 0;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .btn-explore {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }

  .explore-now-image {
    width: 52px;
    height: 52px;
  }

  .hero-images-section {
    padding: 50px 0;
  }

  .hero-img-item {
    width: 90px;
    height: 145px;
    opacity: 0.85;
    top: -40px;
  }

  .hero-img-1,
  .hero-img-5 {
    top: -100px;
  }

  .hero-img-3 {
    top: -8px;
  }
}

/* Mobile (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
  .hero-content-section {
    padding: 40px 0;
  }

  .hero-heading {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .explore-now-image {
    width: 52px;
    height: 52px;
  }

  .hero-images-section {
    padding: 40px 0;
  }

  .hero-img-item {
    width: 75px;
    height: 120px;
    opacity: 0.8;
    top: -35px;
  }

  .hero-img-1,
  .hero-img-5 {
    top: -85px;
  }

  .hero-img-3 {
    top: -5px;
  }
}

/* Mobile Small (below 480px) */
@media (max-width: 479px) {
  .hero-content-section {
    padding: 40px 0;
  }

  .hero-heading {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .explore-now-image {
    width: 45px;
    height: 45px;
  }

  .hero-images-section {
    padding: 40px 0;
  }

  .hero-img-item {
    width: 60px;
    height: 95px;
    opacity: 0.75;
    top: -25px;
  }

  .hero-img-1,
  .hero-img-5 {
    top: -65px;
  }

  .hero-img-3 {
    top: -3px;
  }
}

/* Statistics Section */
.statistics-section {
  background-image: url("../Images/statBg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 101px !important;
  padding-bottom: 101px !important;
  position: relative;
}

.statistics-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.stat-item {
  padding: 20px;
}

.stat-icon-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.stat-icon i {
  font-size: 2rem;
  color: var(--primary-dark);
  /* Dark orange color for graduation cap */
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1rem;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

/* Responsive Styles for Statistics */
@media (max-width: 992px) {
  .statistics-section {
    padding: 60px 0;
  }

  .statistics-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
  }

  .stat-icon i {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .statistics-section {
    padding: 50px 0;
  }

  .statistics-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .statistics-section {
    padding: 40px 0;
  }

  .statistics-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .stat-icon {
    width: 55px;
    height: 55px;
  }

  .stat-icon i {
    font-size: 1.25rem;
  }
}

/* Benefits Section */
.benefits-section {
  background-color: var(--light-color);
  padding-top: 150px !important;
  /* padding-bottom: 150px !important; */
}

.benefits-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.benefit-card {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-border);
}

.benefit-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.benefit-card:hover .benefit-title {
  color: var(--light-color) !important;
}

.benefit-card:hover .benefit-description {
  color: var(--light-color) !important;
}

.benefit-card:hover .benefit-icon-dark {
  background-color: var(--light-color);
}

.benefit-card:hover .benefit-icon-dark i {
  color: var(--primary-color);
}

.benefit-card:hover .benefit-icon-white {
  background-color: var(--light-color);
}

.benefit-card:hover .benefit-icon-white i {
  color: var(--primary-color);
}

.benefit-card-highlight {
  background-color: var(--light-color);
  border: 1px solid var(--gray-border);
}

.benefit-card-highlight .benefit-title {
  color: var(--dark-color) !important;
}

.benefit-card-highlight .benefit-description {
  color: var(--dark-color) !important;
}

.benefit-icon-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.benefit-icon-dark {
  background-color: var(--dark-color);
}

.benefit-icon-dark i {
  color: var(--light-color);
  font-size: 1.75rem;
}

.benefit-icon-white {
  background-color: var(--light-color);
}

.benefit-icon-white i {
  color: var(--primary-color);
  font-size: 1.75rem;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.benefit-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.btn-view-all {
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background-color: var(--dark-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 37, 37, 0.3);
}

.btn-view-all-events {
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-view-all-events:hover {
  background-color: var(--dark-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 37, 37, 0.3);
  color: var(--light-color) !important;
}

/* Responsive Styles for Benefits */
@media (max-width: 992px) {
  .benefits-section {
    padding: 60px 0;
  }

  .benefits-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .benefit-card {
    padding: 25px;
  }

  .benefit-title {
    font-size: 1.375rem;
  }

  .benefit-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 50px 0;
  }

  .benefits-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .benefit-card {
    padding: 20px;
    margin-bottom: 1.5rem;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon-dark i,
  .benefit-icon-white i {
    font-size: 1.5rem;
  }

  .benefit-title {
    font-size: 1.25rem;
  }

  .benefit-description {
    font-size: 0.9rem;
  }

  .btn-view-all {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }
}

@media (max-width: 576px) {
  .benefits-section {
    padding: 40px 0;
  }

  .benefits-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefit-icon {
    width: 55px;
    height: 55px;
  }

  .benefit-icon-dark i,
  .benefit-icon-white i {
    font-size: 1.25rem;
  }

  .benefit-title {
    font-size: 1.125rem;
  }

  .benefit-description {
    font-size: 0.85rem;
  }
}

/* Events Section */
.events-section {
  background-color: var(--light-color);
  padding: 80px 0;
  position: relative;
}

.events-section .container {
  position: relative;
}

.events-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.events-title span {
  display: inline-block;
}

.events-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--dark-color);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.event-card {
  background-color: var(--footer-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.event-card:hover {
}

.event-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 15px 15px 0 0;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 15px 15px 0 0;
}

.event-card:hover .event-image {
  transform: scale(1.05);
}

.event-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--footer-bg);
}

.event-title {
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.event-description {
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.event-location {
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-title-text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.context-description-text {
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.event-details {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.event-detail-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.event-detail-item i {
  font-size: 1rem;
}

/* Navigation Arrows */
.events-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: none;
  opacity: 1;
}

.events-nav-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-50%) scale(1.05);
  box-shadow: none;
  opacity: 1;
}

.events-nav-btn i {
  color: var(--light-color);
  font-weight: 600;
}

.events-nav-btn:focus {
  box-shadow: none;
  opacity: 1;
}

.events-nav-prev {
  left: -25px;
}

.events-nav-next {
  right: -25px;
}

/* Carousel Controls Override */
.carousel-control-prev,
.carousel-control-next {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

/* Slow down carousel transition */
#eventsCarousel .carousel-inner {
  transition: transform 0.8s ease-in-out;
}

#eventsCarousel .carousel-item {
  transition: transform 0.8s ease-in-out;
}

/* Responsive Styles for Events */
@media (max-width: 1200px) {
  .events-nav-prev {
    left: -15px;
  }

  .events-nav-next {
    right: -15px;
  }

  .events-nav-btn {
    width: 25px;
    height: 25px;
    font-size: 0.75rem;
  }
}

@media (max-width: 991px) {
  .events-section {
    padding: 60px 0;
  }

  .events-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .events-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .event-image-wrapper {
    height: 220px;
  }

  .event-content {
    padding: 20px;
  }

  .event-title {
    font-size: 1.375rem;
  }

  .event-description {
    font-size: 0.95rem;
  }

  .events-nav-prev {
    left: 0;
  }

  .events-nav-next {
    right: 0;
  }

  /* Show only first card on tablet, hide others */
  .carousel-item .row > div:not(:first-child) {
    display: none;
  }

  .carousel-item .row > div:first-child {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 50px 0;
  }

  .events-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .events-description {
    font-size: 0.95rem;
  }

  .event-image-wrapper {
    height: 200px;
  }

  .event-content {
    padding: 18px;
  }

  .event-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .event-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .event-detail-item {
    font-size: 0.9rem;
  }

  .events-nav-btn {
    width: 25px;
    height: 25px;
    font-size: 0.75rem;
  }

  .events-nav-prev {
    left: 0;
  }

  .events-nav-next {
    right: 0;
  }

  /* Ensure only 1 card shows on mobile */
  .carousel-item .row > div:not(:first-child) {
    display: none;
  }

  .carousel-item .row > div:first-child {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .carousel-item .row {
    margin: 0;
  }
}

@media (max-width: 576px) {
  .events-section {
    padding: 40px 0;
  }

  .events-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .events-description {
    font-size: 0.9rem;
  }

  .event-image-wrapper {
    height: 180px;
  }

  .event-content {
    padding: 15px;
  }

  .event-title {
    font-size: 1.125rem;
  }

  .event-description {
    font-size: 0.85rem;
  }

  .event-detail-item {
    font-size: 0.85rem;
  }

  .events-nav-btn {
    width: 25px;
    height: 25px;
    font-size: 0.75rem;
  }

  .events-nav-prev {
    left: 0;
  }

  .events-nav-next {
    right: 0;
  }

  /* Mobile: Only show 1 card, centered */
  .carousel-item .row {
    justify-content: center;
  }

  .carousel-item .row > div:first-child {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Register Section */
.register-section {
  padding-bottom: 150px !important;
  padding-top: 150px !important;
  background-color: var(--light-color);
}

.register-banner {
  background-color: var(--primary-color);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(238, 128, 102, 0.2);
  padding: 30px;
}

.register-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.register-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.register-content {
  padding: 40px 30px;
}

.register-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.register-description {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.95;
}

.btn-register {
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-register:hover {
  background-color: var(--gray-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Right Top Image */
.register-right-image {
  position: absolute;
  top: 10px;
  right: 0;
  pointer-events: none;
  z-index: 1;
}

.register-right-img {
  width: 123px;
  height: 86px;
  display: block;
  object-fit: contain;
}

/* Responsive Styles for Register Section */
@media (max-width: 992px) {
  .register-section {
    padding: 60px 0;
  }

  .register-content {
    padding: 40px 30px;
  }

  .register-title {
    font-size: 2rem;
  }

  .register-description {
    font-size: 1rem;
  }

  .register-image-wrapper {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .register-section {
    padding: 50px 0;
  }

  .register-banner {
    border-radius: 15px;
  }

  .register-content {
    padding: 30px 25px;
  }

  .register-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .register-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn-register {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }

  .register-image-wrapper {
    min-height: 250px;
  }

  .register-right-img {
    width: 100px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .register-section {
    padding: 40px 0;
  }

  .register-content {
    padding: 25px 20px;
  }

  .register-title {
    font-size: 1.5rem;
  }

  .register-description {
    font-size: 0.9rem;
  }

  .register-image-wrapper {
    min-height: 200px;
  }

  .register-right-img {
    width: 80px;
    height: 56px;
  }
}

/* Footer Section */
.footer-section {
  background-color: var(--footer-bg-custom);
  padding: 0;
}

.footer-top {
  padding: 40px 0;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color) !important;
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-color);
  color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-3px);
}

.footer-divider {
  height: 1px;
  background-color: var(--gray-divider);
  width: 100%;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-copyright {
  font-size: 0.95rem;
  font-weight: 400;
}

/* Responsive Styles for Footer */
@media (max-width: 992px) {
  .footer-top {
    padding: 30px 0;
  }

  .footer-nav {
    justify-content: center;
    gap: 2rem;
  }

  .footer-social {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 25px 0;
  }

  .footer-logo img {
    height: 65px;
    width: auto;
    max-width: 100%;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-link {
    font-size: 0.95rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .footer-copyright {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .footer-top {
    padding: 20px 0;
  }

  .footer-logo img {
    height: 70px;
    width: auto;
    max-width: 100%;
  }

  .footer-nav {
    gap: 0.75rem;
  }

  .footer-social {
    gap: 0.75rem;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }
}

/* Featured Alumni Section */
.featured-section {
  background-color: transparent;
  padding-top: 150px !important;
  overflow: visible;
}

#featuredCarousel .carousel-inner {
  overflow: visible;
  margin-top: 119px;
}

.featured-header {
  margin-bottom: 30px;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.featured-nav-btn {
  background: none;
  border: none;
  color: var(--gray-text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-nav-btn:hover {
  color: var(--primary-color);
}

.featured-indicators-custom {
  position: static;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 5px;
  list-style: none;
  padding: 0;
  z-index: 10;
}

.featured-indicators-custom button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  text-indent: 0;
  pointer-events: auto !important;
  position: relative;
  z-index: 11;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-indicators-custom button:hover {
  opacity: 0.8;
}

.featured-indicators-custom button.active {
  opacity: 1;
}

.featured-indicator-img {
  display: block;
  object-fit: contain;
  transition: all 0.3s ease;
}

.featured-card {
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 30px;
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease;
  overflow: visible;
}

/* Background images applied via JavaScript based on position */
.featured-card-first {
  background-image: url("../Images/featured1.html");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.featured-card-active {
  background-image: url("../Images/featured3.html");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  height: 433px;
}

.featured-card-third {
  background-image: url("../Images/featured2.html");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.featured-image-wrapper {
  text-align: center;
  margin-top: -190px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.featured-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}

.featured-content {
  position: relative;
  z-index: 1;
}

.featured-name {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.featured-title-text {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  opacity: 0.7;
}

.featured-batch {
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
  opacity: 0.7;
}

.featured-description {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  opacity: 0.8;
  margin-bottom: 0;
  padding: 0px 35px;
}

/* Show 3 cards per row - Desktop (keep original structure) */
#featuredCarousel .carousel-item .row > div {
  display: block !important;
}

/* Show only 1 card per view on tablets and below (max-width 1024px) */
@media (max-width: 1024px) {
  #featuredCarousel .carousel-item .row > div:not(:first-child) {
    display: none !important;
  }

  #featuredCarousel .carousel-item .row > div:first-child {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    flex: 0 0 100% !important;
  }

  #featuredCarousel .carousel-item .row {
    justify-content: center !important;
  }
}

/* Responsive Styles for Featured Section */
@media (max-width: 991px) {
  .featured-section {
    padding: 60px 0;
  }

  .featured-title {
    font-size: 2rem;
  }

  .featured-card {
    padding: 25px;
    margin-bottom: 2rem;
  }

  /* Card width adjustment for tablet */
  #featuredCarousel .carousel-item .row > div:first-child {
    max-width: 500px !important;
  }

  /* Adjust featured image wrapper margin-top */
  .featured-image-wrapper {
    margin-top: -95px !important;
  }
}

@media (max-width: 768px) {
  .featured-section {
    padding: 50px 0;
  }

  .featured-title {
    font-size: 1.75rem;
  }

  .featured-nav-btn {
    font-size: 1.25rem;
    width: 25px;
    height: 25px;
  }

  .featured-card {
    padding: 20px;
  }

  .featured-image {
    width: 120px;
    height: 120px;
  }

  .featured-name {
    font-size: 1.25rem;
  }

  .featured-description {
    font-size: 0.9rem;
  }

  /* Card width adjustment for mobile */
  #featuredCarousel .carousel-item .row > div:first-child {
    max-width: 100% !important;
  }

  .carousel-item .row {
    margin: 0;
  }
}

@media (max-width: 576px) {
  .featured-section {
    padding: 40px 0;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  .featured-header {
    gap: 1.5rem;
  }

  .featured-indicators-custom {
    gap: 5px;
  }

  .featured-image {
    width: 100px;
    height: 100px;
  }

  .featured-name {
    font-size: 1.125rem;
  }

  .featured-title-text,
  .featured-batch {
    font-size: 0.9rem;
  }

  .featured-description {
    font-size: 0.85rem;
  }

  /* Card width adjustment for small mobile */
  #featuredCarousel .carousel-item .row > div:first-child {
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Login Modal Styles */
.login-modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.login-modal-header {
  border-bottom: none;
  padding: 30px 30px 10px 30px;
  position: relative;
}

.login-modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
  text-align: center;
  width: 100%;
}

.login-modal-header .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 1;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  padding: 0;
  width: auto;
  height: auto;
}

.login-modal-body {
  padding: 10px 30px 30px 30px;
}

.login-modal-subtitle {
  color: var(--gray-text);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 25px;
}

.login-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.login-input {
  border-radius: 10px;
  border: 1px solid var(--gray-border);
  padding: 12px 15px;
  font-size: 0.95rem;
  color: var(--dark-color);
  background-color: var(--gray-light);
}

.login-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(238, 128, 102, 0.15);
  background-color: var(--light-color);
}

.password-input-wrapper {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-text);
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
}

.password-toggle-btn:hover {
  color: var(--dark-color);
}

.login-checkbox-label {
  color: var(--dark-color);
  font-size: 0.9rem;
  font-weight: 400;
}

.login-forgot-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.login-forgot-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.login-submit-btn {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.login-submit-btn:hover {
  background-color: var(--primary-hover);
  color: var(--light-color);
}

.login-register-text {
  color: var(--dark-color);
  font-size: 0.9rem;
}

.login-register-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  margin-left: 5px;
}

.login-register-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(238, 128, 102, 0.15);
}

/* Register Modal Styles */
.register-modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.register-modal-header {
  border-bottom: none;
  padding: 30px 30px 10px 30px;
  position: relative;
}

.register-modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
  text-align: center;
  width: 100%;
}

.register-modal-header .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 1;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  padding: 0;
  width: auto;
  height: auto;
}

.register-modal-body {
  padding: 10px 30px 30px 30px;
  max-height: 80vh;
  overflow-y: auto;
}

.register-modal-subtitle {
  color: var(--gray-text);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 25px;
}

.register-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.register-input {
  border-radius: 10px;
  border: 1px solid var(--gray-border);
  padding: 12px 15px;
  font-size: 0.95rem;
  color: var(--dark-color);
  background-color: var(--gray-light);
}

.register-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(238, 128, 102, 0.15);
  background-color: var(--light-color);
}

.register-submit-btn {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.register-submit-btn:hover {
  background-color: var(--primary-hover);
  color: var(--light-color);
}

.register-login-text {
  color: var(--dark-color);
  font-size: 0.9rem;
}

.register-login-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  margin-left: 5px;
}

.register-login-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* About Section Styles */
.about-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.about-content {
  padding: 2rem 0;
}

.about-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-heading span:last-child {
  position: relative;
  display: inline-block;
  margin-right: 60px;
}

.about-heading .about-badge {
  background-color: #dc3545;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  white-space: nowrap;
  min-width: 45px;
  text-align: center;
}

.about-heading .about-arrow {
  background-color: #ff8800;
  color: white;
  width: 28px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.9rem;
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
}

.about-images-grid {
  padding: 1rem 0;
}

.about-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-wrapper:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

/* Responsive Styles for About Section */
@media (max-width: 1199px) {
  .about-heading {
    font-size: 3rem;
  }

  .about-heading span:last-child {
    margin-right: 50px;
  }

  .about-heading .about-badge {
    font-size: 1rem;
    padding: 0.15rem 0.5rem;
    top: -10px;
    min-width: 40px;
  }

  .about-heading .about-arrow {
    width: 24px;
    height: 55px;
    top: -6px;
    font-size: 0.85rem;
  }
}

@media (max-width: 991px) {
  .about-section {
    min-height: auto;
    padding: 3rem 0;
  }

  .about-heading {
    font-size: 2.5rem;
    text-align: center;
  }

  .about-heading span:last-child {
    margin-right: 45px;
  }

  .about-heading .about-badge {
    font-size: 0.95rem;
    padding: 0.15rem 0.45rem;
    top: -8px;
    min-width: 38px;
  }

  .about-heading .about-arrow {
    width: 22px;
    height: 48px;
    top: -5px;
    font-size: 0.8rem;
  }

  .about-description {
    font-size: 1rem;
    text-align: center;
  }

  .about-content {
    padding: 1rem 0 2rem 0;
  }
}

@media (max-width: 767px) {
  .about-heading {
    font-size: 2rem;
  }

  .about-heading span:last-child {
    margin-right: 40px;
  }

  .about-heading .about-badge {
    font-size: 0.85rem;
    padding: 0.1rem 0.4rem;
    top: -7px;
    min-width: 35px;
  }

  .about-heading .about-arrow {
    width: 18px;
    height: 42px;
    top: -4px;
    font-size: 0.75rem;
  }

  .about-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-images-grid {
    padding: 0.5rem 0;
  }
}

@media (max-width: 575px) {
  .about-heading {
    font-size: 1.75rem;
  }

  .about-heading span:last-child {
    margin-right: 35px;
  }

  .about-heading .about-badge {
    font-size: 0.75rem;
    padding: 0.08rem 0.3rem;
    top: -5px;
    min-width: 32px;
  }

  .about-heading .about-arrow {
    width: 16px;
    height: 38px;
    top: -3px;
    font-size: 0.7rem;
  }
}

/* Contact Section Styles */
.contact-section {
  min-height: 60vh;
}

.contact-header {
  padding: 60px 0;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-title span:last-child {
  position: relative;
  display: inline-block;
  margin-right: 50px;
}

.contact-badge {
  background-color: #dc3545;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  min-width: 40px;
  text-align: center;
}

.contact-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.95;
}

.contact-card {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.contact-card:hover {
}

.contact-icon-wrapper {
  display: flex;
  justify-content: center;
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.contact-label {
  color: #252525;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.contact-details {
  color: #000;
  leading-trim: both;
  text-align: center;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Responsive Styles for Contact Section */
@media (max-width: 1199px) {
  .contact-title {
    font-size: 3rem;
  }

  .contact-title span:last-child {
    margin-right: 45px;
  }

  .contact-badge {
    font-size: 1rem;
    padding: 0.15rem 0.5rem;
    top: -10px;
    min-width: 38px;
  }
}

@media (max-width: 991px) {
  .contact-header {
    padding: 50px 0;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-title span:last-child {
    margin-right: 40px;
  }

  .contact-badge {
    font-size: 0.95rem;
    padding: 0.15rem 0.45rem;
    top: -8px;
    min-width: 35px;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-card {
    padding: 35px 25px;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .contact-header {
    padding: 40px 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-title span:last-child {
    margin-right: 35px;
  }

  .contact-badge {
    font-size: 0.85rem;
    padding: 0.1rem 0.4rem;
    top: -7px;
    min-width: 32px;
  }

  .contact-subtitle {
    font-size: 0.95rem;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-label {
    font-size: 1.25rem;
  }

  .contact-details {
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .contact-title {
    font-size: 1.75rem;
  }

  .contact-title span:last-child {
    margin-right: 30px;
  }

  .contact-badge {
    font-size: 0.75rem;
    padding: 0.08rem 0.3rem;
    top: -5px;
    min-width: 28px;
  }

  .contact-subtitle {
    font-size: 0.9rem;
  }
}
.benefits-title-span {
  color: #ee8066;
}
.new-alumni-benefit-description {
  color: #252525;
  /* text-align: center; */
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.new-alumni-benefit-title {
  color: #252525;
  /* text-align: center; */
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.new-alumni-benefit-description {
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.new-alumni-benefit-apply-now-btn {
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.new-alumni-benefit-card {
  border-radius: 10px;
  border: 1px solid rgba(217, 217, 217, 0.25);
  background: #fbfbfb;
  padding: 66px 26px;
}
.new-alumni-benefit-apply-now-btn-link {
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
/* Hover = First card orange style */
.new-alumni-benefit-card:hover {
  background-color: #ee8066; /* Orange color from screenshot */
  color: #fff;
}

.new-alumni-benefit-card:hover .new-alumni-benefit-description,
.new-alumni-benefit-card:hover .new-alumni-benefit-apply-now-btn-link,
.new-alumni-benefit-card:hover .new-alumni-benefit-title {
  color: #fff;
}
.new-alumni-benefit-card:hover .new-alumni-benefit-card-image-wrapper {
  color: #fff;
  background-color: #fff;
}
.new-alumni-benefit-card:hover .new-alumni-benefit-card-image {
  color: #000;
}
.new-alumni-benefit-card-image-wrapper {
  width: 56px;
  height: 56px;
  background-color: #252525;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-alumni-benefit-card-image-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
}

/* Stack images */
.new-alumni-benefit-card-image {
  position: absolute;
  width: 28px;
  height: 28px;
  /* transition: opacity 0.3s ease; */
}

/* Default state */
.default-icon {
  opacity: 1;
}

.hover-icon {
  opacity: 0;
}

/* On hover */
.new-alumni-benefit-card:hover .default-icon {
  opacity: 0;
}

.new-alumni-benefit-card:hover .hover-icon {
  opacity: 1;
}

/* Add divider only on desktop */
@media (min-width: 992px) {
  .stat-item {
    position: relative;
  }

  /* Add border to first 2 items only */
  .col-lg-4:not(:last-child) .stat-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 139px;
    background: rgba(255, 255, 255, 0.25);
  }
}
.about-section {
  padding-top: 100px !important;
  padding-bottom: 150px !important;
}
.about-title {
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.about-alumi-title {
  color: #ee8066 !important;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.about-description-text {
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* VC Message Section */
.vc-message-section {
  background-color: #EE80661A;
  padding-top: 70px !important;
  padding-bottom: 70px !important;
  margin-bottom: 150px !important;
}
.our-team-section {
  margin-bottom: 150px !important;
}
.upcomingEvents {
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 8px;
  margin-bottom: 25px !important;
}
.vc-mass {
  color: #ee8066;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.vc-image-wrapper {
  border-radius: 16px;
}

.vc-image {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vc-title {
  font-size: 36px;
  font-weight: 700;
  color: #252525;
}

.vc-highlight {
  color: #ee8066;
}

.vc-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .vc-message-section {
    padding: 60px 0;
  }

  .vc-title {
    font-size: 28px;
  }

  .vc-content {
    text-align: center;
  }
}
