* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.center {
  text-align: center;
}

.tag {
  color: #20b997;
  font-weight: bold;
  margin-bottom: 10px;
}

/* TOP BAR */
.topbar {
  background: #ffffff;
  padding: 0px 0;
}
.topbar .container {
  display: flex;
   align-items: center;
  justify-content: space-between;
}
.topbar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar .brand img {
  height: 96px;           /* perfect for topbar */
  width: auto;
}
/* HERO */
.hero {
  background: linear-gradient(
    to right,
    #f4f4f4 0%,
    #f4f4f4 30%,
    #20b997 30%,
    #20b997 100%
  );
  padding: 50px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero img {
  width: 100%;
  border-radius: 6px;
}
.hero h1 {
  font-size: 48px;
  margin: 15px 0;
  line-height: 1.1;
}

/* Base button */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover effect */
.btn:hover {
  background: #0f5132; 
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ABOUT */
.about {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.about-images img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 6px;
}

/* SERVICES */
.services {
  background: #f4f4f4;
  padding-top: 40px;
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

/* LEFT & RIGHT COLUMNS */
.services-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* SERVICE CARD */
.service-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: transform .3s ease;
}

/* LEFT side → move RIGHT */
.services-col.left .shift-in {
  transform: translateX(40px);
}

/* RIGHT side → move LEFT */
.services-col.right .shift-in {
  transform: translateX(-40px);
}

.services-col .shift-in {
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}
.service-card:hover {
  transform: translateY(-6px);
}
.services-col .shift-in:hover {
  transform: translateY(-6px);
}

.service-img {
  width: 125px;
  height: 125px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f7f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* TEXT */
.service-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.service-content p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}



/* CENTER IMAGE */
.services-center {
  text-align: center;
  position: relative;
}

.services-center img {
  max-width: 100%;
  border-radius: 20px;
  z-index: 2;
  position: relative;
}

/* subtle background ring */
.services-center::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(32,185,151,0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* PROCESS */
.process {
  background: #20b997;
  color: #fff;
  padding: 80px 125px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.step {
  background: rgba(255,255,255,0.2);
  padding: 30px;
  border-radius: 6px;
}

.process .tag{
	color: #fff;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.process-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Card */
.process-card {
  border-radius: 16px;
  padding: 10px 5px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Round Image */
.process-icon {
  border-radius: 50%;
  width: 125px;
  height: 125px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f3f7f6;
  display: flex;
  align-items: center;
  justify-content: center;
   margin: 0 auto 20px;
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.process-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

/* Contact */
.contact-section {
  padding: 40px 0;
  background: #f9fbfa;
}

.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.contact-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* Contact Card */
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #20b997;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  font-size: 15px;
  margin-bottom: 18px;
  color: #444;
  line-height: 1.6;
}

.contact-list a {
  color: #20b997;
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* Map */
.map-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
}

.map-link {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #20b997;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.map-link:hover {
  background: #179f7e;
}

.contact-section .tag{
	color: #20b997;
}

/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  padding: 40px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.copy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.hero,
.hero h1,
.hero p,
.hero a {
  color: #ffffff;
}

.hero-grid {
  line-height: 0;
}

.hero-grid > div {
  line-height: 1.6;
}

.emergency {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f5132; /* dark medical green */
}

.emergency .icon {
  font-size: 26px;
  color: #20b997;
}

.emergency small {
  display: block;
  font-size: 12px;
  color: #666;
}

.emergency strong {
  font-size: 18px;
  font-weight: 700;
}

.image-collage {
  padding: 10px 0;
  background: #ffffff;
}

.collage-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
  min-height: 500px;
}

/* Common image style */
.collage-item {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Left image */
.collage-item.left {
  width: 50%;
  height: 360px;
  left: 30px;
  top: 0;
}

/* Center floating image */
.collage-item.center {
  width: 160px;
  height: 160px;
  left: 45%;
  top: 110px;
  z-index: 2;
  background: #fff;
  padding: 10px;                 /* space for white border */
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.collage-item.center img {
  border-radius: 14px;           /* inner rounding */
}

/* Right image */
.collage-item.right {
  width: 45%;
  height: 350px;
  right: 0;
  bottom: 0;
}

.about-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 25px;
}

/* Left image box */
.feature-icon-box {
  width: 110px;
  height: 110px;
  background: #f4f8f7;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-box img {
  width: 75px;
  height: auto;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #444;
  margin-bottom: 14px;
}

/* Tick image */
.feature-list li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero-grid,
  .about-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 36px;
  }
  
  .hero {
    background: none;
    padding: 0;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  /* IMAGE SECTION */
  .hero-image {
    background: linear-gradient(
      to right,
      #f4f4f4 0%,
      #f4f4f4 30%,
      #20b997 30%,
      #20b997 100%
    );
    margin-bottom: -41px;
  }

  .hero-image img {
    display: block;   /* removes inline gap */
    width: 100%;
  }

  /* TEXT SECTION */
  .hero-content {
    background: #20b997; 
    padding: 50px 20px;
  }

  /* FORCE TEXT COLOR */
  .hero-content,
  .hero-content h1,
  .hero-content p,
  .hero-content .tag,
  .container-center.tag,
  .hero-content a {
    color: #ffffff;
  }
  
  .topbar .brand img {
    height: 40px;
  }
  
  .emergency {
    gap: 6px;
  }

  .emergency strong {
    font-size: 16px;
  }

  .emergency small {
    font-size: 11px;
  }
  
   .collage-wrapper {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .collage-item {
    height: 220px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    border-radius: 14px;
  }

  .collage-item.center {
    align-self: center;
    max-width: 200px;
    height: 200px;
    padding: 8px;
  }

  .collage-item.center img {
    border-radius: 12px;
  }
  
  .about-features {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-icon-box {
    margin-bottom: 15px;
  }
  
   .services-layout {
    grid-template-columns: 1fr;
  }

  .services-center {
    order: -1;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    min-height: 260px;
  }
}
