:root {
  --clinic-blue: #0d6efd;
  --line: #dbe7f3;
  --card: #ffffff;
  --accent-green: #009688;
}

/* ===== Global ===== */
body {
  background: #f7f9fc;
  font-family: Arial, sans-serif;
  color: #1e2a35;
}


/* ================= NAVBAR ================= */
    .custom-navbar {
      background-color: #ffffff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
       min-height: 60px;
  padding: 0; 
      display: flex;
      align-items: center;
    }
  

.navbar-brand img{
    height: 60px;   
  width: auto;
  display: block;
}
/* Remove Bootstrap default spacing */
.navbar-brand {
  padding: 0;
  margin-right: 1rem;
}


    /* NAV LINKS */
    
.nav-item a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: rgba(25, 13, 249, 0.7);
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: #0077b6; /* subtle color change */
  text-shadow: 0 0 8px rgba(0, 119, 182, 0.4); /* glow */
}

 .nav-item a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   height: 4px;
   width: 100%;
   /* background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff); */
     background: linear-gradient(90deg, #22B7C9,#1a94a5,#4dd3e1,#0077b6,#00cfcf,#22B7C9  
  );
   background-size: 200% auto;
   transition: all .5s;
   transform: translateX(-100%);
 }
 
.nav-item a:hover::after {
   transform: translateX(0%);
   animation: gradient-89 3s linear infinite;
 }
 
 @keyframes gradient-89 {
   0% { background-position: 100% 0%; }
   50% { background-position: 0% 0%; }
   100% { background-position: 100% 0%; }
 }

/*  */
.navbar-brand{
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/*  */
.btn_lg {
  /* background: linear-gradient(90deg, #22B7C9, #1a94a5, #4dd3e1, #0077b6, #00cfcf, #22B7C9); */
  background-size: 300% 300%;
  color: blue;
  border: none;
   padding: 8px 20px;
  font-size: 15px;
  border-radius: 30px;
 
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25);
}

.btn_lg:hover {
  animation: gradient-animate 4s linear infinite;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 119, 182, 0.4);
}

/* Gradient animation for button */
@keyframes gradient-animate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



/* MOBILE FIXES */
    @media (max-width: 991px) {
      .custom-navbar .nav-item {
        text-align: center;
      }

      .btn_lg {
        margin-top: 10px;
      }
    }/* ============= */


/* ===== Hero Section (Carousel) ===== */
.carousel-item {
  height: 60vh;
  background-position: center;
  background-size: cover;
  position: relative;
  margin-top: 3rem;
}
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 15px;
  max-width: 800px;
  margin: auto;
}
.carousel-caption h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.carousel-caption h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 150, 136, 0.85);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
}

/* ===== Form Panel ===== */
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.form-panel h5 {
  margin: 0;
  padding: 14px 16px;
  color: var(--clinic-blue);
  font-weight: 700;
}
.form-panel .inner {
  padding: 16px;
}
.form-control,
.form-select {
  border: 1px solid #cfd9de;
  border-radius: 8px;
  height: 42px;
  font-size: 14px;
}
.form-control::placeholder {
  color: #9aa8b4;
}
.submit-bar {
  background: var(--clinic-blue);
  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 12px 16px;
  border: 0;
  width: 100%;
  border-radius: 0 0 8px 8px;
  cursor: pointer;
}

/* ===== Content Card ===== */
.content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}
.content-card h5 {
  color: var(--clinic-blue);
  font-weight: 700;
}
.about {
  font-size: 14px;
  color: #5b6670;
  line-height: 1.55;
}
.section-line {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

/* ===== Doctor Card ===== */
.doc-card {

  border: 1px solid #dfe7ee;
  background: var(--card);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  border-color: #cfe0ff;
}
.doc-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 1px solid #dfe7ee;
  transition: transform 0.25s ease;
}
.doc-card:hover .doc-photo {
  transform: scale(1.06);
}
.doc-name {
  margin-top: 10px;
  font-weight: 700;
  font-size: 15px;
}
.doc-role {
  font-size: 12px;
  color: #7a8793;
}

  /* ===== Expertise Section ===== */
  .expertise-swiper .swiper-slide {
    display: flex;
    align-items: stretch;
  }


  .expertise-card {
    height: 100%;
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
  }
  .expertise-section {
    padding: 70px 20px;
  background: linear-gradient(to bottom right, #e6f4f9, #ffffff);
  }
  .section-title {
    text-align: center;
    font-weight: 700;
    color: #1976d2; 
    margin-bottom: 50px;
    font-size: 2.4rem;
  }
  .expertise-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(25, 118, 210, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
      border-top: 4px solid #1976d2; 
      border-bottom:4px solid #1976d2 ;
  
  }
  .expertise-card:hover  .expertise-icon{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 150, 136, 0.2);
      box-shadow: 0 10px 25px rgba(25, 118, 210, 0.25);
  color: #1976d2; 
  }
  /* ===== ICON CONTAINER ===== */
  .expertise-icon {
    position: relative;
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #cfd6df;

    box-shadow:
      inset 0 2px 0 rgba(255,255,255,1),
      inset 0 -2px 0 rgba(0,0,0,0.1),
      0 8px 18px rgba(0,0,0,0.15);

    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  /* ICON IMAGE */
  .expertise-icon img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    z-index: 2;
  }

  /* ===== STRONG GLOSSY SHINE ===== */
  .expertise-icon::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -120%;
    width: 200%;
    height: 200%;

    background: linear-gradient(
      115deg,
      transparent 35%,
      rgba(255,255,255,0.95) 50%,
      transparent 65%
    );

    opacity: 0;
  }

  /* ===== BORDER GLOW ===== */
  .expertise-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 0 0 rgba(25,118,210,0);
    pointer-events: none;
  }

  /* ===== HOVER EFFECT ===== */
  .expertise-card:hover .expertise-icon {
    transform: translateY(-10px) scale(1.08);
    box-shadow:
      inset 0 2px 0 rgba(255,255,255,1),
      inset 0 -3px 0 rgba(0,0,0,0.15),
      0 16px 32px rgba(25,118,210,0.35);
  }

  /* Shine sweep */
  .expertise-card:hover .expertise-icon::before {
    animation: premium-shine 1s ease-in-out forwards;
    opacity: 1;
  }

  /* Border glow */
  .expertise-card:hover .expertise-icon::after {
    box-shadow: 0 0 18px rgba(25,118,210,0.6);
  }


  .expertise-card h5 {
    font-weight: 600;
    color: #0d47a1;
    margin-bottom: 15px;
  }
  .expertise-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #444;
    text-align: left;
  }
  .expertise-card ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
  }
  .expertise-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00bfa5;;
    font-size: 14px;
  }

/* ===== Swiper Fixes ===== */
.mySwiper, .expertise-swiper, .doctor-swiper {
  overflow: hidden;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  height: auto;
  min-width: 0;
  box-sizing: border-box;
}
.swiper-slide {
    width: 90% ;
    margin: 0 auto;
  }
/* ===== Swiper Custom Navigation ===== */
.swiper-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.swiper-button-custom {
  width: 40px;
  height: 40px;
  border: 2px solid #4e9cff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  transition: 0.3s;

}
.swiper-button-custom:hover {
  background: #4e9cff;
  color: #fff;
}

/* ===== Map & Address ===== */

.hospital-section .row {
  display: flex;
  flex-wrap: wrap;
}
.hospital-section .col-lg-6 {
  display: flex;
}


.hospital-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hospital-map iframe {
  flex: 1;
  min-height: 100%;
}


.hospital-section {
  max-width: 1100px;
}


.hospital-box {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hospital-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Map */
.hospital-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 12px;
}

/* Title & tagline */
.hospital-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #0047AB;
}
.tagline {
  font-size: 0.95rem;
  color: #666;
  margin-top: 6px;
  font-style: italic;
}

/* Info list */
.hospital-info li {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
  transition: color 0.3s ease, transform 0.3s ease;
}
.hospital-info li i {
  color: #0047AB;
}
.hospital-info li:hover {
  color: #0047AB;
  transform: translateX(5px);
}

/* Buttons */
.btn-primary, .btn-outline-primary {
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(90deg,#0047AB,#1E90FF);
  border: none;
}
.btn-primary:hover {
  transform: scale(1.05);
}
.btn-outline-primary {
  border: 2px solid #0047AB;
  color: #0047AB;
}
.btn-outline-primary:hover {
  background: #0047AB;
  color: #fff;
}

/* ===== Hospital Cards ===== */
.hospital-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: none;
}
.rating-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #28a745;
  color: white;
  padding: 4px 8px;
  font-size: 0.85rem;
  border-radius: 4px;
}
.hospital-card img {
  width: 100%;
  height: auto;
}
.hospital-card .btn {
  width: 100%;
  border-radius: 0;
  font-weight: 500;
}

/* ===== Service Buttons ===== */
.service-btn {
  border: 1px solid #00aaff;
  border-radius: 8px;
  color: #007bff;
  padding: 8px 12px;
  text-align: center;
  font-weight: 500;
  display: block;
  width: 100%;
  background: white;
  transition: all 0.3s ease;
}
.service-btn:hover {
  background: #e6f7ff;
}

/* ===== Responsive ===== */
@media (max-width: 575.98px) {
  .swiper-slide {
    width: 90% !important;
    margin: 0 auto;
  }
  .doc-photo {
    width: 96px;
    height: 96px;
  }
  .doc-card
  {
    max-width: 280px;
    margin: auto;
  }
}
/*  */
/* Responsive for mobile */
@media (max-width: 576px) {
  .doctor-card {
    min-width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }

  .doctor-wrapper {
    gap: 0.5rem;
  }

  .doctor-navigation {
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
}
/* ---- DOCTORS SWIPER: sizing & centering ---- */
.mySwiper { overflow: hidden; }
.mySwiper .swiper-wrapper { display: flex; }
.mySwiper .swiper-slide {
  min-width: 0;
  box-sizing: border-box;
  display: flex;                /* let the card center inside */
  justify-content: center;
  align-items: stretch;
}

/* On phones (including 320px), make each slide ~85–90% width
   so Swiper can center it perfectly */
@media (max-width: 575.98px) {
  .mySwiper .swiper-slide { width: 88% !important; }
  .doc-card { width: 100%; max-width: 360px; }
  .swiper-nav { justify-content: center; }
}

/* ---- EXPERTISE SWIPER safety ---- */
.expertise-swiper { overflow: hidden; }
.expertise-swiper .swiper-wrapper { display: flex; }
.expertise-swiper .swiper-slide {
  min-width: 0;
  box-sizing: border-box;
}
/* --- SERVICES SWIPER FIX --- */
.expertise-swiper {
  overflow: hidden;
}

.expertise-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch; 
}

.expertise-swiper .swiper-slide {
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* navigation button design */
 /* ===============================
   EXPERTISE SWIPER SPACING FIX
   =============================== */

/* Give space for arrows */
.expertise-swiper {
  padding-left: 60px;
  padding-right: 60px;
}

/* Buttons – SAME DESIGN */
.expertise-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Chevron */
.expertise-btn::before {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
}

/* LEFT */
.expertise-prev {
  left: 12px;                 /* INSIDE padding */
  background: #ffffff;
  border: 1.5px solid #d6dee8;
  color: #1976d2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.expertise-prev::before {
  transform: rotate(135deg);
}

/* RIGHT */
.expertise-next {
  right: 12px;                /* INSIDE padding */
  background: #1976d2;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(25,118,210,0.45);
}

.expertise-next::before {
  transform: rotate(-45deg);
}

/* Hover */
.expertise-btn:hover {
  transform: translateY(-50%) translateY(-2px);
}

/* Mobile */
@media (max-width: 576px) {
  .expertise-swiper {
    padding-left: 46px;
    padding-right: 46px;
  }

  .expertise-btn {
    width: 36px;
    height: 36px;
  }

  .expertise-btn::before {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
}

/* end of the design */
@media (max-width: 575.98px) {
  .expertise-swiper .swiper-slide {
    width: 90% !important;
  }
  .expertise-card {
    width: 100%;
    max-width: 360px;       
    margin: 0 auto;
  }
 
}
/* ------- */
.services-section {
      padding: 90px 0;
       background: linear-gradient(135deg, #e6f0ff, #f9f9ff);
      font-family: "Poppins", sans-serif;
      color: #333;
    }

    .service-category {
      background: #ffffff;
      border-radius: 22px;
      padding: 40px;
      margin-bottom: 40px;
      box-shadow: 0 10px 25px rgba(0, 50, 120, 0.08);
      border-top: 5px solid #0d6efd;
      transition: all 0.4s ease;
      perspective: 1000px;
    }

    .service-category:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 35px rgba(0, 50, 120, 0.15);
      border-top-color: #198754;
    }

    .category-title {
      font-weight: 700;
      font-size: 24px;
      color: #0d6efd;
      display: flex;
      align-items: center;
      margin-bottom: 30px;
    }

    .category-title i {
      font-size: 32px;
      margin-right: 14px;
      color: #198754;
      background: #e9f8f1;
      padding: 10px;
      border-radius: 50%;
      transition: all 0.4s ease;
    }

    .service-category:hover .category-title i {
      background: #0d6efd;
      color: #fff;
      transform: rotate(-12deg) scale(1.2);
    }

    .service-list {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
    }

    .service-item {
      flex: 1 1 calc(33.333% - 18px);
      min-width: 180px;
      background: #f8fbff;
      border-radius: 14px;
      padding: 16px 20px;
      text-align: center;
      font-weight: 500;
      font-size: 15px;
      color: #222;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    /* Gradient background animation */
    .service-item::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 200%;
      height: 100%;
      background: linear-gradient(120deg, #0d6efd, #198754, #0dcaf0);
      background-size: 200% 200%;
      /* transform: skewX(-15deg); */
      z-index: 0;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .service-item:hover::before {
      opacity: 1;
      animation: moveGradient 2s linear infinite;
    }

    @keyframes moveGradient {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Ripple glow effect */
    .service-item::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      /* transform: translate(-50%, -50%); */
      transition: all 0.6s ease;
      z-index: 1;
    }

    .service-item:hover::after {
      width: 220%;
      height: 220%;
      opacity: 0;
    }

    .service-item span {
      position: relative;
      z-index: 2;
      transition: all 0.4s ease;
      display: inline-block;
    }

    .service-item:hover span {
      color: #fff;
      /* transform: scale(1.05); */
      letter-spacing: 0.5px;
    }

    .service-item:hover {
      /* transform: translateY(-8px) rotateX(6deg) rotateY(3deg); */
      box-shadow: 0 12px 28px rgba(0, 50, 120, 0.2);
    }

    @media(max-width: 768px) {
      .service-item {
        flex: 1 1 calc(50% - 15px);
      }
    }

    @media(max-width: 576px) {
      .service-item {
        flex: 1 1 100%;
      }
    }

  @media only screen and (min-width:992px){
  .carousel-item {
  height: 80vh;
  background-position: center;
  background-size: cover;
  position: relative;
  margin-top: 3rem;
}
/* navbar */
  .navbar-brand {
    margin-left: 10rem;
  }
  .navbar-nav {
    margin-right: 20rem;
  }
  .navbar-nav li {
    margin-right: 25px;
  }
  .navbar .btn {
    margin-right: 10rem;
  }
  .swiper-slide .doc-card {
    width: 90% ;
    margin: 0 auto;
  }

}

  
  
/* =========================
   FOOTER BASE
========================= */
.footer-area {
  background: linear-gradient(145deg, #0b2c3d, #0f3b52);
  color: #eaf2f6;
  padding:  25px 0 15px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.footer-area .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}

/* =========================
   FOOTER SECTIONS
========================= */
.footer-section {
  display: flex;
  flex-direction: column;
  
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}

.footer-logo {
  width: 40px;
  height: auto;
  /* object-fit: contain; */
border-radius: 10px;
}


/* =========================
   HEADINGS
========================= */
.footer-section h3,
.footer-section h4 {
  color: #56c0e8; /* soft blue */
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section h3 { font-size: 20px; }
.footer-section h4 { font-size: 17px; }

/* =========================
   TEXT
========================= */
.footer-text, .contact-info {
  font-size: 14px;
  line-height: 1.7;
  color: #dce9f0;
}

/* =========================
   LISTS
========================= */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  transition: 0.3s ease;
  color: #dce9f0;
}

.footer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #56c0e8;
  font-size: 12px;
}

.footer-list li:hover {
  color: #56c0e8;
  transform: translateX(4px);
}

/* =========================
   CONTACT INFO
========================= */
.contact-info a {
  color: #56c0e8;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* =========================
   SEO PARAGRAPH
========================= */
.footer-seo {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.05);
  
  border-radius: 12px;
   padding: 12px 16px; 
  margin: 15px 0 10px; 
  text-align: center;
}

.footer-seo p {
  font-size: 14px;
  line-height: 1.7;
  color: #dce9f0;
  margin: 6px 0;
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
   padding-top: 10px;  
  margin-top: 10px; 
}

.footer-bottom p {
  font-size: 13px;
  color: #c9d6df;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-area .container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-list li {
    justify-content: center;
  }
}