/*  contact us */

.contact-info-sec{
    padding:50px;
    background-color:#e8f0fe;
}

.contact-info-sec-wrapper {
    max-width: 1400px;
    margin: 0px auto;
    display: flex;
    column-gap: 40px;
}
.contact-info-sec-items {
    width: 33.33%;
    text-align: center;
    background-color: #103358;
    padding: 20px;
    border-radius: 15px;
}

.contact-info-sec-items img{
    height:50px;
    width:50px;
}
.contact-info-sec-items h5 {
    color: #ffff;
    margin: 15px 0px;
}
.contact-info-sec-items a {
    color: #ffff;
}
.contact-info-sec-items p{
    color:white;
}
.contact-sec2 {
    background-color: #e8f0fe;
    padding-top: 50px;
    padding-bottom: 50px;
}
.contact-sec2-wrapper {
    display: flex;
    column-gap: 40px;
    max-width: 1400px;
    margin: 0px auto;
}
.contact-sec2-col1, .contact-sec2-col2 {
    width: 50%;
}
.wpcf7 input[type=text],  .wpcf7 input[type="tel"], .wpcf7 input[type="email"], .wpcf7 textarea , .wpcff7 input[type="number"] {
    width: 100%;
    border: 1px solid #0063CC;
    background-color: #F5FAFF;
    border-radius: 5px;
}
.wpcf7 input[type=submit] {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    background-color: #0063CC;
    padding: 15px 30px;
    border-radius: 5px;
    position: relative;

}
.form-half-row {
    display: flex;
    column-gap: 20px;
}
.wpcf7-not-valid {
    border: 1px solid #d73333 !important;
}
.wpcf7-not-valid-tip {
    font-size: 14px;
}
/* Tablet and below - stack items vertically */
@media (max-width: 768px) {
    .contact-info-sec-wrapper {
        flex-direction: column;
        row-gap: 20px;
    }
    .contact-info-sec-items {
        width: 100%;
        margin-bottom: 0;
    }
}

/* Mobile specific adjustments */
@media (max-width: 480px) {
    .contact-info-sec {
        padding: 30px 20px !important;
    }
    .contact-info-sec-items {
        padding: 20px 15px;
    }
    .contact-info-sec-items img {
        height: 45px;
        width: 45px;
    }
}
.contact-icons-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.contact-icons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
}

.contact-icon-box {
    text-align: center;
}

.icon-img img {
    max-width: 50px;
    height: auto;
    margin-bottom: 15px;
}

.icon-title {
    font-size: 22px;
    font-weight: 600;
    color: #5e3ca4;
    margin-bottom: 10px;
    margin-top:0px;
}

.icon-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
    font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-icons-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-icons-container {
        grid-template-columns: 1fr;
    }
}

