/* Global default */
/*.stat-number {*/
/*  font-size: 75px;*/
/*  font-weight: bold;*/
/*  margin-bottom: -20px;*/
/*  margin-top: 12px;*/
/*}*/




/* Override for smaller devices */


.container {
  padding: 50px 0px 20px 0px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Montserrat';
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  flex: 1 1 250px;
}

.header p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  flex: 2 1 150px;
  margin: 0;
}
.achieve-title{
 color: #1a2a6c;
}

.achieve-para{
 color: #1a2a6c;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #172a63;
  color: #fff;
  padding: 15px;
  width: 220px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card h3 {
  font-size: 1.1rem;
  margin: 10px 0;
}

.card img {
  width: 80px;
  height: auto;
  margin: 15px 0;
}

.card p {
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Basic Reset & Body Styling */

.why-choose-us-section {
  background-color: #b28a3f; /* The golden-brown background color */
  color: #fff;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px; /* Adjust as needed */
}

.stat-item .icon {
  font-size: 3em;
  margin-bottom: 15px;
  color: #fff; /* Icons are white */
}



.stat-label {
  font-size: 1em;
  font-weight: bold;
  margin-top: -35px;
  letter-spacing: 1px;
}

p.stat-number {
    font-size: xxx-large;
    margin-top: -4px;
}



.slider {
  height: 160px;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.slide-track {
  display: flex;
  width: calc(250px * 12); /* 6 logos * 2 for loop */
  animation: scroll 20s linear infinite;
}

.slide {
  width: 250px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.slide img {
  width: 165px;
  height: 50px;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.facilities-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 80px;

  margin-bottom: 80px;
  flex-direction: row; /* default for larger screens */
}

.section-title-facility {
  font-size: 2.5rem;
  color: #1a2a6c;
  font-weight: bold;
  margin: 0;
}

.section-description-facility {
     color: #1a2a6c;
    font-weight: bold;
    width: 600px;
    margin: 0;
}
/* ✅ Responsive for screens below 768px */



.facilities-carousel-wrapper {
  width: 100%;
  overflow-x: auto; /* ENABLE horizontal scroll */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.facilities-carousel-wrapper::-webkit-scrollbar {
  display: none;
}
 
.facilities-carousel {
  display: flex;
  gap: 25px;
  padding: 0 20px;
  width: max-content; /* Ensure it grows with items */
}

.facility-item {
  flex-shrink: 0; /* Prevent items from shrinking */
  width: 400px; /* Fixed width for each item (adjust as needed) */
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;

  text-align: center;
  position: relative; /* For the potential overlay if needed */
}

.facility-item img {
  width: 100%;
  height: 200px; /* Fixed height for images */
  object-fit: cover; /* Cover the area, cropping if necessary */
  display: block;
}

.facility-name {
  padding: 15px 10px;
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: flex-start; /* Align indicators with carousel start */
  margin-top: 40px;
  padding: 0 20px; /* Match padding of carousel for alignment */
}

.indicator-line {
  width: 30px;
  height: 4px;
  background-color: #ccc;
  margin: 5px;
  cursor: pointer;
}

.indicator-line.active {
  background-color: #333;
}


.section-description2{
  font-size: 1em;
  font-family: 'Montserrat';
  line-height: 1.6;
  color: #172a63;
  max-width: 600px; /* Limit width of description */
  text-align: left; /* Ensure left alignment */
}
.student-speaks-section{
  background-color: #172a63;
  
}



/* Header Wrapper for side-by-side title and description */


.header-content-left h2  {
  font-size: 3em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  flex-basis: 30%; /* Adjust as needed for alignment */
  text-align: right; /* Align title to the right */
  padding-right: 30px; /* Space between title and description */
}

.header-content-right p{
  font-size: 1.3em;
  line-height: 1.6;
  color: #fff;
  max-width: 600px;
  text-align: left; /* Align description to the left */
  flex-basis: 70%; /* Adjust as needed for alignment */
  padding-left: 50px;
}

/* Testimonials Wrapper (Carousel) */
.testimonials-wrapper {
  display: flex;
  gap: 30px;
  padding: 0 20px;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden !important; /* allow scroll if needed, or use hidden if really necessary */
  scroll-snap-type: x mandatory;
  scrollbar-width: none;         /* Firefox */
  -ms-overflow-style: none;      /* IE 10+ */
  width: 100%;
  
  justify-content: flex-start;
  scroll-behavior: smooth;
}


.testimonials-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.testimonial-card {
    background-color: #ffffff;
    color: #333;
    border-radius: 10px;
    height: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;

    /* Responsive width */
    width: 60%;              /* Relative to parent */
    max-width: 600px;        /* Optional cap for desktop */
    min-width: 40%;          /* Ensures some width on scroll slider */

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    flex-shrink: 0;
    scroll-snap-align: center;

    box-sizing: border-box;  /* Ensures padding doesn’t overflow */
    /* padding: 20px;            */
}
.testimonial-card img {
  width: 40%;
  height: 100%;
  
  object-fit: fill;
}

/* Testimonial Text */
.testimonial-text {
    flex-grow: 1; /* Allows text to take up remaining space */
    margin-top: 50px;
    padding-right: 3%

}

.testimonial-text p {
    font-size: 16px; /* Font size for testimonial text */
    font-weight: bold;
    
    text-align: justify;
    margin-bottom: 15px; /* Margin below text */
    color: #172a63; /* Darker gray for testimonial text */
    line-height: 1.7; /* Line height for readability */
}

.testimonial-text .student-info {
    font-weight: 600; /* Bolder for the name */
    color: #333; /* Darker for the name */
    font-size: 18px; /* Slightly larger font for name */
}

.testimonial-text .program {
    font-weight: 400; /* Regular weight for program */
    color: #777; /* Lighter gray for program */
    font-size: 16px; /* Similar size to testimonial text for program */
}

/* Wrapper for photo and text inside the card (side-by-side) */


/* Quote Icon */


/* Student Photo */




/* Testimonial Text */
.testimonial-text {
    flex-grow: 1; /* Allows text to take up remaining space */
    margin-top: 50px;
    padding-right: 3%

}

.testimonial-text p {
    font-size: 12px; /* Font size for testimonial text */
    font-weight: bold;
    
    text-align: justify;
    margin-bottom: 15px; /* Margin below text */
    color: #172a63; /* Darker gray for testimonial text */
    line-height: 1.7; /* Line height for readability */
}
/* Pagination Dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    margin-top: 60px; /* Margin top */
}

.dot {
    height: 12px; /* Dot height */
    width: 12px; /* Dot width */
    background-color: rgba(255, 255, 255, 0.4); /* Lighter inactive dot */
    border-radius: 50%;
    margin: 0 10px; /* Space between dots */
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #FF8F00; /* Orange active dot */
    width: 32px; /* Elongated active dot */
    border-radius: 6px; /* Rounded corners for elongated dot */
}

 /*------------------------------ how-to-apply-section------------------------------------- */

 .how-title{
   text-align: center;
   color: #172a63;
 }
.step-box {
    position: relative;
    background: white;
    border-radius: 10px;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.5);
    width: 220px;
    padding: 20px 10px;
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-number {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 100px;
  font-weight: bold;
  color: #1f2b6c;
  z-index: 2;
}

.step-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 20px;
}

.step-icon img{
  width: 100px;
  height: 100px;
  opacity: 0.5;
}

.step-desc {
  font-size: 14px;
  color: #172a63;
  line-height: 1.4;
}

/* Triangle arrow */


/* Individual step colors */
.step-1 .step-number { color: #1f2b6c; }
.step-2 .step-number { color: #a7007d; }
.step-3 .step-number { color: #1f2b6c; }
.step-4 .step-number { color: #c70039; }

.step-1 .step-title { color: #1f2b6c; }
.step-2 .step-title { color: #a7007d; }
.step-3 .step-title { color: #1f2b6c; }
.step-4 .step-title { color: #c70039; }

.step-1 .step-icon { color: #1f2b6c; }
.step-2 .step-icon { color: #a7007d; }
.step-3 .step-icon { color: #1f2b6c; }
.step-4 .step-icon { color: #c70039; }

.step-3 .step-icon img { 
   height: 90px;


 }

/* Default arrow for all except the second */
.step-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #1f2b6c; /* Default arrow color */
}

/* Second arrow - pink color override */
.step-2::after {
  border-left-color: #a7007d !important; /* Override with pink */
}



/* 
.footer-section {
  background-color: #15295c;
  color: #fff;
  padding-bottom: 0;
  position: relative;
  font-family: 'Montserrat';
}


.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid white;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.logo-area {
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 230px;
  height: auto;

}

.university-name {
  font-size: 24px;
  margin: 0;
  font-weight: bold;
  letter-spacing: 1px;
}

.contact-detail,
.contact-info {
  text-align: left;
  font-size: 18px;
}

.contact-detail h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #BB8F31;
  font-weight: bold;
}

.contact-info {
  margin-top: 16px;
}

.contact-detail p,
.contact-info p {
    margin: 5px 0;
  
    color: #eee;
    font-weight: bold;
}

.contact-detail i,
.contact-info i {
  margin-right: 8px;
  color: #BB8F31;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.form-column {
  flex: 1;
  min-width: 220px;
  margin-right: 150px;
}

.form-column input,
.form-column select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #444;
  background-color: #2a344e;
  color: #fff;
  border-radius: 10px;
  box-sizing: border-box;

  font-size: 16px;
}



.form-column input::placeholder {
  color: #fff;
}

.select-wrapper select {
  padding-right: 30px;
}

.select-wrapper i.fa-chevron-down {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  pointer-events: none;
}

.apply-now-btn {
  background-color: #e34133;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 100%;
}

.apply-now-btn:hover {
  background-color: #d8ac4e;
}

.links-column {
  flex: 1;
  min-width: 180px;
  margin-right: 20px;
}

.links-column:last-child {
  margin-right: 0;
}

.links-column h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #BB8F31;
  margin-left: 10px;
}

.links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-column ul li {
  margin-bottom: 10px;
}

.links-column ul li a {
  margin-left: 10px;
  color: #eee;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.links-column ul li a:hover {
  color: #BB8F31;
}

.social-icons {
  text-align: center;

}

.social-icons a {
  color: #15295c;
  background-color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin: 0 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  background-color: #BB8F31;
  color: #fff;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #bbb;
  padding-bottom: 10px;
}

.tagline {
  color: #BB8F31;
  text-align: center;
  font-size: 95px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 0px;
  position: relative;
}

.tagline h1 {
  margin: 0;
  padding: 0;
  line-height: 1;
  z-index: 2;
  font-size: inherit;
}

.tagline-line {
  width: 100%;
  height: 6px;
  background-color: #BB8F31;
  margin-top: 0;
  padding-top: 0;
  display: block;
  z-index: 2;
}

.footer-toggle {
  display: none;
  background-color: #BB8F31;
  color: #15295c;
  padding: 10px 15px;
  margin: 10px 0;
  border: none;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  border-radius: 5px;
}

.footer-collapsible {
  display: block;
} */



/* mobile screen */

/* 📱 Tablet Devices (768px - 1024px) */



/* 📱 Mobile Devices (max-width: 768px) */



/* 📱 Small Mobile Devices (max-width: 480px) */

/* other desktop screen  */

/* 🖥️ Small Desktop / Laptop (1024px - 1280px) */



/* 🖥️ Medium Desktop (1281px - 1680px) */
@media (min-width: 1281px) and (max-width: 1680px) {

  .container {
    padding: 50px 50px;
  }

  .card {
    width: 30%;
  }

  .facility-item {
    width: 320px;
  }

  .stat-item {
    width: 200px;
  }

  .testimonial-card {
    width: 60%;
  }

  .step-box {
    width: 240px;
  }

}


/* 💻 Large Desktop (Above 1920px) */
@media (min-width: 1921px) {

  .container {
    max-width: 1440px;
    margin: 0 auto;
  }

  .card {
    width: 23%;
  }

  .facility-item {
    width: 350px;
  }

  .step-box {
    width: 260px;
  }

  .testimonial-card {
    width: 50%;
  }

  .student-photo {
    width: 280px;
  }

  .quote-icon {
    font-size: 8em;
    right: 40px;
  }

}

@media (max-width: 1024px) {
.stat-number {
    font-size: 55px;
  }
.header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .card {
    width: 45%;
  }

  .facilities-header {
    flex-direction: column;
    gap: 30px;
  }

  .section-description-facility {
    width: 100%;
  }

  .stat-item {
    width: 160px;
  }

  .testimonial-card {
    width: 90%;
    min-width: unset;
  }

  .student-photo {
    width: 200px;
  }

  .header-content-left h2 {
    font-size: 2.2em;
    text-align: center;
    padding-right: 0;
  }

  .header-content-right p {
    padding-left: 0;
    text-align: center;
  }

  .step-box {
    width: 200px;
  }

  .form-column {
    margin-right: 50px;
  }
}

@media (max-width: 768px) {
.section-title-facility {
    font-size: 2rem;
  }

  .section-description-facility {
    margin-top: 20px;
    padding-top: 0;
    font-size: 1.1rem;
  }
.steps-container {
    flex-direction: column;
    gap: 30px;
  }

.step-box:not(:last-child)::after {

  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #1f2b6c;

}

/* Second arrow - pink color override */
  .step-2::after {
    border-left: none !important; /* remove desktop arrow */
    border-right: 15px solid transparent !important;
    border-left: 15px solid transparent !important;
    border-top: 20px solid #a7007d !important; /* pink arrow down */
    border-bottom: none !important; 
}
  .step-number {
    left: -29px;
    top: 100px;
    transform: none;
   
}
.footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 20px;
    text-align: left;
  }

  /*.footer-logo {*/
  /*  width: 120px;*/
  /*  margin-bottom: 14px;*/
  /*}*/

  .footer-middle {
    flex-direction: column;
    gap: 0;
  }

  .form-column,
  .links-column,
  .facilities-links {
    margin-right: 0;
    width: 100%;
    min-width: 0;
  }

  .links-column h3 {
    margin-left: 0;
  }

  .links-column ul li a {
    margin-left: 0;
  }

  .footer-toggle {
    display: block;
  }

  .footer-collapsible {
    display: none;
  }

  .footer-collapsible.active {
    display: block;
  }

  .tagline {
    font-size: 22px;
  }

  .tagline-line {
    height: 3px;
  }
.container {
    padding: 30px 10px;
  }

  .header h2 {
    font-size: 2rem;
    text-align: center;
        align-self: center;
        flex: 1 1 20px;
  }

  .header p {
    font-size: 0.95rem;
    text-align: justify;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    width: 80%;
  }

  .facilities-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .section-description-facility {
    width: 100%;
    padding: 0 10px;
  }

  .facility-item {
    width: 300px;
  }

  .header-content-left h2,
  .header-content-right p {
    text-align: center;
    padding: 0;
  }

  .testimonial-card {
    width: 90%;
  }

  .student-photo {
    width: 150px;
  }

  .card-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-box {
    width: 100%;
  }

  .step-number {
    font-size: 60px;
    top: 60px;
  }

  .form-column {
    margin-right: 0;
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-middle {
    flex-direction: column;
  }
  
  
 .testimonial-card {
    flex-direction: row;
    min-width: 70vw;
    max-width: 400px;
    /* text-align: center; */
  }

  .testimonial-card img {
  
    height: 100%;
    object-fit: fill;
  }
  .testimonial-text p {
  font-size: 0.5rem;
  width: 100%;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.course {
  display: block;
  font-size: 0.5rem;
  color: #555;
}
}

@media (max-width: 480px) {
.header h2 {
    font-size: 1.5rem;
    text-align: center;
        align-self: center;
        flex: 1 1 20px;
  }

  .header p {
    font-size: 0.9rem;
    text-align: justify;
  }

  .card {
    width: 100%;
  }

  .facility-item {
    width: 260px;
  }

  .testimonial-card {
    width: 100%;
  }

  .student-photo {
    width: 100%;
  }

  .section-title-facility {
    font-size: 1.5rem;
  }

  .step-title {
    font-size: 16px;
  }

  .step-number {
    font-size: 50px;
  }

  .section-description2 {
    font-size: 0.9rem;
  }

  .quote-icon {
    font-size: 5em;
    right: 20px;
  }

  .contact-detail,
  .contact-info {
    font-size: 14px;
  }

  .form-column input,
  .form-column select {
    font-size: 14px;
  }
}

@media (max-width: 1280px) {
.container {
    padding: 40px 30px;
  }

  .card {
    width: 78%;
  }

  .facility-item {
    width: 300px;
  }

  .stat-item {
    width: 180px;
  }

  .step-box {
    width: 220px;
  }

  .form-column {
    margin-right: 60px;
  }

  .testimonial-card {
    width: 70%;
  }

  .quote-icon {
    font-size: 6em;
    right: 30px;
  }
}