
/*-------------------------------------------------
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-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;
  }
}


/*---------------------------------------
info-section
------------------------------*/
/* Contact Section */
.info-section {
  text-align: center;
  padding: 25px 20px;
}

.info-section .content h3 {
  color: #330000;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.info-section h2::after {
  content: "";
  display: block;
  width: 200px; /* Adjust width as needed */
  height: 5px;
  background: linear-gradient(135deg, #330000, #800000); /* Black to Maroon Gradient */
  margin: auto; /* Top and bottom margin, no horizontal margin */
  margin-top: 5px;
  align-self: flex-start; /* Align the pseudo-element to the left */
}

.info-section .content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-top: 10px;
}

.info-section .content p {
  font-size: 16px;
  color: #000;
  max-width: 600px;
  margin: 10px auto;
}

/* Contact Cards */
.info-section .contact-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.info-section .card {
  background: linear-gradient(135deg, #330000, #800000); /* Black to Maroon Gradient */
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.info-section .card:hover {
  transform: translateY(-5px);
}

.info-section .card i {
  font-size: 35px;
  margin:10px; 
  margin-bottom: 5px;
  color: white;
}

.info-section .card h4 {
  font-size: 20px;

}

.info-section .card p {
  font-size: 15px;
  margin: 10px; 
  margin-top: 0px;
}

.info-section .card a{
  color: #fff; 
  text-decoration: none;;
}

.info-section .card a:hover{
  color: #fff; 
  text-decoration: underline; 
}



/* Map */
/* Map Section */
.info-section .map-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
  border: 0px;
}

.info-section .map-box {
  width: 48%; /* Adjust width for side-by-side layout */
  max-width: 600px; /* Prevents maps from being too large */
  text-align: center;
}

.info-section .map-box iframe {
  width: 100%;
  height: 350px; /* Adjust height as needed */
  border: 2px solid #330000;
  border-radius: 10px;
}

.info-section .map-label {
  background-color: #330000; /* Dark red background */
  color: white;
  font-weight: bold;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  text-align: center;
}

/* Mobile Version Adjustments */
@media (max-width: 767px) {
  /* Stack cards vertically on mobile */
  .info-section .contact-cards {
    flex-direction: column;
    align-items: center; /* Center align cards on mobile */
  }

  .info-section .card {
    width: 90%; /* Take up more space on mobile */
    margin-bottom: 20px; /* Add space between cards */
  }

  /* Adjust map container to be responsive on mobile */
  .info-section .map-container {
    flex-direction: column;
    gap: 15px;
  }

  .info-section .map-box {
    width: 100%; /* Maps will take full width */
    max-width: none; /* Remove max-width for full responsiveness */
  }

  /* Adjust map iframe height on mobile */
  .info-section .map-box iframe {
    height: 250px; /* Adjust map height for mobile */
  }
}
/*---------------------------------------------------
FAQ section
-------------------------------------------------------------*/

.faq-container {
  max-width: 75%;
  margin: 15px auto;

  padding: 20px;
}
.faq-container h3::after {
  content: "";
  display: block;
  width: 200px; /* Adjust width as needed */
  height: 5px;
  background: linear-gradient(135deg, #330000, #800000); /* Black to Maroon Gradient */
  margin: auto; /* Top and bottom margin, no horizontal margin */
  margin-top: 10px;
  align-self: flex-start; /* Align the pseudo-element to the left */
}
.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-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-color: #000;
  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 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;
  }
  .footer-logo-txt .tdfi-email{
    font-size: 12px;
  }
  .footer-logo-txt .tdfi-phone{
    display: none;
  }
}


  /*---------------------------------------------/ THE END /
  
