body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

.hero,
body,
html {
  background: none;
}

body,
html {
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;

}

/*header*/
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 94, 173, 0.8), rgba(0, 94, 173, 0.4), transparent);
  transition: all 0.3s ease;

}

.main-header.scrolled {
  background: rgba(0, 94, 174, 1);
  box-shadow: 0 2px 10px rgba(0, 94, 173, 0.2);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 30px;
   padding: 10px 0;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 13px;

}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .active {
  border: 1px solid rgba(252, 185, 21, 1);

}

.nav-icons {
  display: flex;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo img {
  max-width: 185px;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: left;
}

.icon-button {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/*hero*/

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 94, 173, 0.6), rgba(0, 94, 173, 0.2), rgba(0, 94, 173, 0.4));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 33.333%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 5vw;
  color: white;
}


.hero-content h1 {
  font-size: 6vw;
  font-weight: bold;
  line-height: 1;
}


/*stats*/

.stats-section {
  width: 90%;
  max-width: 1200px;
  margin: -70px auto 0;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;

}


.stat-block {
  flex: 1;
  padding: 40px 20px 40px 20px;
  text-align: center;
  position: relative;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 15px solid white;
}
.search-row {
  display: flex;
  
  gap: 40px;
 
}

.stat-image {
  width:auto;
  height: auto;
  display: block;


}




.number {
  font-size: 40px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
  margin: 20px 0 20px;
  z-index: 1;
  color: rgba(0, 50, 102, 1);


}

.descripton {
  color: rgba(0, 50, 102, 1);

}



.gold {
  background-color: rgba(252, 185, 21, 1);
  color: rgba(0, 94, 174, 1);
}

.blue {
  background-image: url(business.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;

}

.blue-dark::before,
.blue::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom right, rgba(0, 94, 174, 0.7), rgba(0, 50, 102, 0.7));
  z-index: 0;
  border-radius: inherit;
  color: white;
}

.blue-dark {
  background-image: url(graduation-press-release-pic.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.stat-block .content {
  position: relative;
  z-index: 1;

}

.blue .number,
.blue-dark .number {
  color: white;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-section {
    flex-wrap: wrap;
    gap: 40px 15px;
  }

  .stat-block {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .number {
    font-size: 52px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    flex-direction: column;
  }

  .stat-block {
    flex: 0 0 100%;
    max-width: 100%;
  }
}



/*program-search*/

.program-search-section {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0;


}

.program-search-section-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
 
  position: relative;
}
.program-search-background{
  position: absolute;
  top: -18px;
  left: 0;

}

.search-container {
  display: flex;
  flex-direction: column;

}


.program-search-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: rgba(0, 94, 174, 1);
  margin-bottom: 10px;
}


.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1100px;
  padding-bottom: 40px;

  
}

.search-box input {
  padding: 25px;
  width: 100%;
  border: 2px solid rgba(254, 204, 79, 1);
  border-radius: 5px 0 0 5px;
  font-size: 16px;
}

.search-box button {
  background-color: rgba(254, 204, 79, 1);
  padding: 20px 15px;
  border: none;
  border-radius: 0 5px 5px 0;
  font-size: 26px;
  cursor: pointer;
}

.program-buttons {
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
  margin-top: 30px; 
  padding: 20px 0px;

}


.program-btn {
  display: flex;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  align-items: center;   
  border: 2px solid rgba(0, 94, 174, 1);
  color: rgba(0, 94, 174, 1);
  border-radius: 20px;
  padding: 10px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: flex-start; 
}

.program-btn img {
  width: 24px;
  height: 26px;
  flex-shrink: 0; 
}

.program-btn span {
  flex: 1; 
  text-align: center; 
  margin-right: 24px; 
}


.program-btn:hover {

  background-color: rgba(0, 90, 177, 1);
  color: white;
}


/*testimonials*/



.student-quote {
  font-size: 24px;
  position: relative;
  padding: 0px 40px;
  text-align: right;
}

.student-quote::before {
  content: "“";
  font-size: 48px;
  color: rgba(0, 94, 174, 0.8);
  position: absolute;
  top: 0;
  left: 0px;
}

.student-quote::after {
  content: "”";
  font-size: 48px;
  color: rgba(0, 94, 174, 0.8);
  position: absolute;
  bottom: 0;
  right: 0px;
}


.mount-moments-section {
  position: relative;

  background-image: url('msj.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;


}

.mount-moments-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 181, 48, 0.5));
  z-index: -1;

}


.underlined-heading {
  position: relative;
  padding-bottom: 6px;
  text-align: center;
  color: rgba(0, 94, 174, 1);


  font-size: 62px;
  font-weight: 400;


}

.underlined-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: rgba(0, 94, 174, 1);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.1);
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 40px;
  overflow: hidden;
}

.white-box {
  background-color: white;
  border-radius: 20px;
  padding: 20px 60px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
}

.student-card {
  width: 250px;
  height: 328px;
  border-radius: 16px;
  position: relative;
  flex-shrink: 0;
}

.student-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.testimonial-text {
  z-index: 2;
  color: rgba(0, 50, 102, 1);
  padding: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  transition: opacity 0.4s ease;
}

.testimonial-text h2 {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}


.slider-controls .dot {
  width: 10px;
  height: 10px;
  background-color: #0066cc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  opacity: 0.5;
}

.slider-controls .dot.active {
  opacity: 1;
}


@media (max-width: 992px) {
  .testimonial-slider {
    flex-direction: column;
  }

  .testimonial-left,
  .testimonial-right {
    width: 100%;
    padding-right: 0;
  }

  .testimonial-right {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .testimonial-right {
    grid-template-columns: 1fr;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(0, 94, 174, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
  font-size: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  padding: 0 !important;
  opacity: 0.7 !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0,0,0,0.32);
  opacity: 1 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px!important;
  font-weight: bold;
  color: #fff;



}

.swiper-button-prev::after {
  content: '\2039'; /* « */
}

.swiper-button-next::after {
  content: '\203A'; /* » */
}



.swiper-button-prev {
  left: -18px;
}

.swiper-button-next {
  right: -18px;
}
/*news-events*/

.news-events-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  padding: 50px;
}

.news-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-news {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #0072ce;
}

.highlight-news {
  background-color: #fecc4f;
  padding: 15px;
}

.news-image {
  width: 100%;
  height: 300px;
  object-fit: cover;

}

.news-title {
  font-size: 18px;
  font-weight: bold;
  color: #001B3E;
  margin-bottom: 10px;
}

.news-date {
  font-size: 12px;
  color: #333;
}

.small-news-row {
  display: flex;
  gap: 20px;
}

.secondary-news {
  position: relative;
  flex: 1;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid white;
}
.secondary-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.secondary-news-content-overlay {
  position: absolute;
  bottom: 0;
  padding: 15px;
  color: white;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.news-title-sm {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  padding-right: 20px;

}

.news-date-sm {
  font-size: 11px;
}

.event-column {
  display: flex;
  flex-direction: column;
}

.event-column-title {
  font-size: 32px;
  font-weight: 700;
  color: #005eae;
  margin-top: 0;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.event-card {
  background-color: #005eae;
  border-radius: 20px;
  display: flex;
  padding: 12px;
  align-items: center;
  color: white;
}

.event-content {
  flex: 1;
}

.event-meta {
  font-size: 12px;
  color: #fecc4f;
  margin-bottom: 5px;
  padding-bottom: 10px;
}

.event-title {
  font-size: 14px;
  font-weight: bold;
}

.event-image img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  margin-left: 10px;
}

.view-button {
  margin-top: 10px;
  align-self: flex-start;
  background: white;
  border: 1px solid #005eae;
  color: #005eae;
  padding: 10px 30px;
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
}

.view-button:hover {
  background-color: #fecc4f;
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }

  .event-image {
    height: 200px;
    max-width: none;
  }
}


/*social*/

.social-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;

  gap: 10px;
  align-items: stretch;

}

.explore-virtually {
  grid-column: 1;
  background: rgba(0, 94, 174, 1);
  border-radius: 5px;
  padding: 5px 10px;

}

.explore-virtually h2 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  text-align: center;
}

.explore-virtually p {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: white;
  margin-bottom: 10px;
  text-align: center;
  padding: 0 10px;
}

.follow-us {
  font-size: 24px;
  font-weight: 700;
  color: rgba(254, 204, 79, 1);
  margin-bottom: 10px;
}


.grid-photo-wrapper {
  grid-column: 2 / span 3;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 100px;
  gap: 8px;
}


.grid-item-large {
  grid-row: span 3;
}

.grid-item img:not(.play-icon):not(.like-count) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 1;
  pointer-events: none;
  
}


.social-icons img {
  display: inline-block;
  margin: 0 5px;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 20px;
  justify-content: center;

}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);  */
}

.grid-photo-wrapper .grid-item {
  position: relative;
  overflow: hidden;
  
   

}



.post-block {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Uncommented and enhanced shadow */
}



.post-content {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 10px;
}

.post-title {
  margin: 0 0 10px;
  font-size: 22px;
  color: #102854;
}

.post-text {
  flex: 1;
  margin: 0 0 15px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(17, 24, 39, 1);

}

.post-counters {
  display: flex;
  gap: 10px;
}

.post-counters .likes,
.post-counters .comments {
  font-size: 12px;
  color: rgba(31, 41, 55, 1);

}


.post-image {

  flex: 0 0 120px;
  overflow: hidden;
  margin: 10px 5px;
  border-radius: 10px;
  max-width: 70px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media (max-width: 768px) {
  .post-block {
    flex-direction: column-reverse;
  }

  .post-image {
    flex: 1;
    width: 100%;
    height: 200px;
    
  }

  .post-content {
    padding: 15px;
  }
}

.grid-item.stack {

  grid-row: span 3;
  display: grid;
  grid-template-rows: 1.5fr 1fr;
  gap: 10px;
  box-shadow: none;
  
}

.grid-item.stack1 {

  grid-row: span 3;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  box-shadow: none;
  
}

.grid-item .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; 
  padding: 8px 12px ;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  background: linear-gradient(0deg, #003366 0%, rgba(0, 45, 114, 0.1) 100%);
  
  align-items: center;
  min-height: 36px;
  
}
.grid-item .overlay .video-overlay {
min-height: 150px;
}


.grid-item .overlay span {
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.grid-item .overlay .like-count {
  color: white !important;
}
.like-count img {
  width: 15px;
  height: 13px;
  margin-right: 5px;
}
.like-count {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff !important;
  font-size: 15px;
  background: transparent;
  margin: 0;
  padding: 0;
}


@media (max-width: 992px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-virtually {
    grid-column: span 2;
    grid-row: auto;
  }

  .grid-photo-wrapper {
    grid-column: span 2;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .social-grid {
    grid-template-columns: 1fr;
  }

  .explore-virtually,
  .grid-photo-wrapper {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}



/*footer-cta*/

.footer-cta {
  background-color: rgba(254, 204, 79, 1);
  ;
  background-size: cover;
  color: white;
  text-align: right;

  animation: fadeIn 3.5s ease-out;

}


.footer-cta-content {
  position: relative;
  overflow: hidden;

  margin-left: auto;

  height: 500px;

}

.footer-cta-title {
  font-size: 34px;
  font-weight: 500;
  line-height: 72px;
  margin-bottom: 20px;
  color: rgba(0, 90, 177, 1);

  text-align: center;
  padding-left: 20px;
  padding-top: 100px;
  line-height: normal;

}

.footer-cta-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 12px;
  margin-bottom: 30px;
  color: rgba(0, 90, 177, 1);
  text-transform: uppercase;
}

.cta-buttons {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;

}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: rgba(0, 90, 177, 1);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  border: 1px solid rgba(0, 90, 177, 1);
  border-radius: 20px;
  transition: all 0.3s ease;
  text-align: center;

}

.cta-button i {
  margin-right: 5px;
}

.cta-button:hover {
  background-color: rgba(0, 90, 177, 1);
  color: white;
}

.footer-cta-image {

  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: -10px;


}

/*footer*/
.footer {
  background-color: #093972;
  padding: 20px;
  margin-top: -10px;
  padding-top: 0;

}

.footer-address {
  color: white;
}

.footer-social-icons {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding-top: 10px;

}

.social-icon {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  color: white !important;
  text-decoration: none;
}

.footer-content {
  display: flex;
  text-decoration: none;
  color: white;
  justify-content: space-between;
  padding: 20px;
  gap: 10px;
}

.footer-column {
  gap: 0px;
}

.footer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.btn-learn-more {
  display: inline-flex;
  max-width: 200px;
  ;
  align-items: center;
  justify-content: center;
  background: #ffbe22;
  color: #15396a;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(21, 57, 106, 0.07);
}

.btn-learn-more:hover,
.btn-learn-more:focus {
  background: #f9b013;
  color: #112c4a;
  box-shadow: 0 4px 16px rgba(21, 57, 106, 0.13);
  outline: none;
}

.btn-arrow {
  margin-left: 12px;
  font-size: 2rem;
  display: inline-block;
  transition: transform 0.2s;
}

.btn-learn-more:hover .btn-arrow {
  transform: translateX(5px);
}

.testimonial-section {
  background: #fff;
  border: 2px solid #e3edf7;
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 1100px;
  margin: 40px auto;
  box-shadow: 0 2px 12px rgba(30, 60, 100, 0.06);
}

.testimonial-main {
  flex: 0 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 320px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.10);
}

.testimonial-name {
  font-weight: bold;
  color: #123366;
  font-size: 1.13rem;
}

.testimonial-text {
  color: #334e6f;
  font-size: 1.06rem;
  line-height: 1.45;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.testimonial-text .highlight {
  color: #f9b013;
  font-weight: 500;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffbe22;
  color: #15396a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1px;
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 5px;
  width: fit-content;
}

.btn-learn-more:hover {
  background: #f9b013;
  color: #112c4a;
  box-shadow: 0 4px 16px rgba(21, 57, 106, 0.13);
  outline: none;
}

.btn-arrow {
  margin-left: 12px;
  font-size: 1.35rem;
  font-weight: 400;
  display: inline-block;
  transition: transform 0.2s;
}

.btn-learn-more:hover .btn-arrow {
  transform: translateX(5px);
}


.testimonial-slider {
  display: flex;
  margin: 0;
  gap: 5px;
  align-items: flex-start;
  min-width: 390px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(30, 60, 100, 0.03);
  padding: 12px 12px 8px 12px;
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}

.testimonial-card .active {
  opacity: 1;
}

.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(30, 60, 100, 0.10);
}

.card-img {
  width: 230px;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card-name {
  text-align: center;
  color: #263755;
  font-size: 0.97rem;
  margin-bottom: 0;
  margin-top: 0;
}



.swiper-slide {
  opacity: 0.6;
  height: 335px!important;
}

.swiper-slide-active {
  opacity: 1;
}

