
/*-------------------------------------------------
General
--------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Open+Sans:wght@300;400;600&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html{
  scroll-behavior: smooth;/*added for smooth transition when clicked on navelements*/
}

body {
  font-weight: 500;
  color: rgb(0, 0, 0);
  background: #f8fafa ;
  font-family: 'Montserrat', sans-serif;
  background-color: #f1f1f5;
 
}
/*-------------------------------------------------
Navbar
--------------------------------------------------------*/
.navbar {
  justify-content: space-between;
}
.logo img {
  max-height: 50px; /* Adjust size as needed */
}
.navbar-nav {
  gap: 15px;
}
.nav-link{
  font-weight: bold; 
  font-family: georgia, serif; 
  font-size: 17px; 
  color: #000; 
  text-transform: uppercase;
}
/* Make navbar background white when expanded in mobile mode */
@media (max-width: 991px) { /* Applies to screens smaller than 992px */
  .navbar-collapse {
      background: #f1f1f5;
      padding: 10px;
      border-radius: 5px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 5;
  }
}
/*---------------------------------------
FILLER section
------------------------------*/
.filler{
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 50px; 
  margin-bottom: 35px;
}
.filler h2{
  font-family: georgia, serif; 
  font-weight: bold;
  font-size: 35px;
}
@media (max-width: 991px) { /* Applies to screens smaller than 992px */
  .filler {
     margin-top: 20px;
  }
  .filler h2{
    font-weight: 20px;
  }
  .filler p{
    font-size: 12px;
    margin: 10px;
  }
  .filler p br{
    display:none;
  }
}
/*---------------------------------------
location & contact-section
------------------------------*/

  .contact-section {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    position: relative;
    text-align:left;

}
.map-container {
    width: 100%;
    height: 450px;
    position: relative;
    border: 2px solid #001747;
}

.map-container iframe {
    width: 100%;
    height: 445px;
    
}

.contact-info {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    background: #001747;
    color: white;
    padding: 30px;
    z-index: 2; /* Puts it above the map */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.contact-info h2 {
    font-family: 'Baloo 2', sans-serif;
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: bold;
}

.contact-info p {
    font-size: 15px;
    margin: 10px;
    margin-left: 25px;
    line-height: 1.5;
}
.contact-info i {
    font-size: 20px;
    margin: 5px;
    line-height: 1.5;
  
}
.contact-info span{
  font-weight: bold;
}

.contact-info a{
  color: #f1f1f5; 
  text-decoration: none;
}
.contact-info a:hover{
  text-decoration: underline; 
  color: #f1f1f5;
}
@media (max-width: 991px) {
  .map-container {
      display: flex;
      flex-direction: column;
      height: auto; /* Adjust height automatically */
      border: none;
  }

  .map-container iframe {
      height: 300px !important; /* Reduce height for mobile */
  }

  .contact-info {
      position: static; /* Remove absolute positioning */
      width: 100%; /* Make it full width */
      padding: 20px;
      box-shadow: none; /* Remove box shadow */
      text-align: center; /* Center text */
  }

  .contact-info p {
      margin-left: 0; /* Remove extra left margin */
  }
}

/*---------------------------------------------------
FAQ section
-------------------------------------------------------------*/

.faq-container {
  max-width: 75%;
  margin: 50px auto;

  padding: 20px;
}
.accordion-button::after {
  display: none !important; /* Hides Bootstrap's default v icon */
}

.accordion-button .icon {
  margin-left: auto; /* Pushes the + icon to the right */
  transition: transform 0.2s ease-in-out;
  font-weight: bold; 
  font-size: 25px;
}

.accordion-button:not(.collapsed) .icon {
  transform: rotate(45deg); /* Rotates the + to x when opened */
}
.faq-container h3{
  font-family: georgia, serif; 
  font-size: 25px; 
  font-weight: bold;
}
.acad-link-faq{
  color: #000; 
  text-decoration: underline; 
}
.acad-link-faq:hover{
  text-decoration: underline;
  color: #00296B;
}
 /*---------------------------------------------------
footer section
-------------------------------------------------------------*/

footer {
  background: url('../img/about-banner.jpg') no-repeat center center/cover;
  position: relative;
  color: white;
  padding: 50px 10%;
  font-family: 'Arial', sans-serif;
  min-height: 300px;
}

/* Dark Blue Overlay */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 25, 60, 0.95);
  /* Dark Blue with Transparency */
  z-index: 1;
}

/* Footer Content */
.footer-container {
  display: flex;
  justify-content: space-between; /* Adds space between logo and links */
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Left Section (Logo + Contact Links) */
.left-section {
  display: flex;
  align-items: center;
  gap: 20px; /* Space between logo and contact links */
}

/* Logo Section */
.footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Centers the logo */
  min-width: 250px;
}

.footer-logo-txt h1{
  font-family:'Georgia', serif;
  font-size: 25px;
  font-weight: bold;

}

.footer-logo-txt i{
  margin-right: 10px; 
}
.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

/* Contact Links */
.contact-links {
  font-size: 14px;
  line-height: 1.5;
}

.contact-links a {
  color: #FFD700; /* Gold Color for Links */
  text-decoration: none;
  font-weight: bold;
}

.contact-links a:hover {
  text-decoration: underline;
}

/* Right Section for Footer Links and Other Links */
.right-section {
  margin-left: auto; /* Pushes this section to the right */
  display: flex;
  justify-content: space-between; /* Distributes the links evenly */
  gap: 30px; /* Adjust space between the link sections */
}

/* Footer Links */
.footer-links,
.other-links {
  display: block;
}

.footer-links ul,
.other-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.other-links ul li {
  margin: 8px 0;
}

.footer-links ul li a,
.other-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover,
.other-links ul li a:hover {
  text-decoration: underline;
}

#small-line{
  margin-bottom:10px;
  margin-top: 10px;
  width: 25px;
  height:0.2px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between; /* Aligns left and right */
  align-items: center;
  padding-top: 20px;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.5); /* More visible separator */
  margin-top: 40px;
  color: white; /* Ensures readability */
  position: relative;
  z-index: 2; /* Keeps text above overlay */
}

/* Left copyright text */
.footer-bottom p {
  margin: 0;
}

/* Right-aligned "Website by" */
.footer-bottom p:last-child {
  text-align: right;
}

/* Links */
.footer-bottom a {
  color: #FFD700; /* Gold color for visibility */
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }

  .footer-bottom p {
      margin-bottom: 5px;
  }

  .footer-bottom p:last-child {
      text-align: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }

  .footer-links {
      flex-direction: column;
      gap: 20px;
  }
}


  /*---------------------------------------------/ THE END /
  
