@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color: #d63929;
    --sub-color: #010101; 
    --text-color: #484848;
}

*{
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    margin: 0;padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none !important;
}
body{
    font-size: 16px;
    font-weight: 400;
    background-color: #fff;
}
ul, ol{
    list-style: none;
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Poppins", sans-serif;
}
p{
    color: var(--text-color);
    font-size: 16px;
    line-height: 22px;
}

.transition {
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.abtn{
    font-family: "Poppins", sans-serif;
    background-color: var(--main-color);
    padding: 0.7rem 1.5rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--main-color);
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    gap: 0.7rem;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.abtn span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border-radius: 50px;
    background: #000;
}
.abtn:hover{
    letter-spacing: 2px;
    background-color: #fff;
    color: var(--sub-color);
    border: 1px solid var(--sub-color);
}

.container{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 0 5rem;
}

.mobail{
    display: none;
}



/* ======== header ======= */


header{
    max-width: 1240px;
    margin: 0 auto;
    padding: 1rem 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease;
    background: #fff;
    border-radius: 0 0 12px 12px;
/* 
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px) saturate(102%);
    box-shadow: inset 0 0 30px rgb(255 255 255 / 11%), inset 0 0 80px rgb(255 255 255 / 2%), 0 10px 25px rgba(0, 0, 0, 0.2); */
}
.nav-up{
    top: -150px;
}
.main-menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.main-menu a{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
}
.main-menu a:hover{
    color: var(--main-color);
}
.main-menu .active a{
    color: var(--main-color);
}



.menu-btn{
    display: none;
}
.sub-heading{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    padding-bottom: 0.5rem;
    display: block;
}
.main-heading{
    font-family: "Poppins", sans-serif;
    color: #000111;
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 38px;
    display: block;
    padding-bottom: 0.5rem;
}
.text-p{
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}
.logo{width:175px;}
.logo img{max-width:100%;}

/* ======== header ======= */


main{
    padding-top: 113px;
}
.section{
    min-height: 100vh;
}

#home{
    background-image: url(../assets/image/slider.jpg);
    background-position: center;
    background-size: cover;
    min-height: 85vh;
    display: flex;
    align-items: end;
    padding-bottom: 7rem;
}
.home h1{
    font-size: 42px;
    line-height: 46px;
    color: #fff;
    font-weight: 700;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.about .row-grid{
    padding: 6rem 1rem;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2rem;
    align-items: flex-start;
}

.about .image-1 img{
    max-width: 525px;
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: bottom center;
    border-radius: 30px;
}
.about .image-2 img{
    width: 245px;
    height: 280px;
    object-fit: cover;
    object-position: bottom center;
    border-radius: 30px;
    
}
.about .image-1{
    position: relative;
}
.about .image-2{
    position: absolute;
    bottom: -60px;
    right: -0px;
}
.about .content{
    padding-left: 2rem;
    padding-top: 2.5rem;
}

.about .mission-vision{
    padding-top: 3rem;

}
.about .mission-vision li{
    display: flex;
    gap: 1.3rem;
    margin-bottom: 1.5rem;
}
.about .mission-vision li img{
    padding-top: 10px;
}
.about .mission-vision li h3{
    font-size: 20px;
    font-weight: 600;
}

.services{
    background-color: #f7fafb;
    padding: 7rem 0rem;
}
.services .grid-box{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1.5rem;
}
.services .grid-box .box{
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid var(--main-color);
    border-radius: 15px;
}
.services .grid-box .box h3{
    padding: 0.5rem 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
}
.why-us .row-grid img{
    max-width: 530px;
    width: 100%;
    border-radius: 50px;
}
.why-us .content{
    padding-left: 0;
}
.why-us .point-list{
    padding-top: 2rem;
}
.why-us .point-list h3{
    font-size: 24px;
    font-weight: 600;
}
.why-us .point-list ul {
    padding-left: 1rem;
    padding-top: 0.5rem;
}
.why-us .point-list ul li .dot{
    display: block;
    font-size: 10px;
    color: #e92d1a;
    margin-top: 7px;
}
.why-us .point-list ul li span{
    display: inline-block;
    font-weight: 700;
    padding-bottom: 8px;
}
.why-us .point-list ul li {
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    margin-bottom: 1rem;
    gap: 10px;
}
.why-us .desktop{
    position: sticky;
    top: 12%;
}
.serve-list{
    padding: 7rem 1rem;
    background-color: #f1f1f1;
}
.serve-list .grid-box{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.1rem;
}
.serve-list .grid-box .col{
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    /* border: 1px solid var(--main-color); */
    border-radius: 12px;
    background: linear-gradient(#f1f1f1, #f1f1f1) padding-box, linear-gradient(0deg,rgba(219, 150, 109, 1), rgba(238, 69, 52, 1)) border-box;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
}


.contact{
    padding: 7rem 1rem;
}
.contact img{
    width: 100%;
}

.contact .row-grid{
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2rem;
}   
form{
    padding-right: 3rem;
    padding-top: 1rem;
}
.input-field,
.textarea-field,
.file-upload {
    width: 100%;
    padding: 20px;
    margin: 10px 0;
    font-size: 14px;
    border-radius: 10px;
    /* border: 2px solid #ff4c39; */
    outline: none;
    overflow: hidden;

    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(0deg,rgba(219, 150, 109, 1) 0%, rgba(238, 69, 52, 1) 100%) border-box;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
}

.textarea-field {
    height: 120px;
    resize: none;
}

.file-upload {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0  0 0 19px;
}

.file-upload input {
    border: none;
    cursor: pointer;
}

.submit-btn {
    background: #e82c14;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #c82310;
}
.upload-btn{
    display: inline-block;
    padding: 19px;
    border-radius: 25px;
    color: #000111;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px 0 0 10px;
    border-left: 2px solid #ff4c39;
    background-color: #fff;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.upload-btn:hover {
    background: linear-gradient(334deg,rgba(219, 150, 109, 1) 0%, rgba(238, 69, 52, 1) 100%);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    color: #fff;

}

.upload-btn input[type="file"] {
    display: none;
}

footer{
    background-color: #f8f8f8;
}
.footer-contact{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.1rem;
    padding: 6rem 0;
}
.footer-contact .box-one p{
    max-width: 450px;
}

.footer-contact .box-two h3{
    font-size: 22px;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    padding-bottom: 1rem;
}
.footer-contact .box-two{
    padding-left: 5rem;
}
.footer-contact .box-two div{
    padding-left: 3rem;
}
.footer-contact .box-two p{
    font-size: 15px;
    color: #333333;
}
.footer-contact .box-two a{
    font-size: 15px;
    color: #333333;
    display: block;
    padding-top: 0.4rem;
}
.footer-contact .box-two a:hover{
    color: var(--main-color);
}
.copyright{
    background-color: #000;
    color: #666666;
    font-size: 14px;
    padding: 0.6rem 0;
}
.copyright .flex-box{
    color: #666666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.copyright a, .copyright p{
    color: #666666;
    font-size: 14px;
}