/*==============================
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:86px 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: 30px 0px 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;

}


}

/*==============================
PAGE BANNER
==============================*/

.page-banner{

    position:relative;

    height:582px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:url("../image/about-ban.jpg") center center/cover no-repeat;

}

.banner-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

}

.banner-text{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:750px;

        margin: 0px auto;

}

.banner-text span{

    display:inline-block;

    color:#19b46b;

    font-size:16px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.banner-text h1{

    color:#fff;

    font-size:55px;

    font-weight:700;

    margin-bottom:15px;

}

.banner-text p{

    color:#f5f5f5;

    font-size:17px;

    line-height:1.8;

    margin-bottom:25px;

}

.breadcrumb{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

}

.breadcrumb a{

    color:#19b46b;

    font-weight:600;

}

.breadcrumb i{

    color:#fff;

    font-size:13px;

}

.breadcrumb span{

    color:#fff;

    margin:0;

    letter-spacing:0;

    text-transform:none;

}

@media(max-width:768px){

.page-banner{

    height:280px;

}

.banner-text h1{

    font-size:38px;

}

.banner-text p{

    font-size:15px;

}

}

/*==============================
BEFORE AFTER
==============================*/

.before-after-section{

    padding:84px 0;

    background:#f8f8f8;

}

.comparison-slider{

    position:relative;

    width:100%;

    max-width:1100px;

    height:600px;

    margin:60px auto 0;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.before-img,
.after-img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.after-wrapper{

    position:absolute;

    inset:0;

    width:50%;

    overflow:hidden;

}

.slider{

    position:absolute;

    inset:0;

    width:100%;

    opacity:0;

    cursor:pointer;

    z-index:10;

}

.slider-line{

    position:absolute;

    left:50%;

    top:0;

    width:3px;

    height:100%;

    background:#fff;

    transform:translateX(-50%);

    z-index:5;

}

.slider-button{

    position:absolute;

    left:50%;

    top:50%;

    width:70px;

    height:70px;

    border-radius:50%;

    background:#19b46b;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    transform:translate(-50%,-50%);

    font-size:24px;

    z-index:6;

    box-shadow:0 15px 30px rgba(0,0,0,.25);

}

.label{

    position:absolute;

    top:25px;

    padding:10px 25px;

    background:rgba(0,0,0,.65);

    color:#fff;

    border-radius:40px;

    z-index:7;

}

.before-label{

    left:25px;

}

.after-label{

    right:25px;

}

/*==============================
MATERIAL GALLERY
==============================*/

.material-gallery{

    padding:66px 0px 100px 0px;

    background:#fff;

}

.material-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    height:320px;

    cursor:pointer;

}

.material-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.material-item::after{

    content:"";

    position:absolute;

    inset:0;

  background: linear-gradient(to top, rgb(0 0 0 / 63%), rgba(0, 0, 0, .10));

}

.material-content{

    position:absolute;

    bottom:30px;

    left:30px;

    z-index:2;

}

.material-content h4{

    color:#fff;

    font-size:28px;

    margin:0;

}

.material-item:hover img{

    transform:scale(1.12);

}

.material-item:hover .material-content{

    transform:translateY(-8px);

    transition:.4s;

}

/*==============================
FLOATING GALLERY
==============================*/

.floating-gallery{

    padding:88px 0;
    background:#fff;

}

.gallery-wrapper{

    position:relative;
    width:900px;
    height:650px;
    margin:70px auto;

}

.gallery-card{

    position:absolute;
    width:260px;
    height:180px;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
    transition:.5s;

}

.gallery-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.gallery-card:hover{

    transform:translateY(-12px) rotate(-2deg);

}

.gallery-card:hover img{

    transform:scale(1.12);

}

/* Position */

.top{

    top:0;
    left:50%;
    transform:translateX(-50%);

}

.left{

    top:170px;
    left:0;

}

.right{

    top:170px;
    right:0;

}

.bottom-left{

    bottom:0;
    left:120px;

}

.bottom-right{

    bottom:0;
    right:120px;

}

/* Center */

.center-box{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:190px;
    height:190px;

    background:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

    z-index:20;

}

.center-box img{

    width:160px;

}

/* Floating Animation */

.top{

    animation:float1 4s ease-in-out infinite;

}

.left{

    animation:float2 5s ease-in-out infinite;

}

.right{

    animation:float3 4.5s ease-in-out infinite;

}

.bottom-left{

    animation:float4 5s ease-in-out infinite;

}

.bottom-right{

    animation:float5 4s ease-in-out infinite;

}

@keyframes float1{

    50%{

        transform:translateX(-50%) translateY(-15px);

    }

}

@keyframes float2{

    50%{

        transform:translateY(-18px);

    }

}

@keyframes float3{

    50%{

        transform:translateY(-12px);

    }

}

@keyframes float4{

    50%{

        transform:translateY(-18px);

    }

}

@keyframes float5{

    50%{

        transform:translateY(-15px);

    }

}

/* Responsive */

@media(max-width:991px){

.gallery-wrapper{

    width:100%;
    height:auto;

    display:grid;

    grid-template-columns:1fr;

    gap:20px;

}

.gallery-card,
.center-box{

    position:relative;

    inset:auto;

    left:auto;

    right:auto;

    top:auto;

    bottom:auto;

    transform:none !important;

    margin:auto;

}

}


/*==============================
COMPANY STORY
==============================*/

.company-story{

    padding:84px 0;

    background:#f8f8f8;

}

.story-content{

    max-width:1150px;

    margin:auto;

    background:#fff;

    padding:55px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    border-top:5px solid #19b46b;

}
.section-subtitle{

    display:inline-block;

    color:#19b46b;

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.story-content h2{

    font-size:42px;

    margin-bottom:30px;

    color:#111;

    line-height:1.3;

}

.story-content p{

    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:20px;

}

.story-content strong{

    color:#19b46b;

}

@media(max-width:768px){

.story-content h2{

    font-size:32px;

}

.story-content p{

    font-size:16px;

}

}


/*==============================
CONTACT BANNER
==============================*/

.contact-banner{

    position:relative;

    height:568px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:url("../image/con-ban.jpg") center center/cover no-repeat;

}

.contact-banner::before{

    content:"";

    position:absolute;

    inset:0;

    
}

.contact-banner-content{

    position:relative;

    z-index:2;

    max-width:750px;

    color:#fff;

        margin: 0px auto;

}

.contact-banner-content span{

       display: inline-block;
    color: #19b46b;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

}


.contact-banner-content h1{

   color: #fff;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 15px;

}

.contact-banner-content p{

    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;

}

.contact-breadcrumb{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:25px;

}

.contact-breadcrumb a{

    color:#19b46b;
    font-weight:600;

}

.contact-breadcrumb span,
.contact-breadcrumb i{

    color:#fff;

}

@media(max-width:768px){

.contact-banner{

    height:300px;

}

.contact-banner-content h1{

    font-size:38px;

}

.contact-banner-content p{

    font-size:15px;

}

}

/*==============================
CONTACT INFO
==============================*/

.contact-info{

    padding:100px 0;

    background:#fff;

}

.contact-card{

    background:#fff;

    padding:30px 30px;

    text-align:center;

    border-radius:20px;

    border:1px solid #ababab;

    transition:.4s;

    height:100%;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    border-color:#19b46b;

}

.contact-card .icon{

    width:75px;

    height:75px;

    background:#19b46b;

    color:#fff;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    transition:.4s;

}

.contact-card:hover .icon{

    transform:rotateY(180deg);

}

.contact-card h4{

    margin-bottom:15px;

    font-size:22px;

}

.contact-card a,

.contact-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}


/*==============================
CONTACT FORM
==============================*/

.contact-form-section{

    padding:90px 0;

    background:#f8f9fa;

}

.contact-image{

    position:relative;

}

.contact-image img{

    width:100%;

    border-radius:25px;

    object-fit:cover;

}

.experience-box{

    position:absolute;

    bottom:25px;

    left:25px;

    background:#19b46b;

    color:#fff;

    padding:25px 30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.experience-box h3{

    font-size:42px;

    margin:0;

}

.experience-box span{

    font-size:15px;

}

.contact-form-box{

    background:#fff;

    padding:42px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.sub-title{

    color:#19b46b;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.contact-form-box h2{

    margin:7px 0;

    font-size:40px;

}

.contact-form-box p{

    color:#666;

    margin-bottom:22px;

    line-height:1.8;

}

.form-control{

    height:58px;

    border-radius:12px;

    border:1px solid #ddd;

    margin-bottom:20px;

    box-shadow:none;

    padding:15px 20px;

}

textarea.form-control{

    height:auto;

}

.form-control:focus{

    border-color:#19b46b;

    box-shadow:none;

}

.theme-btn{

    background:#19b46b;

    color:#fff;

    border:none;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.theme-btn:hover{

    background:#111;

}

.theme-btn i{

    margin-left:8px;

}

/*==============================
LOCATION MAP
==============================*/

.location-map{

    padding:85px 0 0;

    background:#fff;

}

.map-wrapper{

    width:100%;

    height:550px;

    overflow:hidden;

    border-top:1px solid #eee;

}

.map-wrapper iframe{

    width:100%;

    height:100%;

    border:0;

    filter:grayscale(15%);

    transition:.4s;

}

.map-wrapper:hover iframe{

    filter:grayscale(0);

}

@media(max-width:768px){

.map-wrapper{

    height:400px;

}

}

/*==============================
ALUMINIUM BANNER
==============================*/

.service-banner{

    position:relative;

    height:700px;

    display:flex;

    align-items:center;

    background:url("../image/alumuwork.jpg") center/cover no-repeat;

    overflow:hidden;

    padding-top: 40px;

}

.service-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(17,17,17,.82) 20%,
        rgba(17,17,17,.25) 100%
    );

}

.service-banner-content{

    position:relative;

    z-index:2;

    max-width:700px;

    color:#fff;

}

.service-banner-content span{

    display:inline-block;

    color:#19b46b;

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.service-banner-content h1{

    font-size:62px;

    line-height:1.2;

    margin-bottom:20px;

    font-weight:700;

}

.service-banner-content p{

    font-size:18px;

    line-height:1.9;

    color:#ddd;

    margin-bottom:35px;

}

.banner-btn{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.theme-btn{

    background:#19b46b;

    color:#fff;

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.theme-btn:hover{

    background:#fff;

    color:#19b46b;

}

.call-btn{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

    padding:15px 34px;

    border-radius:50px;

    transition:.4s;

}

.call-btn:hover{

    background:#fff;

    color:#111;

}

.service-breadcrumb{

    display:flex;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;

}

.service-breadcrumb a{

    color:#19b46b;

    font-weight:500;

}

.service-breadcrumb span,

.service-breadcrumb i{

    color:#fff;

}

@media(max-width:991px){

.service-banner{

    height:500px;

}

.service-banner-content h1{

    font-size:42px;

}

.service-banner-content p{

    font-size:16px;

}

.banner-btn{

    flex-direction:column;

    align-items:flex-start;

}

}

/*==============================
SERVICE INTRO
==============================*/

.service-intro{

    padding:110px 0;

    background:#fff;

}

.service-image{

    position:relative;

}

.service-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 557px;
}

.service-content{

    padding-left:40px;

}

.subtitle{

    color:#19b46b;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

    font-weight:600;

}

.service-content h2{

    font-size:48px;

    line-height:1.3;

    margin:18px 0 25px;

}

.service-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:22px;

}

.service-highlights{

    display:flex;

    gap:20px;

    margin-top:35px;

}

.highlight-box{

    flex:1;

    background:#f8f8f8;

    padding:25px;

    text-align:center;

    border-radius:18px;

    transition:.4s;

}

.highlight-box:hover{

    background:#19b46b;

    transform:translateY(-8px);

}

.highlight-box h3{

    font-size:34px;

    color:#19b46b;

    margin-bottom:8px;

}

.highlight-box span{

    color:#666;

    font-size:15px;

}

.highlight-box:hover h3,
.highlight-box:hover span{

    color:#fff;

}

/*==============================
OUR EXPERTISE
==============================*/

.our-expertise{

    padding:100px 0;

    background:#f8f9fa;

}

.expertise-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);
    
        height: 479px;

}

.expertise-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.expertise-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.expertise-card:hover img{

    transform:scale(1.08);

}

.expertise-content{

    padding:30px;

}

.expertise-content h4{

    margin-bottom:15px;

    font-size:24px;

}

.expertise-content p{

    color:#666;

    line-height:1.8;

    margin:0;

}

/*==============================
PERFECT FOR SECTION
==============================*/

.perfect-space-sec{

    padding:100px 0;

    background:#f8f9fa;

}

.space-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.4s;

    border:1px solid #ececec;

}

.space-card:hover{

    transform:translateY(-10px);

    border-color:#19b46b;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.space-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#19b46b;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:32px;

    transition:.4s;

}

.space-card:hover .space-icon{

    transform:rotateY(180deg);

}

.space-card h4{

    font-size:24px;

    margin-bottom:15px;

    color:#111;

}

.space-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

.mvs-hover-gallery{
    padding:30px 0;
    background:#fafafa;
}

.gallery-top{
    text-align:center;
    margin-bottom:60px;
}

.gallery-top span{
    color:#19b56b;
    font-weight:700;
    letter-spacing:3px;
}

.gallery-top h2{
    font-size:48px;
    margin:15px 0;
    font-weight:700;
}

.gallery-top p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.gallery-wrapper{
    display:flex;
    gap:15px;
    height:500px;
}

.gallery-box{
    flex:1;
    position:relative;
    overflow:hidden;
    border-radius:20px;
    transition:.6s;
    cursor:pointer;
}

.gallery-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.gallery-wrapper:hover .gallery-box{
    flex:.8;
}

.gallery-wrapper .gallery-box:hover{
    flex:3;
}

.gallery-box::after{
    content:"";
    position:absolute;
    inset:0;
        background: linear-gradient(to top, rgb(0 0 0 / 65%), rgba(0, 0, 0, .1));
}

.gallery-content{
    position:absolute;
    bottom:35px;
    left:30px;
    z-index:2;
    color:#fff;
}

.gallery-content h3{
    font-size:28px;
    margin:0;
}

.gallery-box:hover img{
    transform:scale(1.08);
}

@media(max-width:991px){

.gallery-wrapper{
    flex-direction:column;
    height:auto;
}

.gallery-box{
    height:280px;
}

.gallery-wrapper:hover .gallery-box,
.gallery-wrapper .gallery-box:hover{
    flex:unset;
}

}

.gallery-wrapper{
    display:flex;
    gap:10px;
    height:520px;
}

.gallery-box{
    flex:1;
    min-width:70px;
    position:relative;
    overflow:hidden;
    border-radius:18px;
    transition:all .5s ease;
    cursor:pointer;
}

.gallery-wrapper:hover .gallery-box{
    flex:0.6;
}

.gallery-wrapper .gallery-box:hover{
    flex:6;
}

.mvs-masonry-gallery span{
    color:#19b46b;
    font-weight:700;
    letter-spacing:3px;
}

.mvs-masonry-gallery h2{
    font-size:48px;
    margin:15px 0;
    font-weight:700;
}
.mvs-masonry-gallery{
    padding:100px 0;
    background:#f8f8f8;
}

.masonry-gallery{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:180px;
    gap:15px;

}

.item{

    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;

}

.item img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.item:hover img{

    transform:scale(1.12);

}

.item::before{

    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
    opacity:0;
    transition:.5s;
    z-index:1;

}

.item:hover::before{

    opacity:1;

}

.item::after{

    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:55px;
    height:55px;
   
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    opacity:0;
    transition:.5s;
    z-index:2;

}

.item:hover::after{

    opacity:1;

}

.tall{

    grid-row:span 2;

}

.wide{

    grid-column:span 2;

}

.big{

    grid-column:span 2;
    grid-row:span 2;

}

@media(max-width:991px){

.masonry-gallery{

grid-template-columns:repeat(2,1fr);

}

.big,
.wide{

grid-column:span 2;

}

}

@media(max-width:576px){

.masonry-gallery{

grid-template-columns:1fr;

}

.big,
.wide,
.tall{

grid-column:span 1;
grid-row:span 1;

}

}
