/*=============== GOVERMENT HUMAN TRUST CARE =================*/

/* .trust-section {
      padding: 80px 20px;
      background: #ffffff;
      position: relative;
      overflow: hidden;
    } */

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.mission-statement {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.7;
}

.mission-statement strong {
  color: #e63946;
  font-weight: 600;
}

.tagline {
  font-size: 1.1rem;
  color: #2d3748;
  font-weight: 500;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card-section {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.service-card-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.05), transparent);
  transition: left 0.6s;
}

.service-card-section:hover::before {
  left: 100%;
}

.service-card-section:hover {
  transform: translateY(-10px);
  border-color: #e63946 !important;
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.2);
  transition: all 0.4s ease;
}

.service-card-section:hover .icon-wrapper {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.3);
}

.service-icon-section {
  width: 40px;
  height: 40px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: none;
}

.service-card-section h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-weight: 600;
}


/* Quote Section */
.founder-quote {
  text-align: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #f0f0f0;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.founder-quote blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: #2d3748;
  line-height: 1.6;
  margin: 0 0 20px;
  position: relative;
  padding-left: 20px;
}

.founder-quote blockquote::before {
  content: '"';
  font-size: 5rem;
  color: #e63946;
  opacity: 0.2;
  position: absolute;
  left: -20px;
  top: -30px;
  font-family: Georgia, serif;
}

.founder-quote cite {
  color: #e63946;
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .trust-section {
    padding: 60px 15px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .mission-statement {
    font-size: 1.05rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founder-quote {
    padding: 40px 25px;
  }

  .founder-quote blockquote {
    font-size: 1.1rem;
    padding-left: 10px;
  }

  .founder-quote blockquote::before {
    left: -10px;
    font-size: 3.5rem;
  }
}

/*=============== TRANSFER A CRITICAL PATIENT  =================*/


.critical-transfer-img {
  padding: 60px 20px;
  background: #fff;
}

.critical-transfer-img img:hover {
  transform: scale(1.03);
}

.transfer-left img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.15);
}

/* Availability list styles */
.availability h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #0c2d6b;
}

.availability ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.availability ul li {
  margin: 10px 0;
  font-size: 1rem;
  color: #222;
  padding-left: 20px;
  position: relative;
}





/*=============== AIR CRAFT ICU =================*/

/* .aircraft-icu-section {
  padding: 70px 20px;
  background: #f9f9fb;
} */

.section-title h2 {
  margin-bottom: 15px;
}

.features {
  margin-top: 25px;
  display: grid;
  gap: 15px;
}

.feature-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
  background: #e63946;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 0.9rem;
}

.feature-card p {
  margin: 0;
  font-size: 1rem;
  color: #222;
  font-weight: 500;
}

.image-box img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.image-box img:hover {
  transform: scale(1.03);
}


/*===============WHO WE SERVE =================*/

.serve-list li {
  color: #222;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
}

.serve-list li .icon {
  position: absolute;
  left: 0;
  top: 0;
  background: #e63946;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 6px;
}

.serve-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  width: 2px;
  height: calc(100% - 15px);
  background: #e63946;
}

.serve-image img {
  min-width: 100%;
  height: 330px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.serve-image img:hover {
  transform: scale(1.03);
}

/* service group button css start  */
.theme-btn-outline {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--text-font);
  color: #fff !important;
  text-align: center;
  border-radius: 4px;
  padding: 7px 40px;
  border: 1px solid #ce1810;
  border-width: 1px;
  z-index: 1;
  transition: all 0.5s ease-in-out 0s;
  background: transparent;
}

.theme-btn-outline:hover:before {
  transform: scaleX(1);
}

.theme-btn-outline:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: -1;
  background: #bd0800;
  transition: all 500ms ease;
  color: white !important;
}

.service-btn-group {
  gap: 15px;
}

/* service group button css end  */