* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.page-container {
  max-width: 1800px;     /* Controls maximum width */
  margin: 0 auto;        /* Centers the content horizontally */
  padding: 0 20px;       /* Adds some space on sides for smaller screens */
}

a.btn {
  display: inline-block;
  background: #104547;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}
.header .logo  img{
  width: 150px;
  height: auto;
  
}
/* Base styles */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  background: #fcf9f9;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-left {
  flex: 1 1 45%;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.hero-left h1 .highlight {
  color: #4fa4d4;
}

.hero-left p {
  color: #555;
  font-size: 16px;
  margin: 20px 0 30px;
  line-height: 1.6;
}

.hero-left .btn {
  background-color: #3a8dbd;
  color: white;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 14px;
  font-weight: 500;
}

/* Right Side Layout */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.image-grid {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 10px;
  align-items: start;
  position: relative;
}

/* Decorative shapes (circle + blob) */
.icon-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 30px;
}

.circle {
  width: 60px;
  height: 60px;
  background-color: #81d9a9;
  border-radius: 100px;
  margin-top: 60px;
  margin-right: -200px;
  z-index: 2;
  position: relative;
  
}

.blob {
  width: 124px;
  height: 65px;
  margin-top: 130px;
  margin-right: -200px;
  position: relative;
  background-color: #4E9BC4;
  border-radius: 40px 5px 40px 5px;

}

/* Top image */
.img-top {
  width: 110px;
  height: 160px;
  object-fit: cover;
  border-radius: 30px;
  margin-left: 200px;
  margin-top: 60px;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

/* Bottom image */
.img-bottom {
  width: 240px;
  height: 95px;
  margin-left:80px;
  object-fit: cover;
  border-radius: 50px 8px 50px 8px;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* Large vertical image */
.img-large {
  width: 210px;
  height: 320px;
  object-fit: cover;
  border-radius: 100px 10px 100px 10px;
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  margin-left: 16px;
}


.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 80px 60px;
  background-color: #ffffff;
  flex-wrap: wrap;
}

/* Left side */
.about-left {
  flex: 1 1 50%;
  
  max-width: 600px;
}

.about-images {
  position: relative;
  width: fit-content;
}

.about-images .top-img {
  width: 269px;
  height: 143px;
  border-radius: 40px 5px 40px 5px;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

.about-images .bottom-img {
  width: 506px;
  height: 177px;
  border-radius: 5px 80px 5px 80px;
  object-fit: cover;
  display: block;
}

/* Decorative green circle */
.about-images .green-circle {
  width: 60px;
  height: 60px;
  background-color: #7ed6a1;
  border-radius: 100px;
  position: absolute;
  top: 85px;
  left: 270px;
  z-index: 3;
}

/* Right side */
.about-right {
  flex: 1 1 45%;
  max-width: 400px;
}

.about-right .section-label {
  color: #4fa4d4;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-right h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
  line-height: 1.4;
}

.about-right .description {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
}

.about-right .btn {
  background-color: #3a8dbd;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}



.services-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background-color: #fff5f3;
  flex-wrap: wrap;
}

.service-card {
  background-color: #f8d8d1;
  padding: 20px 25px;
  border-radius: 16px;
  width: 280px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.icon {
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

.icon img {
  width: 24px;
  height: 24px;
}

.text h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.text p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #4b5563;
}


/* ===== Statistics Section ===== */
/* Section Wrapper */
.stat-section {
  background-color: #4ca3d9;
  padding: 40px;
  border-radius: 30px;
  max-width: 1200px;
  height: 340px;
  margin: 60px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Inner Container */
.stat-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  width: 1320px;
  height: 320px;
}

/* LEFT SIDE GRID */
.stat-left {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 600px;
  height: 250px;
  align-content: center;
}

/* RIGHT SIDE COLUMN */
.stat-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0.3%;
  right: 150px;
}

/* Cards Shared */
.stat-card {
  background-color: transparent;
  padding: 18px;
  right: 100px;
  border-radius: 12px;
  text-align: center;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Variants */
.stat-card.filled {
  background-color: rgba(255, 255, 255, 0.2);
}

.stat-card.outlined {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.stat-card h3 {
  font-size: 40px;
  margin: 0 0 2px;
  justify-content: center;
}

.stat-card p {
  font-size: 15px;
  margin: 0;
  justify-content: center;
}

/* Right Card */
.right-card {
  width: 100%;
  height: 110px;
  max-width: 220px;
  margin-right: 350px;
  margin-bottom: 1px;
  
}

/* Images Styling */
.stat-img {
  border: 2px solid white;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Oval Image */
.oval-img {
  width: 180px;
  height: 260px;
  border-radius: 50px;
  margin-left: 150px;
  margin-top: -130px;
}

/* Pill Image */
.pill-img {
  width: 200px;
  height: 100px;
  border-radius: 50px 10px 50px 10px;
  margin-top: -75px;
  margin-right: 90px;
  margin-left: -310px;
}



/* ===== Specialties Section ===== */
/* === Specialties Section === */
.specialties-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

.specialties-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.specialties-header h2 {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  max-width: 700px;
  line-height: 1.3;
}

.section-tag {
  color: #00aaff;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
}

.btn-see-all {
  background-color: #3ca0d1;
  color: white;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 15px;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.btn-see-all:hover {
  background-color: #007ab3;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 30px;
}

.specialty-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.specialty-item img {
  width: 48px;
  height: 48px;
}

.specialty-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.specialty-text p {
  font-size: 28px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.arrow-box {
  display: inline-block;
  background: #f5d9d4;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  margin-left: 5px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
  vertical-align: text-bottom;
}


.arrow-box:hover {
  background: #e7c0b8;
}


.locations-section {
  background-color: #f9f8f8;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.locations-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.locations-content p {
  font-size: 13px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.location-buttons {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 10px;
  justify-content: center;
}

.location-buttons button {
  background-color: #3a94c0;
  color: #fff;
  border: none;
  padding: 10px 0px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100px
  
  
}

.location-buttons button:hover {
  background-color: #007ab3;
}

.international-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.international-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.international-images {
  position: relative;
  width: 500px;
  height: 500px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Positioning the people images */
.circle1 {
  top: 70px;
  left: 80%;
  width: 107px;
  height: 107px;
  transform: translateX(-50%);
}
.circle2 {
  top: 70px;
  left: 20%;
  width: 80px;
  height: 80px;
}
.circle3 {
  top: 175px;
  left: 90%;
  width: 80px;
  height: 80px;
}
.circle4 {
  bottom: 200px;
  left: 35%;
  width: 132px;
  height: 132px;
}
.circle5 {
  bottom: 120px;
  left: 70%;
  width: 80px;
  height: 80px;
}

/* Shapes */
.shape {
  position: absolute;
  background-color: #3a94c0;
  border-radius: 30px;
}

.shape1 {
  bottom: 0px;
  width: 150px;
  height: 286px;
  background-color: #3a94c0;
  border-radius: 5px 80px 5px 80px;

}

.shape2 {
  bottom: 0;
  right: 180px;
  width: 150px;
  height: 106px;
  background-color: #8fe2c1;
  border-radius: 40px 5px 40px 5px;
}

.international-content {
  flex: 1;
  max-width: 600px;
}

.section-subtitle {
  color: #4db59c;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.international-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.international-content .description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.international-btn {
  background-color: #3a94c0;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.international-btn:hover {
  background-color: #007ab3;
}

/* Main Section */
/* Overall Section */
.health-screening-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Flex Layout */
.health-screening-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Text Block */
.screening-text {
  flex: 1;
  min-width: 260px;
}

.screening-text h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}

/* Card Container */
.screening-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex: 2;
  min-width: 560px;
  justify-content: flex-start;
}

/* Individual Card */
.screening-card {
  background: #ffffff;
  border: 1px solid #d0e8ff;
  border-radius: 12px;
  padding: 30px 24px;
  width: 300px;
  box-shadow: 0 12px 40px rgba(85, 180, 255, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.screening-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(85, 180, 255, 0.2);
}

/* Card Icon */
.screening-card img {
  width: 56px;
  margin-bottom: 20px;
}

/* Card Title */
.screening-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}

/* Card Description */
.screening-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/*footer styles */
.footer-contact {
  background-image: url('../images/fortis/fortis-building.jpg'); /* Replace with your image file */
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.footer-overlay {
  background-color: rgba(74, 159, 194, 0.95); /* Fortis blue with transparency */
  max-width: 350px;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.contact-box p {
  font-size: 10px;
  line-height: 1.7;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-box .icon {
  margin-right: 10px;
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}

.contact-box a {
  color: #ffffff;
  text-decoration: underline;
}

.contact-box a:hover {
  text-decoration: none;
}

.footer-bottom {
  background-color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 20px;
  color: #555;
  border-top: 1px solid #eee;
}
/* ===== Floating Sidebar ===== */
.contact-sidebar {
  position: fixed;
  top: 50%;
  right: 20px; /* Position on right side */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.sidebar-icon {
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.sidebar-icon img {
  width: 28px;
  height: 28px;
}

.sidebar-icon:hover {
  transform: scale(1.1);
}

/* WhatsApp - green */
.sidebar-icon.whatsapp {
  background-color: #25D366;
}

/* Phone - blue */
.sidebar-icon.phone {
  background-color: #4A63D3;
}

/* Email - orange */
.sidebar-icon.email {
  background-color: #FF9800;
}

/* Icons turn white on hover */
.sidebar-icon:hover img {
  filter: brightness(0) invert(1);
}
/* ===== MOBILE OPTIMIZATIONS ===== */

/* --- Tablet and General Mobile Styles (992px and below) --- */
@media (max-width: 992px) {
  .page-container {
    padding: 0 15px;
  }

  /* Hero Section */
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    gap: 40px;
  }

  .hero-left h1 {
    font-size: 38px;
  }
  
  .hero-left p br {
      display: none; /* remove line breaks */
  }

  .hero-right {
    margin-top: 0;
    transform: scale(0.9); /* Scale down for better fit */
  }

  /* About Section */
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    gap: 40px;
  }

  .about-left, .about-right {
    max-width: 550px; /* Allow content to breathe */
    flex: 1 1 100%;
  }

  .about-images {
    margin: 0 auto;
  }
  
  .about-images .bottom-img{
    width: 100%; /* Make it responsive */
  }
  
  .about-images .green-circle{
    left: auto;
    right: 20px; /* Adjust position */
  }

  /* Services Section */
  .services-section {
    gap: 20px;
  }

  .service-card {
    width: 100%;
    max-width: 350px; /* Center cards nicely */
  }
  
  /* Statistics Section */
  .stat-section {
    padding: 40px 20px;
    height: auto;
    margin: 40px auto;
  }

  .stat-container {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 30px;
    align-items: center;
  }

  .stat-left {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 500px;
  }

  .stat-right {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    right: auto; /* Reset positioning */
    flex: 1;
  }
  
  .right-card{
    margin: 0;
    width: 100%;
    max-width: 300px;
  }

  .oval-img, .pill-img {
    margin: 0;
    position: static; /* Let them flow naturally */
    width: 100%;
  }
  
  .oval-img{
    max-width: 200px;
    height: 280px;
  }
  
  .pill-img{
    max-width: 250px;
    height: 120px;
    margin-top: -50px; /* create overlap */
  }

  /* Specialties Section */
  .specialties-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
  }
  
  .specialty-text p {
    font-size: 16px; /* Readjust font size for tablets */
  }

  /* Locations Section */
  .location-buttons {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  /* International Section */
  .international-container {
    flex-direction: column;
    text-align: center;
  }
  
  .international-images {
      width: 100%;
      max-width: 450px;
      height: 450px;
      margin-bottom: 30px;
  }

  /* Health Screening Section */
  .health-screening-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .screening-cards {
    min-width: 0;
    justify-content: center;
  }

  .screening-card {
    max-width: 320px;
  }

  /* Floating Sidebar to Bottom */
  .contact-sidebar {
    flex-direction: row;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    right: auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
}

/* --- Mobile Specific Styles (768px and below) --- */
@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 30px;
  }
  
  .hero-left p {
    font-size: 15px;
  }

  .hero-right {
    transform: scale(0.8);
  }

  /* About Section */
  .about-images .top-img, .about-images .bottom-img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
  }

  .about-images .green-circle {
    width: 50px;
    height: 50px;
    top: 35%; /* Adjust position relative to new image flow */
  }

  .about-right h2 {
    font-size: 26px;
  }

  /* Specialties Section */
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .specialty-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .specialty-text p {
    font-size: 15px;
  }

  /* Statistics Section */
  .stat-left {
    grid-template-columns: 1fr; /* Stack cards on mobile */
  }

  .stat-right {
    display: none; /* Hide decorative images on small screens to reduce clutter */
  }

  /* Health Screening Section */
  .screening-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .screening-card {
    width: 100%;
    max-width: 320px;
  }

  /* Footer */
  .footer-overlay {
    padding: 30px 20px;
  }
}

/* --- Small Mobile Styles (480px and below) --- */
@media (max-width: 480px) {
  .page-container {
    padding: 0 10px;
  }
  
  .hero-left h1 {
    font-size: 26px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .hero-right {
    transform: scale(0.7);
    margin-top: -40px; /* Reduce gap */
  }
  
  .about-right h2 {
    font-size: 22px;
  }
  
  .specialties-header h2 {
    font-size: 24px;
  }
  
  .specialties-grid{
    gap: 20px;
  }
  
  .specialty-item {
    padding-bottom: 20px;
  }
  
  .specialty-text p{
    font-size: 14px;
  }

  /* International Images */
  .international-images {
      transform: scale(0.9);
      margin-bottom: 0;
  }
  
  .international-content h2 {
      font-size: 24px;
  }
  
  .screening-text h2{
      font-size: 24px;
  }
  
  /* Footer Contacts */
  .contact-box h2{
    font-size: 22px;
  }
  
  .contact-box p{
    font-size: 14px;
  }
}

.hero-right .image-grid img {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Large vertical image */
.img-large {
  max-width: 100%;
  height: auto;
  margin-left: 0;
}

/* About images */
.about-images .top-img,
.about-images .bottom-img {
  width: 100%;
  height: auto;
  margin-left: 0;
}

/* Statistics Section */
.stat-left {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  width: 100%;
  gap: 15px;
}
.stat-right {
  display: none; /* Hide decorative images on small screens */
}

/* Specialties */
.specialties-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}
.specialty-item {
  flex-direction: column;
  text-align: center;
}

/* Health Screening */
.screening-cards {
  flex-direction: column;
  align-items: center;
}
.screening-card {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

/* Floating sidebar at bottom for mobile */
@media (max-width: 768px) {
  .contact-sidebar {
    flex-direction: row;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    right: auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 40px;
    gap: 10px;
  }
  .sidebar-icon {
    width: 40px;
    height: 40px;
  }
  .sidebar-icon img {
    width: 22px;
    height: 22px;
  }
}
/* Home icon */
.home-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

/* Hover effect */
.home-icon:hover {
  transform: scale(1.2);
}

/* Optional: space adjustment so it matches text items */
.home-link {
  display: flex;
  align-items: center;
}
.phone-number {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}
/* 📱 Mobile Devices */
@media (max-width: 768px) {
  .phone-number {
    font-size: 13px;
  }
}