
/*-------------------------------------------------
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-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;
  }
}
/*-------------------------------------------- 
heading-txt section
---------------------------------------------------------------*/
/* Heading text section */
.heading-txt {
  font-family: Georgia, serif;
  text-align: left;
  position: absolute;
  top: 20%; /* Adjust as needed */
  left: 50px; /* Adjust based on your layout */
  color: #000;
  z-index: 2; /* Ensure it's above the background */
}
.heading-txt h1{
  font-weight: bold; 
  font-family: georgia, serif; 
  font-size: 35px; 
}
.heading-txt h3{
  font-size: 25px; 
  font-family: georgia, serif; 
  font-weight: bold;
  text-transform: uppercase;
}
/* Dual Button Container */
.heading-txt .dual-button {
  display: flex;
  align-items: center;
  width: fit-content;
  overflow: hidden; /* Prevents content from overflowing */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Dual Button Container */
.heading-txt  .dual-button {
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  margin-right: 20px;
}

/* Individual Buttons */
.heading-txt  .btn {
  flex: 1;
  width: 200px;
  text-align: center;
  text-decoration: none;
  padding-left:20px;
  padding-right: 20px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 2;
  background-color: #000054;
  color: #f1f1f1;
  border-radius: 0px;

}
.heading-txt .btn:hover{
  color:#ffd500;
  background-color: #000054;
}


/* Hero section (background) */
.filler-section {
  background: url('../img/home-bg.png') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  margin-top: 175px;
  position: relative;
  color: white;
  text-align: center;
}
@media (max-width: 991px) { /* Extra Small Screens */
  .heading-txt {
    position: static; /* Keeps it in normal flow */
    text-align: center;
    padding: 30px 20px; /* Reduce excess space */
    margin-bottom: 5px; /* Adds space below */
  }

  .heading-txt h1 {
    font-size: 28px; /* Adjust for mobile */
  }

  .heading-txt h3 {
    font-size: 20px;
  }

    /* Centering the Dual Button */
  .heading-txt .dual-button {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    flex-wrap: wrap; /* Ensures buttons stack if needed */
    width: 80%; /* Make sure it spans full width */
    max-width: 300px; /* Prevents it from stretching too wide */
    margin: 15px auto 0; /* Centers the whole container */
  }
  

  /* Fixes White Space & Overlapping */
  .stats-section {
   margin:0px; /* Push it lower to prevent overlap */
  }
  .filler-section{
    display:none;
    margin:0px;
  }
}



/*-------------------------------------------- 
stats section
---------------------------------------------------------------*/
.stats-section {
  padding-bottom: 50px;
  background-color: #f1f1f5; 
  margin-left: 100px;
  margin-top: 50px;
}

.stats-item {
  display: flex;
  align-items: center; /* Centers icon & text vertically */
  gap: 15px; /* Adds space between icon & text */
  text-align: left;
}

.stats-item i {
  color: #000054; /* Icon color */
}

.stats-item p {
  font-size: 16px;
  color: #555;
  margin: 0; /* Remove default margin */
}
/* Make navbar background white when expanded in mobile mode */
@media (max-width: 991px) { /* Applies to screens smaller than 992px */
  .stats-section {
    margin: 10px;
  }
  .stats-item i{
    height: 20px; 
    font-size: 30px;
  }
  .stats-item p{
    font-size: 13px;
  }
  .stats-item .add{
    margin-left: 20px;
  }
}

/*------------------------------------------------------
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-family: Georgia, serif;
  font-weight: bold;
  font-size: 35px;
}

.hero-section .text-section p{
  margin-bottom: 25px;
  position: relative;
  text-align: justify;
}


/* 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;
}

/*------------------------------------------------------
ANIMATIONS
------------------------------------------------------*/

/* Fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide-in from left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale-up effect */
@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Apply staggered animation to activity cards */
.activity-card:nth-child(1) img {
  animation-delay: 0.2s;
}
.activity-card:nth-child(2) img {
  animation-delay: 0.4s;
}
.activity-card:nth-child(3) img {
  animation-delay: 0.6s;
}
.activity-card:nth-child(4) img {
  animation-delay: 0.8s;
}
/*------------------------------------------------------
curriculum section
--------------------------------------------------------------*/

/* Make the entire section cover the full viewport */
.curriculum {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  margin-top: 50px;
}

/* 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: #B82132; }
.yellow { background-color: #FBA518; }
.purple { background-color: #AA60C8; }
.blue { background-color: #608BC1; }

/* Badges */
.badge {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  margin-bottom: 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;
  }
}

/*------------------------------------------------------
why section
-------------------------------------------------------------*/

.why-section {
  padding: 50px 20px;
  background-color: #f1f1f5;
  margin:100px;
  margin-top: 0px;
  margin-bottom: 0px; 
}
.why-section .why-txt{
  text-align: center;

  font-family: Georgia, serif;
  font-weight: bold;
}

.why-txt-sub{
  text-align: center;
  font-family: Georgia, serif;
  font-size: 20px;
  margin-bottom: 50px;
}
.why-section .feature-box {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 250px;
}

.why-section .feature-box i {
  font-size: 40px;
  color: #000054;
  margin-bottom: 10px;
}

.why-section .feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.why-section .feature-box p {
  font-size: 16px;
  color: #666;
}

/* Hover Effect */
.feature-box:hover {
  transform: translateY(-5px);
}

@media (max-width: 991px) { /* Applies to screens smaller than 992px */
  .why-section{
    margin: 0px;
  }
  .why-section .why-txt{
    font-size: 20px;
  }
  .why-section .why-txt-sub{
    font-size: 15px;
  }
  .why-section .feature-box i{
    font-size: 30px; 
  }
  .why-section .feature-box h3{
    font-size: 15px; 
    font-weight: bold;
  }
  .why-section .feature-box p{
    font-size: 12px; 

  }
}

/*---------------------------------------------------
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;
}
/*------------------------------------------------------
security section
-------------------------------------------------------------*/
.security-section img{
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  height: 500px;
  margin: auto;

}

.security-section h2{
  font-size: 35px; 
  font-weight: bold;
  font-family: georgia, seif; 
}
.security-section p{
  text-align: justify; 
  font-size: 17px; 
  width: 500px;
  margin-top: 25px;
  line-height: 1.9rem; 
}
@media (max-width: 768px) {
  .security-section img {
    height: auto;
    width: 100%;
    margin-bottom: 20px;
  }

  .security-section h2 {
    font-size: 28px;
    text-align: center;
  }

  .security-section p {
    width: 100%;
    font-size: 16px;
    text-align: justify;
  }

  .security-section .content-box {
    padding: 20px 10px;
  }

  .security-section .row {
    flex-direction: column;
    text-align: center;
  }

  .security-section .col-lg-5,
  .security-section .col-lg-7 {
    width: 100%;
    max-width: 100%;
  }
  .slides-section{
    display:none;
  }
}
/*------------------------------------------------------
ofaci section
-------------------------------------------------------------*/
.ofaci-section img{
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  height: 500px;
  margin: auto;

}

.ofaci-section h2{
  font-size: 35px; 
  font-weight: bold;
  font-family: georgia, seif; 
}
.ofaci-section p{
  text-align: justify; 
  font-size: 17px; 
  width: 500px;
  margin-top: 25px;
  line-height: 1.9rem; 
}
@media (max-width: 768px) {
  .ofaci-section img {
    height: auto;
    width: 100%;
    margin-bottom: 20px;
  }

  .ofaci-section h2 {
    font-size: 28px;
    text-align: center;
  }

  .ofaci-section p {
    width: 100%;
    font-size: 16px;
    text-align: justify;
  }

  .ofaci-section .content-box {
    padding: 20px 10px;
  }

  .ofaci-section .row {
    flex-direction: column;
    text-align: center;
  }

  .ofaci-section .col-lg-5,
  .ofaci-section .col-lg-7 {
    width: 100%;
    max-width: 100%;
  }
  .slides-section{
    display:none;
  }
}

/*-------------------------
testimonials section
------------------------------------*/
.testimonials {
  background: #000054;
  color: white;
  padding: 60px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.testimonial-header {
  max-width: 40%;

}
.testimonial-header p{
  text-align: justify;
}
.subtitle {
  color: #ffd700;
  font-size: 16px;
  font-weight: bold;
}
.testimonial-container {
  display: flex;
  gap: 20px;
  width: 55%;
}
.testimonial-box {
  padding: 30px;
  text-align: center;
  border: 2px solid #fff;
  backdrop-filter: blur(5px);
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-header h2{
  font-family: Georgia, serif;
  font-style: bold;
}

.quote-mark-top {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 70px;
  color: #ffd700;
  font-family: 'Bebas Neue', sans-serif; /* Structured, boxy font */
  font-weight: bold;
}

.quote-mark-bottom {
  position: absolute;
  bottom: -50px;
  right: -20px;
  font-size: 70px;
  color: #ffd700;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: bold;
}

.testimonial-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 20px;
}
.testimonial-box h3{
  font-family: Georgia, serif;
}
.testimonial-box p{
  text-align: justify;
}
.position {
  color: #ffd700;
  font-size: 14px;
  margin: 5px 0;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}
.testimonial-box a{
  color:#f1f1f5; 
  text-decoration:none;
}

.testimonial-box a:hover{
  color: #ffd500;
}
.campus-line{
  width:100%;
  justify-content: center;
  align-items: center;
  background-color:#000054;
}
@media (max-width: 768px) { /* Adjust for tablets & smaller screens */
  .testimonials {
    flex-direction: column; /* Stack items vertically */
    text-align: center; /* Center the text */
    padding: 40px 5%; /* Reduce padding for smaller screens */
  }

  .testimonial-content {
    flex-direction: column; /* Stack header & testimonials */
    align-items: center;
    gap: 30px; /* Space between sections */
  }

  .testimonial-header {
    max-width: 100%; /* Allow full width */
  }

  .testimonial-container {
    flex-direction: column; /* Stack testimonials */
    width: 100%;
    gap: 20px; /* Adjust spacing */
  }

  .testimonial-box {
    width: 100%; /* Make it full width */
    max-width: 400px; /* Limit width */
    margin: 0 auto; /* Center it */
  }
}
/*------------------------------------------------------
campus life section
-------------------------------------------------------------*/
.campus-life .fb-post-wrapper {
  width: 100%;
  height: 350px; /* Try increasing this */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.campus-life .fb-post-wrapper iframe {
  width: 100%;
  height: 100%;
  transform: none; /* Remove transform to avoid scaling issues */
}
.campus-life .fb-post-wrapper {
  width: 100%;
  min-height: 350px; /* Adjust as needed */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-------------------------
announce section
------------------------------------*/

/*-------------------------
fb posts section
------------------------------------*/
/* .fb-posts {
  text-align: center;
  padding: 20px 0;
}

.fb-iframe {
  width: 100%;
  max-width: 300px;
  height: 566px;
  border: none;
  overflow: hidden;
}

.post-item {
  display: flex;
  justify-content: center;
  align-items: center;
} */

/*-------------------------
slides
------------------------------------*/
/*---------------------------------------------------
slides gallery section
-------------------------------------------------------------*/
.slides-section {
  width: 100%;
  height: 350px; /* Adjust as needed */
  overflow: hidden;
  
}
.slides-section h2{
  color: #000;
  font-weight:bold; 
  text-align:center; 
  font-family: georgia, serif; 
  font-size: 35px;
  margin-bottom: 0px;
}
.slides-section .swiper {
  width: 100%;
  height: 100%;
}

.slides-section .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-slides-section{
  display: none; 
}
/* Show mobile slider and hide desktop slider on smaller screens */
@media (max-width: 768px) {
  .desktop-slider {
    display: none;
  }
  .mobile-slider {
    display: block;
  }
}
/*------------------------------------------------------
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;
}

 /*---------------------------------------------------
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 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 */
  }
}


  /*---------------------------------------------/ THE END /
  
