*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.contact-section{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(../images/soccer-stadium-full-people1.jpg);
    background-size: cover;

}

.contact-section .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Adjusted alpha for better readability */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-content{
    max-width: 800px;
    text-align: center;
;
}

.contact-content h2{
    font-size: 36px;
    font-weight: 500;
    color: #fff;
   ;
   
}

.contact-content p{
    font-weight: 300;
    color: #fff;
   

}

.contact-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;

}

.contact-container .contact-info{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.contact-container .contact-info .contact-box{
    position: relative;
    padding: 20px 0;
    display: flex;
}

.contact-container .contact-info .contact-box .contact-icon{ 
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.contact-container .contact-info .contact-box .contact-text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}

.contact-container .contact-info .contact-box .contact-text h3{
    font-weight: 500;
    color: #ff4500;
}

.contact-form{
    width: 40%;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    z-index: 1;
}

.contact-form h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}

.contact-form .inputbox{
    position: relative;
    width: 100%;
    margin-top: 10px; 
}

.contact-form .inputbox input,
.contact-form .inputbox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}

.contact-form .inputbox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contact-form .inputbox input:focus ~ span,
.contact-form .inputbox input:valid ~ span,
.contact-form .inputbox textarea:focus ~ span,
.contact-form .inputbox textarea:valid ~ span{
    color: #f803bb;
    font-size: 12px;
    transform: translateY(-20px);
}

.contact-form .inputbox input[type="submit"]{
    display: inline-block;
    width: 100px;
    background: #ff4500;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s ease; transition: 0.3s ease;

}

.about-content button{
  
    background-color: #ff4500;
    color: var(--text-color);
    
    
    border: none;
    cursor: pointer;
   
}

.about-content button a{
    text-decoration: none;
}

.about-content button:hover{
    background-color: #ff6347;
    transform: scale(1.1);
}








@media(max-width: 991px)
{
    .contact-section{
        padding: 50px;
    }

    .contact-container{
        flex-direction: column;
    }

    .contact-container .contact-info{
        margin-bottom: 40px;
    }

    .contact-container .contact-info,
    .contact-form
    {
        width: 100%;
    }
}