/****** Home section ******/
.banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: absolute;
}

#slideimg{
    width: 100%;
    height: 100%;
    animation: zoom 5s linear infinite;
}

@keyframes zoom {
    0%{
        transform: scale(1.3);
    }
    15%{
        transform: scale(1);
    }
    85%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.3);
    }
}

.overlay{
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0,0,0,0.7));
    position: absolute;
    top: 0;
} 

.navbar{
    background-color: rgba(0, 0, 0, 0.473);
    width: 100%;
    position: fixed;
    z-index: 1;
}

.length{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    justify-content: space-around;
}



.logo img{
    width: 250px;
    cursor: pointer;
}

.navbar ul {
    display: flex;
    justify-content: center;  
}

.navbar li {
    padding: 17px;
}

.navbar ul li a:hover{
    color: hsl(43, 49%, 46%);
    transition:  .3s ease-in;
}


.banner-text{
    width: 100%;
    top: 50%;
    height: 50%;
    padding: 120px 0;
    position: absolute;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

.banner-text h1{
    font-size: 3rem;
    font-weight: 500;
}

.banner-text p{
    margin: 20px auto;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 2px;
}

button{
    width: 200px;
    padding: 10px 0;
    text-align: center;
    font-size: 1.1rem;
    border-radius: 25px;
    border: 2px solid hsl(43, 49%, 46%);
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

button span{
    background: hsl(43, 49%, 46%);
    height: 100%;
    width: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: .5s;
}

button:hover span{
    width: 100%;
}




/****** About section ******/
.about-intro{
    height: 100%;
    text-align: center;
    margin: 25px 0;
    justify-items: center;
}

.about-intro h2{
    color: rgb(26, 25, 25);
    font-size: 3rem;
    letter-spacing: 2px;
}

.about-intro h2 span{
    color: rgb(175, 142, 60);
}

.about-text {
    margin-top: -20px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    align-items: center;
    text-align: center;
}

.about-text p{
    font-size: 1rem;
    font-weight: 500;
    line-height: 25px;
}

.about-content{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}


.about-content .right-col{
    text-align: center;
    padding: 0 10px;
}

.about-content .right-col .info-title{
    font-size: 2rem;
    font-weight: 600;
    line-height: 70px;
    margin-top: -10px;
}

.quality-item{
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-item .quality-icon{
    margin: 0 10px;
}


.quality-item .quality-info-title{
    font-size: 1.9rem;
    font-weight: 600;
}

.quality-item .quality-info{
    padding-top: -5px;
    display: block;
    text-align: left;
    color: rgb(0, 0, 0);
}

.quality-item .quality-info .info-note{
    color: hsl(0, 0%, 0%);
    font-weight: 500;
    margin-bottom: 10px;
}

.about-qualities{
    height: 60%;
    width: 100%;
}

.quality-card{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 100%;
    padding: 50px 20px;
}

.card-info{
    padding: 30px 50px;
    align-items: center;
    justify-content: center;
    background: hsla(43, 49%, 46%, 0.753);
    border-radius: 20px;
    box-shadow: 0 5px 10px rgb(0, 0, 0, 0.5);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: box-shadow .3s ease;
    -webkit-transition: box-shadow .3s ease;
    -moz-transition: box-shadow .3s ease;
    -ms-transition: box-shadow .3s ease;
    -o-transition: box-shadow .3s ease;
}

.quality-card .card-info:hover{
    box-shadow: none;
}

.card-info .card-img{
    display: flex;
    margin-top: -15px;
    margin-bottom: 20px;
}

.card-info .card-title{
    color: rgb(87, 87, 87);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.card-info .card-text{
    color: rgb(255, 255, 255);
}


/****** Service Section ******/

.service-intro{
    margin-bottom: 30px;
}

.service-intro .service-title{
    height: 60px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    /* background-color: #fff; */
}

.service-intro .service-title .title-text{
    font-size: 3rem;
    margin: 90px auto;
}


.service-intro .service-text{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-intro .service-text .s-text{
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 500;
    line-height: 25px;
}

.service-cards{
    background: linear-gradient(rgba(0,0,0,0.6),
    rgba(0,0,0,0.6)), url("../../assets/images/Service-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.service-card-holder{
    padding: 10px;
    margin: auto;
    border: 1px solid white;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.service-card-holder:hover{
    border: none;
    background-color: hsl(43, 30%, 39%);
    text-align: left;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
} 

.service-card-holder .card-number{
    font-size: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-card-holder .s-c-title{
    font-size: 1.7rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    margin-bottom: .5rem;
}

.service-card-holder .s-c-note{
    display: flex;
    text-align: center;
    margin-bottom: 1rem;
}

/****** FAQs Section ******/
.faq-bg{
    background-color: #f0e1b4;
    margin: auto;
    border-radius: 30px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.377);
}

.faq-bg .container{
    width: 100%;
    padding-bottom: 100px;
}

.faq-title{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.faq-title h2{
    padding-top: 20px;
    font-size: 3rem;
    margin: 0 0 30px 0;
}

.Faq-body{
    max-width: 900px;
    margin: auto;
    height: 100%;
    margin: 0 auto;
}

.faq:not(:last-child){
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000;
    cursor: pointer;
}

.question{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.question h3{
    font-size: 1.5rem;
}

.question svg{
    width: 20px;
    transition: transform .9s ease-in-out;
}

.answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease-in-out;
}

.answer p{
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 1.2rem;
}

.faq.active .answer{
    max-height: 300px;
    animation: fade 1s ease-in-out;
}

.faq.active svg{
    transform: rotate(180deg);
}

@keyframes fade {
    from{
        opacity: o;
        transform: translateY(-10px);
    }

    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

/****** Contact section  ******/

.contact-intro{
    width: 100%;
    margin-top: 30px;
}

.contact-intro .contact-title{
    height: 60px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.contact-intro .contact-title .title-name{
    font-size: 3rem;
    margin: 90px auto;
}

.contact-intro .contact-text{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-intro .contact-text .c-text{
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 30px;
}

.form-holder{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding-top: 50px;
    margin: 0px auto;
    max-width: 1000px;
}

.contact-form{
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    flex: 50%;
    margin-bottom: 20px;
}

.contact-map{
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    flex: 50%;
    margin-bottom: 20px;
}

.contact-form .form-field{
    width: 100%;
    height: 40px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 30px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form .form-field:focus{
    background-color: none;
}

.contact-form .form-field::placeholder{
    color: #aaa;
    background-color: #fff;
}

.contact-form .form-txt-area{
    width: 100%;
    height: 150px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
    resize: none;
}

.contact-form .form-txt-area::placeholder{
    color: #aaa;
    background-color: #fff;
}


.contact-btn{
    align-self: center;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 50px;
    background: hsl(43, 49%, 46%);
    color: #fff;
    text-transform: uppercase;
    padding: 10px 0;
    cursor: pointer;
    font-size: 1.2rem;
}

.contact-btn:hover{
    background: hsl(43, 68%, 49%);
    transition: .3s ease-in-out;
}



.testing{
    border-radius: 30px;
    margin: auto;
    width: 90%;
    height: auto;
    background-color: white;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.377);
}


/****** Footer Section ******/

.footer{
    margin-top: 50px;
    width: 100%;
}

.footer-container .row{
    color: #fff;
    padding: 30px 0;
    background-color: rgb(34, 32, 32);
    /* height: 300px; */
    display: flex;
    /* flex-wrap: wrap; */
    text-align: left;
    justify-content: center;
}

.footer-logo{
    color: hsl(43, 49%, 46%);
    font-size: 1.3rem;
    white-space: pre-wrap;
}

.first-col{
    margin:0 20px;
    /* width: 400px; */
}

.first-col .footer-icons{
    display: flex;
    align-items: center;
    width: 350px;
}

.footer-icons svg{
    fill: White;
    width: 30px;
    padding: 0 5px;
    transition: transform .9s ease-in-out;
}

.footer-icons svg:hover{
    fill: hsl(43, 49%, 46%)
}

.second-col{
    margin: 0 20px;
    /* height: 250px; */
    width: 150px;
}

.second-col a:hover{
    color: hsl(43, 49%, 46%);
    transition: .4s ease-in-out;
}


.third-col{
    margin: 0 20px;
    height: 250px;
    width: 150px;
}

.third-col a:hover{
    color: hsl(43, 49%, 46%);
    transition: .4s ease-in-out;
}

.footer-bottom{
    color: #aaa;
    /* height: 30%; */
    width: 100%;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-form{
    width: 250px;
    height: 40px;
    color: #000;
    border: 1px solid #bcbcbc;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.footer-btn{
    height: 40px;
    width: 90px;
    border: none;
    outline: none;
    background: hsl(43, 49%, 46%);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
}

.footer-btn:hover{
    background: hsl(43, 68%, 49%);
    transition: .3s ease-in-out;
}





.quality-holder{
    display: flex;
    flex-direction: column;
    text-align: left;
}



.quality-intro{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}











