/* About Us Title Section */
.about-title {
    background-color: #0a1e2b; /* Dark background color */
    height: 200px; /* Height adjusted to match design */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-title h1 {
    color: white;
    font-size: 2.5em; /* Adjusted for visibility */
    font-weight: bold;
    text-transform: capitalize;
  }

/* About Us Content Section */
.about-content {
    display: flex;
    align-items: center;
    padding: 100px;
    gap: 20px;
  }
  
  .about-text {
    flex: 1.2; /* Slightly larger space for text */
    font-size: 1.5em; /* Increased font size */
    line-height: 1.8;
    color: #333;
    text-align: justify; /* Justify text for alignment */
  }
  
  .about-text strong {
    color: #1e73be; /* Blue color for emphasis */
  }
  
  .about-image {
    flex: 0.8; /* Slightly smaller space for image */
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px; /* Optional rounded corners */
  }
  @media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}

/* Vision and Mission Section */
.vision-mission {
    padding: 100px;
    background-color: #f9f9f9; /* Light background color */
  }
  
  .vision-mission .item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .vision-mission .icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
  }
  
  .vision-mission .icon img {
    width: 100%;
    height: auto;
  }
  
  .vision-mission .text h3 {
    color: #1e73be; /* Blue color for title */
    font-size: 1.5em;
    font-style: italic;
    margin-bottom: 5px;
  }
  
  .vision-mission .text p {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
  }
  /* Values Section */
.values-section {
    background-color: #0a1e2b; /* Dark background color */
    color: #d1d1d1;
    text-align: center;
    padding: 60px 20px;
  }
  
  .values-section h2 {
    font-size: 2.5em;
    color: white;
    margin-bottom: 10px;
    font-style: italic;
  }
  
  .values-section .subtitle {
    font-size: 1.1em;
    color: #b0c4de; /* Lighter shade for the subtitle */
    margin-bottom: 40px;
  }
  
  .values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .value-box {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background */
    border: 1px solid #1e73be; /* Blue border color */
    border-radius: 10px;
    padding: 20px;
    width: 250px; /* Fixed width for consistent size */
    text-align: center;
    color: #b0c4de;
  }
  
  .value-box h3 {
    font-size: 1.3em;
    color: #4da8da; /* Light blue for the titles */
    margin-bottom: 10px;
    font-style: italic;
  }
  
  .value-box p {
    font-size: 0.95em;
    line-height: 1.6;
  }
  