 :root {
    --primary-color: #2c7da0;      /* Medical Blue */
    --secondary-color: #e9f5ff;    /* Light Clinic Blue */
    --accent-color: #25d366;       /* WhatsApp Green */
}

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

.navbar {
    background-color: #e9f5ff; /* Soft Medical Blue */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.navbar-brand {
    font-size: 18px;
    line-height: 1.2;
    color: var(--primary-color) !important;
}
.navbar-brand span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}
/* Navbar links – Clinic Style */
.navbar-nav .nav-link {
    color: #0b3c5d;
    font-weight: 500;
    padding: 10px 18px;
    margin: 0 6px;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    background: #cfe9ff;
    color: #0b3c5d;
    transform: translateY(-2px);
}

.banner-section {
    background-color: #0b3c5d;
    height: 50vh;
}
.hero-banner {
    width: 100%;
    background: linear-gradient(135deg, #0d6efd, #084298);
}

.banner-content {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.banner-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}



/* Mobile View */
@media (max-width: 768px) {

    .banner-content {
        min-height: 200px;
        padding: 15px;
    }

    .banner-content h1 {
        font-size: 22px;
        line-height: 1.3;
        word-break: break-word;
    }
}

  .service-steps {
   
    padding: 60px 0;
}

/* .step-card {
    max-width: 900px;
    padding: 30px 35px;
    border-radius: 12px;
    margin-bottom: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.step-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}


.step-muted {
    background: #9aa6b2;
    color: #fff;
    margin-left: auto;
}

.step-muted h5,
.step-muted p {
    color: #ffffff;
    opacity: 0.95;
}


.step-active {
    background: #ffffff;
    margin-right: auto;
}


@media (max-width: 768px) {
    .step-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 22px;
    }

    .step-card h5 {
        font-size: 18px;
    }

    .step-card p {
        font-size: 15px;
    }
} */
.service-steps {
    background: #f6f8fb;
    padding: 70px 0;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Hover Effect */
.service-card:hover {
    background: linear-gradient(135deg, #0d6efd, #084298);
    transform: translateY(-8px);
}

.service-card:hover h5,
.service-card:hover p {
    color: #ffffff;
}

/* Mobile View */
@media (max-width: 768px) {
    .service-card {
        padding: 22px;
    }

    .service-card h5 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14.5px;
    }
}
.info-cards {
    padding: 70px 0;
    background: #ffffff;
}

.info-card {
    border: 2px solid #0d6efd;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    background: #f8f9fa;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.info-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 18px;
}

.info-card ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.info-card ul li {
    font-size: 15.5px;
    padding: 8px 0;
    color: #333;
    position: relative;
    padding-left: 22px;
}

.info-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-size: 14px;
}

/* Hover Effect */
.info-card:hover {
    background: linear-gradient(135deg, #0d6efd, #20c997);
    transform: translateY(-10px);
    border-color: transparent;
}

.info-card:hover h4,
.info-card:hover ul li {
    color: #ffffff;
}

.info-card:hover ul li::before {
    color: #ffffff;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .info-card {
        padding: 24px;
    }

    .info-card h4 {
        font-size: 20px;
    }

    .info-card ul li {
        font-size: 14.5px;
    }
}

    .footer-section {
  background: #ffffff;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}


.footer-title a {
  text-decoration: none; 
  color: inherit;        
  transition: 0.3s;      
}


.footer-title a:hover {
  color: #0d6efd;        
}

.footer-text {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

.footer-links,
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-hours li {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}

.footer-links li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #0d6efd;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #f2f2f2;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-right: 8px;
  color: #0d6efd;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0d6efd;
  color: #fff;
}
.social-icons a i {
  font-size: 18px; 
  display: block;  
}

.footer {  color: black; padding: 20px 0; margin-top: 50px; } 