body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
  }

  .project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    text-align: center;
  }

  .project-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 16, 26, 0.4); /* Light blue overlay */
    transform: translate(0, 0);
    transition: transform 0.4s ease;
    z-index: 1;
  }

  .project-caption {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #ff5e13;
    padding: 10px;
    text-align: center;
    position: relative;
    z-index: 2;
  }



  /* --------contact  page  */
        .contact-area .row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .contact-img-wrap img {
            width: 100%;
            height: auto;
            /* Ensures proper aspect ratio */
            object-fit: cover;
            /* Ensures it looks good */
        }

        .contact-form-wrap,
        .contact-img-wrap {
            width: 100%;
            /* Full width within their columns */
        }

        .contact-area .col-lg-6 {
            max-width: 50%;
            /* Ensures each takes half the row width */
            flex: 0 0 50%;
            /* Adjusts for equal width */
        }

        @media (max-width: 768px) {
            .contact-area .col-lg-6 {
                max-width: 100%;
                flex: 0 0 100%;
                /* Full width on smaller screens */
            }
        }
    
/*  home page about us section start here*/

            .icon-box {
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .years-box {
                width: 120px;
                height: 120px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                padding: 10px;
            }

            .image-box {
                position: relative;
            }

            .about-section {
                background-color: #f8f9fa;
                /* Light grey color */
            }
        
/*  home page about us section end here*/



/* client section  start here*/
.clients-section {
    padding: 50px 0;
    background-color: #f8f9fa;
  }
  .client-box {
    background-color: rgb(0, 34, 90);
    color: rgb(255, 94, 19);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 35px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .client-box:hover {
    transform: scale(1.05);
    background-color: rgb(255, 94, 19);
    color: rgb(0, 34, 90);
  }
  .clients-section h2 {
    color: rgb(0, 34, 90);
    font-weight: bold;
    margin-bottom: 30px;
  }
/* Stylish Underline */
.underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, rgb(255, 94, 19), rgb(0, 34, 90));
    margin: 0 auto 40px;
    border-radius: 5px;
  }



  /* .clients-section {
    padding: 50px 0;
    background-color: #f8f9fa;
  }
  .client-card {
    background-color: rgb(0, 34, 90);
    color: rgb(255, 94, 19);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 30px;
  }
  .client-card:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  .client-card h5 {
    font-weight: bold;
    color: #f8f9fa;
  }
  .clients-section h2 {
    color: rgb(0, 34, 90);
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
  } */