 :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;
    }
}

/* About Doctor Section */

.py-5{
    padding-top: 1rem !important;
}

/* Image Card */
.doctor-image-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

.doctor-image-card img {
    border-radius: 8px;
    /* max-height: 420px; */
    object-fit: cover;
    width: 100%;
    height: 550px;
    margin-top: 15px;
}

/* Doctor Name Overlay */
.doctor-name {
    margin-top: 15px;
    padding: 10px;
    background: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Text styles */
.about-doctor-section h2 {
    color: #0b2c5d;
    line-height: 1.3;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
   
    .about-doctor-section h2 {
        font-size: 1.5rem;
    }
}
/* About section content */
.about-text {
    padding-left: 50px;     /* image se distance */
    margin-top: -30px;      /* content thoda upar */
}

/* About label */
.about-label {
    color: #0d6efd;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Heading */
.about-title {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0b2c5d;
    margin-bottom: 150px;
}

/* Paragraphs */
.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 15px;
}

/* Button */
.about-btn {
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 15px;
    margin-top: 10px;
}

/* Mobile view */
@media (max-width: 768px) {
    .about-text {
        padding-left: 0;
        margin-top: 0;
        text-align: center;
    }

    .about-title {
        font-size: 1.7rem;
    }

    .about-text p {
        font-size: 15px;
    }
}

       .service-steps {
   
    padding: 60px 0;
}

.section-subtitle {
            color: #0056b3;
            font-weight: 600;
            text-transform: capitalize;
            margin-bottom: 10px;
        }

        .section-title {
            color: #001d4a; /* Deep blue color */
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 50px;
        }

        .value-card {
            background: #fff;
            border: none;
            border-radius: 4px; /* Clean sharp edges like image */
            padding: 40px;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .value-number {
            color: #0056b3;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: block;
        }

        .value-heading {
            color: #001d4a;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .value-text {
            color: #555;
            line-height: 1.7;
            font-size: 1.05rem;
        }

.testimonials {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
  font-family: Arial, sans-serif;
}

.sub-title {
  color: #0d6efd;
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonials h2 {
  font-size: 36px;
  margin: 10px 0 40px;
  color: #000;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-card p {
  color: #333;
  line-height: 1.6;
  font-size: 15px;
}

.client {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #d9d9d9;
  border-radius: 50%;
  margin-right: 12px;
}

.client h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonials h2 {
    font-size: 26px;
  }
}

.info-bar {
  background: #0d5ec4;
  padding: 20px 0;
  color: #fff;
  font-family: Arial, sans-serif;
}

.info-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

/* LEFT ITEMS */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #0d5ec4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-item small {
  font-size: 13px;
  opacity: 0.9;
}

.info-item strong {
  font-size: 15px;
  font-weight: 600;
  display: block;
}

/* RIGHT SIDE */
.info-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-right h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.schedule-btn {
  background: #fff;
  color: #0d5ec4;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    text-align: center;
  }

  .info-item {
    justify-content: center;
  }

  .info-right {
    flex-direction: column;
  }
}
.newsletter-title {
            color: #001d4a; 
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .newsletter-form-container {
            max-width: 800px; 
            margin: 0 auto;
        }

        .email-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
            display: block;
            text-align: left;
        }

        .asterisk {
            color: red;
        }

        .custom-input-group {
            display: flex;
            border: 1px solid #ced4da;
            background-color: white;
        }

        .custom-input {
            border: none;
            flex-grow: 1;
            padding: 12px 15px;
            outline: none;
        }

        .submit-btn {
            background-color: #005bc4; 
            color: white;
            border: none;
            padding: 12px 35px;
            font-weight: 600;
            transition: 0.3s;
        }

        .submit-btn:hover {
            background-color: #00469b;
        }

        /* Success Message Styling */
        #success-message {
            display: none; /* Shuruat mein hidden rahega */
            background-color: #d1e7dd;
            color: #0f5132;
            padding: 20px;
            border-radius: 4px;
            font-weight: 600;
            margin-top: 20px;
        }
.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; } 