
/*-------------------------------------------------
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');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', 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;
  }
}
/*-------------------------------------------------
hero-section-bg
--------------------------------------------------------*/
.hero-section-bg {
  position: relative;
  height: 100vh;
  background: url('../img/tomas-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem;
  color: white;
  z-index: 1; /* Ensures content stays above the overlay */
}

.hero-section-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Adjust opacity (0 = fully transparent, 1 = fully opaque) */
  z-index: -1; /* Places overlay behind content */
}

.hero-section-bg .hero-content {
  max-width: 50%;
}

.hero-section-bg .tagline {
  font-size: 1rem;
  opacity: 0.8;
}

.hero-section-bg h1 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
}

.hero-section-bg .cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 7px 24px;
  background: #900000;
  border: 1px solid #fff;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 55px;
  transition: 0.3s ease;
}

.hero-section-bg .cta-btn:hover {
  background: #4d1316;
}

.hero-section-bg .hero-overlay {
  position: absolute;
  right: 5%;
  bottom: 10%;
  background: rgba(24, 24, 24, 0.95);
  padding: 1.5rem;
  border-radius: 10px;
}

.hero-section-bg .program-links .link {
  margin-bottom: 1rem;
}

.hero-section-bg .program-links h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.hero-section-bg .program-links a {
  color: white;
  text-decoration: underline;
  font-size: 1rem;
  opacity: 0.8;
  transition: 0.3s ease;
}

.hero-section-bg .program-links a:hover {
  opacity: 1;
}
.hero-content {
  padding: 5rem 2rem;
}
/* Responsive for smaller screens */
@media (max-width: 768px) {
  .hero-section-bg {
    height: auto; /* Adjust height to auto for better scaling on smaller screens */
    padding: 3rem 1rem; /* Reduce padding */
    justify-content: center; /* Center content vertically and horizontally */
    text-align: center; /* Center text content */
  }

  .hero-section-bg .hero-content {
    max-width: 90%; /* Allow the content to take up more space */
    text-align: center; /* Center the content */
  }

  .hero-section-bg .tagline {
    font-size: 0.9rem; /* Smaller font size for the tagline */
    opacity: 0.9;
  }

  .hero-section-bg h1 {
    font-size: 2.5rem; /* Smaller font size for the headline */
    line-height: 1.3;
  }

  .hero-section-bg .cta-btn {
    font-size: 1rem; /* Smaller button text */
    padding: 8px 20px; /* Adjust button padding */
    border-radius: 30px; /* Make button slightly rounded */
  }

  .hero-section-bg .hero-overlay {
    right: 5%;
    bottom: 10%;
    padding: 1rem;
  }
}

/* Responsive for very small screens (e.g., phones in portrait mode) */
@media (max-width: 480px) {
  .hero-section-bg .hero-content {
    max-width: 100%; /* Allow the content to take up full width */
    padding: 3rem 1rem; /* Reduce padding for very small screens */
  }

  .hero-section-bg h1 {
    font-size: 2rem; /* Even smaller headline font for very small screens */
  }

  .hero-section-bg .cta-btn {
    font-size: 0.9rem; /* Even smaller button text */
    padding: 6px 18px; /* Adjust padding for mobile */
  }
}

/*-------------------------------------------------
stats section
--------------------------------------------------------*/
/* STATS SECTION - Separate but Overlapping */
.hero-stats {
  position: relative;
  top: -4rem; /* This pulls the stats up to overlap the hero */
  display: flex;
  background-color: #800000; /* Your deep red color */
  color: #fff;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  gap: 2rem;
  width: 80%;
  margin: auto;
  justify-content: center;
  z-index: 1;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat p {
  font-size: 1rem;
}
/* Responsive for mobile devices */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column; /* Stack the stats vertically on small screens */
    padding: 1rem; /* Less padding for mobile view */
    top: -2rem; /* Adjust position for mobile */
  }

  .stat h2 {
    font-size: 1.8rem; /* Reduce font size of the headings */
  }

  .stat p {
    font-size: 0.9rem; /* Reduce font size of the paragraphs */
  }
}
/*-------------------------------------------------
welcome section
--------------------------------------------------------*/
.tdfi-welcome-section {
  padding: 4rem 0;
}

.tdfi-welcome-section .tdfi-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2.3rem;
}

.tdfi-welcome-section .tdfi-content p {
  font-size: 1rem;
  color: #555;
}

.tdfi-welcome-section .arrow-decoration {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url('assets/img/arrow.png') center/contain no-repeat;
  margin-top: 2rem;
}

.tdfi-welcome-section .tdfi-welcome-pic{
  background-color: #f1f1f5;
}

.tdfi-welcome-section .tdfi-welcome-pic img {
  width: 100%;
  background-color: #f1f1f5;
  transition: transform 0.3s ease;
}

/*-------------------------------------------------
vid section
--------------------------------------------------------*/
.vid-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  background-color: #f1f1f5;
}

.vid-section .vid-content {
  flex: 1;
  text-align: left;
}

.vid-section .vid-title {
  font-size: 35px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}
.vid-section .vid-title::after {
  content: "";
  display: block;
  width: 200px; /* Adjust width as needed */
  height: 5px;
  background: linear-gradient(135deg, #330000, #800000); /* Black to Maroon Gradient */
  margin: 10px 0px 25px 0px; /* Top and bottom margin, no horizontal margin */
  align-self: flex-start; /* Align the pseudo-element to the left */
}

.vid-section .vid-description {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  max-width: 500px;
}

.vid-section .vid-learn-more:hover {
  text-decoration: underline;
}

.vid-section .vid-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;

}

.vid-section .vid-media {
  width: 100%;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* Media Query for Tablet and Smaller Devices */
@media (max-width: 768px) {
  .vid-section {
    flex-direction: column; /* Stack video and text vertically */
    gap: 20px; /* Provide some spacing between the video and content */
    padding: 20px;
  }

  .vid-section .vid-title {
    font-size: 2.5rem; /* Adjust title size */
    text-align: center; 
    margin:auto; /* Center the title */
    margin-bottom: 15px; /* Optional, for spacing between title and description */
    width: 100%; /* Ensure title takes up full width */
  }

  .vid-section .vid-description {
    font-size: 1rem; /* Adjust description font size */
    margin: auto; 
    text-align: center; /* Center the text */
    max-width: 90%; /* Allow more space for the text */
  }

  .vid-section .vid-container {
    width: 100%; /* Make the video container full-width */
    justify-content: center; /* Center the video */
    order: 2; /* This ensures the video is below the content */
  }

  .vid-section .vid-media {
    max-width: 100%; /* Allow the video to take full width on small screens */
  }

  /* Centering the gradient line under the title */
  .vid-section .vid-title::after {
    content: "";
    display: block;
    width: 150px; /* Adjust width as needed */
    height: 5px;
    background: linear-gradient(135deg, #330000, #800000); /* Black to Maroon Gradient */
    margin: 15px auto; /* Center the line and provide spacing above and below */
  }
}


/* Media Query for Mobile Devices */
@media (max-width: 480px) {
  .vid-section .vid-title {
    font-size: 2rem; /* Smaller font size on mobile */
    text-align: justify; 
  }

  .vid-section .vid-description {
    font-size: 0.95rem; /* Even smaller text for mobile */
    max-width: 90%; /* Text container width */
    text-align: justify; 
  }

  .vid-section .vid-container {
    justify-content: center; /* Center video */
  }

  .vid-section .vid-media {
    max-width: 100%; /* Make video take full width */
  }
}
/*-------------------------------------------------
programs section
--------------------------------------------------------*/
/* tdfi-programs-section */
.tdfi-programs-section {
  padding: 0.5rem 0;
}

.tdfi-programs-section .row {
  display: flex;
  align-items: center;
}

.tdfi-programs-section .tdfi-content {
  text-align: left;
}

.tdfi-programs-section .tdfi-content h2 {
  font-size: 35px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}
.tdfi-programs-section .tdfi-content h2::after {
  content: "";
  display: block;
  width: 200px; /* Adjust width as needed */
  height: 5px;
  background: linear-gradient(135deg, #330000, #800000); /* Black to Maroon Gradient */
  margin: 10px 0px 25px 0px; /* Top and bottom margin, no horizontal margin */
  align-self: flex-start; /* Align the pseudo-element to the left */
}

.tdfi-programs-section .tdfi-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.tdfi-programs-section .tdfi-welcome-pic img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
}
.tdfi-programs-section .view-programs-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #900000;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
  margin-top: 0px;
}

.tdfi-programs-section .view-programs-btn:hover {
  background: #700000;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .tdfi-programs-section .tdfi-content {
    text-align: center; /* Center content in the section */
  }

  .tdfi-programs-section .tdfi-content p {
    padding: 20px;
    padding-top: 20px;
    text-align: justify; /* Center text in paragraphs */
    margin: auto; 
    
  }

  .tdfi-programs-section .tdfi-welcome-pic {
    text-align: center; /* Center the image container */
  }

  .tdfi-programs-section .tdfi-content h2 {
    margin: 0 auto; /* Center the <h2> */
    text-align: center; /* Center the title */
    width: 100%; /* Ensure the h2 takes full width for proper centering */
  }

  .tdfi-programs-section .tdfi-content .view-programs-btn {
    margin: 20px auto; /* Center the button and add some margin */
  }

  .tdfi-programs-section .tdfi-welcome-pic img {
    max-width: 80%; /* Limit image size on smaller screens */
  }
  .tdfi-programs-section .tdfi-content h2::after {
    content: "";
    display: block;
    width: 150px; /* Adjust width as needed */
    height: 5px;
    background: linear-gradient(135deg, #330000, #800000); /* Black to Maroon Gradient */
    margin: 15px auto; /* Center the line and provide spacing above and below */
  }
  
}

/*-------------------------------------------- 
stats section
---------------------------------------------------------------*/


/*------------------------------------------------------
welcome section
-------------------------------------------------------------*/
/* Ensure text and image are aligned */
.hero-section .row {
  display: flex;
  align-items: start; /* Align text with the image */
  margin-top: 50px;
}

/* Reduce space above the text */
.hero-section .text-section {
  margin-top: 0;
  padding-top: 0;
  position: relative;
}

.hero-section .text-section h1{
  margin-bottom: 25px;
  position: relative;
  font-weight: bold;
  font-size: 35px;
}

.hero-section .text-section p{
  margin-bottom: 25px;
  position: relative;
}


/* Adjust Main Image */
.main-image-container {
  position: relative;
  text-align: center;
}

.main-image {
  width: 70%;
  max-width: 450px;
}

/* Adjust Activities Grid */
.activities-grid {
  position: absolute;
  bottom: -200px; /* Moves it below the button */
  left: 0; /* Moves it towards the main image */
  margin-top: 100px;
  display: flex;
  gap: 30px;
  z-index: 2; /* Ensures it's above the main image */
  
}

/* Ensure activity card is fully covered by the image */
.activity-card {
  position: relative;
  width: 175px;
  height: 150px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

/* Ensure image fills the entire card */
.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay */
.activity-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Cover the full image */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 100%);
  z-index: 5;
}

/* Style the text */
.activity-card .act-txt {
  position: absolute;
  bottom: 5px; /* Ensure it sticks to the bottom */
  left: 0;
  width: 100%;
  color: white;
  text-align: center;
  font-size: 14px;
  padding: 5px 0;
  background: transparent; /* No extra background */
  z-index: 10;
}
@media (max-width: 991px) { /* Extra Small Screens */
  .activities-grid {
    position: static; /* Removes absolute positioning */
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(2, 1fr); /* Creates two equal columns */
    gap: 15px; /* Space between cards */
    justify-content: center; /* Centers the grid */
    margin-top: 20px; /* Space between the image and activities */
  }

  .activity-card {
    width: 100%; /* Ensures equal width in grid */
    max-width: 180px; /* Limits max size */
    height: auto; /* Allows flexibility */
  }

  .main-image {
    width: 80%; /* Adjust image size for mobile */
    max-width: 300px;
  }
  .main-image-container {
    display: none; /* Hides the main image */
  }

}


/* Hover Effect - Lift Image */
.activity-card:hover {
  transform: translateY(-5px); /* Moves card slightly up */
  transition: transform 0.3s ease-in-out;
}

/*------------------------------------------------------
why section
--------------------------------------------------------------*/

/* Make the entire section cover the full viewport */
.fillerwhy{
  text-align:center;
  justify-content: center;
  align-items:center; 
  margin-bottom: 0px;
  margin-top: 35px;
}
.fillerwhy h2{
  font-weight: bold; 
  font-size: 35px;
}
.curriculum {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

/* Ensures each grid item stretches fully */
.grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

/* Text box styles */
.text-box {
  padding: 30px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  transition: transform 0.3s ease-out;
  text-align: center;
}

/* Colors */
.red { background-color: #4d1316; }


/* Badges */
.badge {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  margin-bottom: 10px;
}
.curriculum i{
  margin: 10px;
}
/* Price Tag */
.price {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  display: inline-block;
}

/* Sale Tag */
.sale-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: black;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 50px;
  font-weight: bold;
}

/* Ensure images take full height */
.curriculum .grid-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .library{
    margin-top: 25px;
  }
}


/*---------------------------------------------------
academic section
-------------------------------------------------------------------------*/

.academic-section {
  margin: 0.625rem;
  padding: 1.25rem;
}

.academic-section h2 {
  text-align: center;
  margin: 1.25rem;
  padding: 0.9375rem;
  text-transform: uppercase;
}

.education-levels {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 1.25rem;
}

.education-level {
  width: 100%;
  background-color: #f5f5f5;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.education-level:hover {
  background-color: #e0e0e0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.education-level h3 {
  margin-top: 0;
  text-transform: uppercase;
}

.education-level p {
  margin: 0.625rem 0;
}
/*-------------------------
filler-school tdfi's 4fs section
------------------------------------*/
.tdfi-4fs {
  background-color: #f1f1f5;
}
.tdfi-4fs .section-title {
  font-size: 2rem;
  font-weight: bold;
}
.tdfi-4fs .section-title::after{
  content: "";
  display: block;
  width: 150px; /* Adjust width as needed */
  height: 5px;
  background: linear-gradient(135deg, #330000, #800000); /* Black to Maroon Gradient */
  margin: 5px auto 0; /* Centers it below the title */
}
.tdfi-4fs .section-sub{
  margin-bottom: 25px;
}
.tdfi-4fs .feature-card {
  background-color: #f1f1f5;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
}
.tdfi-4fs .feature-card:hover {
  transform: translateY(-5px);
}
.tdfi-4fs .feature-card i {
  font-size: 3rem;
  color: #4d1316;
  margin-bottom: 1rem;
}
.tdfi-4fs .feature-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
.tdfi-4fs .feature-card p {
  font-size: 1rem;
  color: #555;
}
/* Responsive adjustments for smaller devices */
@media (max-width: 768px) {
  .tdfi-4fs .row {
    flex-direction: column; /* Stack cards vertically on smaller screens */
    gap: 15px; /* Adjust the gap between stacked cards */
  }

  .tdfi-4fs .feature-card {
    margin-bottom: 15px; /* Adjust the margin for vertical cards */
  }
}
/*-------------------------
unif section
------------------------------------*/
.tdfi-unif h2{
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
} 
.tdfi-unif h2::after{
 
    content: "";
    display: block;
    width: 150px; /* Adjust width as needed */
    height: 5px;
    background: linear-gradient(135deg, #330000, #800000); /* Black to Maroon Gradient */
    margin: 5px auto 0; /* Centers it below the title */
  
}
.tdfi-unif p{
  text-align: center;   
}


/*------------------------------------------------------
faq section
-------------------------------------------------------------*/
.faq-txt{
    font-family: 'Baloo 2', sans-serif;
    font-weight: bold;

}
.faq-li h5{
  font-family: 'Baloo 2', sans-serif;
}

.acad-link-faq{
  color: #000; 
  text-decoration: none;
  font-weight: bold;
}
.acad-link-faq:hover{
  color: #000; 
  text-decoration: underline;
  font-weight: bold;
}

/*------------------------------------------------------
testimonials section
-------------------------------------------------------------*/
.high-section {
  margin-top: 0px;
  padding: 50px;
  background: #4d1316;
}

.high-section .filler{
  text-align: center; 
}
.high-section .filler h2{
  text-align: center; 
  font-weight: bold; 
  font-size: 35px; 
  color: #fff; 
}
.high-section .filler p{
  text-align: center; 
  font-size: 20px; 
  color: #fff; 
}
.swiper-slide {
  overflow: hidden;
  border: 1px solid #4d1316;
}

.card {
  height: auto;
  border: 0px;
  padding-bottom: 20px;
  background: #4d1316;
}

/* ✅ Round Image */
.card-image {
  width: 100%; /* ✅ Set a fixed size */
  height: 325px; /* ✅ Keep it a perfect circle */
  object-fit: cover;
  border-radius: 50%; /* ✅ Makes the image round */
  display: block;
  margin: auto;
 }

.card-content {
  padding: 15px;
  text-align: center;
}

.card-content h4 {
  color: #fff;
  font-weight: bold;
}

.card-content .date {
  font-size: 15px; 
  color: #fff;
  text-align: center;
  font-style: italic; 
}
.card-content .strand{
  text-align: center; 
  color: #fff; 

}
.card-content .quotes{
  text-align: center;
  font-style: italic; 
  color: #fff;
}

.swiper-pagination {
  position: relative;
  bottom: 50px;
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: #fff; /* Custom color for pagination dots */
  width: 10px;
  height: 10px;
  opacity: 1; /* Ensure full visibility */
}

.swiper-pagination-bullet-active {
  background-color: #FFD700; /* Highlight active dot */
}

.swiper-button-next{
  color: #000; 
}
.swiper-button-prev{
  color:#000; 
}
 /*---------------------------------------------------
footer section
-------------------------------------------------------------*/

footer {
  background-color: #181818;
  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-color: #000;
  /* 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;
}

@media (max-width: 991px) {
  .footer-container {
    flex-direction: column; /* Stack items */
    align-items: center; /* Center everything */
    text-align: center;
    gap: 20px; /* Add space between elements */
  }

  .footer-logo {
    min-width: unset; /* Remove minimum width */
  }

  .footer-logo img {
    max-width: 120px; /* Adjust logo size for mobile */
  }

  .footer-logo-txt {
    text-align: center; /* Center text */
  }

  .footer-links ul,
  .other-links ul {
    text-align: center;
    padding: 0;
  }

  .footer-links ul li,
  .other-links ul li {
    margin: 5px 0;
  }

  /* Stack footer bottom content */
  .footer-bottom {
    flex-direction: column; /* Stack copyright & credits */
    text-align: center;
    gap: 5px; /* Add slight space between lines */
  }
  .footer-logo-txt .tdfi-email{
    font-size: 12px;
  }
  .footer-logo-txt .tdfi-phone{
    display: none;
  }
}


  /*---------------------------------------------/ THE END /
  
