/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    /*background-color: #f9f9f9;*/
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(163, 218, 255, 0.7));
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  /* Headings */
  h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: #0a223f;
  }
  
  h1 span,
  h2 span {
    color: #0d6efd;
  }
  
  /* Links & Buttons */
  a {
    text-decoration: none;
    color: #0d6efd;
  }
  
  .btn {
    border-radius: 8px;
    transition: 0.3s;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
  }
  
  /* Sections */
  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  /* Hero */
  .hero {
    background: linear-gradient(rgba(10, 34, 63, 0.7), rgba(10, 34, 63, 0.8)), url('/assets/img/hospital-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
  }
  
  /* Cards & Icons */
  .icon-box {
    transition: all 0.3s;
    padding: 20px;
    border-radius: 1rem;
    background:  linear-gradient(rgba(255, 255, 255, 0.7), rgba(117, 179, 255, 0.8)), url('/assets/img/card_bg.jpg') center/cover no-repeat;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
    width: 420px !important;
  }

  @media only screen and (max-width: 600px) {
    .icon-box {
      width: 95% !important;
    }
  }
  
  .icon-box img {
    transition: transform 0.3s;
  }
  
  .icon-box:hover img {
    transform: scale(1.1);
  }
  
  /* Tables (Admin) */
  .table th {
    background-color: #f1f5f9;
  }
  
  .alert {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
  }
  
  .alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
  }
  
  .alert-danger {
    background-color: #f8d7da;
    color: #842029;
  }
  
  /* Footer */
  footer {
    /*background-color: #0a223f;*/
    color: #fff;
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
  }

  footer h5 {
    border-bottom: 2px solid #0d6efd;
    width: 200px; /* or any specific size */
  }

  footer a {
    color: #fff;
    transition: color 0.3s ease;
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: none;
    color: #0d6efd !important;
  }  
  

  blockquote {
    background: #fff;
    border-left: 4px solid #0d6efd;
    margin: 10px auto;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
  }
  
  blockquote p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem; /* Add space below quote */
  }
  
  .blockquote-footer {
    display: block;
    font-size: 0.875rem;
    color: #555;
    font-style: normal;
    margin-top: 0.5rem;
  }
  
  .service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-icon img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
  }
  
  #meetdocs {
    background:  linear-gradient(rgba(255, 255, 255, 0.7), rgba(117, 179, 255, 0.8)), url('/assets/img/doctors_bg.svg') center/cover no-repeat;
    background-attachment: fixed;
    width: 99.6vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 20px;
    }