/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  .stats {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #f5f7ff;
    padding: 20px;
  }
  
  .stat-item h1 {
    color: #5a5eff;
    font-size: 50px;
    margin: 0;
  }
  
  .stat-item p {
    margin: 5px 0 0;
    font-size:20px;
    font-weight: lighter;
  }
  
  .profile {
    text-align: center;
    padding: 40px 20px;
  }
  
  .profile h2 {
    font-size: 50px;
    color: #222;
    margin-bottom: 20px;
  }
  
  .profile p {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 20px;
    color: #555;
  }

  .content-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    
    text-align: center;
    background-color: #ffffff;

  }
  
  .content-section p {
    font-size: 20px;
    color: #333333;
    margin: 20px 0;
  }
  

  .provider-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
  }
  
  .provider-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
  }
  
  .provider-section h2 span {
    font-weight: bold;
    color: #0b304d;
  }
  
  .provider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f5f7ff;
  }
  
  .item .icon {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    border-radius: 50%;
  }
  
  .item p {
    font-size: 14px;
    margin: 0;
    text-align: left;
  }

  .about-section {
    background-color: #eaf2ff;
    text-align: center;
    padding: 60px 20px;
    position: relative;
  }
  
  .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg-page-header.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2; /* Light fade effect for the dots */
  }
  
  .content {
    position: relative;
    z-index: 1; /* Ensures content appears above background */
  }
  
  .content h1 {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 20px;
  }
  
  .content p {
    font-size: 1.2em;
    color: #333333;
    line-height: 1.6;
  }



  /* General styles remain unchanged */

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  body {
      font-size: 14px;
  }

  .stats {
      flex-direction: column;
      padding: 10px;
  }

  .stat-item h1 {
      font-size: 36px;
  }

  .stat-item p {
      font-size: 16px;
  }

  .profile {
      padding: 20px 10px;
  }

  .profile h2 {
      font-size: 30px;
  }

  .profile p {
      font-size: 16px;
  }

  .content-section {
      padding: 20px 10px;
  }

  .content-section p {
      font-size: 16px;
  }

  .provider-section {
      padding: 20px 10px;
  }

  .provider-section h2 {
      font-size: 20px;
  }

  .provider-grid {
      grid-template-columns: 1fr; /* One column layout */
      gap: 15px;
  }

  .item {
      padding: 10px;
  }

  .item .icon {
      width: 30px;
      height: 30px;
  }

  .item p {
      font-size: 12px;
  }

  .about-section {
      padding: 40px 10px;
  }

  .about-section h1 {
      font-size: 24px;
  }

  .about-section p {
      font-size: 16px;
  }

  .nav-item {
      text-align: center;
  }

  .navbar-collapse {
      flex-direction: column;
  }

  .footer1 {
      font-size: 14px;
  }
}

/* Mobile View (max-width: 480px) */
@media (max-width: 480px) {
  .stat-item h1 {
      font-size: 28px;
  }

  .stat-item p {
      font-size: 14px;
  }

  .profile h2 {
      font-size: 24px;
  }

  .content-section p {
      font-size: 14px;
  }

  .provider-section h2 {
      font-size: 18px;
  }

  .item p {
      font-size: 10px;
  }

  .about-section h1 {
      font-size: 20px;
  }

  .about-section p {
      font-size: 14px;
  }
}
