/* Air Ambulance Design System - Medical & Aviation Theme */

/* Custom animations */
@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5); 
  }
  50% { 
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.8); 
  }
}

@keyframes fade-in-up {
  0% { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes slide-in-right {
  0% { 
    opacity: 0; 
    transform: translateX(20px); 
  }
  100% { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-10px); 
  }
}

/* Utility classes */
.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fade-in-up 0.5s ease-out;
}

.animate-slide-in-right {
  animation: slide-in-right 0.5s ease-out;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
}
/* === EMSOS Emergency Air Ambulance SECTION ONLY === */
.emsos-emergency-air-section{
  width:100%;
  padding:40px 15px;
  background:#fef2f0;
}

.emsos-emergency-air{
  max-width:1200px;
  margin:0 auto;
  background:#ffffff;
  border-radius:10px;
  padding:40px 20px;
  text-align:center;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.emsos-emergency-air h2{
  font-size:28px;
  font-weight:700;
  margin-bottom:10px;
  color:#222;
}

.emsos-emergency-air p{
  font-size:16px;
  color:#555;
  margin-bottom:20px;
}

.emsos-emergency-phone{
  font-size:32px;
  font-weight:700;
  color:#1f3c88;
  margin-bottom:25px;
}

.emsos-emergency-btn{
  display:inline-block;
  background:#f04b3a;
  color:#ffffff;
  padding:14px 28px;
  font-size:16px;
  font-weight:600;
  border-radius:6px;
  text-decoration:none;
  transition:0.3s ease;
}

.emsos-emergency-btn:hover{
  background:#d93d2e;
}

/* Mobile Responsive */
@media(max-width:600px){
  .emsos-emergency-air h2{
    font-size:22px;
  }
  .emsos-emergency-phone{
    font-size:26px;
  }
}
/* === EMSOS Air Ambulance Delhi Section ONLY === */
.emsos-air-ambulance-delhi{
  width:100%;
  padding:50px 15px;
  background:#ffffff;
}

.emsos-air-container{
  max-width:1200px;
  margin:0 auto;
}

.emsos-air-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:20px;
  color:#222;
}

.emsos-air-layout{
  display:flex;
  gap:30px;
  align-items:flex-start;
}

.emsos-air-image{
  flex:1;
}

.emsos-air-image img{
  width:100%;
  border-radius:6px;
  display:block;
}

.emsos-air-content{
  flex:1.2;
}

.emsos-air-content p{
  font-size:15px;
  line-height:1.7;
  color:#444;
  margin-bottom:25px;
}

.emsos-air-columns{
  display:flex;
  gap:25px;
}

.emsos-air-col{
  flex:1;
}

.emsos-air-col h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
  color:#222;
}

.emsos-air-col ul{
  padding-left:18px;
  margin:0;
}

.emsos-air-col ul li{
  font-size:14.5px;
  color:#444;
  margin-bottom:8px;
}

/* Responsive */
@media(max-width:900px){
  .emsos-air-layout{
    flex-direction:column;
  }

  .emsos-air-columns{
    flex-direction:column;
  }
}
/* === EMSOS Air vs Road Ambulance Comparison ONLY === */
.emsos-compare-section{
  width:100%;
  padding:50px 15px;
  background:#ffffff;
}

.emsos-compare-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:25px;
  color:#222;
}

.emsos-compare-images{
  display:flex;
  gap:20px;
  margin-bottom:30px;
}

.emsos-img-box{
  position:relative;
  flex:1;
}

.emsos-img-box img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:6px;
  display:block;
}

.emsos-img-label{
  position:absolute;
  bottom:10px;
  left:10px;
  background:rgba(0,0,0,0.7);
  color:#fff;
  font-size:13px;
  padding:6px 10px;
  border-radius:4px;
  line-height:1.2;
}

/* Comparison Boxes */
.emsos-compare-boxes{
  display:flex;
  gap:20px;
}

.emsos-compare-box{
  flex:1;
  padding:20px;
  border-radius:6px;
}

.emsos-compare-box h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:12px;
}

.emsos-compare-box ul{
  margin:0;
  padding-left:18px;
}

.emsos-compare-box ul li{
  font-size:14.5px;
  margin-bottom:8px;
  line-height:1.5;
}

/* Advantage Box */
.emsos-adv-box{
  background:#f2fbf7;
  border:1px solid #cfeee2;
}

.emsos-adv-box h3{
  color:#1f8f5f;
}

/* Limitation Box */
.emsos-limit-box{
  background:#fff4f4;
  border:1px solid #f3c2c2;
}

.emsos-limit-box h3{
  color:#c0392b;
}

/* Responsive */
@media(max-width:900px){
  .emsos-compare-images,
  .emsos-compare-boxes{
    flex-direction:column;
  }

  .emsos-img-box img{
    height:220px;
  }
}
/* === PRTSC EXACT IMAGE SIZE FIX (NO HTML CHANGE) === */
.emsos-compare-images{
  display:flex;
  width:100%;
  height:380px; 
  overflow:hidden;
  gap:0 !important; 
}

.emsos-compare-images .emsos-img-box{
  flex:1;
  height:100%;
  overflow:hidden;
}

.emsos-compare-images .emsos-img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
/* === EMSOS Emergency CTA Strip ONLY === */
.emsos-emergency-cta{
  max-width:90%;
  margin:30px auto;
  padding:35px 20px;
  background:#fef2f0;
  border:1px solid #e6e6e6;
  border-radius:8px;
  text-align:center;
}

.emsos-cta-text{
  font-size:16px;
  color:#555;
  margin-bottom:18px;
}

.emsos-cta-phone{
  font-size:28px;
  font-weight:700;
  color:#1f3c88;
}

/* Mobile */
@media(max-width:600px){
  .emsos-cta-phone{
    font-size:22px;
  }
}
/* === EMSOS Expert Medical Team Section ONLY === */
.emsos-medical-team{
  padding:50px 15px;
  background:#ffffff;
}

.emsos-team-wrap{
  max-width:1100px;
  margin:0 auto;
}

.emsos-team-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:20px;
  color:#222;
}

.emsos-team-image img{
  width:100%;
  height:380px;
  object-fit:cover;
  border-radius:8px;
  display:block;
  margin-bottom:20px;
}

.emsos-team-desc{
  font-size:15px;
  line-height:1.7;
  color:#444;
  margin-bottom:25px;
}

/* Cards */
.emsos-team-cards{
  display:flex;
  gap:20px;
  margin-bottom:35px;
}

.emsos-card{
  flex:1;
  background:#ffffff;
  border:1px solid #e6e6e6;
  border-radius:8px;
  padding:20px;
}

.emsos-card h3{
  font-size:17px;
  font-weight:700;
  margin-bottom:8px;
}

.emsos-card p{
  font-size:14.5px;
  color:#555;
  line-height:1.6;
}

/* Rating */
.emsos-rating{
  display:flex;
  gap:30px;
  align-items:flex-start;
}

.emsos-rating-score{
  text-align:center;
  min-width:120px;
}

.emsos-rating-score strong{
  font-size:36px;
  display:block;
}

.emsos-rating-score span{
  color:#f5a623;
  font-size:16px;
}

.emsos-rating-score small{
  display:block;
  font-size:13px;
  color:#555;
}

/* Progress Bars */
.emsos-rating-bars{
  flex:1;
}

.emsos-bar{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.emsos-bar span{
  width:140px;
  font-size:14px;
}

.emsos-progress{
  flex:1;
  height:6px;
  background:#eaeaea;
  border-radius:5px;
  overflow:hidden;
}

.emsos-progress i{
  display:block;
  height:100%;
  background:#f5a623;
}

.emsos-bar em{
  font-size:13px;
  color:#444;
  width:45px;
  text-align:right;
}

/* Responsive */
@media(max-width:900px){
  .emsos-team-cards,
  .emsos-rating{
    flex-direction:column;
  }

  .emsos-team-image img{
    height:260px;
  }
}
/* === EMSOS IMAGE WITH BLACK TEXT STRIP ONLY === */
.emsos-image-strip-wrap{
  position:relative;
  width:100%;
  max-height:420px;      /* image height control */
  overflow:hidden;
  border-radius:8px;
}

.emsos-image-strip-wrap img{
  width:100%;
  height:420px;
  object-fit:cover;     /* stretch nahi hoga */
  display:block;
}

.emsos-image-strip{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  background:rgba(0,0,0,0.75);
  color:#ffffff;
  padding:14px 18px;
  font-size:14.5px;
  line-height:1.4;
  font-weight:500;
}

/* Mobile */
@media(max-width:768px){
  .emsos-image-strip-wrap,
  .emsos-image-strip-wrap img{
    height:260px;
  }

  .emsos-image-strip{
    font-size:13px;
    padding:12px 14px;
  }
}
/* === EMSOS Air Ambulance Coverage Section ONLY === */
.emsos-coverage-section{
  padding:50px 15px;
  background:#ffffff;
}

.emsos-coverage-wrap{
  max-width:1100px;
  margin:0 auto;
}

.emsos-coverage-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:20px;
  color:#222;
}

/* Map */
.emsos-map-box{
  width:100%;
  height:320px;
  margin-bottom:20px;
  border-radius:8px;
  overflow:hidden;
  border:1px solid #e6e6e6;
}

.emsos-map-box iframe{
  width:100%;
  height:100%;
  border:0;
}

/* Description */
.emsos-coverage-desc{
  font-size:15px;
  color:#444;
  line-height:1.7;
  margin-bottom:30px;
}

/* Lists */
.emsos-coverage-lists{
  display:flex;
  gap:30px;
}

.emsos-coverage-col{
  flex:1;
}

.emsos-coverage-col h3{
  font-size:17px;
  font-weight:700;
  margin-bottom:10px;
  color:#222;
}

.emsos-coverage-col ul{
  margin:0;
  padding-left:18px;
}

.emsos-coverage-col ul li{
  font-size:14.5px;
  margin-bottom:8px;
  color:#444;
}

/* Responsive */
@media(max-width:900px){
  .emsos-coverage-lists{
    flex-direction:column;
  }

  .emsos-map-box{
    height:260px;
  }
}
/* === EMSOS Coverage Map + Regions Section ONLY === */
.emsos-coverage-map-section{
  padding:40px 15px;
  background:#ffffff;
}

.emsos-coverage-container{
  max-width:1100px;
  margin:0 auto;
}

.emsos-coverage-heading{
  font-size:26px;
  font-weight:700;
  margin-bottom:20px;
  color:#222;
}

/* Map */
.emsos-map-wrapper{
  width:100%;
  height:340px;
  border-radius:8px;
  overflow:hidden;
  border:1px solid #e6e6e6;
  margin-bottom:18px;
}

.emsos-map-wrapper iframe{
  width:100%;
  height:100%;
  border:0;
}

/* Description */
.emsos-coverage-text{
  font-size:15px;
  color:#444;
  line-height:1.7;
  margin-bottom:30px;
}

/* Region Grid */
.emsos-region-grid{
  display:flex;
  gap:40px;
  margin-bottom:30px;
}

.emsos-region-col{
  flex:1;
}

.emsos-region-col h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:15px;
  color:#222;
}

/* List Styling */
.emsos-region-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.emsos-region-col ul li{
  position:relative;
  padding:10px 0 10px 18px;
  font-size:15px;
  color:#333;
  border-bottom:1px solid #eee;
}

/* Blue Bullet */
.emsos-region-col ul li::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  width:7px;
  height:7px;
  background:#2f80ed;
  border-radius:50%;
}

/* Note Box */
.emsos-region-note{
  background:#eaf4ff;
  border-left:4px solid #2f80ed;
  padding:16px 18px;
  font-size:14.5px;
  color:#333;
  line-height:1.6;
  border-radius:4px;
}

/* Responsive */
@media(max-width:900px){
  .emsos-region-grid{
    flex-direction:column;
    gap:25px;
  }

  .emsos-map-wrapper{
    height:260px;
  }
}
/* === EMSOS Types of Air Ambulance Services ONLY === */

.emsos-air-types-section{
  padding:40px 15px;
  background:#ffffff;
}

.emsos-air-types-container{
  max-width:1200px;
  margin:0 auto;
}

.emsos-air-types-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:25px;
  color:#222;
}

/* -------- TOP IMAGE GRID -------- */
.emsos-air-image-grid{
  display:flex;
  gap:15px;
  margin-bottom:35px;
}

.emsos-air-img-large{
  flex:2;
}

.emsos-air-img-large img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:8px;
}

.emsos-air-img-small{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.emsos-air-img-small img{
  width:100%;
  height:152px;
  object-fit:cover;
  border-radius:8px;
}

/* -------- SERVICE CARDS -------- */
.emsos-air-cards{
  display:flex;
  gap:25px;
}

.emsos-air-card{
  flex:1;
  background:#ffffff;
  border:1px solid #e6e6e6;
  border-radius:10px;
  padding:18px;
  text-align:left;
}

.emsos-air-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:15px;
}

.emsos-air-card h3{
  font-size:17px;
  font-weight:700;
  margin-bottom:10px;
  color:#222;
}

.emsos-air-card p{
  font-size:14.5px;
  line-height:1.6;
  color:#444;
  margin-bottom:15px;
}

/* Button */
.emsos-air-btn{
  display:inline-block;
  padding:10px 16px;
  background:#2f80ed;
  color:#ffffff;
  font-size:14px;
  font-weight:600;
  border-radius:6px;
  text-decoration:none;
}

.emsos-air-btn:hover{
  background:#1f66c7;
}

/* -------- RESPONSIVE -------- */
@media(max-width:900px){
  .emsos-air-image-grid,
  .emsos-air-cards{
    flex-direction:column;
  }

  .emsos-air-img-large img{
    height:240px;
  }

  .emsos-air-img-small img{
    height:180px;
  }
}
/* === EMSOS Specialized Air Ambulance Services ONLY === */

.emsos-specialized-section{
  padding:40px 15px;
  background:#ffffff;
}

.emsos-specialized-container{
  max-width:1100px;
  margin:0 auto;
}

.emsos-specialized-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:20px;
  color:#222;
}

/* Image */
.emsos-specialized-image{
  margin-bottom:30px;
}

.emsos-specialized-image img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:8px;
  display:block;
}

/* Grid */
.emsos-specialized-grid{
  display:flex;
  gap:30px;
}

.emsos-specialized-card{
  flex:1;
}

.emsos-specialized-card h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
  color:#222;
}

.emsos-specialized-card p{
  font-size:14.5px;
  color:#444;
  line-height:1.6;
  margin-bottom:12px;
}

/* Bullet List */
.emsos-specialized-card ul{
  padding-left:18px;
  margin:0;
}

.emsos-specialized-card ul li{
  font-size:14.5px;
  color:#333;
  margin-bottom:8px;
}

/* Responsive */
@media(max-width:900px){
  .emsos-specialized-grid{
    flex-direction:column;
  }

  .emsos-specialized-image img{
    height:260px;
  }
}
/* === EMSOS ATTRACTIVE BULLET LIST ONLY === */

.emsos-bullet-grid{
  display:flex;
  gap:40px;
}

.emsos-bullet-col{
  flex:1;
}

/* Remove default bullets */
.emsos-bullet-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

/* Bullet item */
.emsos-bullet-col ul li{
  position:relative;
  padding:12px 0 12px 20px;
  font-size:15px;
  color:#333;
  border-bottom:1px solid #ededed;
  line-height:1.6;
}

/* Blue dot bullet */
.emsos-bullet-col ul li::before{
  content:"";
  position:absolute;
  left:0;
  top:20px;
  width:7px;
  height:7px;
  background:#2f80ed;
  border-radius:50%;
}

/* Responsive */
@media(max-width:900px){
  .emsos-bullet-grid{
    flex-direction:column;
    gap:25px;
  }
}
/* === EMSOS CTA BOX ONLY === */

.emsos-cta-section{
  padding:40px 15px;
  background:#ffffff;
}

.emsos-cta-box{
  max-width:900px;
  margin:0 auto;
  padding:40px 20px;
  text-align:center;
  background:#ffffff;
  border:1px solid #e6e6e6;
  border-radius:10px;
}

.emsos-cta-box h2{
  font-size:26px;
  font-weight:700;
  margin-bottom:12px;
  color:#222;
}

.emsos-cta-box p{
  font-size:15.5px;
  color:#555;
  margin-bottom:25px;
}

/* Button */
.emsos-cta-btn{
  display:inline-block;
  background:#2f9ae0;
  color:#ffffff;
  padding:14px 30px;
  font-size:16px;
  font-weight:600;
  border-radius:6px;
  text-decoration:none;
}

.emsos-cta-btn:hover{
  background:#2384c6;
}

/* Mobile */
@media(max-width:600px){
  .emsos-cta-box h2{
    font-size:22px;
  }
}
/* === EMSOS Air Ambulance Cost Factors Section ONLY === */

.emsos-cost-section{
  padding:40px 15px;
  background:#ffffff;
}

.emsos-cost-container{
  max-width:1100px;
  margin:0 auto;
}

.emsos-cost-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:20px;
  color:#222;
}

/* Image */
.emsos-cost-image{
  margin-bottom:20px;
}

.emsos-cost-image img{
  width:100%;
  max-height:620px;
  object-fit:contain;
  display:block;
}

/* Description */
.emsos-cost-desc{
  font-size:15px;
  color:#444;
  line-height:1.7;
  margin-bottom:25px;
}

/* Table */
.emsos-cost-table{
  border:1px solid #e6e6e6;
  border-radius:6px;
  overflow:hidden;
  margin-bottom:25px;
}

.emsos-cost-row{
  display:grid;
  grid-template-columns: 1.2fr 2fr 1.5fr;
  padding:12px 15px;
  font-size:14.5px;
  border-bottom:1px solid #eee;
}

.emsos-cost-row:last-child{
  border-bottom:none;
}

.emsos-cost-head{
  background:#2f80ed;
  color:#ffffff;
  font-weight:700;
}

/* Note */
.emsos-cost-note{
  background:#fff8e6;
  border-left:4px solid #f2b01e;
  padding:16px 18px;
  font-size:14.5px;
  color:#333;
  line-height:1.6;
  border-radius:4px;
}

/* Responsive */
@media(max-width:900px){
  .emsos-cost-row{
    grid-template-columns:1fr;
    gap:6px;
  }

  .emsos-cost-head{
    display:none;
  }

  .emsos-cost-row div::before{
    font-weight:600;
    display:block;
    color:#555;
  }
}
/* === EMSOS FAQ SECTION ONLY === */

.emsos-faq-section{
  padding:40px 15px;
  background:#ffffff;
}

.emsos-faq-container{
  max-width:1000px;
  margin:0 auto;
}

.emsos-faq-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:25px;
  color:#222;
}

/* FAQ Item */
.emsos-faq-item{
  border:1px solid #e6e6e6;
  border-radius:6px;
  margin-bottom:12px;
  overflow:hidden;
}

/* Question */
.emsos-faq-question{
  width:100%;
  background:#ffffff;
  border:none;
  outline:none;
  padding:14px 16px;
  font-size:15px;
  font-weight:600;
  color:#222;
  text-align:left;
  cursor:pointer;
}

/* Answer */
.emsos-faq-answer{
  padding:0 16px;
  font-size:14.5px;
  color:#444;
  line-height:1.6;
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
}

/* Active */
.emsos-faq-item.active .emsos-faq-answer{
  padding:14px 16px;
  max-height:300px;
}

/* Responsive */
@media(max-width:600px){
  .emsos-faq-title{
    font-size:22px;
  }
}
/* === EMSOS Comprehensive Services Section ONLY === */

.emsos-services-section{
  padding:60px 15px;
  background:#FFE6EE;
}

.emsos-services-container{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

/* Badge */
.emsos-services-badge{
  display:inline-block;
  padding:6px 14px;
  font-size:13px;
  font-weight:600;
  color:#2f80ed;
  background:#eaf2ff;
  border-radius:20px;
  margin-bottom:15px;
}

/* Title */
.emsos-services-title{
  font-size:30px;
  font-weight:700;
  margin-bottom:12px;
  color:#222;
}

.emsos-services-title span{
  color:#2f80ed;
}

.emsos-services-subtitle{
  font-size:15.5px;
  color:#555;
  max-width:650px;
  margin:0 auto 40px;
}

/* Grid */
.emsos-services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  margin-bottom:40px;
}

/* Card */
.emsos-service-card{
  background:#ffffff;
  border:1px solid #e6e6e6;
  border-radius:14px;
  padding:25px;
  text-align:left;
}

/* Icon */
.emsos-icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  color:#fff;
  font-size:18px;
  margin-bottom:15px;
}

.emsos-icon.blue{background:#2f80ed;}
.emsos-icon.green{background:#1abc9c;}
.emsos-icon.purple{background:#9b59b6;}
.emsos-icon.red{background:#e74c3c;}

.emsos-service-card h3{
  font-size:17px;
  font-weight:700;
  margin-bottom:8px;
}

.emsos-service-card p{
  font-size:14.5px;
  color:#555;
  line-height:1.6;
  margin-bottom:15px;
}

/* Tags */
.emsos-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.emsos-tags span{
  font-size:12.5px;
  background:#f1f4f9;
  color:#444;
  padding:6px 10px;
  border-radius:20px;
}

/* CTA */
.emsos-services-cta{
  margin-top:10px;
}

.emsos-services-btn{
  display:inline-block;
  background:#d71920;
  color:#fff;
  padding:14px 26px;
  font-size:15px;
  font-weight:600;
  border-radius:8px;
  text-decoration:none;
}

.emsos-services-btn:hover{
  background:#b9141a;
}

/* Responsive */
@media(max-width:900px){
  .emsos-services-grid{
    grid-template-columns:1fr;
  }

  .emsos-services-title{
    font-size:24px;
  }
}
/* === EMSOS TESTIMONIAL SECTION ONLY === */

.emsos-testimonial-section{
  padding:60px 15px;
  background:#E1F8DC;
}

.emsos-testimonial-container{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

/* Badge */
.emsos-testimonial-badge{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  color:#2f80ed;
  background:#eaf2ff;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:15px;
}

/* Title */
.emsos-testimonial-title{
  font-size:30px;
  font-weight:700;
  margin-bottom:10px;
  color:#222;
}

.emsos-testimonial-title span{
  color:#2f80ed;
}

.emsos-testimonial-subtitle{
  font-size:15px;
  color:#555;
  max-width:650px;
  margin:0 auto 40px;
}

/* Grid */
.emsos-testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-bottom:40px;
}

/* Card */
.emsos-testimonial-card{
  background:#ffffff;
  border:1px solid #e6e6e6;
  border-radius:14px;
  padding:22px;
  text-align:left;
  position:relative;
}

.emsos-card-tag{
  font-size:12px;
  color:#2f80ed;
  background:#eaf2ff;
  padding:4px 10px;
  border-radius:14px;
  display:inline-block;
  margin-bottom:10px;
}

.emsos-stars{
  color:#f5a623;
  font-size:14px;
  margin-bottom:10px;
}

.emsos-testimonial-card p{
  font-size:14.5px;
  line-height:1.6;
  color:#444;
  margin-bottom:15px;
}

.emsos-user span{
  font-weight:600;
  font-size:14px;
}

.emsos-user small{
  display:block;
  font-size:12.5px;
  color:#777;
}

/* Stats */
.emsos-testimonial-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.emsos-stat-box{
  background:#ffffff;
  border:1px solid #e6e6e6;
  border-radius:12px;
  padding:20px 10px;
}

.emsos-stat-box strong{
  display:block;
  font-size:22px;
  color:#2f80ed;
}

.emsos-stat-box span{
  font-size:13.5px;
  color:#555;
}

/* Responsive */
@media(max-width:900px){
  .emsos-testimonial-grid{
    grid-template-columns:1fr;
  }

  .emsos-testimonial-stats{
    grid-template-columns:1fr 1fr;
  }

  .emsos-testimonial-title{
    font-size:24px;
  }
}
/* === EMSOS HERO SERVICE SECTION ONLY === */

.emsos-hero-section{
  padding:50px 15px;
  background:#ffffff;
}

.emsos-hero-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:40px;
}

/* LEFT */
.emsos-hero-left{
  flex:2;
}

.emsos-hero-badge{
  display:inline-block;
  background:#eaf2ff;
  color:#2f80ed;
  font-size:13px;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:12px;
}

.emsos-hero-left h1{
  font-size:30px;
  font-weight:700;
  margin-bottom:15px;
}

.emsos-hero-left p{
  font-size:15px;
  line-height:1.7;
  color:#444;
  margin-bottom:15px;
}

.emsos-hero-left h3{
  font-size:18px;
  margin:20px 0 10px;
}

.emsos-hero-list{
  padding-left:18px;
  margin-bottom:20px;
}

.emsos-hero-list li{
  margin-bottom:8px;
  font-size:14.5px;
}

.emsos-hero-call-btn{
  display:inline-block;
  background:#d71920;
  color:#fff;
  padding:14px 26px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
}

/* RIGHT */
.emsos-hero-right{
  flex:1;
}

.emsos-info-box{
  border:1px solid #e6e6e6;
  border-radius:12px;
  padding:18px;
  margin-bottom:20px;
}

.emsos-info-box h4{
  font-size:16px;
  margin-bottom:10px;
}

.emsos-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.emsos-tags span{
  background:#f1f4f9;
  font-size:12.5px;
  padding:6px 10px;
  border-radius:16px;
}

/* Emergency Box */
.emsos-emergency-box{
  background:#d71920;
  color:#fff;
  padding:22px;
  border-radius:14px;
}

.emsos-emergency-box h4{
  margin-bottom:8px;
}

.emsos-emergency-box p{
  font-size:14px;
  margin-bottom:12px;
}

.emsos-emergency-box a{
  display:block;
  background:rgba(255,255,255,0.15);
  padding:10px;
  text-align:center;
  border-radius:6px;
  color:#fff;
  font-weight:600;
  text-decoration:none;
}

/* Responsive */
@media(max-width:900px){
  .emsos-hero-container{
    flex-direction:column;
  }

  .emsos-hero-left h1{
    font-size:24px;
  }
}
/* === EMSOS HERO LIST BULLETS FIX === */
.emsos-hero-list{
  list-style: disc;          /* bullet ON */
  padding-left: 20px;        /* bullet space */
  margin: 10px 0 20px;
}

.emsos-hero-list li{
  margin-bottom: 8px;
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}
/* === EMSOS 4-Step Process Section ONLY === */

.emsos-process-section{
  padding:60px 15px;
  background:#ECE6E6;
}

.emsos-process-container{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

/* Badge */
.emsos-process-badge{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  color:#2f80ed;
  background:#eaf2ff;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:15px;
}

/* Title */
.emsos-process-title{
  font-size:30px;
  font-weight:700;
  margin-bottom:10px;
  color:#222;
}

.emsos-process-subtitle{
  font-size:15.5px;
  color:#555;
  max-width:650px;
  margin:0 auto 40px;
}

/* Steps */
.emsos-process-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* Card */
.emsos-step-card{
  background:#ffffff;
  border:1px solid #e6e6e6;
  border-radius:14px;
  padding:30px 20px;
  position:relative;
  text-align:left;
}

/* Step Number */
.emsos-step-number{
  position:absolute;
  top:18px;
  right:20px;
  font-size:36px;
  font-weight:700;
  color:#eaf2ff;
}

/* Icon */
.emsos-step-icon{
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#2f80ed;
  color:#fff;
  border-radius:12px;
  font-size:20px;
  margin-bottom:15px;
}

.emsos-step-card h3{
  font-size:16.5px;
  font-weight:700;
  margin-bottom:8px;
}

.emsos-step-card p{
  font-size:14.5px;
  line-height:1.6;
  color:#555;
}

/* Responsive */
@media(max-width:900px){
  .emsos-process-steps{
    grid-template-columns:1fr;
  }

  .emsos-process-title{
    font-size:24px;
  }
}
/* === EMSOS MODERN FAQ SECTION ONLY === */

.emsos-faq-modern{
  padding:60px 15px;
  background:#ffffff;
}

.emsos-faq-wrap{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

/* Badge */
.emsos-faq-badge{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  color:#2f80ed;
  background:#eaf2ff;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:15px;
}

/* Heading */
.emsos-faq-heading{
  font-size:30px;
  font-weight:700;
  margin-bottom:8px;
  color:#222;
}

.emsos-faq-subtitle{
  font-size:15px;
  color:#555;
  margin-bottom:35px;
}

/* FAQ List */
.emsos-faq-list{
  text-align:left;
}

.emsos-faq-item{
  border:1px solid #e6e6e6;
  border-radius:10px;
  margin-bottom:14px;
  overflow:hidden;
}

/* Question */
.emsos-faq-question{
  width:100%;
  background:#ffffff;
  border:none;
  padding:16px 18px;
  font-size:15px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

/* Icon */
.emsos-faq-icon{
  font-size:16px;
  transition:transform 0.3s ease;
}

/* Answer */
.emsos-faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 18px;
  font-size:14.5px;
  color:#555;
  line-height:1.6;
  transition:all 0.3s ease;
}

/* Active */
.emsos-faq-item.active .emsos-faq-answer{
  padding:14px 18px;
  max-height:300px;
}

.emsos-faq-item.active .emsos-faq-icon{
  transform:rotate(180deg);
}

/* Responsive */
@media(max-width:600px){
  .emsos-faq-heading{
    font-size:24px;
  }
}
/* === EMSOS CONTACT SECTION ONLY === */

.emsos-contact-section{
  padding:60px 15px;
  background:#FFEAEA;
}

.emsos-contact-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:40px;
}

/* LEFT */
.emsos-contact-left{
  flex:1;
}

.emsos-contact-badge{
  display:inline-block;
  font-size:12px;
  color:#2f80ed;
  background:#eaf2ff;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:12px;
}

.emsos-contact-left h2{
  font-size:30px;
  font-weight:700;
  margin-bottom:10px;
}

.emsos-contact-text{
  font-size:15px;
  color:#555;
  line-height:1.7;
  margin-bottom:20px;
}

/* Emergency */
.emsos-emergency-call{
  background:#d71920;
  color:#fff;
  padding:20px;
  border-radius:14px;
  margin-bottom:25px;
}

.emsos-emergency-call span{
  font-size:13px;
  display:block;
}

.emsos-emergency-call strong{
  font-size:22px;
}

/* Cards */
.emsos-contact-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

.emsos-contact-card{
  border:1px solid #e6e6e6;
  border-radius:12px;
  padding:16px;
  font-size:14px;
}

.emsos-contact-card strong{
  display:block;
  margin-bottom:4px;
}

/* RIGHT */
.emsos-contact-right{
  flex:1;
  border:1px solid #e6e6e6;
  border-radius:16px;
  padding:30px;
}

.emsos-contact-right h3{
  margin-bottom:20px;
  font-size:20px;
}

/* Form */
.emsos-contact-form label{
  display:block;
  font-size:14px;
  margin-bottom:6px;
}

.emsos-contact-form input,
.emsos-contact-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:8px;
  border:1px solid #dcdcdc;
  margin-bottom:15px;
  font-size:14px;
}

.emsos-contact-form textarea{
  height:120px;
  resize:none;
}

.emsos-contact-form button{
  width:100%;
  background:#1f74c9;
  color:#fff;
  border:none;
  padding:14px;
  border-radius:8px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
}

.emsos-contact-form button:hover{
  background:#155fa6;
}

/* Responsive */
@media(max-width:900px){
  .emsos-contact-container{
    flex-direction:column;
  }

  .emsos-contact-left h2{
    font-size:24px;
  }
}
/* === EMSOS AUTO SCROLL CLIENT SECTION ONLY === */

.emsos-clients-section{
  padding:50px 0;
  background:#ffffff;
  text-align:center;
  overflow:hidden;
}

.emsos-clients-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:30px;
  color:#222;
}

/* Slider */
.emsos-clients-slider{
  width:100%;
  overflow:hidden;
}

.emsos-clients-track{
  display:flex;
  gap:60px;
  width:calc(250px * 10);
  animation:emsos-scroll 25s linear infinite;
}

/* Pause on hover */
.emsos-clients-slider:hover .emsos-clients-track{
  animation-play-state:paused;
}

.emsos-client-logo{
  width:200px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.emsos-client-logo img{
  max-width:160px;
  max-height:80px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:0.8;
  transition:all 0.3s ease;
}

.emsos-client-logo img:hover{
  filter:grayscale(0);
  opacity:1;
}

/* Animation */
@keyframes emsos-scroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* Mobile */
@media(max-width:600px){
  .emsos-clients-track{
    gap:40px;
  }

  .emsos-client-logo{
    width:160px;
  }
}
/* =========================
   EMSOS CLIENTS SLIDER
========================= */

.emsos-clients-section {
  padding: 80px 20px;
  background: #ffffff;
  overflow: hidden;
}

.emsos-clients-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
}

/* Slider container */
.emsos-clients-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track */
.emsos-clients-track {
  display: flex;
  align-items: center;
  width: 200%;
  animation: emsos-scroll 30s linear infinite;
}

/* Pause on hover */
.emsos-clients-slider:hover .emsos-clients-track {
  animation-play-state: paused;
}

/* Logo box */
.emsos-client-logo {
  width: 200px;
  flex-shrink: 0;
  margin-right: 40px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;

  /* Remove click/tap black issue */
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* Logo image */
.emsos-client-logo img {
  max-height: 70px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* Animation */
@keyframes emsos-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .emsos-client-logo {
    width: 150px;
    margin-right: 25px;
  }

  .emsos-client-logo img {
    max-height: 50px;
  }
}
.air-ambulance-full {
  width: 100%;
  padding: 50px 20px;
  background: #ffffff;
  box-sizing: border-box;
}

.air-content {
  max-width: 1100px;
  margin: 0 auto 30px;
}

.air-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.air-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
}

.emergency-call {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

.emergency-call a {
  color: #dc2626;
  text-decoration: none;
}

.emergency-call a:hover {
  text-decoration: underline;
}

/* IMAGE SECTION */
.air-image-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.air-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* BLACK STRIP ON IMAGE */
.image-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.75);
  color: #ffffff;
  padding: 12px 18px;
  font-size: 14px;
  box-sizing: border-box;
  border-radius: 0 0 6px 6px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .air-content h1 {
    font-size: 26px;
  }

  .emergency-call {
    font-size: 18px;
  }

  .image-strip {
    font-size: 13px;
    padding: 10px 14px;
  }
}
.air-ambulance-info {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.air-ambulance-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.air-text {
  flex: 1;
}

.air-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 18px;
}

.air-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 15px;
}

.air-image {
  flex: 1;
}

.air-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .air-ambulance-container {
    flex-direction: column;
  }

  .air-text h2 {
    font-size: 26px;
  }
}
.cta-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #f3f4f6; /* light gray background */
  box-sizing: border-box;
}

.cta-box {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px 25px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cta-box p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #ef4444;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #dc2626;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-box {
    padding: 25px 18px;
  }

  .cta-box p {
    font-size: 15px;
  }
}
.why-emsos {
  width: 100%;
  padding: 60px 20px;
  background-color: #fff1f2; /* light pink background */
  box-sizing: border-box;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.why-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 26px;
  }
}
.cta-wrapper {
  width: 100%;
  padding: 50px 20px;
  background-color: #f3f4f6; /* light gray background */
  box-sizing: border-box;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 30px 20px;
  text-align: center;
  border-radius: 6px;
}

.cta-inner p {
  font-size: 16px;
  color: #374151;
  margin-bottom: 18px;
}

.cta-call-btn {
  display: inline-block;
  background-color: #ef4444;
  color: #ffffff;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-call-btn:hover {
  background-color: #dc2626;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-inner {
    padding: 25px 15px;
  }

  .cta-inner p {
    font-size: 15px;
  }
}
.icu-air-ambulance {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.icu-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.icu-header {
  max-width: 900px;
  margin-bottom: 40px;
}

.icu-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.icu-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

/* GRID */
.icu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* IMAGE WITH BLACK STRIP */
.image-with-caption {
  position: relative;
  margin-bottom: 25px;
}

.image-with-caption img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.8);
  color: #ffffff;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 0 0 6px 6px;
}

/* HEADINGS */
.icu-left h3,
.icu-right h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 15px 0 10px;
}

/* BULLET LIST */
.icu-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.icu-list li {
  list-style: disc;
  font-size: 15px;
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* TEXT */
.icu-left p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .icu-grid {
    grid-template-columns: 1fr;
  }

  .icu-header h2 {
    font-size: 24px;
  }
}
.medical-evacuation-steps {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
}

.steps-container {
  max-width: 1100px;
  margin: 0 auto;
}

.steps-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 35px;
}

/* STEP LIST */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-number {
  min-width: 36px;
  height: 36px;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .steps-container h2 {
    font-size: 24px;
  }

  .step-item {
    gap: 14px;
  }

  .step-number {
    min-width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
.cta-evacuation {
  width: 100%;
  padding: 50px 20px;
  background-color: #f9fafb; /* light gray */
  box-sizing: border-box;
}

.cta-box {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 35px 25px;
  text-align: center;
  border-radius: 6px;
}

.cta-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 22px;
}

.cta-btn {
  display: inline-block;
  background-color: #ef4444;
  color: #ffffff;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #dc2626;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-box {
    padding: 28px 18px;
  }

  .cta-box p {
    font-size: 15px;
  }

  .cta-btn {
    font-size: 15px;
    padding: 11px 22px;
  }
}
.air-ambulance-price {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.price-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

/* LEFT */
.price-left h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.price-intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
}

.price-left h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}

.price-list {
  padding-left: 20px;
}

.price-list li {
  list-style: disc;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}

/* RIGHT */
.image-with-caption {
  position: relative;
  margin-bottom: 20px;
}

.image-with-caption img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.8);
  color: #ffffff;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 0 0 6px 6px;
}

/* INFO BOX */
.price-info-box {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 15px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.price-info-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 6px;
}

.price-info-box p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #374151;
}

/* CTA */
.price-cta {
  background: #f9fafb;
  padding: 18px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.price-cta p {
  font-size: 14.5px;
  margin-bottom: 12px;
  color: #374151;
}

.price-btn {
  display: inline-block;
  background-color: #2563eb;
  color: #ffffff;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
}

.price-btn:hover {
  background-color: #1d4ed8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .price-container {
    grid-template-columns: 1fr;
  }

  .price-left h2 {
    font-size: 24px;
  }
}
.cities-air-ambulance {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.cities-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cities-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.cities-intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 900px;
  margin-bottom: 35px;
}

/* GRID */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.city-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 14px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.city-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.city-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
}

.city-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.city-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4b5563;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cities-grid {
    grid-template-columns: 1fr;
  }

  .cities-container h2 {
    font-size: 24px;
  }
}
.emergency-air-ambulance {
  width: 100%;
  padding: 60px 20px;
  background-color: #ecfdf5; /* light green background */
  box-sizing: border-box;
}

.emergency-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* IMAGE WITH OVERLAY TEXT */
.emergency-image-box {
  position: relative;
}

.emergency-image-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.image-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
}

/* CONTENT */
.emergency-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 18px;
}

.emergency-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 12px;
}

/* BULLET LIST */
.emergency-list {
  padding-left: 20px;
  margin-bottom: 18px;
}

.emergency-list li {
  list-style: disc;
  font-size: 15px;
  margin-bottom: 8px;
  color: #065f46;
}

/* NOTE */
.emergency-note {
  font-size: 14.5px;
  color: #374151;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .emergency-container {
    grid-template-columns: 1fr;
  }

  .image-overlay-text {
    font-size: 16px;
  }
}
.testimonials-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #f9fafb; /* light gray background */
  box-sizing: border-box;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 10px;
}

.testimonials-intro {
  text-align: center;
  font-size: 15.5px;
  color: #4b5563;
  margin-bottom: 40px;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 22px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: #111827;
}

.testimonial-author span {
  font-size: 14px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-container h2 {
    font-size: 24px;
  }
}
.air-ambulance-hero {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.air-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGE */
.air-hero-image {
  position: relative;
}

.air-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* IMAGE TEXT */
.air-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.75);
  color: #ffffff;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
}

/* CONTENT */
.air-hero-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.air-hero-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 15px;
}

.air-call {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.air-call a {
  color: #ef4444;
  text-decoration: none;
}

.air-call a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .air-hero-container {
    grid-template-columns: 1fr;
  }

  .air-hero-content h2 {
    font-size: 24px;
  }
}
.patna-air-ambulance-intro {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.patna-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADING */
.patna-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

/* IMAGE + STRIP */
.image-with-strip {
  position: relative;
  margin-bottom: 25px;
}

.image-with-strip img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.image-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 12px 16px;
  font-size: 18px;
  line-height: 1.4;
  border-radius: 0 0 8px 8px;
  text-align: center;
}

/* CONTENT */
.intro-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .patna-container h2 {
    font-size: 24px;
  }

  .image-strip {
    font-size: 13px;
    padding: 10px 14px;
  }
}
/* LIGHT PINK BACKGROUND */
.pink-bg {
  background-color: #fff1f2;
}

.why-emsos-patna {
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 30px;
}

/* MAIN GRID */
.why-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* IMAGE WITH CAPTION */
.image-with-caption {
  position: relative;
}

.image-with-caption img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.75);
  color: #ffffff;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-align: center;
}

/* FEATURES */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 18px;
  border-radius: 6px;
}

.feature-box h3 {
  font-size: 16.5px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4b5563;
}

/* RATINGS */
.why-ratings {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  margin-top: 40px;
  align-items: center;
}

.rating-score {
  text-align: center;
}

.rating-score h4 {
  font-size: 36px;
  color: #111827;
}

.rating-score p {
  font-size: 14px;
  color: #6b7280;
}

.rating-item {
  margin-bottom: 12px;
}

.rating-item span {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #374151;
}

.bar {
  background: #e5e7eb;
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
}

.bar div {
  height: 100%;
  background: #f59e0b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-main {
    grid-template-columns: 1fr;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-ratings {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.custom-bullets {
  padding-left: 20px;
}

.custom-bullets li {
  list-style: disc;
  color: #4b5563; /* gray */
  margin-bottom: 8px;
  font-size: 15px;
}
.bullet-list {
  padding-left: 20px;
}

.bullet-list li {
  list-style: disc;
  font-size: 15px;
  color: #374151; /* dark gray */
  margin-bottom: 8px;
  line-height: 1.6;
}
.emergency-availability {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

/* TITLE */
.emergency-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin: 30px 20px;
}

/* IMAGE FULL WIDTH */
.emergency-image-wrap {
  position: relative;
  width: 100%;
}

.emergency-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* IMAGE TEXT */
.emergency-image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0)
  );
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
}

/* CONTENT — SAME LEFT EDGE AS IMAGE */
.emergency-content {
  width: 100%;
  padding: 40px 30px 60px; /* SAME left padding as image text */
  box-sizing: border-box;
}

/* INTRO TEXT */
.emergency-intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 40px;
  max-width: 1200px; /* optional, text readable rahe */
}

/* GRID */
.emergency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
}

/* BOX */
.emergency-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 24px;
  border-radius: 8px;
}

.emergency-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
}

/* BULLETS */
.bullet-list {
  padding-left: 22px;
}

.bullet-list li {
  list-style: disc;
  font-size: 14.5px;
  margin-bottom: 8px;
  color: #374151;
  line-height: 1.6;
}

.bullet-list li::marker {
  color: #22c55e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .emergency-title {
    font-size: 24px;
  }

  .emergency-image-wrap img {
    height: 360px;
  }

  .emergency-image-text {
    font-size: 18px;
    padding: 14px 18px;
  }

  .emergency-content {
    padding: 30px 18px 50px;
  }

  .emergency-grid {
    grid-template-columns: 1fr;
  }
}
/* STEP SECTION */
.emergency-steps {
  background-color: #fff8e1; /* light yellow */
  border-left: 4px solid #f59e0b;
  padding: 24px 26px;
  margin: 40px 0;
  border-radius: 6px;
  max-width: 1200px;
}

/* TITLE */
.emergency-steps h3 {
  font-size: 18px;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 18px;
}

/* LIST */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 12px;
}

/* NUMBER CIRCLE */
.step-no {
  min-width: 26px;
  height: 26px;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* STRONG TEXT */
.steps-list strong {
  color: #111827;
}

