@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: poppins ;
}

.decorated_heading_1{
    text-transform: uppercase;
    font-size: 24px;
    text-align: left;
}
.decorated_heading_1::after{
    content: '';
    display: block;
    height: 1px;
    background: #ed1c24;
    width: 50px;
    margin-top: 15px;
}
.decorated_heading_2{
    text-transform: uppercase;
    font-size: 24px;
    text-align: center;
}
.decorated_heading_2::after{
    content: '';
    display: block;
    height: 1px;
    background: #ed1c24;
    width: 50px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;

}
.subheading {
    text-transform: uppercase;
}

.paragraph{
    text-align: justify;
}
a{
    text-decoration: none;
    color: black;
    }














.message_banner {
    background-color: #0073e6; /* Blue background */
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message_banner .banner-text {
    flex: 1;
    font-size: 16px;
}

.message_banner .banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0 5px;
}

.message_banner .banner-close:hover {
    color: #ff6666;
}

























.contact_banner{
    position: relative;
    height: 40vh;
    background-image: url('uploads/pexels-the-glorious-studio-3584518-13583359.jpg'); /* Replace with your image */
    background-repeat: no-repeat;
    background-position:center center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    padding: 0 100px;
}

.contact_banner::before{
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black; 
    opacity:0.5 ;
    z-index: 1;  
}

.contact_banner .coloumn_1{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_banner .content{
    width: 100%;
    color: #fff;
    z-index: 2;  
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.contact_banner h1{
font-size: 32px;
}
















.contact_section{
    margin-top:100px;
    padding: 0 100px;
    display: flex;
}
.contact_section .coloumn_1{
    width: 40%;
    display: flex;
    box-sizing: border-box;
}


.contact_section .coloumn_2{
    width: 60%;
    box-sizing: border-box;
    display: flex;
}
.contact_section .content{
    width: 100%;
}
.contact_section .item {
    margin-top: 30px; 
  }
.contact_section .coloumn_1 h3{
margin: 0;
display: inline-block;
font-weight: 400;
text-transform: uppercase;
}
.contact_section .input{
    margin-top: 30px; 
    width: 100%;
}
.contact_section .multiple_inputs{
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact_section input{
height: 50px;
width: 100%;
padding: 10px;
outline: none;
}

.contact_section textarea{
    height: 200px;
    width: 100%;
    padding: 10px;
    outline: none;
 }

 .contact_section button{
    margin-top: 20px;
    width: 160px;
    height: 45px;
    border-radius: 0px;
    background-color: #22587a;
    border: none;
    color: white;
    cursor:pointer;
 }

 .contact_section .socialicons{
    display: flex;
    width: 64%;
    gap: 20px;
}
.contact_section .icon{
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.contact_section .icon i{
    color: white;
    font-size:16px;
}
.contact_section .facebook{
    background-color: #4267B2;
}
.contact_section .fa-facebook-f{
    font-size: 15px;
    background-color: #4267B2;
    color: white;
}

.contact_section .instagram{
    background-color:#C13584;
}

.contact_section  .bi-instagram{
    background-color: #C13584;
    color: white;
}

.contact_section .twitter{
    background-color: black;
}

.contact_section .whatsapp{
    background-color: #25D366;
}

.contact_section  .bi-whatsapp{
    background-color:#25D366;
    color: white;
}

 














@media only screen and (max-width: 768px) {

    /* all sections common responsiveness*/

    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden; /* Prevents horizontal scrolling */
        margin: 0;
        padding: 0;
    }
    .first_section {
        margin-top: 100px ;
        }
    .section  {
    flex-wrap: wrap ;
    padding: 0 30px;
    gap: 30px;
    }
    .section .row{
        flex-wrap: wrap ;
        gap: 30px;
    }
    .section .column  {
        width: 100% ;
        justify-content: center;
    }
    .section .content  {
        padding: 0 ;
    }
    .section .flex_container{
        flex-wrap: wrap ;
    }
    .section .flex_item{
        width: 100% ;
        margin-top: 0;
        padding: 30px ;
    }
    .section .decorated_heading_1{
        text-align: center ;
    }
    .section .decorated_heading_1::after{
        margin-left: auto ;
        margin-right: auto ;
    }

     }















     @media only screen and (min-width: 769px) and (max-width: 1024px) {

        /* all sections common responsiveness*/
    
        html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden; /* Prevents horizontal scrolling */
            margin: 0;
            padding: 0;
        }
        .first_section {
            margin-top: 100px ;
            }
        .section  {
        flex-wrap: wrap ;
        padding: 0 60px;
        gap: 30px;
        }
        .section .row{
            flex-wrap: wrap ;
            gap: 30px;
        }
        .section .column  {
            width: 100% ;
            justify-content: center;
        }
        .section .content  {
            padding: 0 ;
        }
        .section .flex_container{
            flex-wrap: wrap ;
        }
        .section .flex_item{
            width: 100% ;
            margin-top: 0;
            padding: 30px ;
        }
        .section .decorated_heading_1{
            text-align: center ;
        }
        .section .decorated_heading_1::after{
            margin-left: auto ;
            margin-right: auto ;
        }
    
         }




