body {
  font-family: "Roboto", sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: #0d0d0d;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.8rem;
}
@media (min-width: 576px) {
  h2 {
    font-size: calc(1.8rem + (2.5rem - 1.8rem) * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2.5rem;
  }
}

a {
  color: #0056b3;
  text-decoration: none;
}
a:hover {
  color: #003d80;
  text-decoration: underline;
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.section {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #333;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-decoration: none;
}
.btn:hover {
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background-color: #0056b3;
  border-color: #0056b3;
}
.btn-primary:hover {
  color: #fff;
  background-color: #003d80;
  border-color: #003d80;
  text-decoration: none;
}

.btn-secondary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #0062cc;
  border-color: #0062cc;
  text-decoration: none;
}

.btn-text {
  color: #0056b3;
  padding: 0;
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 500;
}
.btn-text:hover {
  text-decoration: underline;
}

.text-center {
  text-align: center !important;
}

.top-bar {
  background-color: #004a9a;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}
.top-bar .top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .top-bar .top-bar-content {
    justify-content: center;
    text-align: center;
  }
}
.top-bar .contact-info span {
  margin-right: 1.5rem;
}
@media (max-width: 576px) {
  .top-bar .contact-info span {
    display: block;
    margin: 0.25rem 0;
  }
}
.top-bar .contact-info span i {
  margin-right: 0.25rem;
}
.top-bar .social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 1rem;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.top-bar .social-links a:hover {
  color: #fff;
  text-decoration: none;
}

.site-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.site-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .site-logo img {
  max-width: 250px;
}
.site-header .site-nav .menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}
@media (max-width: 768px) {
  .site-header .site-nav .menu-toggle {
    display: block;
  }
}
.site-header .site-nav .menu-toggle .menu-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  position: relative;
  transition: background-color 0.3s ease;
}
.site-header .site-nav .menu-toggle .menu-icon::before, .site-header .site-nav .menu-toggle .menu-icon::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, top 0.3s ease;
}
.site-header .site-nav .menu-toggle .menu-icon::before {
  top: -8px;
}
.site-header .site-nav .menu-toggle .menu-icon::after {
  top: 8px;
}
.site-header .site-nav .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
@media (max-width: 768px) {
  .site-header .site-nav .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
  }
  .site-header .site-nav .nav-menu.open {
    display: flex;
  }
}
@media (min-width: 768px) {
  .site-header .site-nav .nav-menu li {
    margin-left: 1.5rem;
  }
  .site-header .site-nav .nav-menu li.dropdown-submenu {
    margin-left: 0;
  }
  .site-header .site-nav .nav-menu li.dropdown-submenu .dropdown-menu li {
    margin-left: 0;
  }
  .site-header .site-nav .nav-menu li:hover > .dropdown-menu {
    display: block;
  }
}
@media (max-width: 768px) {
  .site-header .site-nav .nav-menu li {
    margin: 0.5rem 0;
    text-align: center;
  }
}
.site-header .site-nav .nav-menu li a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
@media (min-width: 768px) {
  .site-header .site-nav .nav-menu li a:hover {
    color: #0056b3;
    text-decoration: none;
  }
}
@media (max-width: 768px) {
  .site-header .site-nav .nav-menu li a {
    padding: 0.5rem 1rem;
    display: block;
  }
  .site-header .site-nav .nav-menu li a:hover {
    background-color: #f8f9fa;
  }
}

.site-header.menu-open .site-nav .menu-toggle .menu-icon {
  background-color: transparent;
}
.site-header.menu-open .site-nav .menu-toggle .menu-icon::before {
  transform: translateY(8px) rotate(45deg);
}
.site-header.menu-open .site-nav .menu-toggle .menu-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

.image-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course-grid, .choose-us-grid, .gallery-grid, .news-events-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (min-width: 768px) {
  .course-grid, .choose-us-grid, .gallery-grid, .news-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .course-grid, .choose-us-grid, .gallery-grid, .news-events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.course-card, .choose-us-item, .news-event-card, .gallery-item {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course-card:hover, .choose-us-item:hover, .news-event-card:hover, .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course-card img, .news-event-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.course-card .btn-text, .news-event-card .btn-text {
  align-self: flex-start;
  margin-top: auto;
}

.course-card .card-content, .news-event-card .card-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.news-event-card h4 {
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.news-event-card .meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.choose-us-item {
  text-align: center;
  padding: 1.5rem;
}
.choose-us-item i {
  font-size: 3rem;
  color: #0056b3;
  margin-bottom: 1rem;
}
.choose-us-item h3 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.hero-slider-section {
  position: relative;
  overflow: hidden;
}
.hero-slider-section .hero-slider.owl-carousel .slide-item {
  height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slider-section .hero-slider.owl-carousel .slide-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-slider-section .hero-slider.owl-carousel .slide-item .slide-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.hero-slider-section .hero-slider.owl-carousel .slide-item .slide-content h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .hero-slider-section .hero-slider.owl-carousel .slide-item .slide-content h1 {
    font-size: calc(2.5rem + (4rem - 2.5rem) * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  .hero-slider-section .hero-slider.owl-carousel .slide-item .slide-content h1 {
    font-size: 4rem;
  }
}
.hero-slider-section .hero-slider.owl-carousel .slide-item .slide-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-slider-section .hero-slider.owl-carousel .slide-item .slide-content .btn {
  margin: 0 0.5rem;
}
.hero-slider-section .hero-slider.owl-carousel .owl-nav button.owl-prev,
.hero-slider-section .hero-slider.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5) !important;
  color: #fff !important;
  border-radius: 50%;
  font-size: 1.5rem;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0 !important;
  transition: background-color 0.3s ease;
}
.hero-slider-section .hero-slider.owl-carousel .owl-nav button.owl-prev:hover,
.hero-slider-section .hero-slider.owl-carousel .owl-nav button.owl-next:hover {
  background: rgba(0, 0, 0, 0.8) !important;
}
.hero-slider-section .hero-slider.owl-carousel .owl-nav button.owl-prev {
  left: 1rem;
}
.hero-slider-section .hero-slider.owl-carousel .owl-nav button.owl-next {
  right: 1rem;
}
.hero-slider-section .hero-slider.owl-carousel .owl-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
}
.hero-slider-section .hero-slider.owl-carousel .owl-dots .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 0 5px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  display: block !important;
  border-radius: 50% !important;
  transition: background-color 0.3s ease, width 0.3s ease;
}
.hero-slider-section .hero-slider.owl-carousel .owl-dots .owl-dot.active span {
  background: #fff !important;
  width: 25px !important;
  border-radius: 5px !important;
}
.hero-slider-section .hero-slider.owl-carousel .owl-dots .owl-dot:hover span {
  background: #fff !important;
}

.testimonial-slider.owl-carousel .owl-nav {
  display: none;
}
.testimonial-slider.owl-carousel .owl-dots {
  margin-top: 1.5rem;
  position: static;
  bottom: auto;
}
.testimonial-slider.owl-carousel .owl-dot span {
  background: rgba(255, 255, 255, 0.5) !important;
}
.testimonial-slider.owl-carousel .owl-dot.active span {
  background: #fff !important;
}

.site-footer {
  background-color: #00428a;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1rem 0;
}
.site-footer .footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media (min-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.site-footer .footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.site-footer .footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 2px;
  background-color: #28a745;
}
.site-footer .footer-col a {
  color: #fff;
}
.site-footer .footer-col p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.site-footer .footer-col p i {
  margin-right: 0.5rem;
  color: #28a745;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.site-footer .footer-col ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
.site-footer .footer-social {
  margin-top: 1rem;
}
.site-footer .footer-social a {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.site-footer .footer-social a:hover {
  color: #fff;
  text-decoration: none;
}
.site-footer .footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .footer-bottom p {
  margin-bottom: 0;
}

.welcome-section .image-content {
  height: 100%;
  width: 100%;
}
.welcome-section .image-content img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.section {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Poppins", sans-serif;
  color: #0d0d0d;
  line-height: 1.2;
  font-size: 1.8rem;
}
@media (min-width: 576px) {
  .section-title {
    font-size: calc(1.8rem + (2.5rem - 1.8rem) * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.facilities-section {
  background-color: #f8f9fa;
}

.facilities-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (min-width: 768px) {
  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .facilities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.facility-item {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.facility-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.facility-item i {
  font-size: 2.5rem;
  color: #0056b3;
  margin-bottom: 0.5rem;
}
.facility-item h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.welcome-section {
  background: rgba(196, 196, 196, 0.2901960784);
}

.about-section ul {
  padding-left: 0;
}
.about-section ul li {
  list-style-type: none;
  padding-left: 20px;
  position: relative;
}
.about-section ul li::before {
  content: "\f00c";
  color: #0056b3;
  position: absolute;
  left: 0;
  font-family: fontawesome;
}

.page-header-section {
  background-color: #0056b3;
  padding: 1.5rem 0;
  text-align: center;
  margin-bottom: 3rem;
  margin-bottom: 0;
}
.page-header-section h1 {
  margin-bottom: 0.5rem;
  color: white;
  font-size: 2rem;
}
@media (min-width: 576px) {
  .page-header-section h1 {
    font-size: calc(2rem + (3rem - 2rem) * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  .page-header-section h1 {
    font-size: 3rem;
  }
}
.page-header-section .custom-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  justify-content: center;
}
.page-header-section .custom-breadcrumb .breadcrumb-item {
  font-size: 1rem;
}
.page-header-section .custom-breadcrumb .breadcrumb-item::before {
  float: left;
  padding-right: 0.25rem;
  color: #fff;
  content: var(--bs-breadcrumb-divider, "/");
}
.page-header-section .custom-breadcrumb .breadcrumb-item:first-child::before {
  content: none;
}
.page-header-section .custom-breadcrumb .breadcrumb-item a {
  color: white;
  text-decoration: none;
}
.page-header-section .custom-breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.page-header-section .custom-breadcrumb .breadcrumb-item.active {
  color: white;
  font-weight: 500;
}

.contact-form-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-form-section .contact-info-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #0056b3;
}
.contact-form-section .contact-info-details p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.contact-form-section .contact-info-details p i {
  margin-right: 0.5rem;
  color: #28a745;
}
.contact-form-section .contact-info-details p a {
  color: #333;
}
.contact-form-section .contact-info-details p a:hover {
  color: #0056b3;
}
.contact-form-section .enquiry-form-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #0056b3;
}
.contact-form-section .enquiry-form-col .form-group {
  margin-bottom: 1rem;
}
.contact-form-section .enquiry-form-col .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #333;
}
.contact-form-section .enquiry-form-col .form-group input[type=text],
.contact-form-section .enquiry-form-col .form-group input[type=tel],
.contact-form-section .enquiry-form-col .form-group input[type=email],
.contact-form-section .enquiry-form-col .form-group select,
.contact-form-section .enquiry-form-col .form-group textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.contact-form-section .enquiry-form-col .form-group input[type=text]:focus,
.contact-form-section .enquiry-form-col .form-group input[type=tel]:focus,
.contact-form-section .enquiry-form-col .form-group input[type=email]:focus,
.contact-form-section .enquiry-form-col .form-group select:focus,
.contact-form-section .enquiry-form-col .form-group textarea:focus {
  color: #333;
  background-color: #fff;
  border-color: #1a88ff;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}
.contact-form-section .enquiry-form-col .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form-section .enquiry-form-col .form-group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  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='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 3rem;
}
.contact-form-section .enquiry-form-col .btn {
  margin-top: 1.5rem;
}

.map-section .section-title {
  margin-bottom: 1.5rem;
}

.about-p {
  /* Container for the About Us Content */
  /* Headings */
  /* Sections */
  /* Paragraphs */
  /* Lists */
  /* Specific style for the Vision/Aspiration statement */
  /* Optional: Style for strong tag */
}
.about-p .about-container {
  margin: 20px auto; /* Center the container with auto margins */
  padding: 30px;
  background-color: var(--light-text-color); /* White background for content */
  border-radius: 8px;
}
.about-p h1, .about-p h2 {
  font-family: var(--font-family-heading);
  color: var(--primary-color);
  margin-bottom: 20px;
}
.about-p h1 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-size: 2.5em;
}
.about-p h2 {
  font-size: 1.8em;
  border-bottom: 2px solid var(--border-color); /* Separator line */
  padding-bottom: 8px;
  margin-top: 25px;
}
.about-p .about-section {
  margin-bottom: 30px;
}
.about-p p {
  margin-bottom: 15px;
}
.about-p ul {
  margin-bottom: 15px;
  padding-left: 20px;
  list-style-type: disc; /* Default bullet */
}
.about-p ul li {
  margin-bottom: 8px;
}
.about-p .vision-statement {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  color: var(--secondary-color);
}
.about-p strong {
  color: var(--secondary-color); /* Highlight key terms */
}

.result-p {
  /* RESULT CHECK SECTION CONTAINER */
  /* Style for groups of label + input */
  padding: 55px 0px;
}
.result-p .result-check-section {
  max-width: 500px;
  width: 100%;
  margin: auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #dee2e6;
}
.result-p .result-check-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2em;
  text-align: center;
  margin-bottom: 10px;
  color: #0056b3;
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 0;
}
.result-p .instruction {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 0.95em;
}
.result-p .form-group {
  margin-bottom: 20px;
}
.result-p .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}
.result-p .form-group input[type=text],
.result-p .form-group input[type=date] {
  width: 100%;
  padding: 12px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 1em;
  font-family: "Roboto", sans-serif;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.result-p .form-group input[type=text]:focus,
.result-p .form-group input[type=date]:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
  outline: none;
}
.result-p .form-group input[type=text]::-moz-placeholder, .result-p .form-group input[type=date]::-moz-placeholder {
  color: #aaa;
  font-style: italic;
}
.result-p .form-group input[type=text]::placeholder,
.result-p .form-group input[type=date]::placeholder {
  color: #aaa;
  font-style: italic;
}

.course-p {
  /* General Container Styling (can be applied to multiple sections) */
  /* General Heading 2 Style */
  /* --- COURSES SECTION --- */
}
.course-p .section-container, .course-p .courses-section {
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #dee2e6;
}
.course-p h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2em;
  text-align: center;
  margin-bottom: 20px;
  color: #0056b3;
  border-bottom: 2px solid #dee2e6;
  padding-bottom: 8px;
  margin-top: 0;
}
.course-p .course-listing {
  margin-bottom: 30px;
}
.course-p .courses-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.6em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}
.course-p .courses-section h3 strong {
  font-weight: bold;
}
.course-p .courses-section h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3em;
  color: #0056b3;
  margin-top: 25px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 4px;
}
.course-p .courses-section p {
  margin-bottom: 15px;
  color: #333;
}
.course-p .courses-section p strong {
  color: #333;
  font-weight: bold;
}
.course-p .courses-section ul {
  margin-bottom: 15px;
  padding-left: 20px;
  list-style-type: disc;
  color: #333;
}
.course-p .courses-section ul li {
  margin-bottom: 8px;
}
.course-p .courses-section a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.course-p .courses-section a:hover {
  color: #0062cc;
  text-decoration: underline;
}
.course-p .contact-info {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  text-align: center;
  color: #333;
}
.course-p .contact-info h4 {
  font-size: 1.1em;
  color: #0056b3;
  margin-bottom: 10px;
  border-bottom: none;
  padding-bottom: 0;
}
.course-p .contact-info p {
  line-height: 1.8;
  margin-bottom: 0;
}

/* Academics main hover (desktop) */
.nav-item.academics-hover {
  position: relative;
}
@media (min-width: 992px) {
  .nav-item.academics-hover:hover > .dropdown-menu {
    display: block;
  }
}

/* Submenus */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  position: absolute;
  top: 0;
  right: 99%;
  display: none;
  min-width: 220px;
  margin-top: 0;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.dropdown-submenu > .dropdown-menu li {
  margin-left: 0;
}
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}
.dropdown-submenu > a::after {
  content: none !important;
}

/* Mobile: reset submenu stacking for vertical menu */
@media (max-width: 991px) {
  .dropdown-submenu .dropdown-menu {
    position: relative;
    left: 0;
    top: 0;
    display: none;
  }
  .dropdown-menu.show {
    display: block !important;
  }
}
.dropdown-item.active, .dropdown-item:active {
  color: White !important;
  text-decoration: none;
  background-color: #0056b3;
}/*# sourceMappingURL=style.css.map */