/* =============================
   NAVBAR
   ============================= */
/* .navbar {
  background-color: whitesmoke;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-link {
  position: relative;
  color: var(--primary);
  transition: color 0.2s ease;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown > .dropdown-menu {
  background-color: white;
  border: none;
  border-radius: 10px;
  position: absolute;
  top: 100;
}

.dropdown > .dropdown-menu li:hover {
  background-color: var(--primary);
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--neutral-bg);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-dark);
}

.nav-link:hover::before {
  width: 100%;
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1000;
}

*/

/* Main Navbar */
.navbar {
  background-color: whitesmoke;
  padding: 18px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand h3 {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--primary);
}

/* Desktop Navigation */
.navbar-nav .nav-link {
  position: relative;
  color: var(--primary) !important;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--neutral-bg);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
  width: 80%;
}

/* Dropdown Menu - Desktop */
.dropdown-menu {
  background-color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-top: 0.5rem;
  padding: 0.5rem 0;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--primary) !important;
  color: white;
  transform: translateX(5px);
}

/* Mobile Toggle Button */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile Offcanvas */
.offcanvas {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  width: 300px !important;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
}

.offcanvas-title {
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

/* Mobile Navigation Links */
.offcanvas .nav-link {
  color: white !important;
  padding: 1rem 1.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem !important;
  text-transform: none !important;
  transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--neutral-bg) !important;
  transform: translateX(10px);
}

.offcanvas .nav-link::before {
  display: none;
}

/* Mobile Dropdown - Accordion Style */
.mobile-dropdown {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.75rem 2rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.mobile-dropdown .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--neutral-bg) !important;
  transform: none;
}

/* Dropdown Toggle Icons */
.dropdown-toggle::after {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Sticky Navbar Effect */
.navbar.scrolled {
  background-color: rgba(248, 249, 250, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#banner {
  background-color: #ffff;
  padding: 18px;
  text-align: center;
}

.navbar.bg-blue .nav-link:hover,
.navbar.bg-blue .nav-link:focus {
  color: var(--light-color) !important;
  transform: none;
  text-decoration: none;
  transform: translateY(-3px);
}

.navbar.bg-white .nav-link {
  color: var(--primary) !important;
}

.navbar.bg-blue .nav-link {
  color: var(--light-color) !important;
}

.navbar .offcanvas {
  background-color: var(--primary);
  color: white;
}

.navbar.bg-blue {
  background-color: var(--primary) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar.bg-white {
  background-color: #f5f5f5 !important;
}

/* Carousel */

.hero-carousel {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* Carousel items with enhanced overlay */
.carousel-item {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

/* Enhanced image styling */
.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease-out;
}

/* Ken Burns effect */
.carousel-item.active img {
  transform: scale(1.1);
}

/* Professional caption styling */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 90%;
  max-width: 800px;
  padding: 0 20px;
}

/* Animated title */
.carousel-caption h5 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 0.5s forwards;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Animated subtitle */
.carousel-caption p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 0.8s forwards;
  line-height: 1.6;
}

/* Call-to-action button */
.carousel-caption .cta-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 1.1s forwards;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.carousel-caption .cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.carousel-caption .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.carousel-caption .cta-btn:hover::before {
  left: 100%;
}

/* Professional navigation controls */
.carousel-control-prev,
.carousel-control-next {
  width: 80px;
  height: 80px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  filter: brightness(0) invert(1);
}

/* Enhanced indicators */
.carousel-indicators {
  bottom: 40px;
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: all 0.3s ease;
  opacity: 1;
}

.carousel-indicators .active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scale(1.2);
}

/* Progress bar */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 4;
  transform-origin: left;
  animation: progressAnimation 3s linear infinite;
}

/* Animations */
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressAnimation {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 5px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
/* ABOUT-US SECTION */

.about-img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

#founders {
  background: url("assets/images/slider-1.jpg") no-repeat center center/cover;
  padding-top: 50px;
  padding-bottom: 50px;
}

.founders-overlay-background {
  width: 100%;
  height: 100%;
  background: rgb(10, 102, 194);
  background: linear-gradient(
    90deg,
    rgba(10, 102, 194, 1) 31%,
    rgba(8, 92, 175, 1) 55%,
    rgba(6, 72, 138, 1) 100%
  );
  opacity: 0.9;
}

.card-body.patron-body {
  position: relative;
  padding: 20px;
  background: #ffffff;
  border-radius: 100px;
}

.image-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.card-body.patron-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(10, 102, 194, 0.6);
  z-index: 1;
  border-radius: 24px 24px 0 0;
}

.image-container img {
  position: relative;
  z-index: 2;
}

.card-body h5 {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}

.card-body p {
  font-size: 0.9rem;
  color: #777;
}

/* FOUNDER SECTION */

/* .founders-section .person-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  flex: 1;
} */

.person-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.person-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.person-img-container {
  height: 450px;
  overflow: hidden;
}

.person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.person-card:hover .person-img {
  transform: scale(1.05);
}

.person-info {
  padding: 1.5rem;
}

.person-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.person-title {
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.person-years {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 1rem;
}

.person-bio {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.read-more:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.read-more:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
/* SERVICE CARD */

#services .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: white !important;
  color: #00f28c;
}

#services .card-body {
  flex-grow: 1;
}

#services .card-img {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#services .container-fluid {
  position: relative;
  z-index: 2;
}

/* COUNTERS */
#counters {
  background-image: url("../images/services-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
  position: relative;
}

.rounded-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.counter-icon {
  font-size: 2.5rem;
}

#counters::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.counter-box {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
  transition: transform 0.3s, background-color 0.3s;
}

.counter-box:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 1);
}

.counter-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.counter-number {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--primary-color) !important;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #555555;
  text-align: center;
}

/* Section Below Navbar */
#heading {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to bottom,
    #f4f8f9,
    #d9f0e2
  ); /* Light, soft gradient */
  color: #002b36; /* Dark text for contrast */
  overflow: hidden;
  border-top: 5px solid #00d578; /* Professional touch with a top border */
}

#heading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* Subtle overlay for text clarity */
  z-index: 1;
}

#heading h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(2rem, 5vw, 3rem); /* Scales dynamically */
  font-weight: bold;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #002b36; /* Matches the professional tone */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #heading {
    height: 200px;
  }

  #heading h1 {
    font-size: clamp(1.5rem, 4vw, 3rem);
  }
}

@media (max-width: 480px) {
  #heading {
    height: 150px;
  }

  #heading h1 {
    font-size: 1.5rem;
  }
}

.framed-image {
  height: 600px;
  object-fit: cover;
  width: 100%;
  border: 10px solid var(--primary-teal); /* Thick border */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.8); /* Box shadow */
  padding: 5px; /* Optional, for a bit of space between the image and border */
  display: block; /* Ensures image behaves properly */
  width: 100%; /* Ensure it takes up full width of its container */
}

#community-page .card.main-card {
  background: rgba(255, 255, 255, 0.9);
  border-top: 8px solid var(--primary-color);
}

.btn {
  background-color: var(--primary-teal) !important;
  color: white !important;
}

.contact-container {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.header-section {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.content-section {
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.contact-item:hover {
  transform: translateX(10px);
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: #6366f1;
}

.icon-box {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 1rem;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.address-icon {
  color: #6366f1;
}

.phone-icon {
  color: #ec4899;
}

.email-icon {
  color: #8b5cf6;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  color: #64748b;
}

.contact-info {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}

.contact-info a {
  color: #6366f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #4f46e5;
  text-decoration: underline;
}

.project-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-header {
  background-image: url("../images/services-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

.breadcrumb-item a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .page-header {
    height: 200px; /* Reduce height for tablets */
  }
  .page-header h1 {
    font-size: 2rem; /* Smaller font size for tablets */
  }
}

@media (max-width: 576px) {
  .page-header {
    height: 150px; /* Reduce height for mobile screens */
  }
  .page-header h1 {
    font-size: 1.5rem; /* Smaller font size for mobile screens */
  }
  .breadcrumb {
    font-size: 0.75rem; /* Adjust breadcrumb font size for mobile */
  }
}

/* Equal-height cards */

/* =========================================

COMMUNITY CARD

===========================================*/

.service-link {
  transition: all 0.3s ease-in-out;
  color: var(--gray);
  font-weight: bold;
}

.service-link:hover {
  transition: all 0.3s ease-in-out;
  color: var(--primary-color);
  font-weight: bold;
}

.service-tabs .service-link.active {
  background-color: var(--primary-color);
  color: white;
}

.tab-pane {
  animation: zoomInOut 0.5s ease-in-out;
}

@keyframes zoomInOut {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.card {
  margin: 15px 0;
}

.nav-tabs {
  border-bottom: none !important;
}

.nav-tabs .nav-link {
  border: none !important;
}

.nav-tabs .nav-item {
  border-bottom: none !important;
}

/* Unique styling for the gallery Owl Carousel
.custom-gallery-owl-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px auto;
}

.custom-gallery-item {
  width: calc(33.33% - 10px); 
  box-sizing: border-box;
  padding: 5px;
}

.custom-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.custom-gallery-item img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .custom-gallery-item {
    width: calc(50% - 10px); 
  }
}

@media (max-width: 480px) {
  .custom-gallery-item {
    width: 100%; 
  }
}

.owl-carousel-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
} */

#about-founder img {
  height: 650px;
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.founder-section {
  padding: 5rem 0;
  background-color: white;
}

.founder-title {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.founder-title:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  bottom: -10px;
  left: 0;
}

.subtitle {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.founder-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.founder-years {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 2rem;
}

.founder-image {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.founder-image:hover {
  transform: translateY(-5px);
}

.bio-text {
  line-height: 1.8;
  color: #555;
}

.quote {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .founder-image-container {
    margin-bottom: 2rem;
  }

  .founder-section {
    padding: 3rem 0;
  }
}

.hero-header {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("");
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: -1;
}

.hero-content {
  padding: 2rem 0;
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  text-align: center;
}

/* Breadcrumb Styling */
.breadcrumb-wrapper {
}

.breadcrumb {
  margin-bottom: 0;
  padding: 0.5rem 1rem;
}

.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--secondary);
}

.breadcrumb-item.active {
  color: var(--dark);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #6c757d;
}

@media (max-width: 768px) {
  .hero-header {
    height: 250px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.founder-card {
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
}

.founder-card:hover {
  transform: translateY(-5px);
}

.founder-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin: 2px;
}

.content-wrapper {
  padding: 2rem;
}

.divider {
  width: 50px;
  height: 4px;
  background-color: #007bff;
  margin: 1.5rem 0;
}

.quote {
  font-style: italic;
  border-left: 4px solid #007bff;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-size: 1.2rem;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #007bff;
}

.highlight {
  color: #007bff;
  font-weight: 600;
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

.years {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  background-color: #f8f9fa;
  border-radius: 5px;
  font-weight: 500;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .reverse-cols {
    flex-direction: column-reverse;
  }
  .founder-image {
    height: 350px;
  }
}

/* Counter Section */
.counter-section {
  background: linear-gradient(rgba(59, 89, 152, 0.9), rgba(59, 89, 152, 0.9)),
    url("/api/placeholder/1920/600");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 0;
  color: white;
  text-align: center;
}

.counter-item {
  padding: 2rem 1rem;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}

.counter-item:hover {
  transform: translateY(-10px);
}

.counter-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  color: var(--accent);
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--primary) !important;
}

.counter-text {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#patreons {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

#patreons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/api/placeholder/1200/600") center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.section-container {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #6c757d;
}

.patron-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.patron-card {
  background-color: #fff;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid var(--primary);
}

.patron-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.patron-header {
  background-color: #dee2e6;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.patron-francis {
  background-color: #e9ecef;
}

.patron-elizabeth {
  background-color: #e9ecef;
}

.patron-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

.patron-content {
  padding: 2rem;
  text-align: center;
}

.patron-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
}

.patron-dates {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: rgba(108, 117, 125, 0.1);
  border-radius: 30px;
}

.patron-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 1.5rem;
}

.patron-attribute {
  display: inline-block;
  margin: 0.25rem;
  padding: 0.35rem 0.75rem;
  background-color: rgba(108, 117, 125, 0.1);
  border-radius: 30px;
  color: #495057;
  font-size: 0.9rem;
}

.patron-quote {
  position: relative;
  font-style: italic;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(108, 117, 125, 0.05);
  border-left: 3px solid #6c757d;
  color: #495057;
  font-size: 0.95rem;
}

.intro-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #495057;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .patron-wrapper {
    margin-bottom: 2rem;
  }
}

.about-section-title {
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.about-section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
  transform: translateX(-50%);
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--secondary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

.timeline-item {
  margin-bottom: 30px;
  position: relative;
}

.timeline-content {
  padding: 20px;
  background-color: whitesmoke;
  border: 5px solid var(--primary);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-content h4 {
  font-weight: bolder;
}

.timeline-year {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.left .timeline-year {
  right: -35px;
}

.right .timeline-year {
  left: -35px;
}

.left {
  padding-right: 40px;
}

.right {
  padding-left: 40px;
  margin-top: 80px;
}

.left .timeline-content {
  margin-right: 50px; /* space between content and year */
}

.right .timeline-content {
  margin-left: 50px; /* space between content and year */
}

.mission-card {
  background-color: var(--light-color);
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s;
}

.mission-card:hover {
  transform: translateY(-5px);
}

.mission-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.stat-card {
  background-color: var(--primary);
  color: white;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  height: 100%;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

#spirituality {
  background-image: url("../images/service_bg_1.jpg");
  object-fit: cover;
  padding: 80px 0;
}

.spirituality-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.spirituality-item h5 {
  font-weight: bolder;
  color: var(--primary);
}

.spirituality-icon .fas {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--primary);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 40px;
  }

  .left,
  .right {
    padding-left: 80px;
    padding-right: 0;
    margin-top: 30px;
  }

  .left .timeline-year,
  .right .timeline-year {
    left: 0;
    right: auto;
  }
}

/* .hero-header {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 2rem;
} */

.hero-header {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 🔄 was flex-end */
  align-items: center; /* 🆕 to center horizontally */
  margin-bottom: 2rem;
  text-align: center;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/services-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: -1;
}

.hero-content {
  padding: 2rem 0;
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  color: var(--primary);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  text-align: center;
  font-style: italic;
}

.hero-header {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.bg-image,
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.bg-image {
  background-image: url("../images/services-bg.jpg");
  filter: brightness(0.7);
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  padding: 0 1rem; /* Prevent text from touching screen edge on mobile */
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  text-align: center;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

.breadcrumb-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--primary);
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  font-size: 0.95rem;
}

/* Optional: make breadcrumb text smaller on mobile */
@media (max-width: 576px) {
  .breadcrumb-wrapper {
    font-size: 0.85rem;
    padding: 0.5rem;
  }
}

/* Enhanced Tab Navigation */
/* .service-tabs {
    background: var(--text-light);
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
} */

.service-tabs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 102, 194, 0.02) 0%,
    rgba(131, 56, 236, 0.02) 100%
  );
  z-index: 1;
}

.nav-item {
  position: relative;
  z-index: 2;
}

/* Professional Tab Links */
.service-link {
  border: none !important;
  border-radius: 50px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  color: var(--grey) !important;
  background: transparent !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
  margin: 0 4px;
}

.service-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
  z-index: -1;
}

.service-link:hover {
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.15);
  background: rgba(173, 216, 230, 0.4) !important;
}

.service-link:hover::before {
  left: 100%;
}

/* Active Tab Styling */
.service-link.active {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary) 100%
  ) !important;
  color: var(--text-light) !important;
  box-shadow: 0 12px 30px rgba(10, 102, 194, 0.3);
  transform: translateY(-1px);
}

.service-link.active::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 46px;
  pointer-events: none;
}

/* Tab Content Area */
/* .tab-content {
    background: var(--text-light);
    border-radius: 20px;
    padding: var(--space-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
} */

/* .tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.01) 0%, rgba(131, 56, 236, 0.01) 100%);
    z-index: 1;
}

.tab-pane {
    position: relative;
    z-index: 2;
} */

.gallery-container {
  padding: 60px 0;
}

.gallery-title {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

.gallery-btn {
  color: var(--primary) !important;
}

.gallery-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #007bff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-item {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.gallery-item a:hover img {
  transform: scale(1.05);
}

.gallery-filters {
  margin-bottom: 30px;
  text-align: center;
}

.gallery-filters .btn {
  margin: 5px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s;
  border-color: var(--primary);
}

.gallery-filters .btn.active {
  background-color: var(--primary) !important;
  color: white !important;
}

@media (max-width: 768px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .gallery-item {
    margin-bottom: 15px;
  }

  .gallery-item img {
    height: 180px;
  }
}

/* Add spacing between images */
.gallery-items {
  margin: 0 -10px;
}

.gallery-item {
  padding: 0 10px;
}
/* Existing base styles remain unchanged */

@media (max-width: 767.98px) {
  .timeline::before {
    left: 8px; /* Shift the vertical line to the left */
  }

  .timeline-item {
    margin-left: 20px; /* spacing from vertical line */
  }

  .left,
  .right {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .timeline-year {
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    margin-bottom: 10px;
    margin-left: -12px; /* aligns with the vertical line */
  }

  .timeline-content {
    margin: 0 0 30px 40px;
    width: auto;
  }

  .left .timeline-content,
  .right .timeline-content {
    margin: 0 0 30px 40px;
  }
}

#history {
  padding: var(--padding-lg) 0;
  position: relative;
  color: var(--secondary-color);

  background-image: linear-gradient(
      270deg,
      rgba(15, 15, 15, 0.95),
      rgba(40, 40, 40, 0.95)
    ),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 800 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23222222' fill-opacity='0.4' d='M0 300 Q200 350 400 300 T800 300 L800 600 L0 600 Z'/%3E%3Cpath fill='%23111111' fill-opacity='0.6' d='M0 320 Q250 400 500 320 T800 320 L800 600 L0 600 Z'/%3E%3Cpath fill='%23000000' fill-opacity='0.8' d='M0 340 Q300 450 600 340 T800 340 L800 600 L0 600 Z'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.india-presence-section {
  position: relative;
  padding: 5rem 0;
  color: var(--secondary-color);

  background-image: linear-gradient(
      270deg,
      rgba(15, 15, 15, 0.95),
      rgba(40, 40, 40, 0.95)
    ),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 800 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23222222' fill-opacity='0.4' d='M0 300 Q200 350 400 300 T800 300 L800 600 L0 600 Z'/%3E%3Cpath fill='%23111111' fill-opacity='0.6' d='M0 320 Q250 400 500 320 T800 320 L800 600 L0 600 Z'/%3E%3Cpath fill='%23000000' fill-opacity='0.8' d='M0 340 Q300 450 600 340 T800 340 L800 600 L0 600 Z'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.india-presence-section .content {
  position: relative;
  z-index: 1;
}

.stat-card {
  background-color: #1f1f1f;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--primary);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
}

.stat-title {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.navbar-toggler i {
  color: black;
}

.navbar.bg-blue .navbar-brand h3 {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--light-color) !important;
}

.navbar.bg-blue .navbar-toggler i {
  color: var(--light-color) !important;
}

.stat-card p {
  color: #cccccc;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 60px;
    height: 60px;
    opacity: 0.6;
  }

  .carousel-control-prev {
    left: 15px;
  }

  .carousel-control-next {
    right: 15px;
  }

  .carousel-indicators [data-bs-target] {
    width: 40px;
    height: 3px;
    margin: 0 3px;
  }

  .carousel-caption .cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 576px) {
  .carousel-caption {
    width: 95%;
    padding: 0 15px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}

@media (max-width: 575.98px) {
  #head-banner .d-flex {
    flex-direction: column;
    gap: 1rem;
  }

  #head-banner ul {
    justify-content: center;
  }
}
