*
{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
/*
body{
    background: linear-gradient(90deg, #0e3959 0%, #0e3959 30%, #03a9f5 30%, #03a9f5 100% );
}*/

.contactus{
    position: relative;
    width: 100%;
    padding: 40px 100px;
}
.contactus .title{
    display: flex;
    justify-content:center;
    align-items: center;
    font-size: 2em;
}

.contactus .title{
    color: #18b7ff;
    font-weight: 500;
}
.form{
    grid-area: form;
}
.info{
    grid-area: info;
}
.map{
    grid-area: map;
}
.contact{
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 35px rgba(0,0,0,0.15);
}
.box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: "form info" "form map";
    grid-gap: 20px;
    margin-top: 20px;
}
.contact h3{
    color: #0e3959;
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 10px;
}
.formBox{
    position: relative;
    width: 100%;
}
.formBox .row50{
    display: flex;
    gap:20px;
}
.inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}
.formBox .row100 .inputBox{
    width: 100%;
}
.inputBox span{
    color:#18b7ff;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 800; 
}
.inputBox input{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #333;
}
.inputBox textarea{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #333;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;
    font-weight: 800;
}
.inputBox input[type="submit"]{
    background: #ff578b;
    color: #fff;
    border:none;
    font-size: 1.1em;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
}
.inputBox ::placeholder{
    color:#999;
}
.info{
    background: #0e3959;
}
.info h3{
    color:#fff;
}
.info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info .infoBox div span{
    min-width: 40px;
    height: 40px;
    color: #fff;
    background: #18b7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    margin-right: 15px;

}
.info .infoBox div p{
    color: #fff;
    font: size 1.1em;
}
.info .infoBox div a{
    color: #fff;
    font: size 1.1em;
    text-decoration: none;
}
.sci{
    margin-top: 40px;
    display: flex;
}
.sci li{
    list-style: none;
    margin-right: 15px;
}
.sci li a{
    color:#fff;
    font-size: 2em;
    color: #ccc;
}
.sci li a:hover{
    color: #fff;
}
.map{
    padding: 0;
}
.map iframe{
    width: 100%;
    height: 100%;
}
.follow-us {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.follow-us .icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
}

/* Platform Colors */
.follow-us .linkedin {
    background: #0a66c2;
}

.follow-us .instagram {
    background: #e1306c;
}

.follow-us .twitter {
    background: #141d22;
    font-size: 15px;
}

/* Hover */
.follow-us .icon:hover {
    opacity: 0.85;
}
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;   /* ⬅ centers Follow Us + icons */
    text-align: center;
}

.follow-us {
    display: flex;
    justify-content: center;  /* ⬅ centers icons horizontally */
    gap: 10px;
    margin-top: 10px;
}

/*Responsiveness */
@media(max-width: 991px){
    body{
        background: white;
    }
    .contactus{
        padding: 20px;
    }
    .box{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "form" "info" "map";
    }
    
    .form .row50{
        display:flex;
        gap: 0;
        flex-direction: column;
    }
    .inputBox{
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
        width: 100%;
    }
    .contact{
        padding: 30px;
    }
    .map{
        min-height: 300px;
        padding: 0;
    }
}