.contact-container {
    padding: 90px 0;
}

.contact-heading h1{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    /* text-align: center; */
    color: #000000;
    padding: 0px;
    margin: 0px 0px 30px 0px;
    font-weight: 700;
}


.form-control1 {
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 19px;
    color: #000000;
    padding: 28px 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 28%);
}

textarea.form-control {
    min-height: 150px;
}

.con-btn {
    background-color: #f7aa21;
    border: none;
    color: white;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #0a0a0a;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.info-cards-container{
    margin-top: 50px !important ;
}
.info-card {
    background-image: url("../images/common/backchange.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    height: 120px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
}

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

.info-icon {
    /* width: 40px;
    height: 40px; */
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #f7aa21;
}

.info-text {
    color: #ffffff;
}
.info-text a:hover{
    color:#ffa000 !important;
}
.footer-copyright {
    background: #000;
    /* Adjust to your brand color */
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
  }
  
  .footer-copyright a {
    color: #f7aa21;
    /* Accent color */
    text-decoration: none;
  }
  
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-copyright p{
    color:white;
  }
@media (max-width: 991px) {
    .map-container {
        margin-top: 30px;
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-container {
        padding: 40px 0;
    }
    
    .info-cards-container {
        margin-top: 30px;
    }
}