* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.hero {
  margin: 60px 0px;
  max-height: 500px;
}

.overlay {
  display: flex;
  position: relative;
  .left {
    width: 40%;
    background-color: #003A70;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
  }
  .right {
    width: 60%;
    .banner-image {
      height: 100%;
      width: 100%;
    }
  }
}

.banner-list{
    position:absolute;
    top: 56%;
    left: 43%;
    transform: translate(-50%, -50%);

}

.list-card{
    padding: 24px 20px;
    border-radius: 8px;
    background-color: white;
    margin: 10px 0px
}
.list-card img.icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.chooose-us {
  margin: 60px 0px;
}

.choose-us-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.choose-us-left {
  width: 50%;

  padding: 20px;
}

.choose-us-image {
  height: 100%;
  width: 100%;
}

.choose-us-right {
  width: 50%;
  padding-left:20px;
  padding-right:40px
}

.choose-us-wrapper {
  display: flex;
}

.choose-us-list{
    margin-bottom: 20px
}
.choose-us-button {
padding: 12px 18px;
border-radius:32px
}
/* Section base */
.specialties {
  background: #fff;
  padding: 60px 20px;
}

/* Heading row with left+right */
.heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.heading-text {
  max-width: 600px;
}

.specialties .subtitle {
  color: #0a3c7d;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 10px;
  text-transform: uppercase;
  text-align: left;
}

.specialties .title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.btn-view {
  padding: 8px 20px;
  border: 1px solid #0a3c7d;
  border-radius: 30px;
  text-decoration: none;
  color: #0a3c7d;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  align-self: center;
}
.btn-view:hover {
  background: #0a3c7d;
  color: #fff;
}

/* Grid of specialties */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid #dce3ec;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 14px;
}

.card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0a3c7d;
  margin: 0 0 10px;
}

.card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
/* EXPERT CARE */
.expert {
  background: #f2f7fc;
  padding: 80px 10%;
  text-align: center;
}

.expert-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.expert-box {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding-bottom: 20px;
  width: 300px;
}

.expert-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.stats div strong {
  display: block;
  font-size: 1.8rem;
  color: #0a2c5f;
}

/* AWARDS */
.awards {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.awards-left {
  flex: 1;
  min-width: 250px;
}

.awards-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.awards-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.view-all {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #0b2c58;
  border-radius: 25px;
  text-decoration: none;
  color: #0b2c58;
  font-weight: bold;
  transition: all 0.3s ease;
}

.view-all:hover {
  background: #0b2c58;
  color: #fff;
}
.awards-right {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px; /* increased space between images */
}

.awards-right a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.awards-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Hover effect */
.awards-right a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/*Procedures*/

.procedures {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}
.heading{
    text-align: left;
    margin-bottom: 30px;
}
.heading h3{
    color: #0b2c58;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.heading h2{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.procedures h3 {
  color: #0b2c58;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.procedures h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
}

.view-all {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 50px;
  border: 1px solid #0b2c58;
  border-radius: 25px;
  text-decoration: none;
  color: #0b2c58;
  font-weight: bold;
  transition: all 0.3s ease;
}

.view-all:hover {
  background: #0b2c58;
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #000;
}

.card h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0b2c58;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* ===== GRID LAYOUT ===== */
.healthcare-section {
  padding: 0;
  margin: 0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 0; /* no space between divs */
  width: 100%;
}

.grid-item {
  position: relative;
  border-radius: 0; /* sharp corners */
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TEXT BLOCK ===== */
.text-block {
  grid-column: span 2;
  grid-row: 1;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 40px;
}

.text-block h2 {
  font-size: 2.2rem;
  color: #0b2c58;
  line-height: 1.3;
}

/* ===== CARD STYLES ===== */
.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Dark blue card */
.dark-card {
  background-color: #0b2c58;
  color: #fff;
}

/* Mid blue card */
.blue-card {
  background-color: #347a9b;
  color: #fff;
}

/* Light blue card */
.light-card {
  background-color: #f2f7fc;
  color: #0b2c58;
}

/* Icon */
.icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .text-block {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .text-block h2 {
    font-size: 1.6rem;
  }
}
.navbar{
  background-color: white;
}
.navbar h1{
  font-size: 50px;
  color: #347a9b;
  top: 10%;
}
/* ===== 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 view adjustments --- */
@media (max-width: 992px) {
  .hero {
    margin: 20px 0;
    max-height: none;
  }

  .overlay {
    flex-direction: column;
  }

  .overlay .left,
  .overlay .right {
    width: 100%;
  }

  .overlay .left {
    padding: 40px 30px;
    text-align: center;
  }
  
  .overlay .right .banner-image {
    max-height: 300px;
    object-fit: cover;
  }
  
  .banner-list {
    position: static;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    margin-top: 0;
  }
  
  .list-card {
    margin: 0;
    flex: 1 1 200px;
  }

  .choose-us-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .choose-us-left,
  .choose-us-right {
    width: 100%;
    max-width: 600px;
    padding: 20px;
  }
  
  .expert-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .awards {
    flex-direction: column;
    align-items: center;
  }
  
  .awards-left {
    text-align: center;
  }
  
  .grid-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .text-block {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  h1, h2 {
    font-size: 1.8rem !important;
  }

  .heading h2 {
    font-size: 1.8rem !important;
  }
  
  .specialties .title {
     font-size: 1.8rem;
  }
  
  .banner-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .list-card{
    padding: 15px;
  }
  
  .choose-us-text {
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .heading-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .heading-text,
  .heading {
    text-align: center;
  }
  
  .heading-text .subtitle,
  .heading-text .title {
    text-align: center;
  }

  .expert {
    padding: 40px 20px;
  }
  
  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .awards-right {
    grid-template-columns: 1fr 1fr;
  }
  
  .procedures {
    padding: 40px 20px;
  }

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

  .text-block {
    grid-column: span 1;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .specialty-grid,
  .cards {
    grid-template-columns: 1fr;
  }
  
  .awards-right {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }
}
/* 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;
  }
}