.section-1 {
    /* background-image: url('../images/about-page-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    background-color: #0F5D9DC4;
    opacity: 0.6;
}

.abput-page-heading {
    font-size: 50px;
    font-family: "Poppins";
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 10px;

}


.contact-section {
    display: flex;
    justify-content: space-around;
    padding: 50px;
    gap: 2%;
    background-color: #fff;
    color: #1c1c1c;
  }
  
  .contact-left {
    max-width: 45%;
  }
  
  .contact-left h2 {
    font-size: 32px;
    color: #003a78;
    margin-bottom: 20px;
  }
  
  .contact-left h2 span {
    color: #003a78;
  }
  
  .contact-left p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .info-item {
    display: flex;
    /* align-items: center; */
    gap: 15px;
  }
  
  .icon {
    width: 50px;
    height: 50px;
    background-color: #003a78;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 20px;
  }
  
  .contact-right {
    background-color: #e0f0fb;
    padding: 30px;
    border-radius: 10px;
    max-width: 50%;
    width: 100%;
  }
  
  .contact-right h3 {
    font-size: 20px;
    color: #003a78;
    margin-bottom: 20px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .input-row {
    display: flex;
    gap: 10px;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .contact-form button {
    background-color: #003a78;
    color: white;
    padding: 8px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    align-self: flex-start;
  }
  
  .contact-form button:hover {
    background-color: #0053a8;
  }

/* HD (1366x768) Responsiveness */
@media screen and (min-width: 1360px) and (max-width: 1370px) and (min-height: 760px) and (max-height: 770px) {
    .contact-section {
        padding: 40px 30px;
        gap: 30px;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-info h2 {
        font-size: 24px;
    }

    .contact-info p {
        font-size: 15px;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
    }
}

/* Full HD (1920x1080) Responsiveness */
@media screen and (min-width: 1920px) {
    .contact-section {
        padding: 40px 100px;
        gap: 50px;
    }

    .contact-info {
        padding:0px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-info p {
        font-size: 18px;
    }

    .contact-form {
        padding: 40px;
    }

    .contact-form h2 {
        font-size: 32px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 18px;
    }
}

/* Mac Devices (1440x900) Responsiveness */
@media screen and (min-width: 1440px) and (max-width: 1440px) and (min-height: 900px) and (max-height: 900px) {
    .contact-section {
        padding: 45px 35px;
        gap: 35px;
    }

    .contact-info {
        padding: 35px;
    }

    .contact-info h2 {
        font-size: 26px;
    }

    .contact-info p {
        font-size: 16px;
    }

    .contact-form {
        padding: 35px;
    }

    .contact-form h2 {
        font-size: 26px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .contact-info {
        width: 100%;
        padding: 25px;
    }

    .contact-info h2 {
        font-size: 22px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-form {
        width: 100%;
        padding: 25px;
    }

    .contact-form h2 {
        font-size: 22px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }
}