/* Hero section */
.hero-section{
    position: relative;    
    width: 100%;    
    background-size: cover;
    background-position: center center;
    background-color: white;
}


.text-slider-wrapper{
    max-width: 600px;
    width: 100%;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;    
    transform: translate(-50%,-50%);
    text-align: center;    
}

.text-slider-wrapper h1{   
   font-size: 50px;  
   font-family: var(--font2) !important;
}
.lets-talk-btn-link{
    background-color: #122c64;
    width: 200px;
    padding: 20px;
    border-radius: 50px;
    color: white;
    font-size: 20px;
}
.lets-talk-btn-link:hover{
    background-color: palevioletred;
}
.business-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}
.hero-section h2{
    font-size: 35px;
    color: var(--color-theme4);
    
}
.business-info a{
    color: var(--color-theme5);
    text-align: center;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}


/* Feedback form style */
.hidden_input{
    display: none;
}
.feedback-form-section{   
    padding: 0 0;    
}
.feedback-block{    
    margin: 0 auto ;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 95%;
    
}
.feedback-block p{
    text-align: center;
    padding: 10px 40px;
}
.feedback-form-wrapper{    
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;  
    background-color: rgb(255, 255, 255);  
    /* box-shadow:  0 0 30px rgba(0, 0, 0, 0.158); */
    border-radius: 20px;  
    border: 2px solid var(--pri-color3);  
}
.user_profile{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.feedback-form-wrapper img{
    width: 150px;
    height: 150px;
    border-radius: 50%;    
    border: 2px solid var(--pri-color3);
    padding: 5px;
}

.feedback-form-wrapper label{
    color: var(--pri-color1);
}
.feedback-form-wrapper .inp{
    border: 1px solid rgb(149, 184, 196);
    border-radius: 10px;
}
.feedback-form-wrapper button{
    width: 200px!important;
    background-color: #525252 !important;
}


/* Feedback response alert box */
.feedback-response-box{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.199);
    z-index: 20;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-in-out;
}
.feedback-response-message{
    padding: 40px;
    background-image: url(../backgrounds/bg4.png);
    background-color: rgb(231, 208, 224);
    background-size: 150% 150%;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.651);
    animation: bounceIn 0.5s ease-in-out;   
    text-align: center;
    display: none;
    flex-direction: column;
    gap: 15px;
    border-radius: 10px;
}
.feedback-response-message h2{
    color: #202020;
    font-weight: 400;
    text-align: center;
    font-size: 25px;
}
.feedback-response-message i{
    font-size: 50px;
    color: #12b3cf;
    font-weight: 300;
    background-color: white;
    border: 10px solid #daf9ff;
    width: fit-content;
    border-radius: 50%;
    margin: 0 auto;
    padding: 10px;
}

@media screen and (max-width:600px) {
    .feedback-form-wrapper{
        padding: 60px 15px;
    }
    .feedback-form-wrapper button{
        width: 100%!important;
    }
    
}