@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

/* weight:500 */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap");
/* @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap"); */

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

body {
  font-family: "Open Sans", sans-serif;
  color: #00243d;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: #03489f;
}

.container {
  padding: 0 80px;
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 52px;
  z-index: 10;
}

/* Hero Section */
.hero-section {
  border-radius: 20px;
  overflow: hidden;
  height: auto;
}

.hero-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  height: 100%;
}

.hero-left-content {
  width: 30%;
  background-color: #03489f;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: unset;
}

.hero-subtitle {
  color: white;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: none;
}

.hero-title {
  color: white;
  font-size: 40px;
  line-height: 120%;
  font-family: "Playfair Display", serif;
  margin: 0;
  font-weight: 500;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 40px;
  bottom: 0;
  object-fit: cover;
  object-position: left;
  z-index: 0;
}

.mobile-break {
  display: none;
}

.hero-slider-container {
  width: 70%;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: grab;
}

.hero-swiper {
  height: 100%;
}

.hero-swiper-wrapper {
  margin-bottom: -16px;
}

.slider-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  .slider-image {
      height: 100%;
  }
}

/* Swiper */
.swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet {
  position: relative;
  width: 24px;
  height: auto;
  text-align: left;
  border-radius: 0;
  opacity: 1;
  margin-right: 20px;
  background-color: transparent;
  cursor: pointer;
}

.swiper-pagination-bullet em {
  font-size: 15px;
  line-height: 28px;
  font-weight: bold;
  letter-spacing: -0.38px;
  color: #111;
}

.swiper-pagination-bullet i {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 24px;
  height: 3px;
  background-color: #543e1a;
  border-radius: 20px;
}

.swiper-pagination-bullet b {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 0%;
  height: 3px;
  background-color: #fca312;
  border-radius: 20px;
}

.swiper-pagination-bullet-active {
  background-color: transparent;
}

.swiper-pagination-bullet-active b {
  animation-name: countingBar;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@keyframes countingBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  right: 80px;
  bottom: var(--swiper-pagination-bottom, 50px);
  width: auto;
  left: auto;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 10px 16px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #00243d;
  font-size: 14px;
}

.breadcrumb li + li::before {
  content: ">";
  margin: 0 8px;
  color: #00243d;
}

.breadcrumb li a {
  text-decoration: none;
  color: #00243d;
  transition: color 0.2s;
}

.breadcrumb li a:hover {
  color: #0056b3;
}

.breadcrumb li:last-child a {
  color: #00243d;
  pointer-events: none;
  cursor: default;
}

/* .mobile-navigation {
  display: none;
  margin-bottom: 60px;
} */

.mobile-select-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* .mobile-select-button {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 14px 20px;
  text-align: left;
  color: white;
  cursor: pointer;
  background-color: #03489f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
} */

.mobile-select-button:focus {
  outline: none;
}

.select-arrow {
  width: 20px;
  height: 20px;
  color: white;
  transition: transform 0.3s ease;
}

.rotate-180 {
  transform: rotate(180deg);
}

.mobile-select-options {
  position: absolute;
  width: 100%;
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  /* max-height: 212px;
  overflow-y: auto; */
}

#awardYearDropdown .mobile-select-button {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 14px 20px;
    text-align: left;
    color: white;
    cursor: pointer;
    background-color: #03489f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

#awardYearDropdown .mobile-select-button {
    width: 100%;
    font-size: 16px;
    background-color: transparent;
    color: #023f6a;
    border: 1px solid #023f6a;
    padding: 8px 20px;
}

.mobile-select-options {
    width: 120px;
    /* font-weight: 500; */
}

.mobile-select-options::-webkit-scrollbar {
  width: 4px;
  border-radius: 60px;
}

.mobile-select-options::-webkit-scrollbar-thumb {
  background-color: #03489f;
  border-radius: 60px;
}

.mobile-option {
  padding: 8px 16px;
  text-decoration: none;
  color: #374151;
  cursor: pointer;
  font-size: 14px;
}

.mobile-option:hover {
  background-color: #f3f4f6;
}

.hidden {
  display: none !important;
}

@media screen and (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .hero-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 820px) {
  .container {
    padding: 0 20px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero-section {
    border-radius: 14px;
  }

  .hero-wrapper {
    flex-direction: column-reverse;
    height: auto;
  }

  .hero-left-content {
    width: 100%;
    padding: 50px 20px 20px 20px;
    overflow: hidden;
  }

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

  .hero-slider-container {
    width: 100%;
  }

  .hero-swiper {
    height: 100%;
  }

  .mobile-break {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .swiper-pagination {
    display: none;
  }

  .hero-swiper {
    height: 280px;
  }
}

/***************** Alumni Key Statics Section *****************/
/* Features Section */
.features-section {
  background-color: #def4e2;
  border-radius: 10px;
  padding: 45px 30px;

  margin: 40px 0 0;
}

.features-title {
  font-weight: 500;
  font-size: 24px;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  color: #03489F;
}

.feature-textline {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 14px;
  color: #00243D;


}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
  gap: 20px;
  justify-content: space-between;
  color: #00243d;
}

@media (max-width: 820px) {
  .features-grid {
      gap: 42px 0;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
  }
}

.feature-item {
  width: 15%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  gap: 16px;

}

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

.feature-icon {
  width: 36px;
  height: 36px;
}

.feature-text {

  text-align: center;
  margin: 0;
  color: #00243D;
  font-size: 16px;
}

.feature-green-text {
  font-family: "Open Sans";
  font-weight: 700;
  color: #1FB53B;
  margin-bottom: 5px;

  font-size: 24px;
  text-align: center;

}


/* Tablet Styles */
@media (max-width: 1024px) {

  .features-section {
    padding: 40px;
  }

  .aboutus-features-section .features-title {
    font-size: 32px;
  }



  .feature-item {
    width: 20%;
    font-size: 16px;
  }

}

/* Mobile Styles */
@media (max-width: 820px) {

  .features-section {
    padding: 20px;
  }

  .aboutus-features-section .features-title {
    font-size: 24px;
  }

  .features-grid {
    gap: 42px 0;
    justify-content: center;
    align-items: flex-start;
  }

  .feature-item {
    width: 50%;
    font-size: 14px;
  }

  .feature-green-text {
    font-size: 14px;
  }

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

}

/***************** Pie Chart Section *****************/

.study-container {
    margin-bottom: 30px;
}

.study-heading {
    font-family: "Playfair Display";
    font-weight: 500;
    font-size: 24px;
    color: #03489F;
    margin-bottom: 10px;
}

.study-text {
    font-family: "Open Sans";
    font-weight: 400;
    color: #00243D;
    font-size: 14px;


}

.pie-container {
    position: relative;
    max-width: 900px;
    border-radius: 20px;
    z-index: 0;
    overflow: hidden;
}


/* Background */
.piebg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* Layout */
.pie-container .alumni-chart-wrapper {
    position: relative;
    z-index: 1;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.pie-container .chart-container {
    width: 50%;
    height: 320px;
}

.custom-legend-part {
    width: 45%;

}

.custom-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

.piece-name {
    font-size: 14px;
    font-weight: 600;
    color: #00243D;
}



/* Colors */
.bright_orange {
    background-color: #FAA41E;
}

.sky_blue {
    background-color: #1D6DEF;
}

.blue {
    background-color: #1A55D9;
}

.light_blue {
    background-color: #557FDC;
}

.dark_blue {
    background-color: #03489F;
}

.blue_grey {
    background-color: #8196C3;
}


/* bar chart */
.chart-card-contributing {
    background: #fff6e8;
    border-radius: 18px;
    padding: 20px 25px 20px;
    margin-top: 40px !important;
    margin: auto;
    overflow: hidden;
}

.contrybuting-chart-wrapper {
    width: 100%;
    overflow: hidden;
}

.contrybuting-chart-scroll {
    width: 100%;
}

.contributing-chart-title {
    font-family: "Playfair Display";
    color: #03489F;
    font-weight: 600;
    font-size: 24px;
    padding-top: 40px;
    text-align: center;

}

.chart-card-contributing canvas {
    width: 100% !important;
    height: 420px !important;
}

@media (max-width: 1024px) {
    .contrybuting-chart-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .contrybuting-chart-scroll {
        min-width: 900px;
    }

}


/* 📱 Mobile */
@media (max-width: 768px) {
    .pie-container .alumni-chart-wrapper {
        flex-direction: column;
        z-index: 0;
    }

    .pie-container .alumni-chart-container {
        width: 100%;
        height: 260px;
    }

    .custom-legend-part {
        width: 100%;
        display: flex;
        justify-content: center;

    }

    .custom-legend {
        width: 50%;
    }

    .pie-container {
        margin-bottom: 60px;
        /* enough for dropdown */
    }

}

@media (max-width: 468px) {

    .custom-legend {
        width: 100%;
    }
}

/***************** Top Companies Section *****************/

.gloabaly-leading-container {
  width: 100%;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #E2E2E2;
  margin-top: 40px;
}

.gloabaly-leading-companies-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.study-heading {
  font-family: "Playfair Display";
  font-weight: 500;
  font-size: 24px;
  color: #03489F;
  margin-bottom: 10px;
}

.study-text {
  font-family: "Open Sans";
  font-weight: 400;
  color: #00243D;
  font-size: 14px;


}

.gloabaly-leading-experties {
  width: 30%;
}

.gloabaly-leading-box {
  width: 65%;
}

.gloabaly-leading-heading {
  font-family: "Playfair Display";
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #03489F;
}

.leading-experties {
  font-family: "Open Sans";
  font-weight: 500;
  font-size: 14px;
  padding: 12px 20px;
  cursor: pointer;

}

.leading-experties.activeTab {
  background-color: #03489F;
  border-radius: 10px;
  /* your color */
  color: #fff;
}

.leading-feature {
  display: none;

}

.activeLeadingFeature {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap !important;
  column-gap: 5px;
  row-gap: 5px;
  justify-content: space-between;
}

.leading-feature-img-container {
  width: 19%;
}

.leading-feature-img {
  width: 45px;
  height: 45px;
  object-fit: cover;
}

@media screen and (max-width:768px) {
  .gloabaly-leading-container {
    padding: 20px 20px;
  }

  .gloabaly-leading-heading {
    text-align: left;
  }

  .leading-feature-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
  }

}

@media screen and (max-width:480px) {
  .gloabaly-leading-companies-info {
    flex-direction: column;
    overflow: hidden;
  }

  .gloabaly-leading-experties {
    overflow: scroll;
    margin-bottom: 22px;
    overflow-x: auto;
  }

  .leading-experties {
    min-width: fit-content;
    border-radius: 10px;
    border: 1px solid #023F6A;
  }

  .gloabaly-leading-experties,
  .gloabaly-leading-box {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .leading-feature-img-container {
    width: 23%;
  }
  .leading-feature-img {
        width: 100%;
        height: 35px;
        object-fit: contain;
    }

}

/***************** Alumni CSS ******************/

.alumini-container {
  width: 100%;
  margin: 80px 0 60px;
}

.alumini-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.alumini-desktop-navigation {
  width: 145%;
}

.alumini-left-content {
  width: 70%;
}

.alumini-nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  justify-content: space-between;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  cursor: pointer;
}

.alumini-nav-link a {
  color: #00243d;
}

.activenavlink {
  background-color: #03489F;
  border-radius: 10px;
  cursor: pointer;
}

.activenavlink a {
  color: #fff;

}

.alumini-desktop-navigation {
  display: flex;
  flex-direction: column;
}

.alumini-desktop-navigation a {
  text-decoration: none;
}

.active-tab {
  border-radius: 10px;
  background-color: #03489f;
}

.active-tab a {
  color: #fff !important;

}

.alumini-heading {
  color: #03489f;
  font-family: "Playfair Display";
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 140%;
  /* 33.6px */
}

.alumini-para {
  color: #00243d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  /* 22.4px */
}

.alumini-points {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 98px;
  align-items: center;
  padding: 28px 37px;
  border-radius: 20px;
  background-color: #def4e2;
  margin: 30px 0 60px;
}

.alumini-point {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.alumini-point h3 {
  color: #1fb53b;
  text-align: center;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
}

.alumini-point p {
  color: #00243d;
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}

.alumini-point img {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
}

.country-part {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  margin-bottom: 40px;
}

.country {
  padding: 12px 24px;
  color: #00243d;
  text-align: center;
  font-weight: 600;
  background-color: #fff;
  font-family: "Open Sans";
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #023f6a;
}

.country.active {
  background-color: #03489F;
  color: #fff;
}

.country-data {
  display: none;
}

/* .active {
  display: block; Commented for Mobile Nav Header
} */

.contry-box {
  display: flex;
  flex-wrap: wrap;
  gap: 39px;
}

.data-content {
  display: flex;
  align-items: center;
  width: 30%;
  gap: 10px;
}


/* .chart-wrapper {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  background: #fff6e7;
  padding: 40px 30px;
  border-radius: 10px;
} */

h2 {
  /* color: #333; */
  /* margin-bottom: 30px; */
  font-size: 24px;
  /* text-align: center; */
}

.chart-container {
  width: 100%;
}


.pie-chart-container {
  position: relative;
  width: 100%;
  /* background-image: url("../../images/alumini/piechartbg.png"); */
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
}

.piechartbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 🔑 responsive bg */
  z-index: 1;
}

/* Wrapper */
.pie-chart-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 30px 60px;
}

/* Individual chart box */
.pie-chart-1 {
  width: 250px;
  text-align: center;
}

/* Title */
.pie-title {
  font-family: "Playfair Display";
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #03489F;
  margin-bottom: 10px;
  max-width: 200px;
  margin: 0 auto;
}

/*  */

.blue-swiper-container-wrapper {
  background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
  border-radius: 24px;
  padding: 30px;
  width: 100%;
  margin: 60px 0;

}



.blue-swiper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.blue-swiper-title {
  color: white;
  font-size: 24px;
  font-family: "Playfair Display";
  margin-bottom: 0px;
  font-weight: 500;
}



.blue-swiper-header .swiper-nav {
  display: flex;
  gap: 12px;
}

.blue-swiper-header .swiper-nav .swiper-button-prev {
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-swiper-header .swiper-nav .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-swiper-header .swiper-nav .swiper2-button-prev {
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-swiper-header .swiper-nav .swiper2-button-next {
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}



.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
  color: white;
  font-weight: bold;
}

.swiper2-button-prev:after,
.swiper2-button-next:after {
  font-size: 20px;
  color: white;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover,
.swiper2-button-prev:hover,
.swiper2-button-next:hover {
  transform: scale(1.1);
}

.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.blueSwiper,
.blueSwiper2 {
  width: 100%;
  padding: 0;
}



.blueSwiper .swiper-slide,
.blueSwiper2 .swiper-slide {
  background: white;
  border-radius: 20px;
  /* padding: 24px 20px 9px; */
  text-align: center;
}

.blue-slide-card {
  padding: 24px 20px 9px;

}

.blueSwiper .swiper-slide .profile-img,
.blueSwiper2 .swiper-slide .profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 3px;
  object-fit: cover;
  border: 3px solid #f0f0f0;
}

.blueSwiper .alumni-name,
.blueSwiper2 .alumni-name {
  font-size: 18px;
  font-family: "Open Sans";
  font-weight: 500;
  color: #00243D;
  margin-bottom: 6px;
}

.blueSwiper .alumni-class,
.blueSwiper2 .alumni-class {
  font-size: 14px;
  color: #03489F;
  margin-bottom: 10px;
  font-weight: 400;
}

.blueSwiper .alumni-role,
.blueSwiper2 .alumni-role {
  font-size: 12px;
  font-family: "Open Sans";
  background-color: #E6F0F8;
  color: #00243D;
  line-height: 1.5;
  font-weight: 500;
  padding: 10px 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}


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

.alumniSpeakTitle {
  font-size: 24px;
  font-family: "Playfair Display";
  font-weight: 500;
  margin-bottom: 0px;

}

.alumniSpeak-para {
  font-size: 20px;
  font-family: "Playfair Display";
  font-weight: 500;
  color: #00243D;
}

.alumniSpeak {
  width: 100%;
  padding: 0;
}

.alumniSpeak-container-wrapper {
  background-color: #DEF4E2;
  border-radius: 24px;
  padding: 30px;
  width: 100%;
  margin: 60px 0;

}

.alumniSpeak .swiper-slide {
  padding: 0 40px 0 20px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.alumniSpeak-content {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.alumniSpeak-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 100%;
}

.alumniSpeak-content span p {
  font-size: 14px;
  font-family: "Open Sans";
  font-weight: 400;
  color: #00243D;
}

.alumniSpeak .swiper-slide-active {
  opacity: 1;
}

.alumniSpeak-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.alumniSpeak-button-prev,
.alumniSpeak-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  /* background-color: #03489F; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.alumniSpeak-button-prev img,
.alumniSpeak-button-next img {
  width: 16px;
  height: 16px;
}

.alumniSpeak-button-prev img {
  transform: rotate(180deg);
}


.alumniSpeak-button-prev.swiper-button-disabled,
.alumniSpeak-button-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}



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

.alumniSchoolTitle {
  font-size: 24px;
  font-family: "Playfair Display";
  font-weight: 500;
  color: #03489F;
  margin-bottom: 0px;
  text-align: left;
}

.alumniSchool-profile-info {
  padding-bottom: 20px;
}

.alumniSchool-name {
  font-family: "Open Sans";
  color: #00243D;
  font-weight: 500;
  font-size: 18px;

}

.alumniSchool-class {
  font-size: 14px;
  color: #03489F;
  font-family: "Open Sans";
  font-weight: 400;
  margin-bottom: 7px;

}

.alumniSchool-para {
  font-family: "Open Sans";
  font-weight: 500;
  color: #00243D;
  font-size: 10px;
}

.alumniSchool-qualification {
  padding: 10px 0px;
  border-top: 1px solid #E6F0F8;
}

.alumniSchool-qualification ul {
  font-family: "Open Sans";
  font-weight: 500;
  color: #00243D;
  font-size: 12px;
  margin-left: 17px;

}

.alumniSchool-btn {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  border-radius: 20px;
  align-items: center;
  border: 1px solid #00243D;
  padding: 10px 25px;
  text-decoration: none;
}

.alumniSchool-btn p {
  font-size: 16px;
  font-family: "Open Sans";
  color: #00243D;
  font-weight: 400;
}

.alumniSchool {
  width: 100%;
  padding: 0;
}

.alumniSchool-container-wrapper {
  background-color: #E6F0F8;
  border-radius: 24px;
  padding: 30px;
  width: 100%;
  margin: 60px 0;

}

.alumniSchool .swiper-slide {
  padding: 20px 20px 20px 20px;
  border-radius: 20px;
  background-color: #fff;
}

.alumniSchool-content {
  width: 100%;
  display: flex;
  gap: 10px;
}

.alumniSchool-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 100%;
}

.alumniSchool-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Arrow buttons */
.alumniSchool-button-prev,
.alumniSchool-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  /* background-color: #03489F; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.alumniSchool-button-prev img,
.alumniSchool-button-next img {
  width: 16px;
  height: 16px;
}

.alumniSchool-button-prev img {
  transform: rotate(180deg);
}

/* Disabled state */
.alumniSchool-button-prev.swiper-button-disabled,
.alumniSchool-button-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Our Alumni Work with Leading Companies Globally */
.gloabaly-leading-container {
  width: 100%;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #E2E2E2;
  margin-top: 60px;
}

.gloabaly-leading-companies-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gloabaly-leading-experties {
  width: 30%;
}

.gloabaly-leading-box {
  width: 65%;
}

.gloabaly-leading-heading {
  font-family: "Playfair Display";
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #03489F;
}

.leading-experties {
  font-family: "Open Sans";
  font-weight: 500;
  font-size: 14px;
  padding: 12px 20px;
  cursor: pointer;

}

.leading-experties.activeTab {
  background-color: #03489F;
  border-radius: 10px;
  /* your color */
  color: #fff;
}

.leading-feature {
  display: none;

}

.activeLeadingFeature {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 5px;
  justify-content: space-between;
}

.leading-feature-img-container {
  width: 23%;
}

.leading-feature-img {
  width: 100%;
  height: 55px;
  object-fit: contain;
}

.blue-swiper-container-wrapper .swiper-button-next:after,
.blue-swiper-container-wrapper .swiper-button-prev:after {
  color: #fff;
  font-size: 20px;
}


.country-data {
  display: none;
}

.country-data.active {
  display: block;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.topUg-container {
  padding: 40px 50px;
  border: 1px solid #E2E2E2;
  border-radius: 20px
}

.topUg-heading {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  color: #03489F;

}

.data-content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.tabs-accordion-arrow {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.tab-arrow-prev {
  transform: rotate(90deg);
}

.tab-arrow-next {
  transform: rotate(270deg);
}


.chart-card-contributing {
  background: #fff6e8;
  border-radius: 18px;
  padding: 20px 25px 20px;
  margin-top: 60px !important;
  margin: auto;
  overflow: hidden;
}

.contrybuting-chart-wrapper {
  width: 100%;
  overflow: hidden;
}

.contrybuting-chart-scroll {
  width: 100%;
}

.contributing-chart-title {
  font-family: "Playfair Display";
  color: #03489F;
  font-weight: 600;
  font-size: 24px;
  padding-top: 40px;
  text-align: center;

}

.chart-card-contributing canvas {
  width: 100% !important;
  height: 420px !important;
}

/* Responsive */
@media screen and (max-width: 1024px) {

  .contrybuting-chart-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .contrybuting-chart-scroll {
    min-width: 1200px;
  }

  .alumini-points {
    gap: 30px;
    align-items: center;
    padding: 20px 20px;
  }

  .country-part {
    overflow: scroll;
  }

  .country {
    white-space: nowrap;
  }

  .pie-chart-wrapper {
    padding: 30px 30px;
  }

  .pie-chart-1 {
    width: 45%;
    /* 2 per row */

  }
}

@media screen and (max-width:820px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {

  .contributing-chart-title {
    text-align: left;
  }

  .blue-swiper-container-wrapper {
    padding: 20px 20px 40px;
  }

  .alumini-points {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 20px;
  }

  .topUg-container {
    padding: 20px 20px;
  }

  .topUg-heading {
    text-align: left;
  }

  .country-part-container {
    overflow: hidden;
  }

  .pie-chart-container {
    margin-top: 40px;
    border-radius: 14px;
  }

  .pie-chart-wrapper {
    padding: 20px;
    gap: 20px;
  }

  .pie-chart-1 {
    width: 50%;
    /* 1 per row */
  }

  .pie-title {
    max-width: 100%;
  }

  .blue-swiper-title {
    text-align: left;
  }





  .blue-swiper-header {
    margin-bottom: 20px;
  }

  .alumniSpeak .swiper-wrapper .swiper-slide {
    padding: 0 !important;
  }

  .alumniSchool-container-wrapper {
    margin-bottom: 0px;
  }

  .gloabaly-leading-container {
    padding: 20px 20px;
  }

  .gloabaly-leading-heading {
    text-align: left;
  }

  h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .country-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .alumini-point p,
  .alumini-point h3 {
    font-size: 14px;
  }

  .chart-wrapper {
    padding: 15px;
  }

  .contry-box {
    flex-direction: column;
  }

  .data-content {
    width: 100%;
  }

  .blue-swiper-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  h2 {
    font-size: 18px;
  }

  .gloabaly-leading-companies-info {
    flex-direction: column;
    overflow: hidden;
  }

  .gloabaly-leading-experties {
    overflow: scroll;
    margin-bottom: 22px;
    overflow-x: auto;
  }

  .leading-experties {
    min-width: fit-content;
    border-radius: 10px;
    border: 1px solid #023F6A;
  }

  .gloabaly-leading-experties,
  .gloabaly-leading-box {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .pie-chart-1 {
    width: 100%;
    /* 1 per row */
  }

}

.alumini-container,
.alumini-wrapper {
  position: relative;
}

.alumini-desktop-navigation {
  position: sticky;
  top: 70px;
  height: 186px;
}

.network-tabs-container {
  display: flex;
  gap: 14px;
  margin: 30px 0;
}

.watch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.network-tabs {
  padding: 8px 24px;
  border: 1px solid #023f6a;
  border-radius: 10px;
  color: #023f6a;
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  line-height: 160%;
  /* 25.6px */
}

.active-network {
  background-color: #03489f;
  color: #fff;
}

.alumini-left-content .tabs {
  width: 100%;
  display: none;
}

.alumini-left-content .active-network-tab {
  display: block;
}

.card-yellow-box {
  padding: 40px 75px 0 75px;
  border-radius: 20px;
  background: #fff6e7;
}

.card-para {
  color: #00243d;
  text-align: center;

  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.img-container {
  background-color: #fff;
  padding-top: 25px;
  padding-left: 33px;
  padding-right: 33px;
  border-radius: 20px 20px 0 0;
  box-shadow: 7px -4px 6px 0 rgba(0, 0, 0, 0.07);
  margin-top: 30px;
}

.img-container img {
  width: 100%;
}

.mobimg {
  display: none;
}

.whats-in-dais-container {
  margin: 60px 0px;
}

.whats-in-dais-heading {
  color: #03489f;
  font-family: "Playfair Display";
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 40px;
}

.whats-in-dais-card {
  border-radius: 20px;
  padding: 46px;
  background: #fff6e7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 39px;
}

.whats-in-dais-img img {
  width: 100%;
  height: 319px;
  object-fit: cover;
  border-radius: 20px;
}

.whats-in-dais-content-heading {
  color: #00243d;
  text-align: left;
  font-family: "Playfair Display";
  font-size: 32px;
  font-weight: 500;
  line-height: 140%;
  margin: 0;
}

.whats-in-dais-content-para {
  color: #00243d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  margin: 20px 0;
}

.pointers {
  width: 100%;
}

.pointers-part {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0px 0px;
}

.pointers-part img {
  width: 22px;
  height: 22px;
}

.pointers-part p {
  color: #00243d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.whats-in-dais-green-card {
  border-radius: 20px;
  padding: 46px;
  background: #def4e2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 39px;
  margin-top: 60px;
}

/* Desktop tabs - hide on mobile */
.desktop-tabs {
  display: flex;
}

.mobile-dropdown {
  display: none;
}

/* Mobile Dropdown Styles */
.network-dropdown-container {
  position: relative;
  width: 100%;
  margin: 20px 0;
}

.network-dropdown-header {
  background: #03489f;
  color: #fff;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.network-dropdown-header:hover {
  border-color: #003d6d;
}

.dropdown-selected {
  font-size: 16px;
  font-weight: 500;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.network-dropdown-header.active .dropdown-arrow {
  transform: rotate(180deg);
}

.network-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e6f0f8;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 61, 109, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  overflow: hidden;
}

.network-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  border: 1px solid #003d6d;
}

.network-dropdown-item {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

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

.network-dropdown-item:hover {
  background: #e6f0f8;
  color: #003d6d;
}

/* Portfolio Section */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 100px;
  align-items: start;
}

.card {
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.card-content {
  padding: 18px 0;
}

.card-title {
  color: #00243d;
  font-family: "Playfair Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  text-align: left;
  margin-bottom: 10px;
}

.card-description {
  color: #00243d;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 18px;
}

.watch-btn {
  color: #00243d;
  text-align: right;
  font-family: "Open Sans";
  font-size: 16px;
  padding: 12px 20px;
  font-weight: 400;
  line-height: 160%;
  /* 25.6px */
  letter-spacing: 0.2px;
  border-radius: 2000px;
  text-decoration: none;
  border: 1px solid #00243d;
  transition: all 0.3s ease;
}

.watch-btn:hover {
  background: #2c2c2c;
  color: white;
  transform: scale(1.05);
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.watch-btn:hover .arrow {
  transform: translateX(5px);
}

/* Dropdown styles */
.portfolio-container {
  background-color: #fee6d9;
  padding: 100px 130px 81px 130px;
}

.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #2c2c2c;
  border-radius: 25px;
  color: #2c2c2c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dropdown-btn:hover {
  background: #2c2c2c;
  color: white;
}

.dropdown-arrow {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown-container.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  overflow: hidden;
}

.dropdown-container.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 15px 20px;
  color: #2c2c2c;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-item:hover {
  background: #f8f8f8;
}

.newsletter-head {
  color: #03489f;
  font-family: "Playfair Display";
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  line-height: 140%;
}

.letter-container,
.swiperLetter {
  position: relative;
  width: 100%;
  margin: 80px 0 80px;
  padding: 0 10px;
}

.swiperLetter .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  cursor: pointer;
  object-fit: cover;
}

.swiperLetter .swiper-button-next,
.swiper-button-prev {
  top: 30px;
}

.swiperLetter .swiper-button-prev {
  left: auto;
  right: 50px !important;
}

.swiperLetter .swiper-button-next {
  right: 0px !important;
}

.swiperLetter .swiper-button-next:after,
.swiperLetter .swiper-button-prev:after {
  font-size: 20px ;
  color: grey;
  font-weight: 700 ;
}

/* Active arrows  */
.swiperLetter .swiper-button-next:not(.swiper-button-disabled):after,
.swiperLetter .swiper-button-prev:not(.swiper-button-disabled):after {
  color: #03489f ;
}
.alumini-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 50%;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid #000;
  cursor: pointer;
  text-decoration: none;
}

.letter-title {
  color: #00243d;
  text-align: center;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  margin: 18px 0;
}

.letter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 50%;
  margin: auto;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid #000;
  cursor: pointer;
  text-decoration: none;
}

.letter-btn p,
.alumini-card-btn p {
  color: #00243d;
  font-family: "Open Sans";
  font-size: 16px;
  letter-spacing: 0.2px;
}

.becomPart {
  width: 100%;
  padding: 36px 40px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 20px 20px;
  border-bottom: 1px solid #c3c3c3;
}

.becomePart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  color: #00243d;
  border-radius: 50px;
  border: 1px solid #000;
  width: 105%;
  text-decoration: none;
}

.becomePart-para {
  color: #00243d;
  font-family: "Playfair Display";
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  /* 33.6px */
  /* 33.6px */
}


/* alumni event page css */
.event-tabs {
  margin-top: 0px;
  margin-bottom: 0px;
}

.event-card-container {
  margin: 60px 0px 0;
}

.event-card {
  border-radius: 20px;
  padding: 46px;
  background: #fff6e7;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 39px;
}

.green-event-card {
  background-color: #DEF4E2;
  margin: 60px 0;
  border-radius: 20px;
  padding: 46px;
  background: #DEF4E2;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 39px;
}

.event-card-heading {
  color: #00243d;
  text-align: left;
  font-family: "Playfair Display";
  font-size: 32px;
  font-weight: 500;
  line-height: 140%;
  max-width: 315px;
  margin: 0;
}

.event-card-img .event-img {
  width: 100%;
  height: 319px;
  object-fit: cover;
  border-radius: 20px;
}

.event-card-img {
  position: relative;
  cursor: pointer;
}


.event-card-p {
  color: #00243d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  margin: 20px 0;
}

.event-pointers {
  width: 100%;
}

.event-pointers-part {
  display: flex;
  /* align-items: center; */
  gap: 12px;
  margin: 20px 0px 0px;
}

.event-pointers-part img {
  width: 60px;
  height: 60px;
}

.event-pointers-part p {
  color: #00243d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.video-icon {
  width: 45px !important;
  height: 45px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.event-alumni-dropdown {
  position: relative;
  display: inline-block;
}

.event-alumni-dropdown-menu {
  display: none;
  position: absolute;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.event-alumni-dropdown-menu.active {
  display: block;
}

.js-dropdown-btn {
  width: 100%;
}


/* Mobile view */

@media (max-width: 1024px) {
  .becomePart-para {
    font-size: 20px;
  }

  .letter-btn {
    width: 66%;
  }

  .cards-wrapper {
    gap: 40px;
  }

  .portfolio-container {
    padding: 50px 40px 50px 40px;
  }

  .becomePart-btn {
    width: 20%;
  }
}

@media (max-width: 900px) {
  .whats-in-dais-card {
    grid-template-columns: 1fr;
    padding: 20px 20px 34px 20px;
    gap: 21px;
  }

  .event-card {
    grid-template-columns: 1fr;
    padding: 20px 20px 34px 20px;
    gap: 21px;
  }

  .event-card-heading {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .becomePart-btn {
    width: 100%;
    margin-top: 20px;
  }

  .becomPart {
    flex-direction: column;
    padding: 0;
    border-bottom: none;
  }

  .becomePart-para {
    text-align: center;
  }

  .letter-btn {
    width: 50%;
  }

  .desktop-tabs {
    display: none;
  }

  .event-tabs {
    margin-top: 30px;
    margin-bottom: 0px;
  }


  .whats-in-dais-green-card {
    padding: 20px 20px 34px 20px;
    gap: 21px;
    display: flex;
    flex-direction: column-reverse;
  }

  .green-event-card {
    gap: 21px;
    display: flex;
    padding: 20px 20px 34px 20px;
    flex-direction: column-reverse;
  }

  .event-card-content,
  .event-card-img {
    width: 100%;
  }



  .whats-in-dais-container,
  .event-card-container {
    margin: 60px 0 0;
  }

  .mobile-dropdown {
    display: block;
  }

  .alumini-desktop-navigation {
    display: none;
  }

  .alumini-wrapper {
    flex-direction: column;
  }

  .alumini-left-content {
    width: 100%;
  }

  .cards-wrapper {
    grid-template-columns: 1fr;
  }

  .card-content {
    /* padding: 20px; */
  }

  .portfolio-container {
    padding: 50px 20px 50px 20px;
  }

  .alumini-card-btn {
    width: 60%;
  }

  .js-dropdown-btn {
    width: 100%;
  }

  .network-dropdown-container {
    margin: 0;
  }

  .text-content {
    margin-top: 30px;
  }
}

@media screen and (max-width: 600px) {
  .deskimg {
    display: none;
  }

  .mobimg {
    display: block;
  }

  .alumini-left-content {
    width: 100%;
  }

  .alumini-heading {
    font-size: 24px;
  }

  .network-tabs {
    font-size: 14px;
  }

  .card-yellow-box {
    padding: 30px 20px 30px 20px;
    border-radius: 20px;
  }

  .img-container {
    height: 648px;
    overflow: scroll;
    padding: 11px 16px 0 16px;
    border-radius: 20px;
  }
}

@media screen and (max-width: 448px) {

  .letter-container,
  .swiperLetter {
    margin: 60px 0 60px;
  }

  .newsletter-head {
    margin-bottom: 20px;
    text-align: left;
  }

  .swiperLetter .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}

.is-hidden {
  display: none !important;
}

.spotlight-events {
  display: none;
}

/******************PUBLICATIONS PAGE CSS*******************/

.tabs-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0 40px 0;
  position: sticky;
  top: 120px;
  background: #fff;
}

.tabs-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .tabs-section {
      padding-top: 30px;
      gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .tabs-wrapper {
    flex-direction: column;
    margin: 0 auto;
  }
}


.filter-tab {
  border-radius: 10px;
  border: 1px solid #023f6a;
  padding: 8px 24px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s all ease;
  background-color: transparent;
}

.filter-tab:hover {
  background-color: #023f6a;
  color: white;
}

.main-dropdown {
  width: 120px;
}

.main-dropdown .mobile-select-button:focus {
  outline: 1px solid #000000;
}

/* .mobile-select-button {
  width: 100%;
  font-size: 16px;         Commented for event mobile dropdown
  background-color: transparent;
  color: #023f6a;
  border: 1px solid #023f6a;
  padding: 8px 20px;
} */

.mobile-select-options {
  width: 120px;
  font-weight: 500;
}

.award-tab-active {
  background-color: #023f6a;
  color: white;
}

/* .award-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  Commented for awards main page
  column-gap: 32px;
  row-gap: 40px;
  padding-bottom: 60px;
} */

.mobile-select-options p.highlighted {
  background-color: #023f6a;
  color: white;
  outline-offset: -2px;
  transition: all 0.15s ease-in-out;
  border-radius: 4px;
}

.publictaion-books-conatiner {
  padding-bottom: 20px;
  margin-top: 80px;
}

.publication-title {
  font-size: 32px;
  color: #00243d;
  font-weight: 500;
}

.publication-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  /* column-gap: 32px; */
  padding-bottom: 60px;
}

.card-item {
  background-color: #e6f0f8;
  padding: 20px;
  border-radius: 20px;
}

.card-item-img {
  width: 100%;
  border-radius: 14px;
  height: 270px;
  object-fit: cover;
}

.publication-cards .card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
} 

.publication-cards .card-title {
  font-size: 20px;
  color: #00243d;
  font-family: playfair display, serif;
  cursor: pointer;
}

.card-content-arrow {
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.remove-border {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .publication-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  /* .tabs-section {
    display: block;
  } */
  /* .main-dropdown {
    margin-top: 32px;
  } */
}

@media screen and (max-width: 820px) {
  .publication-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .main-dropdown {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .tabs-section {
    padding-top: 0px;
  }
  .publication-tab {
    margin-top: 60px;
  }
}

.award-card-img,
.card-details-wrapper {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .tabs-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .swiper-popup-img {
    height: 200px;
    border-radius: 14px;
  }
  .publictaion-books-conatiner {
    padding-top: 0px;
  }
  .publication-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .card-item-img {
    height: 270px;
    object-position: center;
  }
  .card-title {
    font-size: 16px;
  }
  /* .card-content {
    padding-top: 10px; for alumni
  } */
  .publication-title {
    font-size: 24px;
  }
}

.description-wrapper {
  display: grid;
  grid-template-columns: 70% 1fr;
  gap: 32px;
}

.publication-description-section {
  margin: 0px 0 80px;
}
.publication-description-banner {
  width: 100%;
  height: 458px;
  border-radius: 20px;
}
.publication-description {
  background-color: #fff6e7;
  border-radius: 20px;
  padding: 31px 24px;
}
.description-content {
  color: #00243d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
}

.mobile-version {
  display: none;
}
@media screen and (max-width: 1024px) {
 .description-wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  
  .publication-description-banner {
    height: 266px;
  }
  .publication-description-section {
    margin: 20px 0;
  }
  .publictaion-books-conatiner {
    padding-top: 0px;
  }
  .desktop-part {
    display: none;
  }

  .mobile-version {
    display: block;
  }
  .tabs-section {
        padding-top: 30px;
    }
}

@media screen and (max-width: 480px) {
  .publication-description {
    background-color: transparent;
    border-radius: 20px;
    padding: 0;
  }
  
}

/*********** sTUDENT cARE sERVICES PAGE CSS ***********/

.studentcare-wrapper p {
    font-size: 14px;
    line-height: 160%;
    /* 22.4px */
}

.studentcare-wrapper h2 {
    font-weight: 500;
    font-size: 32px;
}

/* Video Section */
.video-wrapper {
    background-color: #fff6e7;
    padding: 62px 0;
    margin: 80px 0;
}

.video-subwrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-section {
    width: 50%;
    height: 410px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.video-thumbnail-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.video-thumbnail-wrapper .studentcare-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-description-wrapper {
    width: 45%;
}

.video-description-wrapper h2 {
    padding-bottom: 16px;
}

/* Cards */
.features-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    margin-bottom: 80px;
    gap: 20px;
}

.feature-card {
    border-radius: 20px;
    border-bottom: 1px solid #0066b0;
    background: #e6f0f8;
    padding: 30px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: space-between;
    font-size:14px
}

.students-names {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.feature-card-icon {
    width: 34px;
    height: 34px;
}

/* Fourth Section */
.curriculum-wrapper {
    padding: 80px 0;
}

.curriculum-subwrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.curriculum-subwrapper .left-wrapper {
    width: 45%;
    background-color: #fff6e7;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.curriculum-subwrapper .left-wrapper .left-wrapper-title {
    font-family: "PlayFair Display";
    font-size: 20px;
    color: #00243d;
    position: relative;
    z-index: 1;
}

.curriculum-subwrapper .right-wrapper {
    width: 50%;
}



/* Seventh Section ( Green ) */
.green-section-wrapper {
    border-radius: 20px;
    background-color: #def4e2;
    padding: 50px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.green-left-wrapper {
    width: 50%;
}

.green-section-right-wrapper-list {
    margin-top: 16px;
}

.assesment-desc {
    padding: 8px 0 0 0;
    font-size:14px
}

.assesment-qtn-wrapper p:first-child {
    padding: 40px 0 10px 0;
    font-weight: 500;
    font-size: 16px;
}

.green-right-wrapper {
    width: 45%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.green-right-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.green-right-wrapper-mobile {
    display: none;
}

/* MEDIA QUERY */
@media screen and (max-width: 1024px) {
    .features-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 820px) {

    /*  Video Section  */
    .video-wrapper {
        margin: 60px 0;
    }

    /* <!-- Fourth Section --> */
    .curriculum-wrapper {
        padding: 60px 0 10px 0;
    }

    .curriculum-subwrapper {
        flex-direction: column;
        gap: 20px;
    }

    .curriculum-subwrapper .left-wrapper,
    .curriculum-subwrapper .right-wrapper {
        width: 100%;
        height: auto;
    }

    /* <!-- Seventh Section ( Green ) --> */
    .green-section-wrapper {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .green-left-wrapper,
    .green-right-wrapper {
        width: 100%;
    }

    .green-right-wrapper {
        display: none;
    }

    .green-right-wrapper-mobile {
        display: block;
        margin: 20px 0;
        height: 400px;
    }

    .green-right-wrapper-mobile img {
        object-position: top;
    }

    .assesment-qtn-wrapper p:first-child {
        padding: 0 0 10px 0;
    }

}

@media screen and (max-width: 640px) {
    .studentcare-wrapper h2 {
        font-size: 24px;
    }

    /* <!-- Video Section --> */
    .video-wrapper {
        margin: 40px 0;
    }

    .video-subwrapper {
        flex-direction: column;
    }

    .video-section,
    .video-description-wrapper {
        width: 100%;
    }

    .video-section {
        height: 224px;
        margin-bottom: 20px;
        border-radius: 14px;
    }

    .video-description-wrapper h2 {
        padding-bottom: 12px;
    }

    /* <!-- Third Section --> */
    .features-card-wrapper {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 24px;
        gap: 20px;
    }

    .feature-card {
        height: auto;
        gap: 40px;
        padding: 24px;
    }

    /* <!-- Fourth Section --> */
    .curriculum-subwrapper .left-wrapper .left-wrapper-title {
        font-size: 16px;
    }

    /* <!-- Seventh Section ( Green ) --> */
    .green-section-wrapper {
        padding: 24px;
    }

    .green-right-wrapper-mobile {
        height: 200px;
        border-radius: 14px;
    }

    /* <!-- Image Gallery Swiper --> */
    .gallery-swiper-wrapper .swiper-slide p {
        font-size: 16px;
    }
}

/************* College Counseling Page CSS *************/

.calender-details-wrapper,
.calender-details-container {
    width: 100%;
}

.calender-details-container {
    display: grid;
    justify-content: center;
    align-items: center;
    background-color: #fff6e7;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 20px;
    padding: 38px;
    gap: 40px;
    margin: 45px 0;
}

.calender-image {
    width: 100%;
}

.calender-image img {
    width: 100%;
    border-radius: 20px;
    height: 414px;
    object-fit: cover;
}

.calendar-text p {
    margin-bottom: 10px;
    color: #00243d;
    font-family: "Open Sans";
    font-size: 14px;
    line-height: 160%;
    /* 22.4px */
}

.calender-table-wrapper {
    width: 100%;
    margin-bottom: 44px;
}

.calender-table-heading {
    color: #00243d;
    font-family: "Playfair Display";
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    /* 33.6px */
    margin-bottom: 20px;
    max-width: 601px;
}

.college-counsiling-section-1 {
    width: 100%;
    margin: 60px 0;
}

.college-counsiling-para {
    font-size: 14px;
    margin: 15px 0 20px;
}

@media (max-width: 448px) {
    .calender-details-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
        margin: 60px 0;
    }

    .calender-image img {
        height: 226px;
    }

}

@media (max-width: 768px) {
    .calender-details-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .calender-image img {
        height: auto;
    }
   

}

@media (max-width: 1024px) {
    .calender-details-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .calender-image img {
        height: auto;
    }

}

/************* Curriculum Modal Dropdown CSS *************/

.desktop-navigation .nav-dropdown-content.show {
    display: flex;
}

.desktop-navigation .nav-dropdown-content {
    display: none;
    flex-direction: column;
    padding: 4px 0 4px 4x;
    background-color: rgba(3, 72, 159, 0.05);
    border-radius: 0 0 10px 10px;
    margin-bottom: 8px;
    border-left: 2px solid #03489f;
    margin-left: 10px;
}

.desktop-navigation .nav-dropdown-item {
    padding: 8px 20px;
    color: #00243d;
    font-size: 12px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hidden {
    display: none !important;
}

.no-awards-msg {
  text-align: left;
  font-size: 18px;
  color: #666;
  margin-bottom: 65px;
  margin-top: -40px !important;
  display: none;
}
