/* style.css */
body {
    font-family: 'Segoe UI', sans-serif;
    padding-top: 70px;
}






 .carda-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .carda {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 30px 20px;
      text-align: center;
      max-width: 300px;
      flex: 1 1 280px;
      transition: transform 0.3s ease;
    }

    .carda:hover {
      transform: translateY(-5px);
    }

    .carda-icon {
      font-size: 40px;
      color: #007BFF;
      margin-bottom: 15px;
    }

    .carda h3 {
      margin: 10px 0;
      font-size: 20px;
      color: #333;
    }

    .carda p {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
    }
    
    
    
    
    
    
    
    
    
    
    
    














.navbar-brand {
    font-weight: bold;
}
  .header-image {
      width: 100%;
      height: 300px;
      background: url('img/aq.jpeg') no-repeat center center;
      background-size: cover;
      position: relative;
    }

    .header-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    .header-overlay h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .services-section {
      padding: 60px 20px;
      background-color: #f8f9fa;
    }

    .service-card {
      background: white;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 30px;
      text-align: center;
      transition: box-shadow 0.3s;
      height: 100%;
    }

    .service-card:hover {
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .service-icon {
      font-size: 3rem;
      color: #007bff;
      margin-bottom: 15px;
    }

    .service-title {
      font-size: 1.25rem;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .split-section {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 50vh;
      padding: 40px;
      background-color: #f8f9fa;
    }

    .split-left, .split-right {
      flex: 1;
      padding: 20px;
    }

    .split-left h1 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .split-left p {
      font-size: 1.1rem;
      color: #555;
    }

    .split-right img {
      width: 100%;
      height: 50vh;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
      .split-section {
        flex-direction: column;
        text-align: center;
        height: auto;
      }

      .split-left, .split-right {
        width: 100%;
      }

      .split-right {
        margin-top: 20px;
      }
    }
.section-header {
      text-align: center;
      margin-bottom: 50px;
    }
.faq-section {
      background: #fff;
      padding: 40px 30px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-section h2 {
      text-align: center;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .faq-section p.lead {
      text-align: center;
      color: #555;
      margin-bottom: 40px;
    }

    .card-header {
      background-color: #007bff;
      color: white;
    }

    .card-header h5 button {
      color: #fff;
      text-decoration: none;
    }

    .card {
      margin-bottom: 15px;
      border: none;
      border-radius: 5px;
      overflow: hidden;
    }
    .image-card {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .image-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .image-title-top {
      position: absolute;
      top: 0;
      width: 100%;
      background-color: #007bff;
      color: #fff;
      padding: 10px;
      font-weight: bold;
      text-align: center;
    }

    .image-caption-bottom {
      position: absolute;
      bottom: 0;
      width: 100%;
      background-color: #007bff;
      color: #fff;
      padding: 10px;
      text-align: center;
    }
    .hero-image {
      width: 100%;
      height: auto;
      max-height: 600px;
      object-fit: cover;
    }

    .highlight-section {
      background-color: #222; /* Dark color */
      color: #fff;
      text-align: center;
      padding: 60px 20px;
    }

    .highlight-section h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .highlight-section h1 {
        font-size: 2rem;
      }
    }
.hero {
    background: url('img/a1.jpeg') no-repeat center center/cover;
    height: 60vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px #000;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}