/* Navbar Logo Styling */
.navbar-logo {
    height: 40px;       /* Adjust the height as needed */
    width: auto;        /* Maintain aspect ratio */
    object-fit: contain;
}

.hero-section {
    background: url('../new_images/banner-2.jpg') no-repeat center center/cover;
    height: 450px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section .overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.hero-section h1,
.hero-section p {
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional extra text shadow */
}

.hero-section img {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.hero1-section {
    background: url('../new_images/banner-1.jpg') no-repeat center center/cover;
    height: 450px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero1-section img {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.section {
    padding: 50px 0;
}

<!-- Footer -->
<footer class="footer mt-5 py-5">
  <div class="container text-center text-md-start">
    <div class="row">
      
      <!-- About -->
      <div class="col-md-4 mb-4">
        <h5>About Thalassemia Manager</h5>
        <p>
          Thalassemia Manager is committed to providing a streamlined solution for managing thalassemia. 
          We aim to connect patients with donors and raise awareness.
        </p>
      </div>

      <!-- Quick Links -->
      <div class="col-md-4 mb-4">
        <h5>Quick Links</h5>
        <ul class="footer-links list-unstyled mt-3 text-center">
          <li><a href="home.php">Home</a></li>
          <li><a href="patients.php">Patients</a></li>
          <li><a href="donors.php">Donors</a></li>
          <li><a href="contact.php">Contact</a></li>
          <li><a href="about.php">About</a></li>
          <li><a href="privacy.php">Privacy Policy</a></li>
        </ul>
      </div>

      <!-- Follow Us -->
      <div class="col-md-4 mb-4 text-center">
        <h5>Follow Us</h5>
        <p>Stay connected through our social media channels:</p>
        <div>
          <a href="#"><i class="fab fa-facebook fa-2x me-3"></i></a>
          <a href="#"><i class="fab fa-twitter fa-2x me-3"></i></a>
          <a href="#"><i class="fab fa-instagram fa-2x me-3"></i></a>
          <a href="#"><i class="fab fa-linkedin fa-2x"></i></a>
        </div>
      </div>

    </div>

    <!-- Divider -->
    <hr class="my-4">

    <!-- Copyright -->
    <div class="text-center small">
      © 2025 Thalassemia Manager. All rights reserved. 
      <a href="#" class="fw-bold">Terms of Service</a>
    </div>
  </div>
</footer>


.footer {
  background-color: #ffffff;
  padding: 50px 0;
}

/* Color theme */
.footer,
.footer * {
  color: #000;
}

/* Headings */
.footer h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: #000000;
}

/* Paragraphs */
.footer p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Links */
.footer a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
/* Center Quick Links column content */
.footer .col-md-4:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers content horizontally */
  text-align: center;  /* centers text inside */
}

/* Optional – ensure links look consistent */
.footer-links {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.footer-links li {
  margin: 5px 0;
}
.footer a:hover {
  text-decoration: underline;
  color: #0099cc;
}

/* List styling */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 6px 0;
}

/* Social icons */
.footer i {
  color: #dc3545;
  transition: transform 0.3s ease;
}

.footer i:hover {
  transform: scale(1.1);
}




#section-1

.section {
    padding: 60px 0;
}

.section h5 {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.section p {
    color: #6c757d;
}

.section .fa-3x {
    color: #007bff;
}

.d-flex {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.text-primary {
    color: #007bff !important;
}

.me-3 {
    margin-right: 1rem !important;
}


/* Style for the "GET INVOLVED" button */
.btn-primary.btn-lg {
    background-color: #07cd3c;
    border-color: #07cd3c;
    font-weight: bold;
    padding: 10px 20px; /* Reduced padding */
    font-size: 18px;    /* Adjusted font size */
    border-radius: 30px; /* Smaller border radius */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary.btn-lg:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Style for the modal buttons */
.modal-content {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-body p {
    font-size: 18px;
    color: #333;
}

.btn-outline-primary {
    border: 2px solid #007bff;
    color: #007bff;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

.btn-outline-danger {
    border: 2px solid #dc3545;
    color: #dc3545;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
}

#section_2

.bg-primary {
    background-color: #007bff !important; /* You can change the background color */
}
.text-white {
    color: white;
}
.img-fluid {
    width: 100%;
    height: auto;
}

.custom-height {
    height: 500px; /* Ensure the height of both columns is equal */
    object-fit: cover; /* Ensures the image fills the space without distorting */
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

#our_partners
/* Partner Logo Container */
.partner-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px; /* Fixed height */
    width: 120px;  /* Fixed width */
    margin: 0 auto;
    overflow: hidden; /* Hide overflow */
}

/* Partner Logo Style */
.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container area */
}

/* Text Styling for Partner Names */
h5 {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

#login_css

/* General styles */
body {
    background-color: #f8f9fa; /* Light gray background */
    font-family: 'Arial', sans-serif;
    color: #333; /* Dark text */
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    margin: 0;
}

/* Login container */
.container {
    width: 100%;
    max-width: 350px; /* Limit the width */
    padding: 20px;
    background-color: #ffffff; /* White background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 8px; /* Rounded corners */
}

/* Heading */
.container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #007bff; /* Primary blue color */
    font-size: 1.5rem;
}

/* Form fields */
.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #880808;
}

.form-control {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 5px; /* Slightly rounded */
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

/* Role dropdown */
select.form-control {
    appearance: none; /* Remove default dropdown arrow */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%27http://www.w3.org/2000/svg%27 viewBox%3D%270 0 4 5%27%3E%3Cpath fill%3D%27%23007bff%27 d%3D%27M2 0L0 2h4z%27/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 30px; /* Add space for arrow */
}

/* Button */
.btn-login {
    background-color: #dc3545; /* Bootstrap's red */
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #c82333; /* Darker red on hover */
}



/* Align form elements with consistent spacing */
.mb-3 {
    margin-bottom: 15px;
}

#patient_dasboard

body {
    background-color: #E9E4D4;
    font-family: Arial, sans-serif;
}

.dashboard-container {
    margin-top: 50px;
    max-width: 800px;
    background-color: #E9E4D4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
}

h2 {
    text-align: center;
    color: #007bff;
    margin-bottom: 20px;
}

.logout-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logout-btn {
    font-size: 14px;
    padding: 5px 10px;
}

.table {
    margin-top: 20px;
}
#donar

body {
    background-color: #f8f9fa;
}
.container {
    margin-top: 50px;
    max-width: 900px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h2 {
    color: #007bff;
}
.btn {
    margin: 0 5px;
}
.team-banner-container {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.team-banner {
    width: 100%;
    height: 300px; /* adjust as needed */
    object-fit: cover;
    display: block;
    border-radius: 0; /* remove rounded corners */
    box-shadow: none; /* remove shadow */
}


