/* About Banner Section */
.about-banner {
    background-image: url('https://i.ibb.co/TxvM0fgB/13.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
  }
  
  .about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for better contrast */
    z-index: 1;
  }
  
  .about-banner-content {
    position: relative;
    z-index: 2;
  }
  
  .about-banner-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .about-banner-content p {
    font-size: 1rem;
    color: #a5f389;
  }
  
  .about-banner-content p a {
    color: #a5f389;
    text-decoration: none;
    margin-right: 5px;
  }
  
  .about-banner-content p a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .about-banner {
      height: 40vh;
    }
  
    .about-banner-content h1 {
      font-size: 2rem;
    }
  
    .about-banner-content p {
      font-size: 0.9rem;
    }
  }














  /* .services-section {
    padding: 60px 40px;
    background: #fff;
  }
  
  .services-title {
    background-color: #5f20e9;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 1.8rem;
    letter-spacing: 1px;
    border-radius: 5px;
    margin-bottom: 40px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }
  
  .read-more-btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
  }
  
  .read-more-btn:hover {
    background: #0056b3;
  }
   */