@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #fff;
  padding-top: 0;
  transition: padding-top 0.3s ease;
}

body.has-sticky-header {
  padding-top: 76px;
}

h1 {
  font-size: 68px;
  font-family: "Playfair", serif;
  color: #2d3792;
  margin-bottom: 1.5rem;
}

h2,
.h2 {
  font-size: 50px !important;
  font-family: "Playfair", serif;
  color: #2d3792;
  margin-bottom: 1.5rem;
}

h3,
h4,
h5,
h6 {
  font-family: "Playfair", serif;
  color: #2d3792;
  margin-bottom: 1.5rem;
}

.text-primary {
  color: #2d3792 !important;
}

p,
.lead,
.fs-5,
.fs-6 {
  font-size: 16px !important;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}


.btn-bmc, .footer-cta .btn-apply, .a-levels-banner .banner-text .btn-white, .flex-content .content-text .btn-primary-bmc, .welcome-section .welcome-blue-box .welcome-btn,
button,
.btn {
  display: inline-block;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  background-color: #2d3792;
  color: #fff;
  text-align: center;
}
.btn-bmc:hover, .footer-cta .btn-apply:hover, .a-levels-banner .banner-text .btn-white:hover, .flex-content .content-text .btn-primary-bmc:hover, .welcome-section .welcome-blue-box .welcome-btn:hover,
button:hover,
.btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.btn-bmc.btn-secondary, .footer-cta .btn-secondary.btn-apply, .a-levels-banner .banner-text .btn-secondary.btn-white, .flex-content .content-text .btn-secondary.btn-primary-bmc, .welcome-section .welcome-blue-box .welcome-btn,
button.btn-secondary,
.btn.btn-secondary {
  background-color: #ec1c24;
}
.btn-bmc.btn-white, .footer-cta .btn-white.btn-apply, .a-levels-banner .banner-text .btn-white, .flex-content .content-text .btn-white.btn-primary-bmc, .welcome-section .welcome-blue-box .btn-white.welcome-btn,
button.btn-white,
.btn.btn-white {
  background-color: #fff;
  color: #2d3792;
}
.btn-bmc.btn-white:hover, .footer-cta .btn-white.btn-apply:hover, .a-levels-banner .banner-text .btn-white:hover, .flex-content .content-text .btn-white.btn-primary-bmc:hover, .welcome-section .welcome-blue-box .btn-white.welcome-btn:hover,
button.btn-white:hover,
.btn.btn-white:hover {
  color: #2d3792;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
 
}
header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
header .navbar {
  padding: 0.75rem 0;
}
header .navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
header .navbar-nav .nav-link {
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
header .navbar-nav .nav-link:hover {
  color: #2d3792;
}
header .navbar-nav .nav-link.dropdown-toggle::after {
  display: none;
}
header .navbar-nav .nav-link.dropdown-toggle[aria-expanded=true]::after {
  display: none;
}
header .navbar-nav .dropdown-menu {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  min-width: 200px;
}
header .navbar-nav .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .navbar-nav .dropdown-menu .dropdown-item {
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 10px 20px;
}
header .navbar-nav .dropdown-menu .dropdown-item:hover, header .navbar-nav .dropdown-menu .dropdown-item.active {
  background: #f8f9fa;
  color: #2d3792;
}
header .header-right .social-icons a {
  color: #2d3792;
  text-decoration: none;
  transition: all 0.3s ease;
}
header .header-right .social-icons a:hover {
  color: #ec1c24;
}
header .header-right .search-icon {
  color: #2d3792;
  cursor: pointer;
}

@keyframes slideDownHeader {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
  overflow: hidden;
}
.hero-section .hero-apply-sticker {
  position: absolute;
  top: 0px;
  right: 80px;
  background: #ec1c24;
  color: #fff;
  padding: 12px 8px 30px;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
  width: 55px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hero-section .hero-apply-sticker:hover {
  transform: scale(1.05);
}
.hero-section .hero-apply-sticker span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  letter-spacing: 1.5px;
}
.hero-section.hero-secondary {
  height: 480px;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  padding: 40px;
}
.hero-section.hero-secondary h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  font-weight: 800;
}
.hero-section.hero-secondary .title-underline {
  height: 5px;
  width: 100px;
  background: #fff;
  margin: 15px 0 0;
}

.welcome-section {
  position: relative;
  z-index: 10;
  margin-top: -150px;
}
.welcome-section .welcome-blue-box {
  background: #2d3792;
  color: #fff;
  padding: 45px 50px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.welcome-section .welcome-blue-box h1 {
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}
.welcome-section .welcome-blue-box p {
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.95;
}
.welcome-section .welcome-blue-box .welcome-btn {
  float: none;
  display: inline-block;
}

.section-padding {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  margin-bottom: 10px;
}
.section-header p {
  color: #666;
}

.flex-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
}
.flex-content.reverse {
  flex-direction: row-reverse;
}
.flex-content .content-img {
  flex: 1;
}
.flex-content .content-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.flex-content .content-text {
  flex: 1;
}
.flex-content .content-text h3 {
  font-size: 1.8rem;
}
.flex-content .content-text p {
  margin-bottom: 20px;
  color: #333;
}
.a-levels-banner {
  background: linear-gradient(110deg, #EC1C24, #2C3691);
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 5rem;
}
.a-levels-banner .course-slider .item .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.a-levels-banner .owl-nav button {
  color: #fff;
}
.a-levels-banner .owl-nav button:hover {
  opacity: 0.8;
}
.a-levels-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.a-levels-banner .banner-text {
  color: #fff;
  max-width: 500px;
  padding: 50px 0;
}
.a-levels-banner .banner-text h2 {
  color: #fff;
}
.a-levels-banner .banner-text p {
  margin-bottom: 25px;
}
.a-levels-banner .banner-img {
  max-width: 450px;
  margin-bottom: -10px;
}
.a-levels-banner .banner-img img {
  width: 100%;
  display: block;
}

.life-at-bmc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) 1.25fr;
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
  margin-top: 2rem;
}
.life-at-bmc-grid .grid-item {
  overflow: hidden;
  border-radius: 4px;
}
.life-at-bmc-grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.life-at-bmc-grid .grid-item img:hover {
  transform: scale(1.05);
}
.life-at-bmc-grid .grid-item.item-1 {
  grid-column: 1/2;
  grid-row: 1/2;
}
.life-at-bmc-grid .grid-item.item-2 {
  grid-column: 2/3;
  grid-row: 1/2;
}
.life-at-bmc-grid .grid-item.item-3 {
  grid-column: 1/3;
  grid-row: 2/3;
}
.life-at-bmc-grid .grid-item.item-4 {
  grid-column: 3/4;
  grid-row: 1/3;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 2rem;
}
.photo-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}
.photo-grid.exposure-grid {
  grid-template-columns: repeat(6, 1fr);
}

.testimonial-section {
  background: #fff;
  padding: 3rem 0 5rem;
}
.testimonial-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.testimonial-section .section-header h2 {
  font-size: 2rem;
}
.testimonial-section .testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-section .testimonial-carousel .owl-stage-outer {
  background: #fff;
}
.testimonial-section .testimonial-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
  z-index: 10;
}
.testimonial-section .testimonial-carousel .owl-nav button {
  pointer-events: all;
  background: #2d3792 !important;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
  opacity: 0.7;
  margin: 0 -20px;
}
.testimonial-section .testimonial-carousel .owl-nav button:hover {
  background: #ec1c24 !important;
  opacity: 1;
  transform: scale(1.1);
}
.testimonial-section .testimonial-carousel .owl-nav button span {
  position: absolute;
}
.testimonial-section .testimonial-item {
  padding: 10px;
  display: flex;
  height: 100%;
}
.testimonial-section .testimonial-flex {
  display: flex;
  align-items: stretch;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  overflow: hidden;
  min-height: 320px;
  height: 407px;
  width: 100%;
}
.testimonial-section .testimonial-flex .quote-box {
  background: #2d3792;
  color: #fff;
  padding: 15px;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.testimonial-section .testimonial-flex .quote-box .quote-icon {
  font-size: 1.5rem;
  opacity: 0.2;
  margin-bottom: 5px;
  line-height: 1;
}
.testimonial-section .testimonial-flex .quote-box p {
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 8px;
  font-size: 0.85rem;
  flex-grow: 1;
}
.testimonial-section .testimonial-flex .quote-box .author-info h5 {
  color: #fff;
  margin-bottom: 2px;
  font-size: 0.8rem;
}
.testimonial-section .testimonial-flex .quote-box .author-info span {
  opacity: 0.8;
  font-size: 0.65rem;
}
.testimonial-section .testimonial-flex .student-image {
  flex: 1;
  min-width: 0;
  height: 100%;
}
.testimonial-section .testimonial-flex .student-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section .testimonial-carousel .owl-stage {
  display: flex;
}

.testimonial-section .testimonial-carousel .owl-item {
  display: flex;
  height: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-grid > a {
  display: block;
  color: inherit;
}
.news-grid .news-card {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
}
.news-grid .news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.news-grid .news-card .news-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.news-grid .news-card .news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-grid .news-card .news-img-wrapper .category-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #2d3792;
  color: #fff;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}
.news-grid .news-card .news-img-wrapper .category-tag.event-tag {
  background: #00aae9;
}
.news-grid .news-card .news-content {
  padding: 25px;
}
.news-grid .news-card .news-content .date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
  display: block;
}
.news-grid .news-card .news-content h4 {
  font-size: 1.2rem;
  color: #2d3792;
  line-height: 1.4;
  margin-bottom: 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.news-grid .news-card .news-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-detail-section {
  padding-bottom: 5rem;
}
.news-detail-section .article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.news-detail-section .article-header h1 {
  margin-bottom: 0;
  max-width: 80%;
}
.news-detail-section .article-header .article-date {
  color: #00aae9;
  font-weight: 700;
  font-size: 1rem;
}
.news-detail-section .article-body p {
  margin-bottom: 30px;
  color: #333;
  line-height: 1.8;
  font-size: 1.05rem;
}
.news-detail-section .article-body .article-blockquote {
  font-size: 2.2rem;
  color: #00aae9;
  font-family: "Playfair", serif;
  font-weight: 700;
  margin: 50px 0;
  padding-left: 0;
  position: relative;
  line-height: 1.2;
}
.news-detail-section .article-body .article-blockquote::before {
  content: "“";
  margin-right: 10px;
}
.news-detail-section .article-body .article-blockquote::after {
  content: "”";
  margin-left: 10px;
}

.footer-cta {
  text-align: center;
  padding: 6rem 0;
  background: #fff;
  position: relative;
}
.footer-cta .icon-left,
.footer-cta .icon-right {
  position: absolute;
  width: 100px;
  opacity: 0.1;
}
.footer-cta .icon-left {
  left: 15%;
  top: 20%;
}
.footer-cta .icon-right {
  right: 15%;
  top: 20%;
}
.footer-cta h2 {
  font-weight: 700;
}
.footer-cta p {
  color: #666;
  margin-bottom: 30px;
}
.course-feature-bar {
  background: linear-gradient(90deg, #464f9f 0%, #ec1c24 100%);
  padding: 40px 0;
  color: #fff;
  text-align: center;
}
.course-feature-bar .feature-item i {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.course-feature-bar .feature-item span {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  line-height: 1.4;
}

.exam-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.exam-table th {
  background: #2d3792;
  color: #fff;
  padding: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.exam-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #eee;
  background: #fff;
}
.exam-table tr:nth-child(even) td {
  background: #fcfcfc;
}

.subject-listing .subject-category-card {
  background: #f8f9fa;
  padding: 25px;
  height: 100%;
}
.subject-listing .subject-category-card h5 {
  color: #2d3792;
  border-bottom: 2px solid #ec1c24;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
.subject-listing .subject-category-card ul {
  padding: 0;
  margin: 0;
}
.subject-listing .subject-category-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.95rem;
  color: #333;
}
.subject-listing .subject-category-card ul li:last-child {
  border-bottom: none;
}

.head-message-box {
  background: #00aae9;
  color: #fff;
  padding: 50px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.head-message-box .quote-icon {
  font-size: 3rem;
  opacity: 0.2;
  margin-bottom: 20px;
}
.head-message-box p {
  font-style: italic;
  line-height: 1.8;
  font-size: 1.1rem;
}

.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.faq-accordion .accordion-item .accordion-button {
  font-weight: 700;
  color: #2d3792;
  padding: 20px;
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #ec1c24;
  box-shadow: none;
}
.faq-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-item .accordion-body {
  padding: 20px;
  color: #666;
  line-height: 1.7;
}

.footer-main {
  background: #2d3792;
  color: #fff;
  padding: 5rem 0 20px;
}
.footer-main h5 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.footer-main .footer-col {
  margin-bottom: 30px;
}
.footer-main .footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}
.footer-main .contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-main .footer-links ul li {
  margin-bottom: 10px;
}
.footer-main .footer-links ul li a {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-main .footer-links ul li a:hover {
  opacity: 1;
}
.footer-main .newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 15px;
}
.footer-main .newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px 0 0 4px;
}
.footer-main .newsletter-form button {
  background: #00aae9;
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  cursor: pointer;
}
.footer-main .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

.object-fit-cover {
  object-fit: cover;
}

.info-card-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}
.info-card-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #ec1c24;
}
.info-card-box h4 {
  color: #2d3792;
  font-weight: 700;
  margin-bottom: 15px;
}
.info-card-box p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.info-card-box .btn-link {
  color: #ec1c24;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.info-card-box .btn-link:hover {
  color: #2d3792;
}

.subject-table-container {
  background: #fff;
  border: 1px solid #eee;
}
.subject-table-container .table-header {
  background: #2d3792;
  color: #fff;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 1.1rem;
}
.subject-table-container .subject-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.subject-table-container .subject-list li {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-size: 0.95rem;
}
.subject-table-container .subject-list li:last-child {
  border-bottom: none;
}
.subject-table-container .subject-list li:nth-child(even) {
  background: #fcfcfc;
}

.your-future-gallery .gallery-item {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 0;
}
.your-future-gallery .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.your-future-gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.cta-pattern-bg {
  background-color: #f8f9fa;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  /* Placeholder for pattern */
}

.facility-images-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 15px;
}
.facility-images-grid .large-fac {
  grid-column: 1/2;
  grid-row: 1/3;
  height: 100%;
}
.facility-images-grid .large-fac img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-images-grid .small-fac-1 {
  grid-column: 2/3;
  grid-row: 1/2;
  height: 100%;
}
.facility-images-grid .small-fac-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-images-grid .small-fac-2 {
  grid-column: 2/3;
  grid-row: 2/3;
  height: 100%;
}
.facility-images-grid .small-fac-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bmc-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-top: 20px;
}
.bmc-table th {
  background: #f0f0f0;
  color: #2d3792;
  padding: 18px 15px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border: 1px solid #ddd;
}
.bmc-table td {
  padding: 15px 20px;
  text-align: center;
  border: 1px solid #eee;
  color: #333;
  font-size: 0.95rem;
}
.bmc-table tr:nth-child(even) td {
  background: #f9f9f9;
}
.bmc-table.dark-table th {
  background: #1e2c5b;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}
.bmc-table.dark-table td {
  border-color: #eee;
  color: #333;
}

.faq-accordion .accordion-button::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  background-image: none !important;
  color: #2d3792;
  transition: transform 0.3s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
  color: #ec1c24;
}
.faq-accordion .accordion-body {
  padding: 25px 30px;
  color: #666;
  line-height: 1.7;
}

.cta-section {
  background: #fff;
}
.cta-section .opacity-05 {
  opacity: 0.05;
  color: #2d3792;
}

.contact-hero-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding: 40px;
}
.contact-hero-section h2 {
  font-size: 3rem;
  color: #fff;
  margin: 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  font-weight: 800;
}
.contact-hero-section .title-underline {
  height: 5px;
  width: 100px;
  background: #fff;
  margin: 15px 0 0;
}

.contact-section {
  padding: 5rem 0;
  background: #f8f9fa;
}
.contact-section .contact-info h2 {
  font-size: 2.2rem;
  color: #2d3792;
  margin-bottom: 2rem;
}
.contact-section .contact-info p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.contact-section .contact-info .contact-item {
  margin-bottom: 3rem;
}
.contact-section .contact-info .contact-item h4 {
  font-size: 1.2rem;
  color: #2d3792;
  margin-bottom: 10px;
}
.contact-section .contact-info .contact-item p {
  margin: 0;
  color: #333;
  font-weight: 500;
}
.contact-section .contact-info .contact-item p a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-section .contact-info .contact-item p a:hover {
  color: #2d3792;
}
.contact-section .contact-info .social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-section .contact-info .social-list li {
  margin-bottom: 8px;
}
.contact-section .contact-info .social-list li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact-section .contact-info .social-list li a:hover {
  color: #2d3792;
}
.contact-section .contact-form {
  background: #fff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.contact-section .contact-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.contact-section .contact-form .form-control,
.contact-section .contact-form .form-select {
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.contact-section .contact-form .form-control:focus,
.contact-section .contact-form .form-select:focus {
  border-color: #2d3792;
  box-shadow: 0 0 0 0.2rem rgba(70, 79, 159, 0.25);
}
.contact-section .contact-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23464f9f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.contact-section .contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}
.contact-section .contact-form .btn-submit {
  background: #2d3792;
  color: #fff;
  padding: 12px 40px;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.contact-section .contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(70, 79, 159, 0.3);
}

@media (max-width: 992px) {
  .bmc-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .site-header .navbar-collapse {
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
  }
  header .navbar {
    padding: 0.5rem 0;
  }
  header .navbar-brand img {
    height: 40px;
  }
  header .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 0.5rem !important;
    margin-top: 1rem;
    width: 100%;
  }
  header .navbar-nav .nav-item {
    width: 100%;
  }
  header .navbar-nav .nav-link {
    font-size: 0.75rem;
    display: block;
    width: 100%;
  }
  header .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    min-width: 100%;
    border: 0;
    border-left: 2px solid #e9ecef;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0.25rem;
    padding: 0.25rem 0 0.25rem 0.5rem;
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  header .navbar-nav .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  header .navbar-nav .dropdown-menu .dropdown-item {
    padding: 8px 15px;
    font-size: 0.7rem;
  }
  header .header-right {
    margin-top: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }
  header .header-right .social-icons {
    gap: 1rem !important;
  }
  body.has-sticky-header {
    padding-top: 70px;
  }
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .welcome-blue-box {
    padding: 30px !important;
  }
  .welcome-blue-box h1 {
    font-size: 1.8rem;
  }
  .welcome-blue-box p {
    font-size: 0.9rem;
  }
  .welcome-blue-box .welcome-btn {
    font-size: 0.85rem;
  }
  .hero-section {
    height: 400px !important;
  }
  .hero-section.hero-secondary {
    height: 300px !important;
  }
  .hero-section.hero-secondary h2 {
    font-size: 1.8rem;
  }
  .hero-section .hero-apply-sticker {
    right: 20px;
    width: 50px;
    font-size: 0.65rem;
    padding: 8px 5px 20px;
  }
  .contact-hero-section {
    height: 300px;
    padding: 30px;
  }
  .contact-hero-section h2 {
    font-size: 2rem;
  }
  .contact-hero-section .title-underline {
    width: 60px;
  }
  .flex-content,
  .flex-content.reverse {
    flex-direction: column;
    gap: 1.5rem;
  }
  .content-img img {
    width: 100%;
    height: auto;
  }
  .content-text h2, .content-text h3 {
    font-size: 1.3rem;
  }
  .content-text p {
    font-size: 0.95rem;
  }
  .section-padding {
    padding: 2rem 0;
  }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .photo-grid.exposure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid img {
    height: 150px;
  }
  .testimonial-flex {
    flex-direction: column;
    gap: 0;
    min-height: auto;
    height: auto;
  }
  .testimonial-flex .quote-box {
    padding: 15px;
    min-height: 220px;
    height: 220px;
  }
  .testimonial-flex .student-image {
    min-height: 220px;
    flex: 1;
    height: 220px;
  }
  .testimonial-carousel .owl-nav {
    padding: 0;
  }
  .testimonial-carousel .owl-nav button {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin: 0 -15px;
  }
  .testimonial-item {
    padding: 10px;
  }
  .a-levels-banner .container {
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
  }
  .a-levels-banner .banner-text {
    max-width: 100%;
    padding: 30px 0;
  }
  .a-levels-banner .banner-text h2 {
    font-size: 1.5rem;
  }
  .a-levels-banner .banner-text p {
    font-size: 0.9rem;
  }
  .a-levels-banner .banner-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-card h3 {
    font-size: 1.1rem;
  }
  .news-card p {
    font-size: 0.85rem;
  }
  .life-at-bmc-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .life-at-bmc-grid .grid-item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 250px;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-form .form-label {
    font-size: 0.9rem;
  }
  .contact-form .form-control,
  .contact-form .form-select {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
  .contact-form textarea.form-control {
    min-height: 120px;
  }
  .contact-form .btn-submit {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .contact-info {
    margin-bottom: 2rem;
  }
  .contact-info h2 {
    font-size: 1.3rem;
  }
  .contact-info p {
    font-size: 0.9rem;
  }
  .contact-info .contact-item {
    margin-bottom: 1.5rem;
  }
  .contact-info .contact-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }
  .container {
    padding: 0 15px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .section-padding {
    padding: 1.5rem 0;
  }
  .welcome-section {
    padding: 1.5rem 0;
  }
  .welcome-blue-box {
    max-width: 100% !important;
    padding: 25px !important;
    margin: 0 !important;
  }
  .welcome-blue-box h1 {
    font-size: 2.3rem;
    margin-bottom: 10px;
  }
  .welcome-blue-box p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  .welcome-blue-box .welcome-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
  .hero-section {
    height: 350px !important;
  }
  .hero-section.hero-secondary {
    height: 250px !important;
  }
  .hero-section.hero-secondary h2 {
    font-size: 1.5rem;
  }
  .hero-section .hero-apply-sticker {
    right: 15px;
    top: 15px;
    width: 45px;
    padding: 8px 5px 18px;
    font-size: 0.6rem;
  }
  .contact-hero-section {
    height: 250px;
    padding: 25px;
  }
  .contact-hero-section h2 {
    font-size: 1.5rem;
  }
  .contact-hero-section .title-underline {
    width: 50px;
  }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .photo-grid.exposure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid img {
    height: 120px;
  }
  .btn-bmc, .welcome-section .welcome-blue-box .welcome-btn, .flex-content .content-text .btn-primary-bmc, .a-levels-banner .banner-text .btn-white, .footer-cta .btn-apply,
  .welcome-btn,
  .btn-submit,
  .btn-primary {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .row {
    row-gap: 2rem;
  }
}
@media (max-width: 576px) {
  body {
    
    font-size: 0.9rem;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .container {
    padding: 0 12px;
    max-width: 100% !important;
  }
  input,
  select,
  textarea {
    max-width: 100% !important;
    box-sizing: border-box;
  }
  h1 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  h3 {
    font-size: 1rem;
  }
  p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .section-padding {
    padding: 1rem 0;
  }
  header .navbar {
    padding: 0.5rem 0;
  }
  header .navbar-brand img {
    height: 35px;
  }
  header .navbar-nav {
    gap: 0.25rem !important;
    margin-top: 0.5rem;
  }
  header .navbar-nav .nav-link {
    font-size: 0.7rem;
    padding: 5px 10px;
    color: #333;
  }
  header .navbar-nav .dropdown-menu {
    min-width: auto;
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  header .navbar-nav .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  header .navbar-nav .dropdown-menu .dropdown-item {
    padding: 6px 12px;
    font-size: 0.65rem;
  }
  header .search-icon {
    font-size: 1rem;
  }
  header .social-icons a {
    font-size: 0.8rem;
  }
  .welcome-section {
    padding: 1rem 0;
  }
  .welcome-blue-box {
    max-width: 100% !important;
    padding: 20px !important;
    margin: 0 !important;
    text-align: center;
  }
  .welcome-blue-box h1 {
    font-size: 2.3rem;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .welcome-blue-box p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  .welcome-blue-box .welcome-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.75rem;
  }
  .hero-section {
    height: 300px !important;
  }
  .hero-section.hero-secondary {
    height: 220px !important;
  }
  .hero-section.hero-secondary h2 {
    font-size: 1.3rem;
  }
  .hero-section.hero-secondary .title-underline {
    width: 30px;
  }
  .hero-section .hero-apply-sticker {
    right: 10px;
    top: 0px;
    width: 40px;
    padding: 6px 4px 16px;
    font-size: 0.55rem;
    letter-spacing: 0.5px;
  }
  .contact-hero-section {
    height: 220px;
    padding: 20px;
  }
  .contact-hero-section h2 {
    font-size: 1.3rem;
  }
  .contact-hero-section .title-underline {
    width: 40px;
  }
  .flex-content {
    gap: 1rem !important;
  }
  .flex-content.reverse {
    flex-direction: column-reverse;
  }
  .content-text h2, .content-text h3 {
    font-size: 1rem;
  }
  .content-text p {
    font-size: 0.85rem;
  }
  .content-text a {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  .btn-bmc, .welcome-section .welcome-blue-box .welcome-btn, .flex-content .content-text .btn-primary-bmc, .a-levels-banner .banner-text .btn-white, .footer-cta .btn-apply,
  .welcome-btn,
  .btn-submit,
  .btn-primary,
  a.btn-white {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 0.8rem;
    text-align: center;
  }
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .photo-grid.exposure-grid {
    grid-template-columns: 1fr;
  }
  .photo-grid img {
    height: 200px;
  }
  .testimonial-flex {
    gap: 0;
    min-height: auto;
    flex-direction: column-reverse;
    height: auto;
  }
  .testimonial-flex .quote-box {
    padding: 15px;
    min-height: 200px;
    height: 200px;
  }
  .testimonial-flex .quote-box .quote-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  .testimonial-flex .quote-box p {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .testimonial-flex .quote-box .author-info h5 {
    font-size: 0.8rem;
  }
  .testimonial-flex .quote-box .author-info span {
    font-size: 0.65rem;
  }
  .testimonial-flex .student-image {
    min-height: 200px;
    height: 200px;
  }
  .testimonial-carousel .owl-nav {
    padding: 0;
  }
  .testimonial-carousel .owl-nav button {
    width: 32px;
    height: 32px;
    font-size: 12px;
    margin: 0 -12px;
  }
  .testimonial-item {
    padding: 5px;
  }
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-card p {
    font-size: 0.8rem;
  }
  .testimonial-card h5 {
    font-size: 0.9rem;
  }
  .a-levels-banner {
    padding: 0;
  }
  .a-levels-banner .container {
    flex-direction: column;
    padding: 20px 0;
    gap: 1rem;
  }
  .a-levels-banner .banner-text {
    order: 2;
    padding: 20px;
    max-width: 100%;
  }
  .a-levels-banner .banner-text h2 {
    font-size: 1.2rem;
  }
  .a-levels-banner .banner-text p {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
  .a-levels-banner .banner-text .btn-white {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  .a-levels-banner .banner-img {
    order: 1;
    max-width: 100%;
    margin: 0 !important;
  }
  .a-levels-banner .banner-img img {
    width: 100%;
    height: auto;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .news-card .news-img {
    height: 200px;
  }
  .news-card h3 {
    font-size: 1rem;
  }
  .news-card p {
    font-size: 0.8rem;
  }
  .news-card .date {
    font-size: 0.75rem;
  }
  .contact-section .contact-form {
    padding: 15px;
    background: transparent;
    box-shadow: none;
    border-top: 1px solid #e0e0e0;
    margin-top: 1.5rem;
  }
  .contact-section .contact-form .form-label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  .contact-section .contact-form .form-control,
  .contact-section .contact-form .form-select {
    font-size: 0.85rem;
    padding: 8px 10px;
    margin-bottom: 12px;
  }
  .contact-section .contact-form textarea.form-control {
    min-height: 100px;
  }
  .contact-section .contact-form .btn-submit {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  .contact-section .contact-info {
    padding-bottom: 1.5rem;
  }
  .contact-section .contact-info h2 {
    font-size: 1.2rem;
  }
  .contact-section .contact-info p {
    font-size: 0.85rem;
  }
  .contact-section .contact-info .contact-item h4 {
    font-size: 0.95rem;
  }
  .contact-section .contact-info .contact-item p {
    font-size: 0.85rem;
  }
  .contact-section .contact-info .contact-item ul li {
    font-size: 0.85rem;
  }
  .contact-section .contact-info .social-list li a {
    font-size: 0.85rem;
  }
  .life-at-bmc-grid {
    grid-template-columns: 1fr;
  }
  .life-at-bmc-grid .grid-item {
    height: 200px;
  }
  .row {
    row-gap: 1.5rem;
  }
  .col-lg-8,
  .col-lg-6,
  .col-lg-4 {
    margin-bottom: 1rem;
  }
  .footer-main .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  .footer-main .newsletter-form input {
    border-radius: 4px;
    width: 100%;
  }
  .footer-main .newsletter-form button {
    border-radius: 4px;
    width: 100%;
  }
  .footer-main .footer-col {
    text-align: center;
  }
  .footer-main .contact-item {
    justify-content: center;
  }
  .footer-main .footer-links ul {
    text-align: center;
    padding: 0;
  }

  .specialty-list li {
    position: relative;
    padding-left: 1.25rem;
  }

  .specialty-list li::before {
    left: 0;
  }
}

.specialty-list  li::before {
    content: "\f054"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 290px;
    color: #3f5cff;
}
/*# sourceMappingURL=index.css.map */
