@charset "UTF-8"; 
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

html {
  scroll-behavior: smooth;
}
*,
::after,
::before {
    box-sizing: border-box;
}
a {
  transition: all ease 0.5s;
  text-decoration: none;
  color: var(--primary-blue);
}
:root {
  --primary-orange: #ff671d;
  --primary-blue: #111f90;
  --black: #000000;
  --white: #ffffff;
  --light-voilet: #9486c7;
  --bs-body-font: "Libre Franklin", sans-serif;
  --bs-body-font-size: 18px;
  --primary-blue-rgb: 26, 35, 126;
}
:root {
  font-size: var(--bs-root-font-size);
}
body {
  margin: 0;
  font-family: var(--bs-body-font);
  font-size: var(--bs-body-font-size);
  color: var(--black);
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
.blue {
  color: var(--primary-blue) !important;
}
.bg-blue {
  background-color: var(--primary-blue);
}
.black {
  color: #000 !important;
}
.white {
  color: #fff !important;
}
.orange {
  color: #ff671d;
}
.bg-orange {
  background: #ff671d;
}
.light-voilet {
  color: #9486c7;
}
.w-45 {
  width: 45%;
}
.blue-btn {
  background: var(--primary-blue);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 0;
  border: 0;
  font-weight: 400;
}
.blue-btn:hover {
  color: var(--white);
  background: var(--primary-orange);
}
.header.fixed-top,
.header.stickyHeader {
  z-index: 99999;
}

.logo {
  width: 65%;
}
.logo img {
  width: 100%;
}
.header {
  height: 98px;
}
.search-box {
  display: flex;
  align-items: stretch;
  height: 38px;
  overflow: hidden;
  justify-content: flex-end;
}

.search-box input {
  border: 1px solid #ccc;
  border-radius: 0;
  background: #e7e5f3;
  font-size: 0.6rem;
  width: 175px;
}
.search-box input::placeholder {
  color: var(--primary-blue);
  opacity: 1;
  font-weight: 600;
}

.search-box input::-ms-input-placeholder {
  font-weight: 600;
  color: var(--primary-blue);
}
.search-box button {
  border-radius: 0;
  background-color: var(--primary-blue);
  color: #fff;
}
.search-box button:hover {
  background: var(--primary-blue);
}
.search-box button:hover i,
.search-box button:focus i {
  color: #fff;
}
.apply-now {
  background-color: var(--primary-blue);
  color: #fff;
  border: none;
  padding: 0.71rem 1rem;
  border-radius: 0px;
  height: 38px;
  line-height: normal;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
}

.apply-now:hover {
  background-color: var(--primary-blue);
}
.hero-banner {
  position: relative;
/*  background: url("/public/assets/images/video-banner.png") center center / cover no-repeat;*/
  width: 100%;
  height: 100vh; /* Full height of the viewport */
  overflow: hidden;
}
.hero-banner video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0; /* Initially hide the video */
  transition: opacity 0.5s ease-in-out;
}
.course-card {
  overflow: hidden;
}

.course-image {
  position: relative;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.5s;
}
.course-card:hover .course-image img{
  transform: scale(1.2);
}
.course-content {
  padding: 1.5rem 0;
}

.course-category {
  color: var(--primary-orange);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.course-title {
  color: var(--primary-blue);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.btn-orange {
  background-color: var(--primary-orange);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: var(--primary-blue);
  color: white;
}

/* Swiper Custom Styles */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-blue);
}
.courses-section {
  /* background: #eceef4; */
}
.coursesSwiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.coursesSwiper .swiper-slide {
  opacity: 1;
}
/* Position the navigation arrows */
/* .courses-slider-wrapper .swiper-button-prev,
.courses-slider-wrapper .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
} */

.testimonial-wrapper .swiper-button-prev {
  left: -5rem;
}

.testimonial-wrapper .swiper-button-next {
  right: -5rem;
}
/* Style the navigation arrow icons */
.testimonial-wrapper .swiper-button-prev::after,
.testimonial-wrapper .swiper-button-next::after,
.partner-slider .swiper-button-prev::after,
.partner-slider .swiper-button-next::after {
  font-size: 18px;
  color: var(--primary-blue);
}

/* Student Showcase Styles */
.student-showcase {
  position: relative;
  z-index: 1;
}
.banner-container {
  position: relative;
  overflow: hidden;
  /* max-height: 600px; */
}
/* .header.fixed-top .search-box button,
.header.fixed-top .apply-now {
  background: var(--primary-orange);
} */
.header-item.item-left .logo a {
  position: absolute;
  top: 0;
  width: 13%;
}
.header.fixed-top .blue-logo ,
.header.stickyHeader .blue-logo{
  display: block !important;
}
.header.stickyHeader {
  background: #fff;
}
.header .d-lg-block .apply-now  {
  display: inline-block;
  height: 38px;
  position: relative;
  top: -2px;
  font-size: 12px;
}
.header.fixed-top .apply-now:hover {
  color: var(--primary-blue);
}
.header.stickyHeader .menu > ul > li > a {
  color: var(--primary-blue);
}
.banner-image { 
  width: 100%;
  height: auto;
  object-fit: cover;
}

.student-showcase .banner-overlay {
  position: absolute;
  top: 12%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  /* background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%); */
}

.student-showcase .banner-content {
  max-width: 550px;
}

.banner-title {
  color: #1a237e;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.banner-text {
  color: #212121;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.banner-list {
  color: #1a237e;
  padding-left: 1.5rem;
}


/* .student-showcase::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  z-index: -1;
} */
/* Update the gallery grid styles */
.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 2fr 1fr;
  height: 600px; 
  margin-bottom: 2rem;
}

/* Gallery Items */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Specific positioning for each item */
.gallery-item:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 100%;
}

.gallery-item:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  height: 100%;
}

.gallery-item:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  height: 100%;
}

.gallery-item:nth-child(4) {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  height: 100%;
}

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

/* Overlay Effect */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.view-more {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item:hover .view-more {
  transform: translateY(0);
}



.testimonial-section {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  
}

.Decorative-letter {
  position: absolute;
  left: 0;
  bottom: 0;
}
.Decorative-letter img {
  width: 50%;
}
/* Content Styles */
.testimonial-content {
  position: relative;
  z-index: 1;
  margin: 0 5vw;
}

.student-name {
  font-size: 1.2rem;
  font-weight: 600;
}

.testimonial-quote {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
  border-left: none;
  padding: 0;
}

.testimonial-image {
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



/* Centres Section Styles */
.centres-section {
  background-color: #e7e5f4; 
}


/* Accordion Styles */
.centres-section .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 0.5rem;
}

.centres-section .accordion-button {
  background: transparent;
  border: none;
  box-shadow: none !important;
  padding: .5rem 0;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-blue);
}

.centres-section .accordion-button:not(.collapsed) {
  background: transparent;
  color: #8B7FD2; 
}

.centres-section .accordion-body {
  padding: 0 0 1rem 0;
  color: #666;
}

.centres-section .contact-info a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.centres-section .contact-info a:hover {
  color: var(--primary-orange);
}

.centres-section .contact-info i {
  color: #8B7FD2;
  margin-right: 0.5rem;
}

.map-container {
  overflow: hidden;
}

/* Blog Section Styles */
.blog-section {
  background-color: #fff;
}
/* Blog Card Styles */
.blog-card {
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

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

.blog-content {
  padding: 0 0.5rem;
}

.blog-title {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.blog-description {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Read More Link */
.read-more {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.read-more i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--primary-orange);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* FAQ Section Styles */
.faq-section {
  background-color: #fff;
}


/* Logo Styles */
.faq-logo {
  max-width: 300px;
  margin: 0 auto;
}
.border-top1px {
  border-top: 1px solid #9486c7;
}
/* Accordion Styles */
.faq-section .accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0ff;
  background: transparent;
}

.faq-section .accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 1.3rem;
  color: #999;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #333;
}

/* Remove default Bootstrap arrow */
/* .accordion-button::after {
  display: none;
}

.accordion-button i {
  font-size: 1.2rem;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.accordion-button.collapsed i.bi-chevron-up {
  transform: rotate(180deg);
} */

.faq-section .accordion-body {
  padding: 0 0 1.5rem 0;
  color: #000;
  line-height: 1.6;
}
/* Partners Section Styles */
.partners-section {
  background-color: #fff;
  width: 75%;
  margin: auto;
}

/* Partner Logo Styles */
.partner-logo {
  /* height: 110px; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 1;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* .partner-slider {
  width: 75%;
  margin: auto;
} */

.footer .footer-apca-a {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  max-width: 300px;
}
.footer {
  background-color: var(--primary-blue);
  color: #fff;
  position: relative;
}
.newsletter {
  /* width: 50%; */
  margin-left: auto;
}

.newsletter .form-control {
  background-color: #e7e5f4;
  color: var(--primary-blue);
  padding: 0.2rem 1rem;
  border-radius: 0;
}

.newsletter .form-control::placeholder {
  color: var(--primary-blue);
}

.newsletter .btn {
  padding: 0.4rem 1rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0;
  color: var(--white);
  transition: all ease 0.4s;
  width: 22%;
  font-size: 20px;
}
.newsletter .btn:hover {
  background: var(--primary-orange);
}
/* Footer Titles */
.footer-title {
  color: #ff671d;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

/* Horizontal Links */
.footer-links.horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links.horizontal li {
  margin-bottom: 0;
}

/* Social Links */
.facultyModal .social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.facultyModal .social-link {
  font-size: 1rem;
  transition: opacity 0.3s ease;
  background: var(--primary-orange);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facultyModal .social-link:hover {
  opacity: 0.8;
  color: #fff;
}
.footer-bottom .social-links {
  display: flex;
  gap: 10px;
  z-index: 9;
  position: relative;
}
.footer-bottom .social-link {
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Copyright */
.copyright {
  color: #fff;
  font-size: 0.9rem;
  padding-top: 1.953vw
}
.step-buttons {
  display: flex;
}
.step-buttons .btn {
  border: 1px solid #fff;
  text-transform: uppercase;
  text-align: center;

}

/* Instructor Card Styles */
.instructor-card {
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  transition: transform 0.3s ease;
}

.instructor-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.instructor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: opacity 0.3s ease;
}

.default-image {
  opacity: 1;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.instructor-card:hover .default-image {
  opacity: 0;
}

.instructor-card:hover .hover-image {
  opacity: 1;
}
.instructor-card:hover .instructor-info .instructor-name {
  color: var(--primary-orange);
}
.instructor-info {
  padding: 1.5rem 0;
}

.instructor-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  /* color: var(--primary-blue); */
}

.instructor-title {
  font-size: 1rem;
  opacity: 0.8;
  color: var(--primary-blue);
}
.facultyModal .modal-header {
  border-bottom: 0;
}
.facultyModal .modal-content {
  border-radius: 0;
}
.facultyModal .btn-close {
  background-image: none;
  opacity: 1;
  max-width: 50px;
  width: 100%;
  outline: none;
  display: block;
}
.facultyModal .btn-close:focus {
  box-shadow: none;
  outline: none;
}
.facultyModal .modal-dialog {
  max-width: 1000px;
}
.facultyModal .btn-close img {
  max-width: 50px;
}
.facultyModal .modal-body {
  padding: 3rem 4rem;
}
.info-container {
  height: 400px;
  overflow-y: auto;
}
.info-container::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.info-container::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.info-container::-webkit-scrollbar-thumb
{
	background-color: var(--primary-blue);
}

/* Filter Menu Styles */
.filter-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: none;
  border: none;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--primary-orange);
}

/* Blog Card Styles */
.blog-page .blog-card {
  background-color: #fff;
  padding: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.blog-page .blog-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-page .blog-card .blog-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

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

.blog-page .blog-card:hover .blog-image img {
  transform: scale(1.05);
}
.blog-page .blog-card:hover .blog-title {
  color: var(--primary-orange);
}
.blog-page .blog-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  transform: translateY(120%);
  transition: transform ease-in 0.3s;
}
.blog-page .blog-overlay .btn {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: inline-block;
  transition: all ease 0.4s;
  width: 35px;
  height: 35px;
}
.blog-page .blog-overlay .btn:hover {
  background: var(--primary-blue);
}
.blog-page .blog-card:hover .blog-overlay {
  transform: translateY(0);
}
.blog-page .blog-content {
  padding: 1.5rem;
}

.blog-page .blog-meta {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-page .blog-title {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-page .blog-excerpt {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-page .blog-categories {
  margin-bottom: 1rem;
}

.blog-page .category-tag {
  display: inline-block;
  color: var(--primary-blue);
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  font-style: italic;
}
.blog-meta .author {
  display: none;
}
/* Animation for filtering */
.blog-page .blog-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.blog-page .blog-item.hidden {
  opacity: 0;
  transform: scale(0.8);
}


.blog-detail-page .blog-categories {
  display: flex;
  gap: 15px;
  color: var(--primary-blue);
  font-style: italic;
}
.author-box {
  background: var(--primary-orange);
  color: var(--white);
  padding: 12px 0px;
}
.author-box  ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.author-box  ul li {
  list-style: none;
  font-size: 14px;
  padding: 0 15px;
}
.author-box  ul li:last-child {
  border-left: 1px solid var(--white);
  display: none;
}
.blog-detail-description p {
  padding-bottom: 30px;
}
.blog-share {
  display: flex;
}

.blog-share .social-link {
  font-size: 1rem;
  transition: opacity 0.3s ease;
  background: var(--primary-orange);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-share  .social-link:hover {
  opacity: 0.8;
  color: #fff;
}
.recent-blogs {
  background: #e5e5e5;
  border-radius: 10px;
  padding: 1.5rem;
}
.recent-blogs.blog-page .blog-content {
  padding: 1rem 0;
}
.recent-blogs.blog-page .blog-card {
  background: transparent;
}
.recent-blogs.blog-page .blog-card:hover {
  box-shadow: none;
}
.viewsNlikes {
  display: flex;
  gap: 30px;
}
.viewsNlikes .blogView {
  display: flex;
  align-items: center;
  gap: 12px;
}
.viewsNlikes .blogView span {
  background: var(--primary-orange);
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-card h2 {
  margin-bottom: 1.5rem;
}
.highlight-card {
  margin-bottom: 30px;
}

.highlight-card img {
  width: 100vw;
  height: auto;
  object-fit: cover;
  margin-left: -15px;
  margin-right: -15px;
}
.image-fullwidth {
  width: 100vw;
  height: auto;
  object-fit: cover;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.tag {
  background-color: #f26522;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.btn-highlight {
  background-color: #1d2d5f;
  color: white;
}

.achivement-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}


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

.item-1 { grid-area: 1 / 1 / 2 / 3; }
.item-2 { grid-area: 1 / 3 / 2 / 4; }
.item-3 { grid-area: 2 / 1 / 3 / 2; }
.item-4 { grid-area: 2 / 2 / 3 / 3; }
.item-5 { grid-area: 2 / 3 / 3 / 4; }
.item-6 { grid-area: 3 / 1 / 4 / 2; }
.item-7 { grid-area: 3 / 2 / 4 / 3; }
.item-8 { grid-area: 3 / 3 / 4 / 4; }
.achivement-gallery .item {
  position: relative;
  transition: all ease .7s;
  overflow: hidden;
}
.achivement-gallery .item .caption {
  position: absolute;
  bottom: 0;
  padding: 10px;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: all ease 0.5s;
}
.achivement-gallery .item .caption p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 0;
}
.achivement-gallery .item:hover .caption  {
  transform: translateY(0);
}
/* .achivement-gallery .item:hover ::before,
.gallery-item:hover ::before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all ease .7s;
} */
/* .achivement-gallery .item:hover::after,
.gallery-item:hover::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  width: 77px;
  height: 77px;
  pointer-events: none;
  transition: all ease .7s;
} */

/* Typography */
.appointment-title {
  color: #1a237e;
  font-size: 2.5rem;
  position: relative;
}

.appointment-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100px;
  height: 3px;
  background-color: #1a237e;
}

.description-text {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Form Styling */
.programSelection {
  background-image: url('../images/rectangle_7.png');
  background-position: right 10px center; 
  background-repeat: no-repeat;
  background-size: 20px;
}
.custom-input {
  height: 60px;
  border-radius: 0;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: #fafafa;
  transition: border-color 0.2s ease-in-out;
}


.custom-input::placeholder {
  color: #999;
}

/* Checkbox Styling */
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.custom-checkbox .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border: 2px solid #1a237e;
  cursor: pointer;
  border-radius: 0;
}

.custom-checkbox .form-check-input:checked {
  background-color: #1a237e;
  border-color: #1a237e;
}

.custom-checkbox .form-check-label {
  font-size: 0.9rem;
  color: #666;
  position: relative;
  top: 4px;
  width: 100%;
}

/* Submit Button */
.custom-submit-btn {
  background-color: #1a237e;
  border: none;
  padding: 0.75rem 3rem;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}

.custom-submit-btn:hover {
  background-color: #151b4f;
}
.submitbtn {
  padding: 8px 55px;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  transition: transform 0.4s ease-in;
}
.card-image img {
  width: 100%;
  height: 100%;
}
.contact-box:hover {
  background: var(--primary-blue);
  color: var(--white);
  border: 1px solid transparent;
}
.contact-box:hover .contact-info h3 {
  color: var(--white);
}
.contact-box.left:hover .card-image {
  transform: translateX(100%);
  z-index: 99;
  visibility: visible;
}
.contact-box.right:hover .card-image {
  transform: translateX(-100%);
  z-index: 99;
  visibility: visible;
}
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 50px;
}
.contact-box {
  position: relative;
  border: 2px solid #ccc;
  color: var(--black);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all ease 0.5s;
}
.contact-box .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(0%);
  transition: transform 0.5s ease;
  z-index: 9;
}
.contact-box .image img {
  width: 100%;
}
.contact-box.right:hover .image {
  transform: translateX(-100%);
  opacity: 1;
}
.center-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 20px;
}
.contact-info h3 {
  font-weight: 600;
  color: var(--primary-blue);
}

.contact-info.dark {
  color: #666;
}

.contact-info div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
}

.contact-info i {
  margin-top: 4px;
  font-size: 1.1rem;
}

.datepicker {
  position: relative;
  background-image: url('../images/date-icon.png'); 
  background-repeat: no-repeat;
  background-position: right 10px center; 
  background-size: 40px; 
  padding-right: 40px; 
}
/* Accessibility Focus Styles */
.custom-input:focus,
.custom-submit-btn:focus,
.form-check-input:focus {
  outline: none;
  box-shadow: none;
}

.section-description {
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Brand Cards */
.brand-card {
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-card img {
  width: 70%;
}
/* Career Section */
.career-section {
  margin-bottom: 2rem;
}

.career-section p {
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-filled {
  background-color: #14213d;
  color: white;
  border: 2px solid #14213d;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-primary-outline {
  background-color: transparent;
  color: #14213d;
  border: 2px solid #14213d;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-primary-filled:hover,
.btn-primary-outline:hover {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: white;
  transform: translateY(-2px);
}

/* Introduction Text */
.introduction-text p {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hero-banner {
  position: relative;
  background-size: cover;
  min-height: 75vh;
  overflow: hidden;
  padding-top: 116px;
  background-size: cover;

}

.blue-overlay {
  position: absolute;
  top: 0;
  left: -100px;
  height: 100%;
  z-index: 1;
}
.blue-overlay img {
  width: 140%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-100%);
  transition: all ease 0.5s; 
  animation: slideIn 1.5s ease-out forwards;
}
@keyframes slideIn {
  from {
      transform: translateX(-100%);
  }
  to {
      transform: translateX(0);
  }
}

.faculty-title {
  color: #ff6b35;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.8s forwards;
}

.faculty-subtitle {
  color: white;
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1.2s forwards;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateX(-30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}
.banner-content {
  z-index: 2;
}
.background-letter {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 25rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  z-index: 1;
  pointer-events: none;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in;
}
.background-letter img {
  width: 60%;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}
.content-wrapper h2 {
  text-transform: uppercase;
}

.min-vh-75 {
  min-height: 75vh;
}


.apca-programs {
  background: #edeef3;
}
.arts-items {
  display: flex;
  gap: 20px;
}
.arts-items .item {
  display: flex;
  gap: 15px;
  color: var(--white);
  align-items: self-end;
  flex-basis: 19%;
  position: relative;
  top: -6px;
}
.arts-items .item p {
  margin-bottom: 0;
}
.arts-items .item:nth-child(01) img {
  width: 65px;
}
.arts-items .item.big-width {
  flex-basis: 26%;
}
.arts-items .item img {
  width: 60px;
  position: relative;
  top: -6px;
}
.arts-items .item svg {
  width: 100px;
}
.arts-items .item svg path {
  fill: var(--primary-orange);
  font-size: 10px;
}
.courseLeftMenu {
  position: sticky;
  top: 98px;
  height: 100%;
  z-index: 98;
  max-height: calc(100vh - 20px); /* Adjust if needed */
  overflow-y: auto;
  padding-bottom: 20px;
  background: #fff;
}
/* .courseLeftMenu.sticky {
  position: fixed;
  top: 120px;
  width: calc(25% - 30px);
  z-index: 9;
  background: #fff;
  height: 100%;
} */
.courseLeftMenu ul {
  padding-left: 0;
  overflow-y: auto;
}
.courseLeftMenu::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.courseLeftMenu::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.courseLeftMenu::-webkit-scrollbar-thumb
{
	background-color: #d0d5e9;
}

.courseLeftMenu li {
  text-decoration: none;
  list-style: none;
}
.courseLeftMenu li a {
  color: var(--black);
  padding: 15px 0;
  display: block;
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  transition: all ease 0.4s;
}
.courseLeftMenu li a:hover,
.courseLeftMenu li a.active {
  color: var(--primary-blue);
}
#basic-module {
  background: #eceef4;
}
#intermediate-module {
  background: #dee1ee;
}
#advanced-module {
  background: #d0d5e9;
}
.coursesWrapperRight section {
  min-height: 500px;
  padding: 40px 0;
  padding-left: 20px;
  position: relative;
}
/* .offered-courses::before {
  position: absolute;
  content: '';
  background: #edeef3;
  left: -8%;
  width: 100px;
  top: 0;
  height: 100%;
} */
.courseContent ul {
  padding-left: 1.2rem;
}
.courseContent ul.column2 li {
  list-style-type: disc;
}
.courseContent ul li {
  position: relative;
  list-style: none;
  /* padding-top: 40px; */
}
.overviewContent ul.pointers li {
  padding-top: 40px;
}
.courseContent ul li p {
  margin-bottom: 5px;
}
.courseContent ul li p.orange {
  font-weight: 600;
}
/* .courseContent ul li::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 50%;
  left: 0;
  top: 13px;
} */
.column2 {
  column-count: 2;
  column-gap: 40px; /* Adjust gap between columns as needed */
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.column2 li {
  break-inside: avoid;
  padding: 5px 0;
}
.column2 li:nth-child(-n+7) {
  order: 1;
}
.bgContent {
  /* background: #e8e5f4; */
  position: relative;
  padding: 60px 0;
}
.bgContent::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  /* background: #e8e5f4; */
  left: -100%;
  top: 0;
}

.faqUnderline::before{
  position: absolute;
  content: '';
  width: 120px;
  height: 2px;
  background: var(--black);
  left: 0;
  bottom: -10px;
}
h2, .section-title  {
  position: relative;
}
.student-name {
  color: var(--primary-orange);
  text-transform: uppercase;
}
.testimonial-quote {
  line-height: 2vw;
}
.accordion-header .accordion-button:not(.collapsed) {
  color: var(--primary-blue);
}
.filter-buttons {
  text-align: center;
  margin: 20px 0;
}

.filter-btn {
  padding: 10px 30px;
  margin: 0 5px;
  cursor: pointer;
  border: 1px solid #1e3a8a;
  background: transparent;
  color: #1e3a8a;
  font-size: 16px;
  transition: all 0.3s ease;
}
.filter-btn.active {
  background: var(--primary-blue);
  color: var(--white);
}
.filter-btn:hover {
  background: var(--primary-orange);
  border: 1px solid var(--primary-orange);
  color: var(--white);
}
.coursePageSlider {
  width: 87%;
  margin-left: 5%;
}
.testimonial-section.course-testimonials {
  overflow: visible;
}
.course-testimonials .testimonial-content {
  margin-left: 0;
}
.course-testimonials .Decorative-letter {
  bottom: -40px;
}
.course-testimonials .Decorative-letter  img {
  width: 65%;
}
.courses-slider-wrapper.coursePageSlider .swiper-button-prev {
  left: -3rem;
}

.courses-slider-wrapper.coursePageSlider .swiper-button-next {
  right: -3rem;
}


.dropdown-toggle::after {
  background-image: url('../images/down-arrow.png');
}
.footer-logo {
  width: 65%;
  position: relative;
  top: -30px;
}
.modal {
  z-index: 99999;
}
.fancybox__container {
  z-index: 999999;
}
.achivement-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.modal .modal-dialog {
  max-width: 900px;
  height: 100%;
  display: flex;
  align-items: center;
}
.modal-dialog .modal-content {
  border-radius: 0px;
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 6px;
  background-color: #e0e0e0;
  transform: translateX(-50%);
}

.timeline-items {
  position: relative;
}

.timeline-item {
  display: flex;
  margin-bottom: 80px;
  position: relative;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-content {
  width: 45%;
  display: flex;
  align-items: center;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  /* flex-direction: row-reverse; */
  margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
  flex-direction: row;
  margin-left: 5%;
}

.timeline-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
  flex-shrink: 0;
  z-index: 2;
}

.timeline-text {
  margin: 0 20px;
}

.timeline-item:nth-child(odd) .timeline-text {
  text-align: right;
  margin-right: 20px;
}

.timeline-item:nth-child(even) .timeline-text {
  text-align: left;
  margin-left: 20px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: white;
  border: 3px solid;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-connector {
  position: absolute;
  top: 50%;
  height: 3px;
  width: calc(5% + 10px);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-connector {
  right: 45%;
}

.timeline-item:nth-child(even) .timeline-connector {
  left: 45%;
}

.year-2010 {
  background-color: #5e4de0;
  border-color: #5e4de0;
}

.year-2011 {
  background-color: #7e3fd8;
  border-color: #7e3fd8;
}

.year-2012 {
  background-color: #c33b9e;
  border-color: #c33b9e;
}

.year-2013 {
  background-color: #e63b76;
  border-color: #e63b76;
}

.year-2014 {
  background-color: #ff4444;
  border-color: #ff4444;
}

.year-2015 {
  background-color: #ff7043;
  border-color: #ff7043;
}

.year-2016 {
  background-color: #ffa726;
  border-color: #ffa726;
}

.year-2017 {
  background-color: #ffca28;
  border-color: #ffca28;
}

.milestone-title {
  font-size: 16px;
  margin-bottom: 5px;
}

.milestone-highlight {
  font-weight: bold;
  font-size: 18px;
}

.milestones li {
  padding-bottom: 10px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  row-gap: 1rem;
}
footer .addr {
  font-size: 16px;
}
.tnc li {
  padding-bottom: 10px;
  list-style: number;
}
.social-links .social-link, .social-links .social-link img {
  width: 55px;
  height: 55px;
}
.partners-section .swiper-button-prev {
  left: -20px
}
.partners-section .swiper-button-next {
  right: -20px;
}
.banner-title-container {
  width: 85%;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--primary-blue);
  opacity: 1; 
}
.swiper-pagination-bullet-active {
  background: var(--primary-blue);
  border-radius: 20px;
  transition: all ease 0.4s;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 2px;
}
.testimonial-wrapper .swiper-pagination-bullet {
  opacity: 1;
  background: transparent;
  border: 1px solid #fff;
}
.testimonial-wrapper .swiper-pagination {
  bottom: 30px;
}
.testimonial-wrapper  .swiper-wrapper {
  padding-bottom: 100px;
}
.testimonial-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.program-testimonials-slider .testimonial-quote  {
  color: #000;
}
.program-testimonials-slider  .section-title {
  color: var(--primary-blue);
}
.program-testimonials-slider .swiper-slide {
  padding: 0 45px;
}
.program-testimonials-slider .swiper-button-next {
  right: 85px;
}
.brandsection {
  background: #eceef4;
}
.sponsor-brand {
  width: 20%;
  padding: 20px;
  text-align: center;
}
.sponsor-brand img {
  width: 70%;
}
.paidInterships .title {
  width: 60%;
}

.Asection-title {
  color: #FF6B35;
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.program-title {
  color: #0A2472;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.download-link {
  color: #666;
  text-decoration: none;
  font-size: 1.1rem;
}
.download-link:hover {
  text-decoration: underline;
}
.divider {
  width: 1px;
  background-color: #8a8a8a;
}
.horizontal-divider {
  height: 1px;
  background-color: #8a8a8a;
  margin: 2rem 0;
}
.program-container {
  margin-bottom: 2rem;
}
.page-section {
  margin-bottom: 3rem;
}
.table-container {
  margin: 2rem 0;
  overflow-x: auto;
}
.intake-table {
  width: 100%;
  border-collapse: collapse;
}
.intake-table th, 
.intake-table td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
}
.intake-table th {
  background-color: #f8f9fa;
  font-weight: bold;
}
.advanced-diploma-row {
  background-color: #d4d9f0;
}
.section-heading {
  color: #333;
  margin: 2rem 0 1rem;
  font-weight: bold;
}

.last-updated {
  margin-bottom: 1.5rem;
}

.policy-intro {
  margin-bottom: 2rem;
}
.bullet-list {
  list-style-type: none;
  padding-left: 0;
}
.bullet-list li {
  position: relative;
  padding-left: 1.5rem;
}
.bullet-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
}
.policy-section {
  margin-bottom: 2rem;
}
.policy-section .section-title1 {
  font-size: 1.3rem;
  font-weight: normal;
  padding-bottom: 20px;
}
.invest-slider .hero-image,
.invest-slider .hero-image img {
  width: 100%;
}
.partnersSwiper .swiper-wrapper {
  align-items: center;
}
#Modeldate_time {
  z-index: 9;
}
.flagBg {
  background-image: url('../images/flag.png');
  background-position: right 17% bottom;
  background-repeat: no-repeat;
  background-size: 40%;
}
.faq-btn .btn{
  width: 45%;
}
.watsapp-footer {
  position: fixed;
  right: 10px;
  bottom: 25px;
  z-index: 99999;
}
.watsapp-footer img {
  width: 60;
}
@media (max-width: 767px){
  .watsapp-footer img {
    width: 40px;
  }
}