*{
    margin: 0;
    padding: 0;
    font-family: 'Chakra Petch', sans-serif;
}

/*Menu*/
header{
    position: relative;
    padding: 0 2rem;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: #000761;
    font-size: 17px;
}

a:hover{
    color: #c70039;
    text-decoration: underline;
}

.logo img{
    width: 120px;
}

.navbar{
    width: 100%;
    height: 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .links{
    display: flex;
    gap: 2rem;
}

.navbar .toggle_btn{
    color: #000761;
    font-size: 17px;
    cursor: pointer;
    display: none;
}

.action_btn{
    background-color: #44008B;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
}

.action_btn:hover{
    scale: 1.05;
    color: #fff;
}

.action_btn:active{
    scale: 0.95;
}

.dropdown_menu{
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    width: 300px;
    height: 0;
    background-color: #f1f1f1;
    backdrop-filter: blur(25px);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.dropdown_menu.open{
    height: 290px;
}

.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
}

@media(max-width: 992px){
    .navbar .links, .navbar .action_btn{
        display: none;
    }
    
    .navbar .toggle_btn{
        display: block;
    }
    
    .dropdown_menu{
        display: block;
    }
}

/*Contact Us*/
.heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

.heading h1{
    padding-top: 50px;
    font-size: 50px;
    background: radial-gradient(circle farthest-corner at center center, #FF5733 0%, #44008B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 25px;
}

.heading h1::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #44008B;
}

@media screen and (max-width: 768px){
    .heading{
        padding: 0px 20px;
    }
    
    .heading h1{
        font-size: 36px;
    }
}

.body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 40px;
    display: flex;
    gap:80px;
    border-radius: 10px;
}

.left{
    width: 55%;
}

.left .text{
    font-size: 14px;
    margin-top: 10px;
}

form{
    margin-top: 20px;
}

.inputBox{
    position: relative;
    margin-bottom: 20px;
}

.inputBox input, .inputBox textarea{
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    color: #000761;
    border: none;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.inputBox input::placeholder, .inputBox textarea::placeholder{
    color: #000761;
    opacity: 0.5;
}

.inputBox textarea{
    resize: none;
    height: 150px;
}

.submit{
    width: 100%;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #fff;
    border: 2px solid #000761;
    color: #000761;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.submit:hover{
    background-color: #000761;
    color: #fff;
}

.right{
    width: 45%;
}

.illustration{
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.illustration img{
    width: 70%;
    margin: auto;
    margin-top: 30px;
}

.contact-info{
    display: flex;
    flex-direction: column;
    gap:20px;
    margin-top: 50px;
}

.infoBox{
    display: flex;
    align-items: center;
    gap:10px;
}

.infoBox .icon i{
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #000761;
    border: 1px solid #000761;
}

.infoBox .text{
    margin: 0;
}

.infoBox .text a{
    text-decoration: none;
    color: #000761;
}

@media (max-width: 768px){
    .container{
        flex-direction: column;
        gap:40px;
        padding: 20px;
    }
    .left, .right{
        width: 100%;
    }
    .contact-info{
        margin-top: 40px;
    }
}

/*Footer*/
.footer{
    padding: 40px 0;
    background-color: #000761;
}

.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: #fff;
}

.footer .social a{
    font-size: 24px;
    color: inherit;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    opacity: 0.75;
}

.footer .social a:hover{
    opacity: 1;
}

.footer ul{
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a{
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul li a:hover{
    opacity: 1;
}

.footer ul li{
    display: inline-block;
    padding: 0 15px;
}

.footer .copyright{
    margin-top: 15px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    opacity: 0.7;
}