/* =========================
   GLOBAL STYLES
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7fff8;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar {
  width: 90%;
  margin: auto;
  padding: 12px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s;
  position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #2d8f62;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0%;
  height: 2px;

  background: #2d8f62;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  font-size: 32px;
  cursor: pointer;
}

.menu-btn i {
  color: #2d8f62;
}


/* =========================
   CERTIFICATES
========================= */

.certificate-section {
  padding: 90px 5%;
  background-color: #011718;
}

.certificate-heading {
  text-align: center;
  margin-bottom: 60px;
}

.certificate-heading h1 {
  font-size: 3rem;
  color: #1d6b43;
  margin-bottom: 15px;
}

.certificate-heading p {
  max-width: 800px;
  margin: auto;
  color: #9c8e8e;
  font-size: 1.1rem;
}

/* Grid */
.certificate-grid {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* Card */
.certificate-card {
  background: rgba(255,255,255,0.95);
  border-radius: 28px;
  overflow: hidden;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  transition: 0.4s ease;
}

.certificate-card:hover {
  transform: translateY(-8px);
}

.certificate-card img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  background: #fff;
  padding: 20px;
}

.certificate-content {
  padding: 25px;
  text-align: center;
}

.certificate-content h3 {
  color: #2e7d32;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.certificate-content p {
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .certificate-heading h1 {
    font-size: 2.2rem;
  }

  .certificate-card img {
    height: 380px;
  }
}


/* =========================
   PREMIUM GALLERY BACKGROUND
========================= */
.gallery {
  padding: 90px 5%;
  background: linear-gradient(
    135deg,
    #eef7ec 0%,
    #fffdf6 50%,
    #e5f4e8 100%
  );
}

/* Soft decorative circles */
.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(80px);
}

/* Top green glow */
.gallery::before {
  width: 350px;
  height: 350px;
  background: rgba(67, 160, 71, 0.12);

  top: -120px;
  left: -100px;
}

/* Bottom gold glow */
.gallery::after {
  width: 300px;
  height: 300px;
  background: rgba(255, 211, 105, 0.12);

  bottom: -100px;
  right: -80px;
}

/* Keep content above background effects */
.gallery .section-title,
.masonry-gallery {
  position: relative;
  z-index: 2;
}

/* Title Styling */
.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title h1 {
  font-size: 2.8rem;
  color: #1d6b43;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  color: #5f6f65;
  font-size: 1.1rem;
}

/* Masonry Layout */
.masonry-gallery {
  column-count: 3;
  column-gap: 25px;
  max-width: 1400px;
  margin: auto;
}

/* Card */
.gallery-item {
  break-inside: avoid;
  margin-bottom: 25px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s ease;
}

/* Hover */
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

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

/* Mobile */
@media (max-width: 576px) {
  .masonry-gallery {
    column-count: 1;
  }

  .gallery {
    padding: 60px 4%;
  }

  .section-title h1 {
    font-size: 2rem;
  }
}

/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slides */

.hero-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

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

  opacity: 0;
  transform: scale(1.08);

  transition:
    opacity 1.2s ease,
    transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay */

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.5);

  z-index: 1;
}

/* Content */

.hero-content {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 900px;

  text-align: center;
  color: white;

  animation: fadeUp 1s ease;
}

.hero-content h1 {
  font-size: 70px;
  line-height: 1.2;
  margin-bottom: 20px;

  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 24px;
  margin-bottom: 35px;

  color: #f1f1f1;
}

.hero-content button {
  padding: 15px 35px;

  border: none;
  border-radius: 50px;

  background: #43a047;
  color: white;

  font-size: 17px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.hero-content button:hover {
  background: #2e7d32;
  transform: translateY(-4px);
}

/* Animation */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   SECTIONS
========================= */

section {
  padding: 80px 20px;
}

.about {
  background: #f7fff8;
}

.services {
  background: #ffffff;
}


.testimonials {
  background: #f7fff8;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 42px;
  color: #9598be;
}

/* =========================
   ABOUT
========================= */

.about-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #2e7d32;
}

.about-text p {
  line-height: 1.9;
  margin-bottom: 20px;
  color: #444;
}

/* =========================
   SERVICES
========================= */

.services-section {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.service-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-card {
  display: grid;
  gap: 40px;
  align-items: center;

  background: white;
  border-radius: 25px;
  padding: 35px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card.reverse {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
}

.service-content h2 {
  font-size: 2rem;
  color: #2d6a4f;
  margin-bottom: 10px;
}

.service-content h3 {
  margin-top: 20px;
  margin-bottom: 12px;
  color: #1f5138;
}

.service-content h4 {
  color: #666;
  margin-bottom: 15px;
  font-weight: 500;
}

.service-content p {
  margin-bottom: 15px;
  color: #444;
}

.service-content ul {
  padding-left: 20px;
}

.service-content li {
  margin-bottom: 10px;
}

.service-gallery {
  flex: 1;
  display: grid;
  gap: 12px;
}

.two-images {
  grid-template-columns: repeat(2, 1fr);
}

.three-images {
  grid-template-columns: repeat(3, 1fr);
}

.four-images {
  grid-template-columns: repeat(2, 1fr);
}

.service-image {
  width: 100%;
  height: 250px;

  object-fit: cover;
  border-radius: 18px;

  transition: 0.3s;
}


.service-image:hover {
  transform: scale(1.03);
}

.full-image {
  width: 45%;
  height: 600px;

  border-radius: 20px;
  object-fit: cover;
}

/* =========================
   HEALING SECTION
========================= */

.healing-section {
  background: #eef8ef;
  padding: 90px 20px;
}

.healing-container {
  max-width: 1200px;
  margin: auto;
}

.healing-content {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.healing-content h2 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 35px;
}

.healing-content ul {
  list-style: none;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  padding: 0;
}

.healing-content ul li {
  background: #f7fff8;
  border-radius: 15px;
  padding: 18px 20px;

  font-size: 18px;
  font-weight: 600;
  color: #333;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.healing-content ul li:hover {
  transform: translateY(-5px);
  background: #43a047;
  color: white;
}

/* Responsive */

@media (max-width: 992px) {
  .healing-content ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .healing-content {
    padding: 35px 25px;
  }

  .healing-content h2 {
    font-size: 2rem;
  }

  .healing-content ul {
    grid-template-columns: 1fr;
  }

  .healing-content ul li {
    font-size: 16px;
  }
}

/* =========================
   CONTACT
========================= */

.contact h1 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  color: #e6dbdb;
}

.contact-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2e7d32;
}

.contact-info p {
  color: #fff;

  margin-bottom: 18px;
  font-size: 18px;
}

.contact-info i {
  color: #43a047;
  margin-right: 10px;
}

.address {
  font-weight: 600;
  font-size: 16px;
  color: #ddd;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

.contact-form button {
  background: #43a047;
  color: white;

  border: none;
  padding: 15px;

  border-radius: 10px;

  font-size: 16px;
  cursor: pointer;

  transition: 0.3s;
}

.contact-form button:hover {
  background: #2e7d32;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
  background: #f7fff8;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;

  border-radius: 25px;
  text-align: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.patient-img {
  width: 100%;
  max-width: 350px;
  height: 250px;

  object-fit: cover;

  border: 4px solid #43a047;
  border-radius: 15px;

  margin-bottom: 20px;
}

.testimonial-card i {
  font-size: 35px;
  color: #43a047;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: #555;
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  color: #2e7d32;
  margin-bottom: 5px;
  font-size: 22px;
}

.testimonial-card span {
  color: #777;
  font-size: 14px;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp {
  position: fixed;
  right: 15px;
  bottom: 15px;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #25d366;
  color: white;

  font-size: 28px;
  text-decoration: none;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

  z-index: 9999;
}

.whatsapp:hover {
  transform: scale(1.08);
}
/*===================
CONTACT
=====================*/

.contact {
  background: #2a2c2a;
  padding: 80px 20px;
}
/* =========================
   FOOTER
========================= */

.main-footer {
  background: #0f3d3e;
  color: #fff;
  margin-top: 0;
}

.footer-container {
  width: 90%;
  margin: auto;
  padding: 50px 0;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service-card,
.testimonial-card,
.gallery-grid img {
  overflow: hidden;
}

.footer-box h2 {
  margin-bottom: 20px;
  color: #ffd369;
}

.footer-box p,
.footer-box a {
  color: #ddd;
  line-height: 1.8;
  text-decoration: none;
  list-style: none;
}

.footer-box li {
  color: #ddd;
  line-height: 1.8;
  text-decoration: none;
  list-style: none;
  padding-left: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c8facc;
  padding-left: 6px;
}

.social-sidebar {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social {
  width: 45px;
  height: 45px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;

  transition: 0.3s ease;
}

.social:hover .fa-whatsapp {
  color: #25d366;
}

/* Footer social icons fix */
.social i {
  font-size: 20px;
  color: #fff !important;
}

.social:hover i {
  color: #2e7d32 !important;
}

.social:hover .fa-whatsapp {
  color: #25d366 !important;
}

.social:hover {
  transform: translateY(-5px);
  background: white;
  color: #2e7d32;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);

  text-align: center;
  padding: 25px 20px;
}

.footer-bottom h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-bottom p {
  color: #d7f2d9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .testimonial-container,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card.reverse {
    flex-direction: column;
  }

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .full-image {
    width: 100%;
    height: 350px;
  }

  .hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 95%;
    padding: 10px 0;
    flex-direction: column;
    gap: 10px;
  }

  .logo-img {
    width: 150px;
    height: 80px;
    object-fit: contain;
  }

  /* Hide hamburger */
  .menu-btn {
    display: none;
  }

  /* Show nav directly */
  .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links li a {
    font-size: 16px;
    font-weight: 600;
  }

  /* WhatsApp */
  .whatsapp {
    right: 15px;
    bottom: 15px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }

  /* Hero */
  .hero {
    height: 90vh;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  /* Layout */
  .testimonial-container,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links li a {
    font-size: 15px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .service-card {
    padding: 20px;
  }

  .service-image {
    height: 200px;
  }

  .contact h1 {
    font-size: 30px;
  }
}

/* =========================
   ABOUT US PAGE
========================= */

.about-hero {
  position: relative;
  height: 55vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("./Images/background.avif") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-content {
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.about-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.about-hero-content p {
  font-size: 1.2rem;
  color: #f5f5f5;
}

/* Main Container */

.about-page {
  padding: 80px 20px;
  background: #f7fff8;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* Intro Section */

.about-intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.about-intro img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-intro-content h2 {
  color: #2e7d32;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.about-intro-content p {
  color: #444;
  margin-bottom: 18px;
  font-size: 17px;
}

/* Vision Mission */

.vision-mission {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.vm-card {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
}

.vm-card h3 {
  color: #2e7d32;
  margin-bottom: 15px;
  font-size: 28px;
}

/* Why Choose */

.why-choose {
  margin-bottom: 80px;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: white;
  border-radius: 25px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card i {
  font-size: 45px;
  color: #43a047;
  margin-bottom: 20px;
}

.why-card h4 {
  margin-bottom: 15px;
  color: #2d6a4f;
}

/* Corporate Wellness */

.corporate {
  background: #eef8ef;
  padding: 60px;
  border-radius: 30px;
  margin-bottom: 80px;
}

.corporate h2 {
  color: #2e7d32;
  margin-bottom: 20px;
  margin-right: 10px;
}

.corporate ul {
  padding-left: 20px;
}

.corporate li {
  margin-bottom: 12px;
}

/* CTA */

.about-cta {
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: white;
  text-align: center;
  padding: 60px 30px;
  border-radius: 30px;
}

.about-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 35px;
  background: white;
  color: #2e7d32;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 992px) {
  .about-intro,
  .vision-mission,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .about-hero {
    height: 45vh;
  }

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

  .corporate {
    padding: 35px 25px;
  }
}
/* =========================
   HEALING EXPERTISE
========================= */

.healing-expertise {
  padding: 90px 20px;
  background: #f7fff8;
}

.section-heading {
  text-align: center;
  margin-bottom: 55px;
}

.section-heading h2 {
  font-size: 48px;
  color: #1f5138;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-heading p {
  font-size: 22px;
  color: #555;
}

/* Grid */

.expertise-grid {
  max-width: 1350px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */

.expertise-card {
  background: #fff;
  border-radius: 30px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
}

/* Icon */

.card-icon {
  width: 130px;
  height: 130px;
  margin: auto;
  margin-bottom: 25px;

  border-radius: 50%;
  background: #edf7ea;

  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 58px;
  color: #2e7d32;
}

/* Heading */

.expertise-card h3 {
  font-size: 2rem;
  color: #1f5138;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Divider */

.line {
  width: 70px;
  height: 4px;
  background: #43a047;
  margin: 0 auto 28px;
  border-radius: 10px;
}

/* Paragraph */

.expertise-card p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: 17px;
}

/* List */

.expertise-card ul {
  list-style: none;
  text-align: left;
}

.expertise-card ul li {
  display: flex;
  gap: 15px;
  align-items: flex-start;

  margin-bottom: 18px;
  color: #333;
  line-height: 1.7;
  font-size: 18px;
}

.expertise-card ul li i {
  color: #43a047;
  font-size: 20px;
  margin-top: 4px;
}

/* Responsive */

@media (max-width: 1100px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 18px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    padding: 35px 25px;
  }

  .card-icon {
    width: 100px;
    height: 100px;
  }

  .card-icon i {
    font-size: 45px;
  }
}

.vision-list {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.vision-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #444;
  line-height: 1.7;
}

.vision-list i {
  color: #43a047;
  margin-top: 4px;
}
