*{
    box-sizing:border-box;
}

html,
body{

    overflow-x:hidden;

}
/*==============================
HERO
==============================*/

.hero{

    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

}

.hero-video{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    z-index:2;

    height:100%;

    display:flex;

    align-items:flex-end;

}

.hero-bottom{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    padding-bottom:40px;

}

.hero-bottom h1{

    font-family:"Monument", sans-serif;

    font-size:48px;

    font-weight: 400;

    color:#fff;

    line-height:1.1;

    letter-spacing:1px;

     display:flex;
    gap:10px;

}

.green-dot{
    color:#81C341;
    font-size:1.9em;   /* Increase size */
    line-height:0;
    
}

.scroll-arrow{

    display:flex;

    align-items:center;

    justify-content:center;

    animation:bounce 2s infinite;

}

.scroll-arrow svg{

    transition:.3s;

}

.scroll-arrow:hover{

    transform:translateY(5px);

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translateY(0);

    }

    40%{

        transform:translateY(8px);

    }

    60%{

        transform:translateY(4px);

    }

}

/*==============================
MUTE BUTTON
==============================*/

.mute-btn{

    position:absolute;

    left:30px;

    top:50%;

    transform:translateY(-50%);

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(8px);

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    z-index:3;

    transition:.3s;

}

.mute-btn:hover{

    background:#81C341;

}

#volumeOn{
    display:none;
}

#volumeOff{
    display:block;
}

/*==============================
TABLET
==============================*/

@media(max-width:991px){

.hero-bottom h1{

    font-size:34px;

}

.hero-bottom{

    padding-bottom:30px;

}

}

/*==============================
MOBILE
==============================*/

@media (max-width:768px){

.hero{

    position:relative;
    width:100%;
    height:100vh;      /* Full mobile screen */
    min-height:600px;  /* Prevents very short screens */
    overflow:hidden;

}

.hero-video{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;   /* Crop the video to fill the screen */

}

.hero-overlay{

    position:absolute;
    inset:0;

}

.hero-content{

    position:relative;
    z-index:2;

    height:100%;

    display:flex;
    align-items:flex-end;

}

.hero-bottom{

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    padding:20px;

}

.hero-bottom h1{

    display:flex;
    flex-direction:column;
    gap:4px;
    font-size:28px;
    line-height:1.1;

}

.scroll-arrow svg{

    width:34px;
    height:34px;

}

.mute-btn{

    left:15px;

    width:42px;
    height:42px;

}

}






/*==============================
ABOUT INTRO
==============================*/

.about-intro{

    padding:80px 0 0;
    background:#E9E9E9;

}

.about-content{

    /*max-width:1080px;
    margin:0 auto;*/
    width:100%;

}

.intro-text,
.bottom-text{

    font-family:"DM Sans", sans-serif;
    font-size:28px;
    line-height:1.45;
    color:#1A1617;
    font-weight:400;

}
/*
.about-content h2{

    margin:28px 0 45px;

    font-family:"Monument", sans-serif;
    font-size:32px;
    font-weight:400;
    color:#1A1617;

}*/

.about-content h2{

    margin:28px 0 45px;

    display:flex;
    flex-direction:column;
    gap:16px;

}

.normal-text{

    font-family:"DM Sans", sans-serif;
    font-size:28px;
    font-weight:400;
    color:#1A1617;

}
.green-dot{
    color:#81C341;
    font-size:1.8em;   /* Increase size */
    line-height:1;
}

.tagline{

    font-family:"Monument", sans-serif;
    font-size:36px;
    font-weight:600;
    color:#1A1617;

    text-align:center;
    display:block;

}

.about-content h2 span{

    font-family:"Monument", sans-serif;
    font-weight: 400;

}



/*==============================
STATS
==============================*/

.stats{

    /*display:grid;
    grid-template-columns:repeat(3,1fr);*/
    display: flex;
    gap:24px;

    margin:45px 0;

}

.stat-card{

    border:1px solid #D9D9D9;
    border-radius:12px;
    background:#E9E9E9;

    padding:32px 20px;

    text-align:center;
    flex: 1;

}

.stat-card h3{

    font-family:"Monument", sans-serif;
    font-size:32px;
    line-height:1.1;
    color:#1A1617;
    font-weight:400;

    margin-bottom:15px;

}

.stat-card p{

    font-family:"DM Sans", sans-serif;
    font-size:24px;
    color:#4A4A4A;

}



/*==============================
IMAGE
==============================*/

.about-image{

    
    width:100%;

    margin-top:50px;

}

.about-image img{

    width:100%;
    height:400px;
    object-fit:cover;
    display:block;

}
@media (max-width:991px){

.about-intro{

    padding-top:60px;

}

.intro-text,
.bottom-text{

    font-size:20px;

}

.about-content h2{

    font-size:24px;

}

.stat-card h3{

    font-size:26px;

}

.stat-card p{

    font-size:18px;

}

.normal-text{
    font-size:20px;
}

.tagline{
    font-size:24px;
}

}

@media (max-width:768px){

.about-intro{

    padding-top:40px;

}

.about-content{

    width:90%;
    margin:auto;

}

.intro-text,
.bottom-text{

    font-size:14px;
    line-height:1.6;

}

.about-content h2{

    font-size:20px;
    margin:18px 0 30px;

}

.stats{

    /*grid-template-columns:repeat(2,1fr);
    gap:15px;

    margin:30px 0;*/
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:16px;

}

.stat-card{

   /* padding:22px 12px;*/
    width:100%;

    min-width:0;

}

.stat-card h3{

    font-size:20px;
    margin-bottom:10px;
    line-height:1.25;

}

.stat-card p{

    font-size:12px;
    line-height:1.4;

}

/* This removes the horizontal scroll */

.stat-card:last-child{

    grid-column:1 / -1;
    width:48%;
    max-width:220px;
    margin:0 auto;

    justify-self:center;
}

.about-image{
    

    margin-top:35px;

}

.about-image img{

    height:220px;

}

.normal-text{
    font-size:14px;
}

.tagline{
    font-size:20px;
}

}




/*SERVICE===========================*/

/*====================================
SERVICES
====================================*/

.services{

    width:100%;

    background:#fff;

}

.services-heading{

    padding:60px 0;

    text-align:center;

}

.services-heading h2{

    font-family:"Monument", sans-serif;
    font-size:48px;
    font-weight:400;

}

/*====================================
WRAPPER
====================================*/

.services-wrapper{

    position:relative;

    width:100%;

    height:800px;

    overflow:hidden;

}

/*====================================
CARD
====================================*/

.service-card{

    position:absolute;

    top:0;

    width:33.333%;

    height:100%;

    overflow:hidden;

    cursor:pointer;

    transition:all .7s cubic-bezier(.76,.01,.18,1);

}

.service-card:nth-child(1){

    left:0;

}

.service-card:nth-child(2){

    left:33.333%;

}

.service-card:nth-child(3){

    left:66.666%;

}

.service-card.active{

    left:0 !important;

    width:100%;

    z-index:20;

}


.service-card img{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-card.active img{

    transform:scale(1.08);

}

.service-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

    to top,

    rgba(0,0,0,.75),

    rgba(0,0,0,.15)

    );

}

.service-content{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:50px;

    color:#fff;

    z-index:2;

}

.service-top{

    display:flex;
    align-items:flex-end;
    min-height:70px;      
}

.service-top h3{
    font-family:"Monument", sans-serif;
    font-size:26px;
    font-weight:400;
    line-height:1.15;
    margin:0;

    width:230px;
    max-width:100%;    /* try 70–80px */
}

.service-top span{

    font-family:"Monument", sans-serif;

    font-size:34px;

    font-weight: 400;

}
/*
.service-top h3{

    font-family:"Monument", sans-serif;
    font-size:26px;
    line-height:1.15;
    font-weight:400;

    margin:0;
}*/

.service-bottom{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:30px;

    margin-top:20px;

}

.service-bottom p{

    width:520px;

    max-width:70%;

    font-size:18px;

    line-height:1.7;

    opacity:0;

    transform:translateY(40px);

    transition:.45s;

}

.service-card.active .service-bottom p{

    opacity:1;

    transform:translateY(0);

}

.service-arrow{

    width:64px;

    height:64px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.35);

    background:transparent;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.service-arrow{

    text-decoration:none;

}

.service-arrow svg{

    width:24px;

    height:24px;

    stroke:#fff;

    fill:none;

    stroke-width:2;

}

.service-card:hover .service-arrow,

.service-card.active .service-arrow{

    background:#81C341;

}

.service-card.active .service-arrow{

    background:#81C341;

    color:#fff;

}

.service-card:hover .service-arrow{

    background:#81C341;

}

/*====================================
HOVER
====================================*/

.service-card:hover img{

    transform:scale(1.08);

}

.service-card:hover .service-arrow{

    background:#81C341;

}


.service-card.active .service-bottom p{

    opacity:1;

    transform:translateY(0);

}

.service-card .service-bottom p{

    opacity:0;

    transform:translateY(30px);

    transition:.45s ease;

}

@media (max-width:1300px){

    .service-top h3{
        width:190px;
        font-size:22px;
    }

}

@media (max-width:1200px){

    .service-content{
        padding:30px;
    }

    .service-top h3{
        font-size:20px;
        line-height:1.15;
    }

    .service-arrow{
        width:50px;
        height:50px;
    }

}

@media (max-width:900px){

    .service-content{
        padding:20px;
    }

    .service-top h3{
        font-size:18px;
        line-height:1.1;
    }

}


/*@media (max-width:991px){*/
@media (max-width:1100px){

.services-heading{

    padding:40px 20px;

}

.services-heading h2{

    font-size:28px;

}

.services-wrapper{

     display:block;

    position:relative;

    height:auto;

}

.service-card{

    position:relative !important;

    display:block;

    width:100%;

    left:auto !important;

    top:auto !important;

    height:120px;

    margin-bottom:2px;

    overflow:hidden;

}

.service-card img{

    transform:none !important;

}

.service-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    position:absolute;

    inset:0;

}

.service-card.active{

    height:480px;

}

.service-content{

    position:absolute;

    inset:0;

    padding:24px;

    display:flex;

    flex-direction:column;

    justify-content:center;
    align-items: flex-start;

}

.service-top{
    width:100%;
    min-height:auto;

    display:flex;
    justify-content:flex-start;
    align-items:center;
}

.service-top span{

    font-size:22px;

}

.service-top h3{
    font-size:22px;
    line-height:1.15;
    margin:0;
    text-align:left;
    max-width:260px;
}

.service-bottom{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:16px;

    margin-top:15px;

    opacity:0;

    visibility:hidden;

}

.service-card.active .service-bottom{

    opacity:1;

    visibility:visible;

}

.service-bottom p{

    width:100%;

    max-width:100%;

    font-size:14px;

    line-height:1.6;

}

.service-arrow{

    width:46px;

    height:46px;

}

.services-wrapper::after{

    content:"";

    display:block;

    clear:both;

}

}

@media (max-width:768px){

    .service-card{

        height:170px;

    }

    .service-card.active{

        height:500px;

    }

}

@media (max-width:576px){

    .service-top{

        min-height:60px;

    }

    .service-top h3{

        font-size:18px;
        line-height:1.2;

    }

}

@media (max-width:480px){

    .service-content{

        justify-content:flex-start;   /* Move content to vertical center */

        align-items:center;       /* Center horizontally */

        text-align:center;

        padding:20px;
      
    }

    .service-top{

        width:100%;

        min-height:auto;

        display:flex;

        justify-content:center;

        align-items:center;

    }

    .service-top h3{

        font-size:20px;

        line-height:1.15;

        margin:0;

        width:100%;

        text-align:center;

        word-break:normal;

        overflow-wrap:break-word;

    }

    /* Hide description until expanded */

    .service-bottom{

        display:none;

    }

    .service-card.active{

        justify-content:flex-end;

    }

    .service-card.active .service-content{

        justify-content:flex-end;

        align-items:flex-start;

        text-align:left;

    }

    .service-card.active .service-top{

        justify-content:flex-start;

    }

    .service-card.active .service-top h3{

        text-align:left;

    }

    .service-card.active .service-bottom{

        display:flex;

    }

}



/*PROJECT=================*/
/*====================================
PROJECTS
====================================*/

.projects{

    padding:60px 0;

    background:#fff;

}

.projects-heading{

    text-align:center;

    margin-bottom:60px;

}

.projects-heading h2{

    font-family:"Monument", sans-serif;
    font-size:48px;
    font-weight:400;
    color:#1A1617;

}

/*====================================
GRID
====================================*/

.projects-grid{

    display:flex;

    flex-direction:column;

    gap:35px;

}

/*====================================
CARD
====================================*/

.project-card{

    display:grid;

    grid-template-columns:2fr 1fr;

    text-decoration:none;

    overflow:hidden;

    transition:.35s;

}

.project-card.reverse{

    grid-template-columns:1fr 2fr;

}

.project-card.reverse .project-image{

    order:2;

}

.project-card.reverse .project-content{

    order:1;

}

/*====================================
IMAGE
====================================*/

.project-image{

    height:520px;

    overflow:hidden;

}

.project-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.project-card:hover .project-image img{

    transform:scale(1.05);

}

/*====================================
RIGHT COLUMN
====================================*/
/*
.project-content{

    display:grid;

    grid-template-rows:1fr 230px;

}*/

.project-content{

    display:grid;

    grid-template-rows:1fr 230px;

    height:520px;      /* Same as .project-image */
    overflow:hidden;

}

.project-info{

    background:#1A1617;

    color:#fff;

    padding:35px;

    display:flex;

    flex-direction:column;

}

.project-info h3{

    font-family:"Monument", sans-serif;

    font-size:28px;

    font-weight:400;

    margin-bottom:20px;

}

.project-info p{

    font-family:"DM Sans", sans-serif;

    font-size:17px;

    line-height:1.7;

    color:#D8D8D8;

    margin-bottom:auto;

}

/*====================================
ARROW
====================================*/

.project-arrow{

    width:58px;
    height:58px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.2);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.project-arrow svg{

    width:24px;
    height:24px;

    stroke:#81C341;

    fill:none;

    stroke-width:2;

    transition:.35s;

}

/* Hover */

.project-card:hover .project-arrow{

    background:#81C341;

}

.project-card:hover .project-arrow svg{

    stroke:#fff;

}

/*====================================
BOTTOM IMAGE
====================================*/

.project-small-image{

    height:230px;

    overflow:hidden;

}

.project-small-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.project-card:hover .project-small-image img{

    transform:scale(1.05);

}

/*====================================
EXPLORE MORE PROJECTS BUTTON
====================================*/

.projects-btn-wrapper{

    display:flex;
    justify-content:center;
    margin-top:50px;

}

.projects-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 36px;

    background:#81C341;
    color:#fff;

    text-decoration:none;


    font-family:"Monument", sans-serif;
    font-size:18px;
    font-weight:300;

    border-radius:8px;

    transition:all .35s ease;

}

.projects-btn:hover{

    background:#0072BB;
    transform:translateY(-2px);

}

/*====================================
TABLET
====================================*/

@media(max-width:991px){

.projects{

    padding:70px 0;

}

.projects-heading{

    margin-bottom:45px;

}

.projects-heading h2{

    font-size:36px;

}

.project-image{

    height:380px;

}
/*
.project-content{

    grid-template-rows:1fr 170px;

}*/

/*
.project-content{

    grid-template-rows:1fr 170px;

    height:380px;      
    overflow:hidden;

}*/
.project-content{

    display:block;

    height:auto;
    min-height:auto;

    overflow:visible;

}

.project-small-image{

    height:170px;

}

.project-info{

    padding:28px;

}

.project-info h3{

    font-size:22px;

}

.project-info p{

    font-size:15px;

}

}

@media (max-width:991px){

.projects-btn-wrapper{

    margin-top:40px;

}

.projects-btn{

    padding:15px 32px;
    font-size:16px;

}

}

/*====================================
MOBILE
====================================*/

@media(max-width:768px){

.projects{

    padding:55px 0;

}

.projects-heading{

    margin-bottom:35px;

}

.projects-heading h2{

    font-size:24px;

}

.project-card,

.project-card.reverse{

    display:block;
    gap: 12px;

}

.project-image{

    height:230px;

}

.project-content{

    display:block;

}

.project-small-image{

    display:none;

}

.project-info{

    padding:20px;

}

.project-info h3{

    font-size:18px;

    margin-bottom:12px;

}

.project-info p{

    font-size:14px;

    line-height:1.6;

    margin-bottom:20px;

}

.project-arrow{

    width:46px;

    height:46px;

}

}

@media (max-width:768px){

.projects-btn-wrapper{

    margin-top:35px;

}

.projects-btn{

    width:100%;
    max-width:260px;

    padding:14px 24px;

    font-size:14px;
    text-align:center;

}

}



/*====== */

/*====================================
WHY CHOOSE US
====================================*/
/*====================================
WHY CHOOSE US
====================================*/

.why-choose{

    padding:40px 0;

    background:#fff;

}

.why-title{

    text-align:center;

    font-family:"Monument", sans-serif;

    font-size:48px;

    font-weight:400;

    color:#1A1617;

    margin-bottom:50px;

}

.why-video-wrapper{

    width:100%;

    height:750px;

    overflow:hidden;

}

.why-video{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

@media (max-width:991px){

.why-choose{

    padding:70px 0;

}

.why-title{

    font-size:36px;

    margin-bottom:40px;

}

.why-video-wrapper{

    height:550px;

}

}

@media (max-width:768px){

    .why-choose{

        padding:55px 0;

    }

    .why-title{

        font-size:24px;

        margin-bottom:25px;

    }

    .why-video-wrapper{

        height:auto;
        overflow:visible;

    }

    .why-video-mobile{

        width:100%;
        height:auto;
        display:block;
        object-fit:contain;

    }

}


/* Desktop video visible by default */
.why-video-desktop{
    display:block;
}

.why-video-mobile{
    display:none;
}

/* Mobile */
@media(max-width:768px){

    .why-video-desktop{
        display:none;
    }

    .why-video-mobile{
        display:block;
    }

}