/* ===================================
   PRESIDENT SECTION
   =================================== */
.container {  max-width: 1440px;
}
.president-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.president-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.president-image {
    flex: 0 0 300px;
}

.president-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.president-details {
    flex: 1;
}

.president-name {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.president-position {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.president-message {
    margin-bottom: 2rem;
    line-height: 1.8;
}



/* ===================================
   BANNER SECTION
   =================================== */

.banner-section {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 850px;

}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.banner-content {
    max-width: 800px;
    padding: 2rem 0;
}

.banner-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    padding: 60px 0;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-title {
    color: #333;
    margin-bottom: 1.5rem;
}

.about-description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* ===================================
   INSTAGRAM SECTION
   =================================== */

.instagram-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.instagram-title {
    text-align: center;
    margin-bottom: 1rem !important;
    color: #333;
    font-weight: 700;
}
.pt-50 {
  padding-top: 50px !important;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.instagram-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

.instagram-link {
    text-align: center;
    margin-top: 2rem;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.btn-instagram:hover {
    opacity: 0.9;
    color: white;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
    color: white;
}

.btn-gradient {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-gradient:hover {
    opacity: 0.9;
    color: white;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-home {
    background: #f8f9fa;
}

.services-home .row {
    margin-bottom: 0;
}

.services-home .col-12 {
    margin-bottom: 30px;
}

.services-home .col-12:last-child {
    margin-bottom: 0;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.top-header-bg {
  padding: 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 999999;
  background: #fff;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 15px 30px; */
}

.logo img {
 height: auto;
    width: 120px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 100px;
    z-index: 11;
    position: relative;
    margin-bottom: -32px;
}
.site-content {
  padding: 0 !important;
}
.current_page_item a {
    background: #043476;
    color: #fff !important;
    padding: 12px 25px !important;
    border: 1px solid #043476;
    transition: all 0.3s ease;
    border-radius: 34px;
}
.primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu li {
  margin: 0 20px;
  position: relative;
}

.primary-menu li a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 10px 0;
  position: relative;
}

.primary-menu li a:hover {
  color: #043476;
}

.hero-background img {
  width: 100%;
  height: auto;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

/* .primary-menu li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #043476;
  transition: width 0.3s ease;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease;
}

.menu-toggle:hover {
  color: #043476;
}

.menu-toggle.active i.fa-bars {
  display: none;
}

.menu-toggle.active::after {
  content: '\f00d';
  font-family: 'FontAwesome';
  font-size: 24px;
  color: #333;
}

@media (max-width: 991px) {
  .menu-section {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    z-index: 1000;
  }
  
  .menu-section.active {
    right: 0;
  }
  
  .primary-menu {
    flex-direction: column;
  }
  
  .primary-menu li {
    margin: 10px 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-area {
  background-color: #fff;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.header-area img {
  width: 180px;
  margin-bottom: -95px;
}
.header-area .navbar {
  padding-top: 18px;
  padding-bottom: 18px;
  transition: padding 0.3s ease;
}
.header-area .navbar-brand img {
  transition: width 0.3s ease;
}
.header-area .navbar-nav .nav-link {
  transition: font-size 0.3s ease, padding 0.3s ease;
}
.header-area .btn-gradient {
  padding: 10px 20px;
  transition: padding 0.3s ease, font-size 0.3s ease;
}
.header-area.shrink {
  padding-top: 2px;
  padding-bottom: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.header-area.shrink .navbar {
  padding-top: 4px;
  padding-bottom: 8px;
}
.header-area.shrink .navbar-brand img {
  width: 120px;
  margin-bottom: -65px;
}
.header-area.shrink .navbar-nav .nav-link {
  font-size: 14px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.header-area.shrink .btn-gradient {
  padding: 8px 15px;
  font-size: 14px;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 0;
  padding-right: 0;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 600;
  font-size: 18px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-gradient {
  background: #043476;
  color: #fff;
  padding: 12px 25px;
  border: 1px solid #043476;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(4, 52, 118, 0.4);
  transform: translateY(-2px);
  border: 1px solid #043476;
  background-color: #C2E9FF;
  color: #043476;
}
.btn-arrow:hover img {
  transform: rotate(45deg);
  transition: .3s;
}
.btn-outline-white {
  color: #fff;
  border: 2px solid #ffffff;
  padding: 10px 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 30px;
}
.btn-outline-white:hover {
  color: #043476;
  border-color: #C2E9FF;
  background: #C2E9FF;
}
.insta-btn {
  text-decoration: none;
  color: #043476;
  border: 2px solid #043476;
  padding: 10px 22px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 20px;
  border-radius: 30px;
  display: inline-block;
}
.insta-btn:hover {
  color: #fff;
  background-color: #043476;
  border-color: #043476;
}
.insta-btn img {
  width: 27px;
  margin-right: 5px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  height: 700px;
  position: relative;
  background-size: 500px;
  transition: all 0.5s ease;
}
.hero-section:hover {
  height: 700px;
  position: relative;
  background-size: 500px;
  transition: all 0.5s ease;
}
.hero-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 752px;
  background: url('../assets/image/home_banner.png') no-repeat center center / cover;
  z-index: -1;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.abt_hero-section::before {
  background: url('../assets/image/abt_banner.png') no-repeat center center / cover;
  height: 577px;
}
.banner-pos {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 577px;
  justify-content: center;
}
.banner-content {
  text-align: center;
}
.banner-content h1 {
     font-size: 95px;
    color: #fff;
    font-weight: 600 !important;
}
.banner-content p {
 font-size: 36px;
    color: #fff;
}
.main-about-text {
  text-align: center;
}

/* ===================================
   PRESIDENT MESSAGE SECTION
   =================================== */

.president-msg {
  position: relative;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  background-color: #ffffff;
  z-index: 9999;
  position: relative;
}
.president-msg:after {
  border-right: 2px solid #e9f1fc;
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  display: block;
  content: '';
}
.president-msg-area {
  align-items: center;
}
.president-image {
  padding: 60px;
  /* border-right: 2px solid #e9f1fc; */
  /* padding-top: 125px;
  padding-bottom: 90px;
} */
}
.president-image p {
    padding-top: 15px;
    font-size: 18px;
    font-weight: 600;
}
.president-image span {
    font-weight: 400;
}
.president-image img {
  width: 100%;
}
.president-image p {
  padding-top: 15px;
  font-size: 18px;
  font-weight: 600;
}
.president-image span {
  font-weight: 400;
}
.president-text {
  padding: 60px;
  margin-top: 20px;
  /* padding-top: 120px;
  padding-bottom: 90px; */
}
.president-text h3 {
  font-size: 44px;
  font-weight: 600;
  padding-bottom: 20px;
}
.president-text p {
  font-size: 19px;
}
.president-text img {
  width: 5px !important;
  margin-right: 5px !important;
}

/* ===================================
   ABOUT SECTION WITH GRADIENT BG
   =================================== */

.abt-bg-gre {
  background-color:#C2E9FF;
  margin-top: -50px;
  position: relative;
  z-index: 1000;
}
.abt-home {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.abt-home p {
  width: 60%;
  margin: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  opacity: 0.8;
}
.bottom-sm-area {
  padding-bottom: 40px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  position: relative;
  z-index: 10000;
}

/* ===================================
   SLIDER/CAROUSEL
   =================================== */

.custom-slider-container {
  width: 95%;
  overflow: hidden;
  position: relative;
  margin: auto;
  padding-top: 100px;
}
.abt-home h1 {
  font-size: 48px;
  font-weight: 700;
}
.custom-slider-track {
  display: flex;
  padding-bottom: 20px;
}
.abt-home {
  padding-top: 150px;
}
.abt-home p {
  color: #000 !important;
  width: 60%;
    margin: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    opacity: 0.8;
    font-size: 17px;
}
.slider-track-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.custom-box {
  width: 420px;
  height: 320px;
  border-radius: 30px;
  background-color: #ccc;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #111;
  margin-right: 18px;
}
.image-box img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}
/* @keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
} */

/* ===================================
   TEAM SECTION
   =================================== */

.team-section {
  background-image: url(../assets/image/team-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 120px;
  padding-bottom: 90px;
  position: relative;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.team-section > .container {
  position: relative;
  z-index: 2;
}
.team-section h1 {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}
.team-description {
  text-align: center;
  font-size: 16px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
}
.team-tabs {
  display: flex;
  justify-content: center;
  gap: 80px;
  border-bottom: none;
  margin-bottom: 50px;
  position: relative;
}
.team-tabs .nav-link {
  color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px 0;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}
.team-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: transparent;
  transition: all 0.3s ease;
}
.team-tabs .nav-link.active {
  color: #fff;
  background: none;
  font-size: 18px;
  letter-spacing: .03em;
}
.team-tabs .nav-link.active::after {
  background: #C2E9FF;
}
.team-tabs .nav-link.active::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #C2E9FF;
  z-index: 1;
}
.team-carousel-container {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-bottom: 50px;
}
.carousel-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  flex-shrink: 0;
}
.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
}
.carousel-arrow.disabled {
  opacity: 0.4;
  border-color: rgba(255, 255, 255, 0.25);
  cursor: default;
  pointer-events: none;
}
.team-carousel {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
  scrollbar-width: none;
  padding-right: 20px;
}
.team-carousel::-webkit-scrollbar {
  display: none;
}
.team-cards-row > [class^="col-"],
.team-cards-row > [class*=" col-"] {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.team-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 14px;
}
.team-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  overflow: hidden;
}
.team-card:hover img {
  transform: scale(1.04);
}
.team-card:hover h3 {
  color: #043476;
}
.team-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
}
.team-card p {
  font-size: 16px;
  color: #000000;
  opacity: 0.6;
}

/* ===================================
   SERVICES/ALUMNI SECTION
   =================================== */

.services-home {
  background-color: #ffffff;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 99999;
}
.alumni-left {
  padding: 150px 60px;
  border-right: 2px solid #e9f1fc;
}
.alumni-left img {
  width: 100%;
  padding-bottom: 35px;
}
.alumni-left h2 {
  font-size: 46px;
  font-weight: 600;
  padding-bottom: 13px;
}
.alumni-left p {
  font-size: 18px;
}
.alumni-right {
  padding: 150px 60px;
}
.alumni-right img {
  width: 100%;
  padding-bottom: 35px;
}
.alumni-right h2 {
  font-size: 46px;
  font-weight: 600;
  padding-bottom: 13px;
}
.alumni-right p {
  font-size: 18px;
  min-height: 215px;
}

/* ===================================
   SOCIAL MEDIA SECTION
   =================================== */

.sm-card-row {
     display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 8px;
    margin: 0;
}
.sm-card {
  flex: 1 1 0;
    max-width: 20%;
    padding: 4px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 12px;
}
.sm-card img {
 width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.35s ease;
}
.sm-card:hover img {
  transform: scale(1.02);
}

/* ===================================
   FOOTER
   =================================== */

.footer-sec {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 140px;
  margin-top: -50px;
  padding-bottom: 70px;
}
.footer-sec a {
  text-decoration: none;
  color: #ffffff;
}
.footer-sec h6 {
  color: #C2E9FF;
  padding-bottom: 5px;
}
.footer-sec p {
  color: #C2E9FF;
  padding-top: 60px;
  opacity: .6;
}
.social-icon i {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
  border: 1px solid #ffffff;
  padding: 11px 13px;
  border-radius: 100px;
}
.social-icon i:hover {
  background-color: #ffffff;
  color: #043476;
}

.entry-thumbnail-bg {
 height: 500px;
    position: relative;
    width: 100%;
    background-position: center;
}
.banner-subtitle {
  position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700 !important;
    font-size: 68px !important;
    color: #fff;
}
.slider-nav-btn {
    background: #fff;
    border: 2px solid #043476;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}
.slider-nav-btn:hover {
    background: #043476;
    transform: scale(1.1);
}
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}
.custom-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 15px;
}
/* ===================================
   UTILITY CLASSES
   =================================== */

.pad-right-0 {
  padding-right: 0;
}

.pad-left-0 {
  padding-left: 0;
}

.pad-0-form {
  padding: 0;
}
/* About */

.abt_hero-section::before{
  border-radius: 0;
}
.abt_hero-section{
  height: 577px;
}
.abt-banner-text {
  align-items: flex-end;
  padding-bottom: 60px;
}
.abt-banner-title h1{
  font-weight: 600 !important;
  font-size: 68px !important;
}
.main-about-text {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 70%;
  margin: auto;
}
.main-about-text h1 {
  font-size: 48px;
  font-weight: 700;
  padding-bottom: 20px;
}
.main-about-text p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}
.vision-mission-section {
  background-color:#043476;
  padding: 80px 0;
}
.pillars-header {
  display: flex;
    align-items: baseline;
    margin-bottom: 60px;
    position: relative;
    justify-content: space-between;
    right: 175px;
}
.pillars-header::before {
  content: '';
  /* position: absolute; */
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.pillar-item {
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #043476;
  padding: 0 15px;
  align-items: center;
}
.pillar-item h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  position: relative;
  padding: 0 20px;
}
.pillar-underline {
  content: '';
  position: absolute;
  top: 50%;
  width: 300px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%);
  left: 96%;
}

.vision-mission-section h1{
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 80px;
}
.vision-box {
  background-color: #fff;
  border-radius: 30px;
  padding: 15px;
  color: #043476;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 580px;
  
}
.vision-text {
  padding: 10px;
}
.vision-text h3 {
  font-size: 28px;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 10px;
  color: #000;
}
.vision-text p {
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  opacity: 0.8;
}

/* Testimonials Section- about us */
.testimonial-sec {
  padding: 80px 0 160px 0;
  background-color: #f8f9fa;
}

.testimonial-sec h1 {
      text-align: center;
    font-size: 50px;
    font-weight: 700;
    color: #000;
    margin-bottom: 110px;
}

.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  padding: 0 80px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
  max-width: 1200px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: #C2E9FF;
  border-radius: 60px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
  width: 420px;
  transform: scale(0.8);
  position: relative;
  /* opacity: 0.6; */
  order: 2;
}

.testimonial-card.prev {
  order: 1;
  transform: scale(0.85);
 
}

.testimonial-card.active {
  background: #043476;
  transform: scale(1);
  opacity: 1;
  width: 520px;
  padding: 45px 25px;
  box-shadow: 0 15px 40px rgba(4, 52, 118, 0.3);
  z-index: 10;
  order: 2;
}

.testimonial-card.next {
  order: 3;
  transform: scale(0.85);
  /* opacity: 0.7; */
}

.testimonial-card.hidden {
  display: none;
}

.quote-icon {
  font-size: 80px;
  font-weight: bold;
  color: #000;
  line-height: 0.1;
  text-align: left;
}

.testimonial-card.active .quote-icon {
  color: #fff;
  font-size: 120px;
}

.testimonial-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-card.active .testimonial-image {
  width: 340px;
  height: 340px;
  border-width: 0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 20px;
  padding: 10px 15px;
  opacity: .8;
  min-height: 200px;
  word-wrap: break-word;
}

.testimonial-card.active .testimonial-text {
  font-size: 20px;
  color: #fff;
  opacity:.8;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 600;
  color: #043476;
  margin: 0;
}

.testimonial-card.active .testimonial-author {
  color: #fff;
  font-size: 18px;
}

.testimonial-nav-btn {
  background: #fff;
  border: 2px solid #043476;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-nav-btn:hover {
  background: #043476;
  transform: scale(1.1);
}

.testimonial-nav-btn i {
  font-size: 20px;
  color: #043476;
  transition: color 0.3s ease;
}

.testimonial-nav-btn:hover i {
  color: #fff;
}
.join-us-section {
  padding-top: 80px;
  padding-bottom: 140px;
  background-image: linear-gradient(to bottom, #C2E9FF, #ffffff);
  text-align: center;
}

/* Alumni */
.pad-lr-0{
  padding-left: 0;
  padding-right: 0;
}
.bg-alumni {
  background-color: #C2E9FF;
}
.alumni-card {
  padding: 0 70px;
}
.alumni-card h3{
  font-weight: 600;
  font-size: 30px;
  padding-bottom: 10px;
}
.alumni-card p{
  font-size: 18px;
  opacity: 0.8;
}

/* Partnership */
.welcome-letter {
  padding: 60px 0 80px 0;
}

.welcome-letter-card {
 padding: 20px 60px;
  position: relative;
  overflow: visible;
}

.welcome-letter-card {
  position: relative; 
}
.welcome-letter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 305px;
  width: 645px;
  height: 280px;
  border-top: 8px solid #C2E9FF;
  border-left: 8px solid #C2E9FF;
  border-radius: 24px 0 0 0;
}
.welcome-letter-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 407px;
  width: 60px;
  height: 59px;
  border-top: 8px solid #C2E9FF;
  border-right: 8px solid #C2E9FF;
  border-radius: 0 24px 0 0;
}
.welcome-letter-card .row {
  position: relative;
  z-index: 1;
}
.welcome-letter-card .row::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 258px;
  width: 98px;
  height: 310px;
  border-bottom: 8px solid #C2E9FF;
  border-left: 8px solid #C2E9FF;
  border-radius: 0 0 0 24px;
  z-index: -1;
}

.welcome-letter-card .row::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 360px;
  width: 605px;
  height: 60px;
  border-bottom: 8px solid #C2E9FF;
  border-right: 8px solid #C2E9FF;
  border-radius: 0 0 24px 0;
}

.welcome-letter-image {
  text-align: center;
  margin-bottom: 30px;
}

.letter-portrait {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.welcome-letter-content {
  color: #ffffff;
  padding: 20px;
}

.letter-greeting {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #C2E9FF;
}

.welcome-letter-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.letter-signature {
  font-size: 16px;
  margin-top: 30px;
  color: #C2E9FF;
}
/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets and smaller desktops (992px - 1023px) */

/* Team Section Styles */

.team-section {
  background-image: url(../images/team-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 120px;
  padding-bottom: 90px;
  position: relative;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}

.team-section > .container {
  position: relative;
  z-index: 2;
}
.team-section h1 {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}
.team-description {
  text-align: center;
  font-size: 16px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
}
.team-tabs {
  display: flex;
  justify-content: center;
  gap: 80px;
  border-bottom: none;
  margin-bottom: 50px;
  position: relative;
}
.team-tabs .nav-link {
  color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px 0;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}
.team-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: transparent;
  transition: all 0.3s ease;
}
.team-tabs .nav-link.active {
  color: #fff;
  background: none;
  font-size: 18px;
  letter-spacing: .03em;
}
.team-tabs .nav-link.active::after {
  background: #C2E9FF;
}
.team-tabs .nav-link.active::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #C2E9FF;
  z-index: 1;
}
.team-carousel-container {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-bottom: 50px;
}
.carousel-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  flex-shrink: 0;
}
.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
}
.carousel-arrow.disabled {
  opacity: 0.4;
  border-color: rgba(255, 255, 255, 0.25);
  cursor: default;
  pointer-events: none;
}
.team-carousel {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
  scrollbar-width: none;
  padding-right: 20px;
}
.team-carousel::-webkit-scrollbar {
  display: none;
}

.team-cards-row > [class^="col-"],
.team-cards-row > [class*=" col-"] {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding-bottom: 50px;
}
.team-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 14px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 0px 0 rgba(0, 0, 0, 0.1)
}
.team-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  overflow: hidden;
}
.team-card:hover img {
  transform: scale(1.04);
}
.team-card:hover h3 {
  color: #043476;
}
.team-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
}
.team-card p {
  font-size: 16px;
  color: #000000;
  opacity: 0.6;
}
.founding-class-section {
    margin-top: -50px;
    padding-top: 150px;
    text-align: left;
}
.founding-class-section h1 {
       text-align: center;
    font-size: 54px !important;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 40px !important;
    width: 80%;
    margin: 0 auto;
}

/* Recruitment Page Styles */

.rush-video-section {
  color: #ffffff;
  text-align: center;
}
.rush-video-subtitle {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}
.rush-video-section p{
  font-size: 20px;
  margin-bottom: 40px;
}
.rush-video-card {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 24px;
}
.rush-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.rush-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}
.rush-video-wrapper .rush-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rush-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #043476;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.rush-play-btn:hover {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}
.rush-play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
  padding: 120px 0 90px;
  position: relative;
  color: #ffffff;
  overflow-anchor: none;
}

html {
  scroll-behavior: auto !important;
}

.faq-section .container {
  overflow-anchor: none;
}

.faq-section .row {
  overflow-anchor: none;
}

.faq-section h1 {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 50px;
  padding-bottom: 20px;
}
.faq-section p {
  font-size: 16px;
  text-align: left !important;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-anchor: none;
  padding: 0 30px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  overflow-anchor: none;
}

.faq-item .collapse {
  overflow-anchor: none;
}
.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  color: #043476 !important;
  font-size: 18px !important;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Inter Tight', sans-serif;
  padding-top: 14px;
  padding-bottom: 14px;
}
.faq-question:not(.collapsed) {
  color: #043476;
  font-size: 18px !important;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #043476;
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  border: 1px solid #043476;
  border-radius: 50%;
 
}

.faq-answer {
  padding: 0 28px 24px;
  color: #043476;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
}

.faq-image-container {
  text-align: center;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.faq-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}
.btn-align-center {
  text-align: center;
}

.contact-section {
  background: #C2E9FF;
  padding: 80px 20px;
  margin-left: 0;
  margin-bottom: 60px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  position: relative;
  min-height: 520px;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* LEFT CARD */
.reach-card {
  background: #083b7a;
  color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
  flex: 1 1 50%;
}

.reach-header {
  padding: 30px;
  background: #043476;
  padding-bottom: 15px;
}

.reach-header h3 {
  margin: 0 0 6px;
  font-size: 32px;
}

.reach-header p {
  margin: 0;
  font-size: 16px;
}

.reach-image img {
  width: 100%;
  object-fit: cover;
}
.reach-card a{
  text-decoration: none;
  color: #fff;
}

.reach-footer {
  padding: 16px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #083b7a;
}
.reach-footer span {
  margin-right: 10px;
}

.social-icons a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* RIGHT FORM CARD */
.form-card {
  padding: 20px;
  position: relative;
  z-index: 1;
  flex: 1 1 40%;
}

.form-card h3 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
}

.form-card form input,
.form-card form textarea {
  width: 100%;
  padding: 8px 14px;
  margin-bottom: 25px;
  border: 2px solid #bcdff5;
  border-radius: 4px;
  font-size: 14px;
}

.form-card textarea {
  height: 110px;
  resize: none;
}
.wpcf7-submit {
  background: #083b7a;
    color: #fff;
    border: none;
    padding: 10px 24px !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    width: 120px !important;
}
.wpcf7-submit:hover {
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(4, 52, 118, 0.4);
  transform: translateY(-2px);
  border: 1px solid #043476;
  background-color: #C2E9FF;
  color: #043476;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 0.8rem !important;
    font-weight: normal;
    display: block;
    margin-top: -20px;
    margin-bottom: 10px;
}

.form-card button {
  background: #083b7a;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
}
.contact_footer {
  background-color: #043476;
  text-align: center;
}
.contact_footer p {
  color: #C2E9FF;
  padding: 20px 0;
  margin: 0;
  opacity: .6;
}
#wpcf7-f261-o1 label {
  width: 100%;
}
.join-us-section h1 {
      width: 70%;
    margin: 0 auto;
    font-weight: 600;
    font-size: 45px !important;
    margin-bottom: 40px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }
 
  .form-card {
    position: relative;
    width: 100%;
    top: 0;
    right: auto;
    margin-top: 10px;
  }
 
  .reach-card {
    width: 100%;
    right: auto;
  }
   .faq-section {
    padding: 80px 0 60px;
  }
 
  .faq-section h1 {
    font-size: 36px;
    margin-bottom: 40px;
  }
 
  .faq-image-container {
    margin-top: 40px;
  }
}
/* Tablets and smaller desktops (992px - 1023px) */
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .header-area img {
    width: 180px;
  }
  .banner-title h1 {
    font-size: 48px;
  }
  .banner-title p {
    font-size: 28px;
  }
  .custom-box {
    width: 220px;
    height: 220px;
  }
  .services-home {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .btn-gradient {
    padding: 8px 20px;
    margin-top: 10px !important;
  }
  .custom-slider-container {
    padding-top: 60px;
    width: 98%;
  }
  .custom-slider-container h1 {
    font-size: 40px;
  }
  .hero-section {
    height: 320px;
    background-size: 320px;
}
.banner-pos{
  min-height: 320px !important;
}
.hero-section::before {
  height: 340px;
}
.president-text {
    padding: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
}
.president-image {
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 40px;
}
.president-text p {
    font-size: 14px;
}
.abt-home {
    padding-top: 50px;
    padding-bottom: 0px;
}
.alumni-left {
    padding: 60px 20px;
    padding-top: 0;
}
.alumni-right{
    padding: 60px 20px;
    padding-top: 0;
  }
  .alumni-left h2 {
    font-size: 32px;
  }
  .alumni-right h2 {
    font-size: 32px;
  }
  .alumni-left p{
    font-size: 14px;
  }
  .alumni-right p{
    font-size: 14px;
  }
  .services-home{
    padding-bottom: 0;
  }
  .footer-sec {
    padding-top: 90px;
    padding-bottom: 40px;
    padding-left: 30px;
  }
  .vision-text p {
    font-size: 14px;
    line-height: 1.3;
  }
  .abt-home p {
    width: 90%;
  }
  .testimonial-track {
    overflow: hidden;
  }
  .testimonial-carousel {
    gap: 0;
  }
  .abt-banner-title h1 {
    font-size: 44px !important;
}
.main-about-text p {
    font-size: 16px;
  }
.main-about-text{
  width: 90%;
  padding-bottom: 30px;
}
.pillars-header {
  right: 72px;
}
.vision-text h3 {
    font-size: 22px;
    padding-bottom: 10px;
  }
  .pillar-item h2 {
    font-size: 28px;
  }
  .vision-mission-section{
    padding: 40px 0;
    }
  .vision-mission-section h1{
    font-size: 40px;
    padding-bottom: 30px;
  }
.main-about-text h1 {
    font-size: 40px;
  }
  .vision-box{
    min-height: 475px;
  }
  .testimonial-sec h1 {
    font-size: 40px;
    padding-bottom: 0;
  }
  .team-card h3 {
    font-size: 16px;
  }
  .team-card p {
    font-size: 10px;
  }
  .footer-sec p {
    padding-top: 30px;
  }
  .team-section {
    padding-bottom: 20px;
    padding-top: 60px;
  }
  .founding-class-section {
    padding-top: 110px;
  }
  .founding-class-section h1 {
      font-size: 40px !important;
      padding-bottom: 10px;
    }
    .join-us-section {
      padding-bottom: 30px;
      padding-top: 40px;
    }
    .join-us-section h1 {
      font-size: 36px;
      width: 90%;
    }
    .founding-class-section {
      padding-top: 100px;
    }
    .founding-class-section h1 {
      font-size: 36px !important;
    }
    .faq-section {
        padding: 40px 0 60px;
    }
    .alumni-card {
    padding: 0px 20px;
}
  .team-section h1{
    font-size: 40px;
  }
  .alumni-benefits-section {
    padding-bottom: 0;
  }
  .welcome-letter-card::before {
  display: none;
}
.welcome-letter-card .row::before {
  display: none;
}
.welcome-letter-card {
        padding: 0px;
    }
    .welcome-letter-card .row::after {
      display: none;
    }
    .letter-portrait {
        max-width: 100%;
    }
.welcome-letter-content p {
    font-size: 16px;
    text-align: left;
    }
}
 
/* Tablets portrait and smaller (767px and below) */
@media (max-width: 767px) {
  .top-header-bg {
    position: absolute;
    padding: 0%;
  }
  .header-area {
    position: relative;
  }
  .header-area img {
    width: 150px;
  }
  .hero-section,
  .hero-section:hover {
    height: auto;
    min-height: 500px;
  }
  .hero-section::before {
    height: auto;
    min-height: 500px;
  }
  .banner-title h1 {
    font-size: 36px;
    text-align: center;
  }
  .banner-title p {
    font-size: 24px;
  }
  .custom-slider-container {
    padding-top: 50px;
  }
  .custom-box {
    width: 250px;
    height: 250px;
  }
  .services-home {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pad-right-0{
    padding-left: 0;
  }
  .alumni-left,
  .alumni-right {
    padding: 60px 30px;
    border-right: none;
  }
  .alumni-left h2,
  .alumni-right h2 {
    font-size: 32px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .welcome-letter {
    padding: 60px 0;
  }
 
  .welcome-letter-card {
    padding: 30px;
  }
 
  .welcome-letter-image {
    margin-bottom: 20px;
  }
  .faq-section h1 {
    font-size: 32px;
  }
 
  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }
 
  .faq-answer {
    padding: 0 20px 18px;
    font-size: 14px;
  }
 
  .faq-accordion {
    gap: 10px;
  }
  .letter-portrait {
    max-width: 250px;
  }
 
  .welcome-letter-content p {
    font-size: 13px;
    text-align: left;
  }
 
  .letter-signature {
    text-align: center !important;
  }
  .btn-gradient {
    padding: 12px 24px;
  }
  .footer-sec {
    padding-top: 100px;
  }
  .social-icon {
    padding-top: 20px;
  }
  .sm-card {
    max-width: 33.33%;
  }
    .navbar-collapse {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-top: 0;
  }
  .header-area img {
    width: 125px !important;
    margin-bottom: -65px;
  }
  .banner-pos {
    height: 400px;
    min-height: 400px;
  }
  .president-image {
    padding-top: 0;
    padding-bottom: 0;
    padding: 20px;
  }
  .president-text {
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 40px;
}
.abt-home {
    padding-top: 60px;
    padding-bottom: 0 ;
}
.slider-wrapper{
  gap: 0;
}
  .alumni-left,
  .alumni-right {
    padding: 40px 20px;
    padding-bottom: 0;
  }
  .btn-gradient{
    margin-top: 20px !important;
  }
  .insta-btn {
    margin-bottom: 20px;
  }
   .footer-sec {
    padding-top: 80px;
    padding-left: 20px;
    padding-bottom: 15px;
  }
    .services-home {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .abt-banner-title h1 {
    font-size: 30px !important;
    padding-top: 30px !important;
}
.main-about-text h1 {
    font-size: 32px;
  }
  .main-about-text {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 90%;
}
.pillars-header {
  display: none;
}
.vision-mission-section {
    padding: 40px 0;
}
.vision-mission-section h1{
    font-size: 36px;
    padding-bottom: 40px;
}
.vision-box {
  margin-bottom: 20px;
}
 .header-area img {
    width: 180px;
  }
  .hero-section,
  .hero-section:hover {
    min-height: 400px;
    background-size: 300px;
  }
  .hero-section::before {
    min-height: 400px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .banner-title h1 {
    font-size: 28px;
    width: 100%;
    padding: 0 15px;
  }
  .banner-title p {
    font-size: 18px;
    padding: 10px 15px;
  }
  .custom-slider-container {
    padding-top: 30px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .slider-track-container {
    padding: 0 10px;
  }
  .custom-slider-track {
    gap: 15px;
  }
  .custom-box {
    width: calc(100vw - 80px);
    height: 280px;
    margin-right: 0;
    border-radius: 20px;
    flex-shrink: 0;
  }
  .custom-box p {
    padding-left: 20px;
    padding-top: 20px;
    font-size: 14px;
  }
  .custom-box h1 {
    font-size: 40px;
    padding-bottom: 20px;
    padding-right: 15px;
  }
  .slider-wrapper {
    gap: 10px;
  }
  .slider-nav-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .slider-nav-btn i {
    font-size: 16px;
  }
  .testimonial-sec {
    padding: 40px 0;
  }
  .testimonial-sec h1 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .testimonial-carousel {
    flex-direction: column;
    gap: 30px;
    padding: 0 0 80px;
  }
  .testimonial-track {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .testimonial-card {
    display: none !important;
    width: 100%;
    max-width: 100%;
    transform: none;
    padding: 30px 20px;
    border-radius: 30px;
  }
  .testimonial-card.active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    background: #043476;
  }
  .testimonial-nav-btn {
    position: absolute;
    bottom: 20px;
    width: 45px;
    height: 45px;
  }
  .testimonial-nav-btn.prev-btn {
    left: calc(50% - 60px);
  }
  .testimonial-nav-btn.next-btn {
    left: calc(50% + 10px);
  }
  .testimonial-nav-btn i {
    font-size: 18px;
  }
  .quote-icon,
  .testimonial-card.active .quote-icon {
    font-size: 60px;
  }
  .testimonial-image,
  .testimonial-card.active .testimonial-image {
    width: 200px;
    height: 200px;
  }
  .testimonial-text,
  .testimonial-card.active .testimonial-text {
    font-size: 16px;
  }
  .join-us-section h1 {
    width: 100%;
    font-size: 30px;
    padding-bottom: 0;
  }
  .abt_hero-section{
    height: 320px;
    min-height: 320px;
  }
  .abt_hero-section::before{
    min-height: 320px;
  }
  .abt-banner-text {
    height: 320px;
    min-height: 320px;
  }
  .testimonial-card.active .testimonial-text {
    color: #fff;
  }
  .join-us-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .testimonial-author,
  .testimonial-card.active .testimonial-author {
    font-size: 15px;
  }
  .alumni-left h2,
  .alumni-right h2 {
    font-size: 28px;
  }
  .alumni-left img,
  .alumni-right img {
    padding-bottom: 20px;
  }
  .team-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .team-section h1 {
    font-size: 32px;
    margin-bottom: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    padding: 8px 0;
  }
  .faq-accordion {
      padding: 0;
      padding-bottom: 0;
    }
  .btn-gradient {
    padding: 10px 20px;
    font-size: 14px;
  }
  .founding-class-section h1 {
    font-size: 32px !important;
    margin-bottom: 0;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .btn-align-center h1{
    padding-bottom: 0;
  }
  .faq-section {
        padding: 30px 0 0;
    }
  .faq-section h1 {
    font-size: 32px;
    margin-bottom: 0 !important;
  }
  .btn-arrow img {
    width: 12px !important;
  }
 
  .navbar-toggler {
    padding: 8px 10px;
  }
 
  .sm-card {
    max-width: 50%;
  }
  .abt-home p {
    width: 90%;
  }
  .team-cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    flex-wrap: wrap;
  }
 
  .team-cards-row > [class^="col-"],
  .team-cards-row > [class*=" col-"] {
    flex: 1 1 100%;
    max-width: 100%;
    padding-bottom: 0;
  }
 
  .team-card {
    margin: 0 auto;
    width: 100%;
    margin-bottom: 15px;
  }
  .team-card h3 {
    font-size: 22px;
  }
 
  .team-card p {
    font-size: 14px;
  }
  .alumni-card {
    padding: 30px 20px !important;
}
.alumni-benefits-section{
  padding-bottom: 0;
}
.welcome-letter-card::before {
  display: none;
}
.welcome-letter-card .row::before {
  display: none;
}
.welcome-letter-card {
        padding: 0px;
    }
    .welcome-letter-card .row::after {
      display: none;
    }
    .letter-portrait {
        max-width: 100%;
    }
.welcome-letter-content p {
    font-size: 16px;
    text-align: left;
    }
    .contact-section {
    padding: 25px 20px;
  }
  .social-icon i{
    margin-right: 0;
  }
  .reach-footer span {
    margin-top: 20px;
}
.president-msg:after {
  display: none;
}
}
 
/* Extra small devices (420px and below) */
@media (max-width: 420px) {
 
  .banner-title h1 {
    font-size: 24px;
  }
  .banner-title p {
    font-size: 16px;
  }
  .custom-box {
    width: 200px;
    height: 200px;
  }
  .custom-slider-container h1 {
    font-size: 28px;
  }
}
 
/* iPad Pro 12.9" - Portrait */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .header-area img {
    width: 200px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
  }
  .btn-arrow img {
    width: 15px !important;
  }
  .testimonial-track {
    overflow: hidden;
  }
  .vision-box{
    min-height: 600px;
  }
  .pillars-header{
    right: 106px;
  }
  .footer-sec {
    padding-top: 60px;
    padding-bottom: 20px;
  }
  .footer-sec p{
    font-size: 14px;
  }
  .footer-sec{
    padding-left: 20px;
  }
  .team-card h3 {
    font-size: 18px;
  }
  .team-card p {
    font-size: 12px;
}
.team-section {
    padding-bottom:30px;
    padding-top: 70px;
  }
  .founding-class-section h1 {
    font-size: 40px !important;
  }
  .abt_hero-section::before {
    height: 350px;
}
.abt_hero-section{
  height: 350px;
}
.abt-banner-title h1 {
    font-size: 46px !important;
}
.banner-pos {
  min-height: 300px;
}
.hero-section{
  height: 350px;
}
.hero-section::before{
  height: 396px;
}
.banner-title h1 {
    font-size: 50px;
}
.banner-title p {
    font-size: 22px;
}
.president-text {
    padding: 60px;
  }
  .main-about-text {
    padding-top: 100px;
  }
  .welcome-letter-card::before {
  display: none;
}
 .welcome-letter-card::after {
  display: none;
}
.welcome-letter-card .row::before {
  display: none;
}
.welcome-letter-card {
        padding: 0px;
    }
    .welcome-letter-card .row::after {
      display: none;
    }
}
 
/* iPad Pro 12.9" - Landscape */
@media only screen and (min-width: 1024px) and (max-width: 1367px) and (orientation: landscape) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
  }
  .footer-sec{
    padding-left: 20px !important;
  }
  .welcome-letter-card::before {
    width: 587px;
}.welcome-letter-card::before {
    width: 587px;
 
}
}
 