
/* Customized pagination bar */
.swiper-pagination-progressbar {
	width: 80px !important;
	height: 6px !important;
	background-color: #e0e0e0 !important;
	border-radius: 50px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	bottom: 10px; /* Push closer to bottom */
}

/* Blue fill line */
.swiper-pagination-progressbar-fill {
	background-color: rgba(25, 46, 82, 1) !important;
	border-radius: 50px !important;
	height: 100%;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background-color: rgba(25, 46, 82, 1) !important;
	border-radius: 50px !important;
	height: 100%;
}

.notched-box {
	position: relative;
	overflow: hidden;

	/* Rounded corners on 3 sides only */
	border-top-left-radius: 8px;
	border-top-right-radius: 0;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

/* Notch cutout (only bottom-left rounded to blend with box) */
.notched-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	background-color: #fff; /* match outer page background */
	border-bottom-left-radius: 8px;
	z-index: 1;
}

/* Icon button placed inside the notch */
.notched-box .corner-btn {
	position: absolute;
	top: 2px;
	right: 2px;
	padding: 0;
	background-color: transparent;
	border: none;
	border-radius: 6px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Button icon image styling */
.notched-box .corner-btn img {
	width: 34px;
	height: 34px;
}

/* Banner Section */

.about-banner-section {
	height: 600px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.banner-bg {
	background: rgb(25 46 82 / 56%);
}

/* Ensure text is above background */
.about-banner-section .container {
	z-index: 2;
}

/* Optional: Smoother responsiveness */
@media (max-width: 768px) {
	.banner-section {
		height: auto;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.banner-section h1 {
		font-size: 1.75rem;
	}
}

/* Explore our Schools */

.swiper-button-prev-schools-desktop,
.swiper-button-next-schools-desktop,
.swiper-button-prev-schools-mobile,
.swiper-button-nex-schools-mobile
{
	border: 0 !important;
}

.swiper-pagination.schools-pagination.swiper-pagination-progressbar {
	width: 80px; /* slightly lon≠≠≠≠ger */
	height: 6px; /* thicker */
	background-color: #e0e0e0;
	border-radius: 50px !important;
	left: 50%;
	transform: translateX(-50%);
	bottom: 10px; /* Push closer to bottom */
}

/* Blue fill line */
.swiper-pagination-progressbar-fill {
	background-color: rgba(25, 46, 82, 1) !important;
	border-radius: 50px !important;
	height: 100%;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background-color: rgba(25, 46, 82, 1) !important;
	border-radius: 50px !important;
	height: 100%;
}

.schools-swiper {
    padding-bottom: 60px !important;
}


/* Admission Details Section */
.admission-content {
    border-right: 2px solid #B8D4F2 !important;
}
.admission-content .btn {
    padding:2rem 6rem;
}


/* Related News */
.page-template-page-admission .sports-section {
    background: linear-gradient(180deg, var(--Background-Default-Primary, #FFF) 0%, var(--Background-Accent-Blue-medium, #DCEEFD) 100%);
    padding:100px 0;
    
}

.bigbanner-content-section-2 .btn-custom-outline {
  border: 2px solid white !important;
  color: white !important;
}

.bigbanner-content-section-2 .btn-custom-outline:hover {
  background-color: white;
  color: #000;
}


/* Rankings Section */

.rankings-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--Background-Default-Primary, #FFF) 11.05%, var(--Background-Accent-Blue-medium, #DCEEFD) 84.63%);
}

.rankings-heading {
  margin-bottom: 3rem;
}

.rank-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.rank-card:hover {
  transform: translateY(-5px);
}

.rank-image-container {
  background: #e0f0ff;
  padding: 20px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
}

.rank-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.rank-content {
  flex-grow: 1;
}

.rank-title {
  font-size: 1rem;
  color: #666;
  margin-bottom: 5px;
}

.rank-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.rank-subtitle {
  font-size: 0.9rem;
  color: #555;
}




/* Program Section */

.programs-section {
  padding: 80px 0;
  background-color: #fff;
}

.programs-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.programs-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
}

.programs-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: #000;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.programs-list a:hover {
  color: #007bff;
}

.programs-arrow {
  font-size: 1.2rem;
}

.programs-image {
  border-radius: 8px;
  object-fit: cover;
  height: 450px !important;
  width: 100%;
}


/*. Start Welcoming Students Section  */

.international-section {
      padding: 80px 0;
      background-color: #fff;
    }

    .section-heading {
      font-size: 2.8rem;
      font-weight: 600;
      line-height: 1.2;
    }

    .section-heading span {
      color: #1a73e8;
    }

    .international-image-wrapper {
      position: relative;
      width: 100%;
    }

    .international-image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .info-card-overlay {
       position: absolute;
        bottom: -60px;
        left: 65%;
        transform: translateX(-50%);
        background-color: #f5f5fb;
        padding: 90px 30px;
        width: 70%;
        border-radius: 4px;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px 30px;
    }

    .info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1rem;
    }

    .info-icon {
      width: 40px;
      height: 40px;
      background-color: #e0e7ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-right: 20px;
    }

    .apply-btn-wrapper {
      margin-top: 20px;
    }

    .apply-btn-wrapper .btn {
      padding: 10px 24px;
      font-size: 1rem;
      border-radius: 6px;
    }

    @media (max-width: 768px) {
      .info-card-overlay {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 30px;
      }

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

      .apply-btn-wrapper {
        text-align: center;
      }
    }
    
/* End Welcoming Students Section */



/* Start Empowering Section */
.empowering-section {
background: linear-gradient(172deg, var(--Background-Default-Primary, #FFF) 0.31%, var(--Background-Accent-Blue-light, #EFF8FF) 95.72%);
}

.empowering-section .swiper-ticker .swiper-slide {
	position: relative;
	padding: 0 0 24px 24px;
	margin-bottom: 30px;
	border-bottom: 1px solid #64b9f6;
	transition: transform 0.8s ease, opacity 0.8s ease;
}

.empowering-section .swiper-ticker .swiper-slide.active {
	opacity: 1;
	/*transform: translateX(5px);*/
}

.empowering-section .swiper-ticker .swiper-slide .title {
	font-weight: 600;
	font-size: 1.2rem;
}

.empowering-section .swiper-ticker .swiper-slide .progress-line {
	position: absolute;
	left: 0px;
	top: 0;
	width: 3px;
	height: 60%;
	background-color: #DCEEFD;
	transition: none;
}

.empowering-section .swiper-ticker .swiper-slide.active .progress-line {
	background-color: #297de5;
	animation: fillLine 3.5s linear forwards;
}

@keyframes fillLine {
	from {
		height: 0%;
	}
	to {
		height: 90%;
	}
}

.empowering-section .desc-item {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	height: 0;
	overflow: hidden;
	pointer-events: none;
}

.empowering-section .desc-item.active {
	opacity: 1;
	transform: translateY(0);
	height: auto;
	overflow: visible;
	pointer-events: auto;
}

.empowering-section .swiper-vertical {
    touch-action: pan-y !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container, .section-container {padding-left: 1rem; padding-right: 1rem}
	.swiper-pagination.swiper-pagination-progressbar {
        height: 6px;
        background-color: #ddd;
        border-radius: 50px;
        width: 100%;
    }

    .swiper-pagination-progressbar-fill {
        background-color: #1A73E8 !important;
        height: 100%;
        border-radius: 50px;
    }
    
    .swiper-pagination-progressbar {
        width: 80px !important;
        height: 6px !important;
        background-color: #e0e0e0 !important;
        border-radius: 50px !important;
        left: 13% !important;
        transform: translateX(-50%) !important;
        bottom: 25px;
        top: auto !important;
    }
    
    .notched-box .corner-btn, .notched-box::before {
        display:none;
    }
    
    .notched-box {
        border-top-right-radius:8px;
    }
    
    .international-section .btn, .admission-section .btn {
        width:75% !important;
    }
    
    .rankings-swiper .swiper-slide {
        padding:0 20px;
    }
    
    .programs-image {
        margin-top:20px;
    }
    
    html  .page-template-page-admission .info-card-overlay
     {
        position: relative;
        bottom: 0;
        left: 0;
        transform: translateX(0%);
        background-color: #f5f5fb;
        padding: 6% 7%;
        width: 100%;
    }
    
    
    
}
@media (max-width: 576px) {
	.notched-box .corner-btn img { width: 24px; height: 24px; }
}

@media (max-width: 1200px) {

        
      html  .page-template-page-admission .info-card-overlay
     {
        position: relative;
        bottom: 0;
        left: 0;
        transform: translateX(0%);
        background-color: #f5f5fb;
        padding: 6% 7%;
        width: 100%;
    }
    
}


