:root {
  --blue: #0054a6;
  --dark: #0f172a;
  --light: #f8fbff;
  --red: #e13d3a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}




/* BANNER */
.service-banner {
  padding: 80px 0;
  background: linear-gradient(rgba(0,84,166,.95), rgba(0,20,40,.95));
  color: white;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  margin: 15px 0;
}

.hero-subtitle {
  max-width: 750px;
  margin: auto;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 25px 0;
}

.hero-stats i { color: #ffcc00; }

.btn-emergency {
  background: var(--red);
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* DETAILS */
.service-details {
  padding: 80px 0;
  background: var(--light);
}

.service-details h2 {
  color: var(--blue);
  margin-bottom: 15px;
}

.service-details p {
  margin-bottom: 25px;
  color: #444;
}

.service-details h3 {
  margin: 25px 0 10px;
}

.service-details ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.service-details li {
  margin-bottom: 8px;
}

/* General Footer Styling */
.modern-footer {
    background-color: #0f172a; /* Dark navy (professional) */
    color: #ffffff;
    padding-top: 50px;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid – SAME */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 40px;
}

/* BRAND */
.footer-brand h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0054a6; /* LOGO BLUE */
}

.footer-brand h2 span {
    color: #e13d3a; /* LOGO RED */
}

.brand-label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    color: #cbd5e1;
}

.modern-footer h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

/* LINKS */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.footer-links li::before {
    content: "▶";
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 4px;
    color: #0054a6; /* BLUE accent */
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* NEWSLETTER */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    background: #1a2332;
    border: 1px solid #334155;
    padding: 10px;
    color: white;
    width: 100%;
}

.newsletter-form button {
    background-color: #0054a6; /* LOGO BLUE */
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #e13d3a; /* LOGO RED */
}

/* CONTACT INFO */
.footer-contact-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    color: #e13d3a; /* RED icons */
    margin-right: 12px;
    margin-top: 4px;
}

/* BOTTOM BAR */
.footer-bottom {
    background-color: #0b1220;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #cbd5e1;
}

.copyright-text a {
    color: #0054a6; /* BLUE link */
    text-decoration: none;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    background: #e13d3a; /* RED like logo */
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #0054a6; /* BLUE hover */
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title {
    font-size: 19px;
    font-weight: 800;
    margin: 10px 0 20px;
    line-height: 1.1;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
}

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links li {
        padding-left: 0;
    }

    .footer-links li::before {
        display: none;
    }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .menu { 
    display: none; 
    position: absolute;
    background: white;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: 20px;
  }
  .menu.active { display: flex; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
/* General Styles */
.medical-details {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  padding: 60px 20px;
  background-color: #f8fafc;
}

.container {
  margin: 0 auto;
}

/* Lead Text */
.lead-text {
  font-size: 1.25rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 50px;
  padding: 0 10%;
  border-left: 5px solid #0056b3;
  background: white;
  padding: 20px 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sub-heading {
  font-size: 1.4rem;
  color: #0056b3;
  margin-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 10px;
}

/* List Styling */
.service-points {
  list-style: none;
  padding: 0;
}

.service-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #475569;
}

/* Custom Bullet Points */
.service-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0056b3;
  font-weight: bold;
}

/* Checkmark variation for the "Trust Us" section */
.check-list li::before {
  content: "✓";
  color: #10b981; /* Success Green */
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .lead-text {
    padding: 20px;
    font-size: 1.1rem;
  }
}


.gallery-section { background: #06111d; padding: 80px 0; }
.section-heading.white { color: var(--white); text-align: center; font-size: 2rem; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-card { height: 300px; border-radius: 15px; overflow: hidden; border: 4px solid rgba(255,255,255,0.1); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
