/* General Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #333;
  }
  /* Custom Card */
  .custom-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 2rem;
  }
  
  .custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }
  
  .custom-card hr {
    margin: 1rem 0;
    border-top: 1px solid #eee;
  }
  
  /* Icon Placeholder */
  .icon-placeholder {
    width: 80px;
    height: 80px;
    background-color: #e9f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-placeholder i {
    color: #0d6efd;
    font-size: 2rem;
  }
  
  /* Icon Box (used in features) */
  .icon-box {
    width: 60px;
    height: 60px;
    background-color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
  }
  
  .icon-box i {
    font-size: 1.5rem;
  }
  
  /* Hero Section */
  section.text-center.text-white.bg-dark.py-5 {
    background: linear-gradient(135deg, #0d6efd 0%, #0033cc 100%);
  }
  .rounded-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-top-right-radius: 120px; /* Big curve only on top right */
    border-bottom-left-radius: 30px; /* Small curve bottom left (optional, stylish) */
    display: block;
    margin: 0 auto; /* Center the image */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Nice soft shadow */
  }
  
  .rounded-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  
  .footer {
    background: #f7f7f7;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
    align-items: center;
  }
  
  .footer-item h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .footer-logo {
    max-width: 180px;
    height: auto;
  }
  
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-list li {
    font-size: 14px;
    margin: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .social-icons a {
    font-size: 22px;
    color: #0077b5;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    color: #333;
  }
  .hero-section {
    background: url('stethoscope.jpeg') center center / cover no-repeat;
    background-color: #000;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  /* Adding a gradient overlay for better text visibility */
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1; /* Place the gradient behind text */
  }
  
  /* Ensuring text is on top of overlay */
  .hero-section .container {
    position: relative;
    z-index: 2;
  }
  .contact-section {
      background-color: #f8f9fa;
    }
    
    .contact-section .form-control {
      border-radius: 0.375rem;
      box-shadow: none;
      border: 1px solid #ced4da;
      padding: 1.2rem;
    }
    
    .contact-section .btn {
      padding: 1rem;
      font-size: 1.1rem;
      border-radius: 0.375rem;
    }
    
    .contact-section .btn-primary {
      background-color: #007bff;
      border: 1px solid #007bff;
    }
    
    .contact-section .btn-primary:hover {
      background-color: #0056b3;
      border: 1px solid #0056b3;
    }
    
    .contact-section h2 {
      font-size: 2.5rem;
      color: #343a40;
    }
    
    .contact-section p {
      font-size: 1.1rem;
      color: #6c757d;
    }
  /* Make it nice on small devices */
  @media (max-width: 600px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    footer .col-md-6 {
      text-align: center;
    }
  
    footer .text-md-end {
      text-align: center !important;
    }
  
    .icon-box, .icon-placeholder {
      width: 60px;
      height: 60px;
    }
  
    .custom-card {
      padding: 1.5rem;
    }
  }
  .founder-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  border-left: 5px solid #0d6efd;
  border-right: 5px solid #0d6efd;
  transition: transform 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(13,110,253,0.2);
}
.feature-box {
  border-top: 6px solid #007bff;   /* Left border - success green */
  border-right: 6px solid #17a2b8;  /* Right border - info cyan */
  border-bottom: none;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}


  