/*==============================
GENERAL
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

/*==============================
TOP HEADER
==============================*/

.top-header{
    background:#111;
    padding:10px 0;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.top-right{
    justify-content:end;
}

.top-left a,
.top-right a{
    color:#fff;
    font-size:14px;
    transition:.3s;
}

.top-left i{
    color:#19b46b;
    margin-right:8px;
}

.top-right a:hover,
.top-left a:hover{
    color:#19b46b;
}

/*==============================
HEADER
==============================*/

#header{
    position:absolute;
    top:45px;
    width:100%;
    z-index:999;
}

.navbar{
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(18px);
    border-radius:12px;
    padding:18px 30px;
}

.navbar-brand img{
    width:180px;
}

.navbar-nav{
    gap:25px;
}

.nav-link{
    color:#fff !important;
    font-weight:500;
    transition:.3s;
}

.nav-link:hover{
    color:#19b46b !important;
}

.quote-btn{
    background:#19b46b;
    color:#fff;
    padding:12px 28px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{
    background:#fff;
    color:#19b46b;
}

/*==============================
MEGA MENU
==============================*/

.mega-menu{

    width:100%;

    left:0;

    right:0;

    margin-top:22px;

    padding:35px;

    border:none;

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.mega-menu h5{

    color:#19b46b;

    margin-bottom:18px;

    font-size:18px;

}

.mega-menu a{

    display:block;

    color:#555;

    padding:7px 0;

    transition:.3s;

}

.mega-menu a:hover{

    color:#19b46b;

    padding-left:8px;

}

/*==============================
TOGGLER
==============================*/

.navbar-toggler{

    border:none;

    color:#fff;

    font-size:28px;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.top-header{
    display:none;
}

#header{
    top:0;
    position:fixed;
}

.navbar{
    border-radius:0;
    padding:15px;
    background:#111;
}

.navbar-brand img{
    width:150px;
}

.navbar-toggler{
    color:#fff;
}

.navbar-collapse{

    background:#fff;

    margin-top:15px;

    border-radius:10px;

    padding:20px;

}

.navbar-nav{

    gap:0;

}

.nav-link{

    color:#222 !important;

    padding:14px 0 !important;

    border-bottom:1px solid #eee;

}

.quote-btn{

    display:inline-block;

    margin-top:20px;

    width:100%;

    text-align:center;

}

.mega-menu{

    position:static !important;

    transform:none !important;

    width:100%;

    padding:15px;

    margin-top:10px;

    box-shadow:none;

    border:1px solid #eee;

}

.mega-menu .row{

    row-gap:20px;

}

}

/*==============================
STICKY HEADER
==============================*/

#header.sticky{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

    animation:slideDown .4s ease;

}

#header.sticky .navbar{

    background:#fff;

    backdrop-filter:none;

    border-radius:0;

}

#header.sticky .nav-link{

    color:#222 !important;

}

#header.sticky .navbar-toggler{

    color:#222;

}

@keyframes slideDown{

    from{

        transform:translateY(-100%);

    }

    to{

        transform:translateY(0);

    }

}


/*==============================
DESKTOP HOVER DROPDOWN
==============================*/

@media(min-width:992px){

.dropdown:hover .dropdown-menu{

    display:block;

    margin-top:0;

}

}


/*==============================
MOBILE DROPDOWN
==============================*/

@media(max-width:991px){

.mega-menu{

    display:none;

}

.mega-menu.show{

    display:block;

}

}

/*==============================
HERO SLIDER
==============================*/


.hero-slider{

    position:relative;

}


.hero-slider img{

    height:90vh;

    object-fit:cover;

}



.hero-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.75),
    rgba(0,0,0,.25)
    );

}



.carousel-caption{

    top:50%;

    transform:translateY(-50%);

    text-align:left;

    left:8%;

    right:20%;

}



.carousel-caption h1{

    font-size:55px;

    font-weight:700;

    line-height:1.2;

    color:#fff;

    max-width:750px;

}



.carousel-caption p{

    font-size:18px;

    color:#eee;

    margin:25px 0;

    max-width:600px;

}



.hero-btn{

    display:inline-block;

    background:#19b46b;

    color:#fff;

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}



.hero-btn:hover{

    background:#fff;

    color:#19b46b;

}




.carousel-indicators button{

    width:12px;

    height:12px;

    border-radius:50%;

}




/* MOBILE */

@media(max-width:768px){


.hero-slider img{

    height:75vh;

}


.carousel-caption{

    left:5%;

    right:5%;

}


.carousel-caption h1{

    font-size:32px;

}


.carousel-caption p{

    font-size:15px;

}


}

/*==============================
SLIDER ARROW BUTTONS
==============================*/

.carousel-control-prev,
.carousel-control-next{

    width:40px;
    height:40px;

    top:50%;
    transform:translateY(-50%);

    background:#19b46b;

    border-radius:50%;

    opacity:1;

}


.carousel-control-prev{

    left:30px;

}


.carousel-control-next{

    right:30px;

}


/* Bootstrap icon size */

.carousel-control-prev-icon,
.carousel-control-next-icon{

    width:20px;

    height:20px;

}


/* Hover */

.carousel-control-prev:hover,
.carousel-control-next:hover{

    background:#fff;

}


.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon{

    filter:invert(1);

}



@media(max-width:768px){

.carousel-control-prev,
.carousel-control-next{

    width:40px;
    height:40px;

}

.carousel-control-prev{

    left:10px;

}

.carousel-control-next{

    right:10px;

}

}


/*==============================
SERVICES SECTION
==============================*/


.services-section{

    padding:90px 0;

    background:#f8f8f8;

}


.section-heading span{

    color:#19b46b;

    font-weight:600;

    text-transform:uppercase;

}


.section-heading h2{

    font-size:40px;

    font-weight:700;

    margin:15px 0;

}



.section-heading p{

    color:#666;

    max-width:650px;

    margin:auto;

}




.service-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}



.service-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}



.service-card h4{

    font-size:20px;

    padding:20px 20px 5px;

    font-weight:600;

}



.service-card a{

    display:inline-block;

    padding:0 20px 20px;

    color:#19b46b;

    font-weight:500;

}



.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}



@media(max-width:768px){

.section-heading h2{

    font-size:30px;

}

}

/*==============================
ABOUT SECTION
==============================*/


.about-section{

    padding:100px 0;

    background:#fff;

}



.about-image{

    position:relative;

}



.about-image img{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:20px;

}



.experience-box{

    position:absolute;

    bottom:30px;

    left:30px;

    background:#19b46b;

    color:#fff;

    padding:25px 35px;

    border-radius:15px;

}



.experience-box h3{

    font-size:45px;

    margin:0;

    font-weight:700;

}



.experience-box p{

    margin:0;

}



.about-content span{

    color:#19b46b;

    font-weight:600;

    text-transform:uppercase;

}



.about-content h2{

    font-size:42px;

    font-weight:700;

    margin:15px 0 20px;

    line-height:1.3;

}



.about-content p{

    color:#666;

    line-height:1.8;

}



.about-points{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin:25px 0;

}



.about-points div{

    font-weight:500;

}



.about-points i{

    color:#19b46b;

    margin-right:10px;

}



.about-btn{

    display:inline-block;

    padding:13px 35px;

    background:#19b46b;

    color:#fff;

    border-radius:50px;

}



@media(max-width:768px){


.about-image img{

    height:350px;

}


.about-content h2{

    font-size:30px;

}


.about-points{

    grid-template-columns:1fr;

}


}

/*==============================
WHY SECTION
==============================*/


.why-section{

    padding:100px 0;

    background:#111;

    overflow:hidden;

}



.why-content span{

    color:#19b46b;

    font-weight:600;

    text-transform:uppercase;

}



.why-content h2{

    color:#fff;

    font-size:42px;

    line-height:1.3;

    margin:15px 0;

}



.why-content p{

    color:#bbb;

    line-height:1.8;

}



.why-btn{

    display:inline-block;

    margin-top:20px;

    background:#19b46b;

    color:#fff;

    padding:13px 35px;

    border-radius:50px;

}



.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}



.why-card{

    background:#1b1b1b;

    padding:35px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    transition:.5s;

    animation:floatCard 3s infinite ease-in-out;

}



.why-card:nth-child(2){

    animation-delay:.5s;

}


.why-card:nth-child(3){

    animation-delay:1s;

}


.why-card:nth-child(4){

    animation-delay:1.5s;

}



.icon-box{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#19b46b;

    border-radius:50%;

    margin-bottom:20px;

}



.icon-box i{

    color:#fff;

    font-size:28px;

}



.why-card h4{

    color:#fff;

    font-size:22px;

}



.why-card p{

    color:#aaa;

}



.why-card:hover{

    transform:translateY(-15px);

    border-color:#19b46b;

}



@keyframes floatCard{


0%,100%{

    transform:translateY(0);

}


50%{

    transform:translateY(-10px);

}


}



@media(max-width:991px){


.why-content{

    margin-bottom:40px;

}


.why-grid{

    grid-template-columns:1fr;

}


.why-content h2{

    font-size:32px;

}


}

/*==============================
PROJECT SECTION
==============================*/


.project-section{

    padding:100px 0;

    background:#fff;

}



.project-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    height:380px;

}



.project-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}



.project-overlay{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:30px;

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.85)
    );

    color:#fff;

    transform:translateY(80px);

    transition:.5s;

}



.project-overlay span{

    color:#19b46b;

    font-size:14px;

    font-weight:600;

}



.project-overlay h4{

    margin-top:10px;

    font-size:22px;

}



.project-overlay a{

    width:45px;

    height:45px;

    background:#19b46b;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#fff;

    margin-top:15px;

}



.project-card:hover img{

    transform:scale(1.1);

}



.project-card:hover .project-overlay{

    transform:translateY(0);

}



.project-btn{

    display:inline-block;

    background:#19b46b;

    color:#fff;

    padding:14px 35px;

    border-radius:50px;

}



@media(max-width:768px){

.project-card{

    height:320px;

}

}

/*==============================
PROCESS SECTION
==============================*/

.process-section{

    padding:100px 0;

    background:#f7f7f7;

}



.process-wrapper{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    position:relative;

}



.process-wrapper:before{

    content:"";

    position:absolute;

    top:45px;

    left:10%;

    width:80%;

    height:2px;

    background:#19b46b;

}



.process-item{

    position:relative;

    text-align:center;

}



.process-number{

    width:90px;

    height:90px;

    margin:auto;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:28px;

    font-weight:700;

    position:relative;

    z-index:2;

    transition:.4s;

}



.process-content{

    background:#fff;

    padding:30px 20px;

    margin-top:30px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}



.process-content h4{

    font-size:22px;

    margin-bottom:15px;

}



.process-content p{

    color:#666;

    font-size:14px;

}



.process-item:hover .process-number{

    background:#19b46b;

    transform:rotateY(360deg);

}



.process-item:hover .process-content{

    transform:translateY(-10px);

}



@media(max-width:991px){


.process-wrapper{

    grid-template-columns:repeat(2,1fr);

}


.process-wrapper:before{

    display:none;

}


}


@media(max-width:576px){


.process-wrapper{

    grid-template-columns:1fr;

}


}

/*==============================
IMAGE MARQUEE GALLERY
==============================*/


.marquee-gallery{

    padding:100px 0;

    background:#f8f8f8;

    overflow:hidden;

}



.marquee-row{

    overflow:hidden;

    margin-top:40px;

}



.marquee-track{

    display:flex;

    gap:25px;

    width:max-content;

}



.gallery-img{

    width:300px;

    height:220px;

    flex-shrink:0;

    overflow:hidden;

    border-radius:18px;

}



.gallery-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}



.gallery-img:hover img{

    transform:scale(1.1);

}





/* LEFT TO RIGHT */

.left-move{

    animation:scrollLeft 25s linear infinite;

}


/* RIGHT TO LEFT */

.right-move{

    animation:scrollRight 25s linear infinite;

}



@keyframes scrollLeft{


from{

transform:translateX(0);

}


to{

transform:translateX(-50%);

}


}




@keyframes scrollRight{


from{

transform:translateX(-50%);

}


to{

transform:translateX(0);

}


}



/* STOP ON HOVER */

.marquee-row:hover .marquee-track{

    animation-play-state:paused;

}



@media(max-width:768px){

.gallery-img{

    width:240px;

    height:180px;

}

}

/* TESTIMONIAL */

.testimonial-section{

    padding:100px 0;

    background:#111;

}



.testimonial-section .section-heading h2{

    color:#fff;

}


.testimonial-section .section-heading p{

    color:#aaa;

}



.testimonial-card{

    max-width:750px;

    margin:50px auto 0;

    background:#1d1d1d;

    padding:50px;

    border-radius:25px;

    text-align:center;

    transition:.4s;

}



.testimonial-card:hover{

    transform:translateY(-8px);

}



.quote-icon{

    width:70px;

    height:70px;

    margin:auto;

    background:#19b46b;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}



.testimonial-card p{

    color:#ddd;

    font-size:18px;

    line-height:1.8;

    margin:30px 0;

}



.client-details h5{

    color:#fff;

    font-size:22px;

}



.client-details span{

    color:#19b46b;

}



/* buttons */

.testimonial-section .carousel-control-prev,
.testimonial-section .carousel-control-next{


    width:50px;

    height:50px;

    background:#19b46b;

    border-radius:50%;

    top:50%;

    transform:translateY(-50%);


}



.testimonial-section .carousel-control-prev{

    left:80px;

}



.testimonial-section .carousel-control-next{

    right:80px;

}




@media(max-width:768px){


.testimonial-card{

    padding:30px 20px;

}


.testimonial-section .carousel-control-prev{

    left:10px;

}


.testimonial-section .carousel-control-next{

    right:10px;

}


}


/*==============================
FAQ SECTION
==============================*/


.faq-section{

    padding:100px 0;

    background:#fff;

}



.faq-section .section-heading span{

    color:#19b46b;

    font-weight:600;

}



.faq-section .section-heading h2{

    color:#111;

    font-size:40px;

}



.faq-section .section-heading p{

    color:#666;

}



.faq-wrapper{

    max-width:900px;

    margin:auto;

}



.accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:12px !important;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}



.accordion-button{

    padding:22px;

    font-size:18px;

    font-weight:600;

    color:#111;

    background:#fff;

}



.accordion-button:not(.collapsed){

    color:#19b46b;

    background:#fff;

    box-shadow:none;

}



.accordion-button:focus{

    box-shadow:none;

}



.accordion-body{

    color:#666;

    line-height:1.8;

    padding:0 22px 22px;

}



@media(max-width:768px){

.section-heading h2{

    font-size:30px !important;

}


}


/*==============================
CTA SECTION
==============================*/


.cta-section{

    position:relative;

    padding:80px 0;

    background:url("../image/img55.jpg");

    background-size:cover;

    background-position:center;

}



.cta-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.75);

}



.cta-content{

    position:relative;

    z-index:2;

    color:#fff;

}



.cta-content span{

    color:#19b46b;

    font-weight:600;

    text-transform:uppercase;

}



.cta-content h2{

    font-size:45px;

    font-weight:700;

    max-width:800px;

    margin:15px auto;

}



.cta-content p{

    color:#ddd;

    max-width:650px;

    margin:20px auto 35px;

    font-size:18px;

}



.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}



.cta-btn,
.cta-outline{

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}



.cta-btn{

    background:#19b46b;

    color:#fff;

}



.cta-outline{

    border:2px solid #fff;

    color:#fff;

}



.cta-btn:hover{

    background:#fff;

    color:#19b46b;

}



.cta-outline:hover{

    background:#fff;

    color:#111;

}



@media(max-width:768px){


.cta-content h2{

    font-size:32px;

}


.cta-buttons{

    flex-direction:column;

    align-items:center;

}


}

/*==============================
FOOTER
==============================*/


.footer-section{

    position:relative;

    padding:90px 0 0;

    background:url("../image/footer-bg.jpg");

    background-size:cover;

    background-position:center;

    color:#fff;

}



.footer-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.85);

}



.footer-section .container{

    position:relative;

    z-index:2;

}



.footer-logo{

    width:190px;

    margin-bottom:20px;

}



.footer-box p{

    color:#bbb;

    line-height:1.8;

}



.footer-box h4{

    font-size:22px;

    margin-bottom:25px;

    position:relative;

}



.footer-box h4:after{

    content:"";

    width:40px;

    height:3px;

    background:#19b46b;

    position:absolute;

    left:0;

    bottom:-10px;

}



.footer-box ul{

    list-style:none;

    padding:0;

}



.footer-box ul li{

    margin-bottom:12px;

    color:#bbb;

}



.footer-box ul li a{

    color:#bbb;

    transition:.3s;

}



.footer-box ul li a:hover{

    color:#19b46b;

    padding-left:5px;

}



.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;

}



.footer-social a{

    width:42px;

    height:42px;

    background:#19b46b;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    transition:.3s;

}



.footer-social a:hover{

    background:#fff;

    color:#19b46b;

}



.contact-list i{

    color:#19b46b;

    margin-right:10px;

}



.footer-bottom{

    margin-top:70px;

    padding:20px 0;

    border-top:1px solid rgba(255,255,255,.15);

}



.footer-bottom .container{

    display:flex;

    justify-content:space-between;

}



.footer-bottom p{

    margin:0;

    color:#aaa;

}



.footer-bottom a{

    color:#19b46b;

}



@media(max-width:768px){


.footer-bottom .container{

    flex-direction:column;

    text-align:center;

    gap:10px;

}


}