head{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  
  header {
    background-color: #f80e0e;
    padding: 5px;
    text-align: right;
  }
  
  header h1 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  
 
  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin:15px;
  }
  
 
  .hero-container {
    position: relative;
  
  }
  
  .hero-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }
  
  .image-text {
    position: absolute;
    transform: translate(-50%, -50%);
 
  }
  
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
  }
  
  .image-container img {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
  }
  
  
  h1, h2, h3 {
    margin: 20px;
  }
  
  
  .flex-labels {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .section-title {
    text-align: center;
    margin: 40px 0 20px;
  }
  

  .service-section {
    padding: 0 20px 40px;
  }
  
  .service-pair {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
  }
  

  .service-card {
    flex: 1 1 400px;
    max-width: 450px;
    text-align: center;
  }
  
  .service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .service-card h2 {
    margin-top: 15px;
    font-size: 22px;
  }
  
  .service-card p {
    margin-top: 10px;
    font-size: 16px;
    padding: 0 10px;
  }
  
 


  .card-img-top {
    object-fit: cover;
    height: 200px;
  }
  



  
  .footer {
    background: #0f1114;
    color: #d1d1d1;
    font-family: 'Segoe UI', sans-serif;
    padding: 50px 20px 30px;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #00c292;
  }
  
  .footer-newsletter form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .footer-newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    flex: 1 1 200px;
  }
  
  .footer-newsletter button {
    background: #00c292;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
  }
 
  
  .social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #0f0f0f;
    background-color: #f1f0f0;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s;
  }

  .card {
    height: 100%;
  }
  .card-img-top {
    height: 180px; /* Adjust height to maintain uniformity */
    object-fit: cover;
  }
  .card {
    width: 100%; /* Ensures full-width of the column */
    max-width: 350px; /* Set a maximum width for cards */
    margin: 0 auto; /* Center cards */
  }
  .col-6 {
    display: flex;
    justify-content: center;
  }  
  
  