
 .about-section {
      position: relative;
      height: auto;
     
      color: white;

      & img{
        width: 100%;
      }
    }



    .contact-header {
   
      background: linear-gradient(to right, rgba(0, 32, 93), rgba(0, 32, 93, 0.8));
      color: white;
      padding: 40px 20px;
      text-align: center;
    }

    .contact-card {
      background: white;
      border-radius: 12px;
      text-align: center;
      padding: 25px;
      transition: transform 0.3s;
      height: 200px;
      font-size: 20px;
    }

    .contact-card:hover {
      transform: translateY(-5px);
    }

    .contact-card i {
      font-size: 28px;
      margin-bottom: 10px;
      color: rgba(0, 32, 93);
    }

    .map-container {
      overflow: hidden;
      height: 400px;
    }

    .text-num{
      color: rgba(0, 32, 93);
    }
    .contact-form {
      background-color: #fff;
      padding: 50px 20px;
      text-align: center;
    }

    .contact-form h2 span {
      color: rgba(0, 32, 93);
    }

    .form-control, .form-control:focus {
      border-radius: 0;
      box-shadow: none;
    }

    .btn-send {
      background-color: rgba(0, 32, 93);
      color: white;
      border-radius: 0;
      padding: 10px 30px;
      font-weight: 600;
    }

    .btn-send:hover {
      background-color: rgba(0, 32, 93);
    }


    .contact-info{
   display: flex;
   justify-content: center;
   gap: 40px;
    }

    .contact-img{
      align-content: center;
      margin-left: 20px;

        & img{
          height:auto;
          width: 100%;
          border-radius: 20px;
        }
    }

    @media (max-width: 768px) {
      .contact-info{
        flex-direction: column;
    }

    
    .contact-img{
      align-items: center;
      width: 90%;
      margin-top: 50px;

        & img{
          height:auto;
          width: 100%;
          border-radius: 20px;
        }
    }

}
