/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Navigation */
  nav {
    background-color: #004466;
    color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
  }
  nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav .logo {
    font-size: 1.8em;
    margin: 0;
  }
  nav .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  nav .nav-links li {
    margin-left: 20px;
  }
  nav .nav-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
  }
  nav .nav-links a:hover {
    color: #a8d8ea;
  }
  
  /* Menu Toggle (Mobile) */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
  }
  
  /* Header / Hero Section */
  header {
    background: linear-gradient(rgba(0, 68, 102, 0.7), rgba(0, 68, 102, 0.7)),
                url('assets/Hospital_2030.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px; /* Offset for fixed nav */
  }
  
  header .header-content {
    width: 100%;
  }

  header h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  header p {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  header .btn {
    background: #a8d8ea;
    color: #004466;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
  }
  header .btn:hover {
    background: #80c4d4;
  }
  
  /* Section Styles */

  #about p {
    font-size: 1.2em;
    text-align: left !important;
  }
  /* Enhance About Section Container */
  #about .container {
    background-color: #eefaff;
    padding: 30px;
    text-align: left !important;
    border-radius: 5px; 
  }

  
  section {
    padding: 60px 0;
  }
  section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #004466;
  }
  section:not(#about) p {
    text-align: center;
    color: #333;
  }
  
  
  /* Speakers Section */
  .speaker-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .speaker {
    width: 300px;
    margin: 20px;
    background: #f7f7f7;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s;
  }
  .speaker:hover {
    transform: translateY(-10px);
  }
  .speaker img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  /* Form Styles */
  form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #004466;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
  }
  form .btn {
    display: block;
    width: 100%;
    background: #004466;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
    box-sizing: border-box;
  }
  form .btn:hover {
    background: #002f3d;
  }
  
  /* Contact Section */
  #contact p {
    text-align: center;
    font-size: 1.1em;
  }
  
  /* Footer */
  footer {
    background: #004466;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
  }
  .modal-content {
    background: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    text-align: center;
    position: relative;
  }
  .close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 1.5em;
    cursor: pointer;
    color: #aaa;
  }
  .close:hover {
    color: #000;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    nav .nav-links {
      display: none;
      flex-direction: column;
      background: #004466;
      width: 100%;
    }
    nav .nav-links li {
      margin: 10px 0;
      text-align: center;
    }
    .menu-toggle {
      display: flex;
    }
    header h2 {
      font-size: 2.5em;
    }
  }
  