* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body{
    font-family: "SUSE Mono", sans-serif;
	font-family: "Offside", sans-serif;
	font-family: "Exo", sans-serif;
    background:#F2F3EE;
    color:#454544;
    line-height:1.7;
	font-size:15px;
}
a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    outline:none;
    cursor:pointer;
    font-family:inherit;
}

input,
textarea{
    font-family:inherit;
}

:root{
    --primary:#16a34a;
    --primary-hover:#12803a;
    --secondary:#111827;
    --text:#555555;
    --white:#ffffff;
    --light:#f8f8f8;
    --border:#e5e7eb;
    --transition:0.3s ease;
}

section{
    padding:90px 0;
}

.section-title{
    font-size:42px;
    font-weight:600;
    color:var(--secondary);
    margin-bottom:20px;
}

.section-subtitle{
    color:var(--text);
    font-size:17px;
}
.btn-custom{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 32px;
    background:var(--primary);
    color:var(--white);
    border-radius:50px;
    transition:var(--transition);
    font-size:15px;
    font-weight:600;
    border:none;
}

.btn-custom:hover{
    background:var(--primary-hover);
    color:var(--white);
}

/*==========================
    MAIN
==========================*/

main{
    margin-top:104px;
}
/*==========================
    FOOTER
==========================*/

.footer{
    background:#111827;
    color:#fff;
    padding:60px 0;
}

/*==============================
Header
==============================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:.4s ease;

    background:transparent;

    padding:14px 0;

}

.header.scrolled{

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    padding:10px 0;

}

/*==============================
Logo
==============================*/

.navbar-brand{

    padding:0;

}

.navbar-brand img{

    height:60px;

    transition:.3s;

}

.header.scrolled .navbar-brand img{

    height:50px;

}

/*==============================
Menu
==============================*/

.navbar-nav{

    gap:10px;

}

.nav-link{

    color:#111827;

    font-size:15px;

    font-weight:600;

    padding:10px 18px !important;

    transition:.3s;

    position:relative;

}

.nav-link:hover,

.nav-link.active{

    color:#16a34a;

}

.header.scrolled .nav-link{

    color:#111827;

}

.header.scrolled .nav-link:hover,

.header.scrolled .nav-link.active{

    color:#16a34a;

}

.header .nav-link.active{

    color:#16a34a;

}

/*==============================
Button
==============================*/

.btn-custom{

    background:#16a34a;

    color:#fff;

    padding:13px 28px;

    border-radius:8px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

    display:inline-block;

}

.btn-custom:hover{

    background:#12803a;

    color:#fff;

}

/*==============================
Mobile Toggle
==============================*/

.navbar-toggler{

    color:#fff;

    font-size:28px;

}

.header.scrolled .navbar-toggler{

    color:#111827;

}
/* Logo Area */

.logo-area{
    gap:15px;
}

/* Projects Button */

.project-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    background:#16a34a;
    color:#fff;
    font-size:14px;
    font-weight:600;
    border-radius:8px;
    transition:0.3s ease;
    white-space:nowrap;
}

.project-btn:hover{
    background:#12803a;
    color:#fff;
}
/* Contact Button */

.contact-btn{

    position:relative;

    display:flex;
    align-items:center;
    gap:10px;

    overflow:hidden;

    padding:6px 16px 6px 22px;

    border-radius:8px;

    background:#16a34a;

    color:#fff;

    font-size:14px;
    font-weight:600;

    transition:.4s ease;
    width: fit-content;
    z-index:1;

}

/* Animated Background */

.contact-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:#111827;

    transition:.45s ease;

    z-index:-1;

}

.contact-btn:hover::before{

    left:0;

}

/* Text */

.contact-btn .btn-text{

    position:relative;

    transition:.35s ease;

}

/* Icon */

.contact-btn .btn-icon{

    width:34px;
    height:34px;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.4s ease;

}

.contact-btn:hover .btn-icon{

    transform:rotate(45deg) scale(1.1);

    background:#fff;

    color:#16a34a;

}
/*=====================================
    Global Button
=====================================*/

.btn-custom{

    position:relative;

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:13px 28px;

    background:var(--primary);

    color:#fff;

    border-radius:8px;

    font-size:15px;
    font-weight:600;

    overflow:hidden;

    transition:.4s ease;

    z-index:1;

}

/* Animated Background */

.btn-custom::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:var(--secondary);

    transition:.45s ease;

    z-index:-1;

}

.btn-custom:hover::before{

    left:0;

}

/* Lift Effect */

.btn-custom:hover{

    color:#fff;

    box-shadow:0 15px 35px rgba(22,163,74,.25);

}

/* Text */

.btn-text{

    transition:.35s ease;

}

.btn-custom:hover .btn-text{

    transform:translateX(4px);

}

/* Icon */

.btn-icon{

    width:34px;
    height:34px;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.4s ease;

}

.btn-custom:hover .btn-icon{

    background:#fff;

    color:var(--primary);

    transform:rotate(45deg) scale(1.08);

}
@media(max-width:991px){

.header{

    background:#fff;

    padding:12px 0;

}

.navbar-brand img{

    height:50px;

}

.navbar-toggler{

    color:#111827;

}

.navbar-collapse{

    background:#fff;

    margin-top:15px;

    border-radius:15px;

    padding:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.navbar-nav{

    gap:0;

}

.header-btn{

    margin-top:15px;

}

.btn-custom{

    text-align:center;

}

 .logo-area{
        gap:10px;
}

.project-btn{
        padding:8px 16px;
        font-size:13px;
}

.navbar-brand img{
        height:45px;
}

}


/*==============================
Banner
==============================*/

.banner{

    width:100%;
    overflow:hidden;
	padding:0px;

}

.banner-slider{

    width:100%;
    height:100vh;

    cursor:grab;

}

.banner-slider:active{

    cursor:grabbing;

}

.banner-item{

    width:100%;
    height:100vh;

    background-size:cover;

    background-position:center;

    position:relative;

    display:flex;

    align-items:center;

}

.banner-item::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.35);

}

.banner-content{

    position:relative;

    z-index:2;

    max-width:700px;

    color:#fff;
	text-align: center;
    margin: auto;

}

.banner-content h2{

    font-size:42px;

    font-weight:500;

    margin-bottom:15px;

    text-transform:uppercase;

    letter-spacing:2px;
    font-family: "Saira Stencil", sans-serif;
    

}

.banner-content h1{

    font-size:62px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:30px;

}

.swiper-button-next,
.swiper-button-prev{

    color:#fff;

}

.swiper-pagination-bullet{

    background:#fff;

    opacity:.5;

}

.swiper-pagination-bullet-active{

    background:#16a34a;

    opacity:1;

}

@media(max-width:991px){

.banner-item{

    height:700px;

}

.banner-content{

    text-align:center;

    margin:auto;

}

.banner-content h1{

    font-size:46px;

}

}

@media(max-width:767px){

.banner-item{

    height:550px;

}

.banner-content h2{

    font-size:16px;

}

.banner-content h1{

    font-size:32px;

}

.swiper-button-next,
.swiper-button-prev{

    display:none;

}

}
/*=========================
Project Menu
=========================*/

.project-menu{

    position:relative;
	list-style:none;

}

.project-toggle{

    display:flex;
    align-items:center;
    gap:8px;
    color: #FFF !important;
    cursor:pointer;

}

.project-toggle i{

    font-size:12px;

    transition:.3s;

}

.project-menu.active .project-toggle i{

    transform:rotate(180deg);

}

/*=========================
Dropdown
=========================*/

.project-dropdown{

    position:absolute;

    top:60px;

    left:0;

    width:340px;

    background:#fff;

    border-radius:20px;

    padding:15px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

}

.project-menu.active .project-dropdown{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/*=========================
Cards
=========================*/

.project-card:last-child{

    margin-bottom:0;

}

.project-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#16a34a;

    transform:scaleY(0);

    transition:.35s;
	z-index:1;

}

.project-card:hover{

    background:#f7f7f7;

    transform:translateY(-4px);

}

.project-card:hover::before{

    transform:scaleY(1);

}

.project-icon{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.project-icon.completed{

    background:#111827;

}

.project-info{

    flex:1;

}

.project-info h5{

    font-size:16px;

    margin-bottom:3px;

    color:#111827;

    font-weight:600;

}

.project-info p{

    margin:0;

    color:#777;

    font-size:13px;

}

.project-arrow{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#f2f2f2;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.project-card:hover .project-arrow{

    background:#16a34a;

    color:#fff;

    transform:rotate(45deg);

}
@media(max-width:991px){

.project-dropdown{

    position:static;

    width:100%;

    opacity:1;

    visibility:visible;

    transform:none;

    display:none;

    box-shadow:none;

    padding:10px 0;

    background:transparent;

}

.project-menu.active .project-dropdown{

    display:block;

}

.project-card{

    background:#f8f8f8;

}

}

.banner-subtitle,
.banner-title,
.banner-btn{

    opacity:0;

}

.swiper-slide-active .banner-subtitle{

    animation:slideRight 3s ease forwards;

}

.swiper-slide-active .banner-title{

    animation:slideRight 3s 2s ease forwards;

}

.swiper-slide-active .banner-btn{

    animation:slideUp 2s 1s ease forwards;

}

@keyframes slideRight{

    from{

        opacity:0;

        transform:translateX(80px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes slideUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=====================================
    ABOUT SECTION
=====================================*/

.about-section{

    position:relative;

    padding:120px 0;

    background:#F2F3EE;

    overflow:hidden;

}

/*=====================================
    LEFT GALLERY
=====================================*/

.about-gallery{

    display:flex;

    gap:25px;

}

.about-left,
.about-right{

    flex:1;

    display:flex;

    flex-direction:column;

    gap:25px;

}

.about-img{

    overflow:hidden;

    border-radius:24px;

    position:relative;

}

.about-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s ease;

}

.about-img:hover img{

    transform:scale(1.08);

}

.img-one{

    height:490px;

}

.img-two{

    height:490px;

}

/*=====================================
    EXPERIENCE CARD
=====================================*/

.experience-card,
.experience-dark{

    border-radius:24px;

    padding:30px;

    display:flex;

    align-items:flex-start;

    gap:18px;

    transition:.4s;

}

.experience-card{

    background:#ffffff;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.experience-dark{

    background:#151515;

    color:#ffffff;

}

.experience-card:hover,
.experience-dark:hover{

    transform:translateY(-8px);

}

.experience-icon{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    flex-shrink:0;

}

.experience-card h2,
.experience-dark h2{

    font-size:50px;

    font-weight:600;

    line-height:1;

    margin-bottom:10px;

}

.experience-card p,
.experience-dark p{

    margin:0;

    font-size:18px;

    line-height:1.25;

    font-weight:500;
	

}
.experience-card p{color: var(--secondary);}

/*=====================================
    CONTENT
=====================================*/

.about-content{

    padding-left:0px;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:none;

    border:1px solid #cdcdcd;

    border-radius:50px;

    padding:8px 18px;

    margin-bottom:30px;

    font-size:18px;

    font-weight:500;

}

.btn-icon .fa-solid, .fas{transform: translateZ(0);
  backface-visibility: hidden;
}

.section-tag span{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#16a34a;

}

.about-content .section-title{

    font-size:46px;

    font-weight:600;

    line-height:1.1;

    margin-bottom:35px;

}

.about-text{

    margin-bottom:35px;

}

/*=====================================
    LIST
=====================================*/

.about-list{

    display:flex;

    flex-wrap:wrap;

    gap:35px;

    margin-bottom:45px;

}

.about-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:18px;

    color:#333;

}

.about-list i{

    color:#16a34a;

    font-size:18px;

}

.about-content hr{

    margin:45px 0;

    opacity:.12;

}

/*=====================================
    MISSION
=====================================*/

.mission-box{

    background:#fff;

    border-radius:24px;

    padding:30px 25px;

    text-align:center;

    transition:.45s;

    height:100%;

}

.mission-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.06);

}

.mission-icon{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    margin-bottom:26px;

    transition:.4s;

}

.mission-box:hover .mission-icon{

    transform:rotate(360deg);

}

.mission-box h4{

    font-size:20px;

    margin-bottom:10px;

    font-weight:600;
	color: var(--secondary);

}

.mission-box p{

    margin:0;

    line-height:1.8;

}

/*====================================
    1400px
====================================*/

@media(max-width:1400px){

.about-content .section-title{

    font-size:58px;

}

.experience-card h2,
.experience-dark h2{

    font-size:50px;

}

.experience-card p,
.experience-dark p{

    font-size:22px;

}

}


/*====================================
    1200px
====================================*/

@media(max-width:1199px){

.about-content{

    padding-left:0;

}

.about-content .section-title{

    font-size:50px;

}

.img-one{

    height:380px;

}

.img-two{

    height:416px;

}

.mission-box{

    padding:30px 30px;

}

.mission-box h4{

    font-size:28px;

}

}


/*====================================
    991px
====================================*/

@media(max-width:991px){

.about-section{

    padding:90px 0;

}

.about-gallery{

    margin-bottom:60px;

}

.about-content{

    text-align:center;

}

.about-list{

    justify-content:center;

}

.about-content .section-title{

    font-size:40px;

}

}


/*====================================
    767px
====================================*/

@media(max-width:767px){

.about-gallery{

    flex-direction:column;

}

.about-left,
.about-right{

    width:100%;

}

.img-one,
.img-two{

    height:350px;

}

.about-content .section-title{

    font-size:36px;

}

.about-list{

    gap:20px;

}

.about-list div{

    width:100%;

    justify-content:center;

}

.section-tag{

    margin:auto auto 25px;

}

}


/*====================================
    575px
====================================*/

@media(max-width:575px){

.about-section{

    padding:70px 0;

}

.about-content .section-title{

    font-size:30px;

    line-height:1.25;

}

.about-text{

    font-size:16px;

}

.experience-card,
.experience-dark{

    padding:20px;

}

.experience-card h2,
.experience-dark h2{

    font-size:42px;

}

.experience-card p,
.experience-dark p{

    font-size:18px;

}

.mission-box{

    padding:35px 20px;

}

.mission-box h4{

    font-size:24px;

}

.mission-box p{

    font-size:16px;

}

}
.about-img{

    cursor:pointer;
	transition:.8s;

}

.about-img:hover{

    transform:translateY(-10px);
	transition:.8s;

}

.mission-box{

    overflow:hidden;

    position:relative;

}

.mission-box::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(22,163,74,.08),

        transparent

    );

    transition:.8s;

}

.mission-box:hover::before{

    left:100%;

}

/*=====================================
    PROJECTS
=====================================*/

.project-section{

    padding:120px 0;

}


.project-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.project-image{

    overflow:hidden;
    border-radius:0px;
    height:280px;

}

.project-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.project-card:hover .project-image img{

    transform:scale(1.08);

}

.project-content{

    padding:30px;

}

.project-content h4{

    font-size:22px;

    font-weight:600;

    margin-bottom:15px;
	color: var(--secondary);

}

.project-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.project-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#16a34a;

    font-weight:600;

    transition:.3s;

}

.project-link i{

    transition:.3s;

}

.project-link:hover{

    color:#111;

}

.project-link:hover i{

    transform:translate(4px,-4px);

}
@media(max-width:991px){

.project-section{

    padding:90px 0;

}

.project-image{

    height:240px;

}

}

@media(max-width:767px){

.project-content{

    padding:25px;

}

.project-content h4{

    font-size:24px;

}

.project-image{

    height:220px;

}

}

.project-wrapper{

    background:#ffffff;

    border-radius:20px;

    padding:90px 70px;

    position:relative;

    overflow:hidden;

}

/* Decorative Background */

.project-wrapper::before{

    content:"";

    position:absolute;

    top:0;

    right:0;

    width:320px;

    height:320px;

    background:url("../images/pattern.png") no-repeat top right;

    opacity:.7;

    pointer-events:none;

}
.project-card{

    background:#f2f3ee;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    height:100%;

    border:1px solid #ececec;

}

.project-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}
@media(max-width:991px){

.project-wrapper{

    padding:70px 40px;

}

}

@media(max-width:767px){

.project-wrapper{

    padding:50px 25px;

    border-radius:25px;

}

}



.header .project-card{

    display:flex;

    align-items:center;

    gap:15px;

    padding:10px;

    border-radius:16px;

    background:#fff;

    transition:.35s;

    position:relative;

    overflow:hidden;

    margin-bottom:12px;

}

.header .project-card:last-child{

    margin-bottom:0;

}

.header .project-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#16a34a;

    transform:scaleY(0);

    transition:.35s;

}

.header .project-card:hover{

    background:#f7f7f7;

    transform:translateY(-4px);

}

.header .project-card:hover::before{

    transform:scaleY(1);

}

/*===================================
    ICON
===================================*/

.header .project-icon{

    width:40px;

    height:40px;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    flex-shrink:0;

}

.header .project-icon.completed{

    background:#111827;

}

/*===================================
    CONTENT
===================================*/

.header .project-info{

    flex:1;

}

.header .project-info h5{

    font-size:15px;

    font-weight:600;

    color:#111827;

    margin-bottom:5px;

}

.header .project-info p{

    margin:0;

    color:#777;

    font-size:13px;

    line-height:1.5;

}

/*===================================
    ARROW
===================================*/

.header .project-arrow{

    width:36px;

    height:36px;

    border-radius:50%;

    background:#f2f2f2;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.header .project-card:hover .project-arrow{

    background:#16a34a;

    color:#fff;

    transform:rotate(45deg);

}

/*=====================================
    COMPLETED PROJECTS
=====================================*/

.completed-section{

    padding:0px 0 120px;

    background:#F2F3EE;

}

.completed-wrapper{

    background:none;

    padding:0px;

}

.completed-card{

    background:#FFF;

    border-radius:24px;

    overflow:hidden;

    height:100%;

    transition:.4s;

    border:1px solid #ececec;

}

.completed-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.completed-image{

    position:relative;

    height:350px;

    overflow:hidden;

}

.completed-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.completed-card:hover .completed-image img{

    transform:scale(1.08);

}

.completed-badge{

    position:absolute;

    top:20px;

    right:20px;

    background:#16a34a;

    color:#fff;

    font-size:14px;

    font-weight:600;

    padding:8px 18px;

    border-radius:30px;

}

.completed-content{

    padding:30px;

}

.completed-content h4{

    font-size:22px;

    font-weight:600;

    margin-bottom:15px;

    color: var(--secondary);

}

.completed-content p{

    color:#666;

    line-height:1.8;

    margin:0;
    text-align: justify;

}

@media(max-width:991px){



.completed-image{

    height:280px;

}

}

@media(max-width:767px){


.completed-image{

    height:240px;

}

.completed-content{

    padding:25px;

}

.completed-content h4{

    font-size:24px;

}

}

/*=====================================
    SERVICES
=====================================*/

.services-section{

    padding:0 0 120px;

    background:#F2F3EE;

}

.services-wrapper{

    background:#fff;

    border-radius:20px;

    padding:90px 70px;

}

.services-card{

    background:#F2F3EE;

    border-radius:24px;

    overflow:hidden;

    height:100%;

    border:1px solid #ececec;

    transition:.4s;

}

.services-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.services-image{

    height:320px;

    overflow:hidden;

}

.services-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.services-card:hover .services-image img{

    transform:scale(1.08);

}

.services-content{

    padding:35px;

}

.services-content h3{

    font-size:22px;

    font-weight:600;

    line-height:1.3;

    margin-bottom:18px;
	color: var(--secondary);

}

.services-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;
    text-align: justify;

}

.services-list{

    margin-bottom:30px;
	padding:0px;

}

.services-list li{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

}

.services-list i{

    color:#16a34a;

}

.services-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#16a34a;

    font-weight:600;

}
.services-link:hover{color:#111;}
.services-link i{

    transition:.3s;

}

.services-link:hover i{

    transform:translate(4px,-4px);

}
@media(max-width:991px){

.services-wrapper{

    padding:70px 40px;

}

.services-image{

    height:260px;

}

}

@media(max-width:767px){

.services-wrapper{

    padding:50px 25px;

    border-radius:25px;

}

.services-content{

    padding:25px;

}

.services-content h3{

    font-size:26px;

}

.services-image{

    height:220px;

}

}
.completed-card{

    position:relative;

    overflow:hidden;

}

.completed-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#16a34a;

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s ease;

    z-index:2;

}

.completed-card:hover::before{

    transform:scaleY(1);

}
.services-card{

    position:relative;

    overflow:hidden;

}

.services-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#16a34a;

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s ease;

    z-index:2;

}

.services-card:hover::before{

    transform:scaleY(1);

}

/*=====================================
    GALLERY
=====================================*/

.gallery-section{

    padding:0px 0 120px;

    background:#F2F3EE;

}

.gallery-wrapper{

    background:none;

    padding:0px;

}

/* Masonry */

.gallery-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    grid-template-rows:315px 315px;

    gap:20px;
	margin-top: 50px;

}

.gallery-large{

    grid-row:1 / 3;

    height:100%;

}

.gallery-small{

    height:100%;

}

/* Item */

.gallery-item{

    position:relative;

    display:block;

    overflow:hidden;

    border-radius:24px;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.gallery-item:hover img{

    transform:scale(1.1);

}

/* Overlay */

.gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.4s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay i{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    transform:scale(.5);

    transition:.4s;

}

.gallery-item:hover .gallery-overlay i{

    transform:scale(1);

}

/* Bottom Images */

.row .gallery-item{

    height:250px;

}
@media(max-width:991px){


.gallery-large{

    height:450px;

}


}

@media(max-width:767px){

.gallery-wrapper{

    padding:50px 25px;

    border-radius:25px;

}

.gallery-large{

    height:300px;

}

.gallery-grid .gallery-small{

    height:220px;

}

.row .gallery-item{

    height:200px;

}

}


/*=====================================
    FOOTER
=====================================*/

.footer{

    padding:0px 0 40px;

    background:#F2F3EE;

}

.footer-wrapper{

    background:#1a1a1a;

    border-radius:20px;

    padding:80px;

    color:#fff;

    overflow:hidden;

}


/* Quote */

.footer-quote{

    padding-bottom:70px;

    border-bottom:1px solid rgba(255,255,255,.1);

}

.footer-quote-content h2{

    font-size:42px;

    font-weight:700;

    line-height:1.15;

    margin:0px 0 20px;

}

.footer-quote-content p{

    color:rgba(255,255,255,.7);

}

.footer-quote-form input{

    width:100%;

    height:60px;

    border:none;

    border-radius:8px;

    padding:0 20px;

    margin-bottom:20px;

}

.footer-quote-form button{

    width:100%;
    font-size: 18px;
    height:60px;
	justify-content: center;
	border:1px solid #16a34a !important;

}

/* Contact */

.footer-contact{

    padding:60px 0;

    border-bottom:1px solid rgba(255,255,255,.1);

}

.footer-contact-item{

    display:flex;

    align-items:Start;

    gap:20px;

}

.footer-icon{

    width:60px;

    height:60px;

    background:#16a34a;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;
	flex-shrink:0;

}

.footer-contact-item h5{

    margin-bottom:5px;

}

.footer-contact-item p{

    margin:0;

    color:rgba(255,255,255,.7);

}
.footer-contact-item p a{display: inline-block;transition: .3s;line-height: 18px;}
.footer-contact-item p a:hover{color:#16a34a;transform: translateX(5px);}

/* Main */

.footer-main{

    padding:60px 0;

}

.footer-logo{

    max-width:220px;

    margin-bottom:25px;

}

.footer-about{

    color:rgba(255,255,255,.8);
    padding-right: 20px;
    line-height:1.8;
    text-align: justify;

}

.footer-main h4{

    margin-bottom:25px;

    font-size:22px;

}

.footer-main ul{

    padding:0;

}

.footer-main li{

    margin-bottom:14px;
   color: rgba(255,255,255,.8);
}

.footer-main a{

    color:rgba(255,255,255,.8);

    transition:.3s;
	display: inline-block;
	line-height: 25px;

}

.footer-main a:hover{

    color:#16a34a;
	transform: translateX(5px);

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.footer-social a:hover{

    background:#16a34a;

    border-color:#16a34a;
	color:#FFF;
	transform: translateX(0px);

}

/* Bottom */

.footer-bottom{

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;
	display: flex;
    justify-content: space-between;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.7);

}
.footer-bottom a:hover{color:#16a34a;}
.footer-bottom a{transition: .3s;}

@media(max-width:991px){

.footer-wrapper{

    padding:50px 30px;

}

.footer-quote-content{

    margin-bottom:40px;

}

.footer-quote-content h2{

    font-size:36px;

}

.footer-contact-item{

    margin-bottom:25px;

}

}

@media(max-width:767px){

.footer-wrapper{

    padding:40px 20px;

    border-radius:25px;

}

.footer-quote-content h2{

    font-size:30px;

}

}

/*=====================================
    FLOATING CALL BUTTON
=====================================*/

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom: 27%;   /* Above Call button */

     width:65px;

    height:65px;

    background:#16a34a;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:24px;

    z-index:9999;

    box-shadow:0 10px 30px rgba(22,163,74,.35);

    transition:.4s;

}
.floating-whatsapp:hover{

    transform:translateY(-5px);

    color:#fff;

}
.floating-whatsapp:hover .call-text{

    opacity:1;

    visibility:visible;

}

.floating-whatsapp i{

    animation:phoneShake 2s infinite;

}

.floating-call{

    position:fixed;

    right:25px;
    bottom: 15%;
    

    width:65px;

    height:65px;

    background:#16a34a;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:24px;

    z-index:9999;

    box-shadow:0 10px 30px rgba(22,163,74,.35);

    transition:.4s;

}

.floating-call:hover{

    transform:translateY(-5px);

    color:#fff;

}

.floating-call i{

    animation:phoneShake 2s infinite;

}

/* Ripple */

.call-ripple{

    position:absolute;

    width:100%;

    height:100%;

    border-radius:50%;

    background:rgba(22,163,74,.4);

    animation:ripple 2s infinite;

}

.ripple-2{

    animation-delay:1s;

}



/* Ripple Animation */

@keyframes ripple{

    0%{

        transform:scale(1);

        opacity:.8;

    }

    100%{

        transform:scale(1.8);

        opacity:0;

    }

}

/* Phone Shake */

@keyframes phoneShake{

    0%,100%{

        transform:rotate(0);

    }

    5%{

        transform:rotate(-15deg);

    }

    10%{

        transform:rotate(15deg);

    }

    15%{

        transform:rotate(-15deg);

    }

    20%{

        transform:rotate(15deg);

    }

    25%{

        transform:rotate(0);

    }

}
.call-text{

    position:absolute;

    right:80px;

    white-space:nowrap;

    background:#111827;

    color:#fff;

    padding:10px 18px;

    border-radius:30px;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    font-size:14px;

    font-weight:600;

}

.floating-call:hover .call-text{

    opacity:1;

    visibility:visible;

}

/*=====================================
    SCROLL TOP
=====================================*/

.scroll-top{

    position:fixed;

    right:25px;

    bottom:30px;

    width:55px;

    height:55px;

    background:#111827;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    z-index:999;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.4s ease;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

.scroll-top.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.scroll-top:hover{

    background:#16a34a;

    color:#fff;

    transform:translateY(-5px);

}
.gallery-section .header-btn{
  margin: 40px auto 0px;
  display: table;
}


/*=====================================
    PAGE HERO
=====================================*/

.page-hero{

    position:relative;

    min-height:300px;

    overflow:hidden;

    display:flex;

    align-items:center;

}

.page-hero img{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.page-hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(17,24,39,.65);

}

.page-hero-content{

    position:relative;

    z-index:2;
	text-align:center;

    color:#fff;

}
.page-hero-content .section-tag{color: #111827;background: #f2f3ee;}
.page-hero-content h1{

    font-size:62px;

    font-weight:600;

    line-height:1.1;

    margin:5px 0 0px;

}

.page-hero-content p{

    font-size:20px;

    color:rgba(255,255,255,.85);

}
@media(max-width:991px){

.page-hero{

    height:500px;

}

.page-hero-content h1{

    font-size:52px;

}

}

@media(max-width:767px){

.page-hero{

    height:420px;

}

.page-hero-content h1{

    font-size:38px;

}

.page-hero-content p{

    font-size:16px;

}

}




/*=====================================
    ABOUT COMPANY
=====================================*/

.about-company{

    padding:120px 0;

    background:#F2F3EE;

}

.about-company-wrapper{

    background:none;

    padding:0px;

}

.about-company-image{

    height:650px;

    border-radius:30px;

    overflow:hidden;

}

.about-company-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}

.about-company-image:hover img{

    transform:scale(1.08);

}

.about-company-content{

    padding-left:30px;

}

.about-company-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;
    text-align: justify;

}

.about-info-boxes{

    margin-top:40px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.about-info-box{

    background:#f8f8f5;

    padding:28px;

    border-radius:20px;

    border-left:4px solid #16a34a;

}

.about-info-box h4{

    font-size:22px;

    margin-bottom:15px;

    color:#111827;

}

.about-info-box p{

    margin:0;

}
@media(max-width:991px){

.about-company-wrapper{

    padding:50px 35px;

}

.about-company-image{

    height:450px;

    margin-bottom:40px;

}

.about-company-content{

    padding-left:0;

}

}

@media(max-width:767px){

.about-company-wrapper{

    padding:35px 20px;

    border-radius:25px;

}

.about-company-image{

    height:320px;

}

.about-info-boxes{

    grid-template-columns:1fr;

}

}

/*=====================================
    LEADERSHIP TEAM
=====================================*/

.leadership-section{

    padding:0px 0 120px;

    background:#F2F3EE;

}

.leadership-wrapper{

    background:#fff;

    border-radius:20px;

    padding:90px 70px;

}

.leadership-card{

    height:100%;

    background:#f8f8f5;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #ececec;

    position:relative;

    transition:.4s;

}

.leadership-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#16a34a;

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s;
	z-index:1;

}

.leadership-card:hover::before{

    transform:scaleY(1);

}

.leadership-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}
.leadership-image{

    height:480px;

    overflow:hidden;

}

.leadership-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.leadership-card:hover .leadership-image img{

    transform:scale(1.08);

}
.leadership-content{

    padding:30px;

}

.leadership-content h4{

    font-size:22px;

    font-weight:600;

    color:#111827;

    margin-bottom:8px;

}

.leadership-content span{

    display:block;

    color:#16a34a;

    font-weight:600;

    margin-bottom:20px;

}
.service-content p{text-align: justify;}


.leadership-content p{

    color:#666;

    line-height:1.9;

    margin:0;
    text-align: justify;

}
@media(max-width:991px){

.leadership-wrapper{

    padding:60px 35px;

}

.leadership-image{

    height:320px;

}

}

@media(max-width:767px){

.leadership-wrapper{

    padding:40px 20px;

    border-radius:25px;

}

.leadership-image{

    height:360px;

}

.leadership-content{

    padding:25px;

}

.leadership-content h4{

    font-size:24px;

}

}

.leadership-content p{

    color:#666;
    line-height:1.9;

    display:-webkit-box;
    -webkit-line-clamp:5;
    -webkit-box-orient:vertical;
    overflow:hidden;

}
.leader-text.expanded{

    display:block;

}
.leader-more{color: #16a34a;transition: .3s;}
.leader-more:hover i {
  transform: translate(4px,-4px);
}
.leader-more:hover{color: #111;}

.service-wrapper{

    background:none;

    padding:0px;

}
.service-wrapper2{

    background:#fff;

    border-radius:20px;

    padding:90px 70px;

}
.service-list-section{padding: 120px 0;}
.service-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:25px;

}

.service-item-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    height:100%;

    border:1px solid #ececec;

    transition:.4s;

    position:relative;
	overflow:hidden;

}
.service-detail-section{
  padding: 120px 0;
  background: #f2f3ee;
}
.service-item-card::before{

    content:'';

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#16a34a;

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s;

}

.service-item-card:hover::before{

    transform:scaleY(1);

}

.service-item-card:hover{

    transform:translateY(-8px);

}

.service-item-card i{

    color:#16a34a;

    font-size:24px;

    margin-bottom:15px;

}

.service-item-card h5{

    margin:0;

    font-size:18px;

    font-weight:600;

}

.gallery-page-section{

    padding:0 0 120px;

}

.gallery-masonry{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    display:block;

}

.gallery-item.large{

    grid-column:span 2;

    grid-row:span 2;

}

.gallery-item img{

    width:100%;

    height:100%;

    min-height:200px;

    object-fit:cover;

    transition:.7s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:hover::before{

    opacity:1;

}

/*=====================================
    CONTACT INFO
=====================================*/

.contact-info-section{

    padding:120px 0 40px;

}

.contact-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    height:100%;

    border:1px solid #ececec;

    text-align:center;

    position:relative;

    transition:.4s;
	overflow:hidden;

}

.contact-card::before{

    content:'';

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#16a34a;

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s;

}

.contact-card:hover::before{

    transform:scaleY(1);

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-icon{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    background:#16a34a;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:24px;

}

.contact-card h4{

    margin-bottom:12px;

    color:#111827;
	font-size:22px;

}

.contact-card a,
.contact-card p{

    color:#666;

    margin:0;

}
.contact-card a {
  display: inline-block;
  transition: .3s;
  line-height: 25px;
}
.contact-card a:hover {
  color: #16a34a;
  transform: translateX(5px);
}

/*=====================================
    CONTACT FORM
=====================================*/

.contact-form-section{

    padding:40px 0 0px;

}

.contact-form-wrapper{

    background:#fff;

    border-radius:35px;

    padding:80px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    border:1px solid #e5e7eb;

    border-radius:8px;

    padding:18px 22px;

    margin-bottom:20px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#16a34a;

    outline:none;

    box-shadow:none;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    min-width:220px;

}
.contact-form .contact-btn{border:none;justify-content: center;margin:30px auto 0px;min-height: 55px;}

/*=====================================
    MAP
=====================================*/

.contact-map-section{

    padding-bottom:120px;

}

.contact-map{

    border-radius:35px;

    overflow:hidden;

}

.contact-map iframe{

    width:100%;

    height:550px;

    border:none;

}
@media(max-width:991px){

.contact-form-wrapper{

    padding:50px 35px;

}

.contact-map iframe{

    height:450px;

}

}

@media(max-width:767px){

.contact-form-wrapper{

    padding:35px 20px;

    border-radius:25px;

}

.contact-card{

    padding:30px;

}

.contact-map iframe{

    height:350px;

}

}

/*=====================================
PROJECT OVERVIEW
======================================*/

.project-overview-section{

    padding:120px 0;

}

.project-overview-wrapper{

    background:none;

    padding:0px;

    overflow:hidden;

}

.project-overview-image{

    border-radius:24px;

    overflow:hidden;

}

.project-overview-image img{

    width:100%;

    transition:.7s;

}

.project-overview-image:hover img{

    transform:scale(1.06);

}

.project-info-list{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin:30px 0;
	display:none;

}

.project-info-list span{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 20px;

    background:#f8f8f8;

    border-radius:50px;

    font-weight:500;

    transition:.3s;

}

.project-info-list span i{

    color:#16a34a;

}

.project-info-list span:hover{

    background:#16a34a;

    color:#fff;

}

.project-info-list span:hover i{

    color:#fff;

}

.project-description p{

    color:#666;
    text-align: justify;

    line-height:2;

    margin-bottom:20px;

}


@media(max-width:767px){

.project-overview-wrapper{

    padding:30px 20px;

    border-radius:20px;

}

.project-info-list{

    gap:10px;

}

.project-info-list span{

    font-size:14px;

    padding:10px 15px;

}

}

/*=====================================
AMENITIES
======================================*/

.project-amenities-section{

    padding-bottom:120px;

}

.project-amenities-wrapper{

    background:#FFF;

    padding:90px 70px;

    border-radius:20px;

}

.project-amenities-wrapper .section-description{

    max-width:850px;

    margin:25px auto 0;

    color:#666;

    line-height:2;

}


.amenity-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:100%;

    background:#16a34a;

    transition:.4s;

}

.amenity-card:hover::before{

    width:5px;

}

.amenity-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.amenity-image{

    position:relative;

    overflow:hidden;

}

.amenity-image img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:.7s;

}

.amenity-card:hover img{

    transform:scale(1.08);

}

.amenity-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.25);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.amenity-card:hover .amenity-overlay{

    opacity:1;

}

.amenity-overlay i{

    width:60px;

    height:60px;

    background:#16a34a;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    transform:scale(.7);

    transition:.3s;

}

.amenity-card:hover .amenity-overlay i{

    transform:scale(1);

}

.amenity-content{

    padding:30px;

    text-align:center;

}

.amenity-content h5{

    line-height:1.5;

}
@media(max-width:991px){

.project-amenities-wrapper{

    padding:50px 35px;

}

}

@media(max-width:767px){

.project-amenities-wrapper{

    padding:30px 20px;

    border-radius:20px;

}

.amenity-image img{

    height:220px;

}

.amenity-content{

    padding:20px;

}

.amenity-content h5{

    font-size:18px;

}

}
.amenity-card{

    position:relative;

    overflow:hidden;

    background:#f2f3ee;

    border-radius:20px;

    transition:.4s;

    height:100%;

}

.amenity-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#16a34a;

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s;

    z-index:2;

}

.amenity-card:hover::before{

    transform:scaleY(1);

}

.amenity-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}
.amenity-image{

    overflow:hidden;

}

.amenity-card:hover .amenity-image img{

    transform:scale(1.08);

}
.amenity-content{

    padding:30px;

    text-align:center;

}

.amenity-content h5{

    font-size:18px;

    font-weight:600;

    color:#111827;

    margin:0px;

}

.amenity-content span{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#16a34a;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    text-transform:uppercase;

}

.amenity-content span i{

    transition:.3s;

}

.amenity-card:hover .amenity-content span i{

    transform:translateX(6px);

}
/*=====================================
    PLOT LAYOUT
======================================*/

.plot-layout-section{

    padding-bottom:120px;

}

.plot-layout-wrapper{

    background:none;

    padding:0px;

    overflow:hidden;

}

.plot-layout-wrapper .section-subtitle{

    max-width:750px;

}

.plot-layout-image{

    border-radius:20px;
    border: 1px solid #c2c3bf;
    overflow:hidden;

    position:relative;

}

.plot-layout-image img{

    width:100%;

    display:block;

    transition:.8s;

}

.plot-layout-image:hover img{

    transform:scale(1.04);

}

.plot-layout-btn .btn{

    min-width:240px;

}


@media(max-width:767px){

.plot-layout-wrapper{

    padding:30px 20px;

    border-radius:20px;

}

.plot-layout-btn .btn{

    width:100%;

}

}

/*=====================================
LANDMARKS
======================================*/

.landmark-section{

    padding-bottom:120px;

}

.landmark-wrapper{

    background:#FFF;

    border-radius:20px;

    padding:90px 70px;

}

.landmark-image{

    border-radius:20px;

    overflow:hidden;
	border: 1px solid #c2c3bf;

}

.landmark-image img{

    width:100%;

    transition:.7s;

}

.landmark-image:hover img{

    transform:scale(1.05);

}

.landmark-card{

    background:#f2f3ee;

    border-radius:20px;

    padding:35px;

    height:100%;

    position:relative;

    transition:.4s;
	overflow: hidden;

}

.landmark-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#16a34a;

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s;

}

.landmark-card:hover::before{

    transform:scaleY(1);

}

.landmark-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.landmark-card h5{

    margin-bottom:25px;

    font-size:22px;

}

.landmark-card h5 i{

    color:#16a34a;

    margin-right:10px;

}

.landmark-card ul{

    margin:0;

    padding:0;

}

.landmark-card ul li{

    list-style:none;

    padding:10px 0;

    border-bottom:1px solid #d8d8d8;

    color:#666;

    position:relative;

    padding-left:25px;

}

.landmark-card ul li:last-child{

    border:none;

}

.landmark-card ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#16a34a;

    font-weight:bold;

}

.landmark-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:0 20px;

}
@media(max-width:991px){

.landmark-wrapper{

    padding:50px 35px;

}

}

@media(max-width:767px){

.landmark-wrapper{

    padding:30px 20px;

    border-radius:20px;

}

.landmark-grid{

    grid-template-columns:1fr;

}

}
#ongoing-projects{scroll-margin-top: 80px;}
#completed-projects{scroll-margin-top: 180px;}
#contact{scroll-margin-top:80px;}

.project-contact-box{

    margin-top:30px;

    display:inline-flex;

    align-items:center;

    gap:20px;

    padding:20px 30px;

    background:#FFF;

    border-radius:20px;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.project-contact-box::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:var(--primary);

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s;

}

.project-contact-box:hover::before{

    transform:scaleY(1);

}

.project-contact-box:hover{

    transform:translateY(-5px);

}

.project-contact-icon{

    width:60px;

    height:60px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.project-contact-content span{

    display:block;

    font-size:14px;

    color:#777;

    margin-bottom:5px;

}

.project-contact-content a{

    font-size:24px;

    font-weight:700;

    color:#111;

    text-decoration:none;

    transition:.3s;

}

.project-contact-content a:hover{

    color:var(--green);

}

input:focus-visible{outline: 2px solid #16a34a;}
.db.contact-btn:hover .btn-icon{transform: rotate(360deg) scale(1.1); background: #fff;color: #16a34a;}
.db.contact-btn{margin-top: 20px;}
.about-company-wrapper .img-two {
  height: 535px;
}
.cards-on-white .service-item-card{background: #f2f3ee;}
.cards-on-white{padding: 120px 0px 0px;}




























/* Responsive */

@media (min-width:1352px) and (max-width:1450px){
 .page-hero-content h1{font-size: 45px;}
}

@media (min-width:1435px) and (max-width:1445px){
.service-wrapper2{padding: 90px 37px;}
}

@media (min-width:1200px) and (max-width:1375px){
.about-content .section-title {
    font-size: 40px;
  }
    .experience-card p, .experience-dark p {
    font-size: 18px;
  }
  .leadership-image{height: 390px;}
  .leadership-content h4{font-size: 18px;}
  .project-content h4{font-size:20px;}
  .page-hero-content h1{font-size: 45px;}
}

@media (min-width:1270px) and (max-width:1399px){
.services-content h3{min-height: 60px;font-size: 21px;}
.services-content {
  padding: 30px;
}
.img-two {
  height: 535px;
}
.about-company-wrapper .img-two {
  height: 515px;
}
}

@media (min-width:1000px) and (max-width:1050px){
.banner-slider{height:auto;}
.banner-item {
    height: 550px;
}
.experience-card h2, .experience-dark h2 {
    font-size: 30px;
}
.experience-card p, .experience-dark p {
    font-size: 14px;
}
.about-content .section-title {
    font-size:38px;
}
.footer-main{font-size: 13px;}
.footer-bottom{font-size: 13px;}
 .mission-box h4 {
    font-size:18px;
}
.mission-box {
    padding: 20px 20px;
}
.about-section{padding: 80px 0;}
.nav-link{padding: 10px 14px !important;font-size: 13px}
.header.scrolled .navbar-brand img {
  height: 40px;
}
.navbar-brand img{height: 40px;}
main {
  margin-top: 89px;
}
.leadership-content h4{font-size: 18px;height: 40px;}
.leadership-image{height: 270px;}
.page-hero-content h1{font-size: 40px;}
.footer-main h4{font-size:18px;}
.amenity-image img{height: 145px;}
.amenity-content h5{font-size:14px;}
.amenity-content{padding:16px;}
.about-gallery{gap: 14px;}
.about-left, .about-right{gap: 14px;}
.footer-contact-item p{font-size: 13px;}
.service-wrapper2{padding: 88px 0px;}
.about-company-wrapper .img-two {
  height: 381px;
}

}

@media (min-width:768px) and (max-width:1000px){
main {
  margin-top: 84px;
}
.banner-slider{height:auto;}
.experience-card p, .experience-dark p{font-size: 18px;}
.experience-card h2, .experience-dark h2 {
    font-size: 40px;
}
.img-two {
    height: 382px;
}
.contact-btn{margin:auto;}
 .project-image {
    height: 300px;
}
.gallery-grid{grid-template-rows: 199px 235px;}
.gallery-item img{min-height: 188px;}
.footer-bottom{flex-direction: column;}
.page-hero-content h1 {
    font-size: 46px;
}
.section-title{font-size:40px;}
.leadership-image {
    height: 620px;
}
.about-company-wrapper .img-two {
  height: 405px;
}
.footer-about{padding-right: 0;}
.cards-on-white {
  padding: 50px 0px 0px;
}

}

@media (max-width: 768px) {
.project-content h4 {
    font-size: 18px;
}
.completed-content h4 {
    font-size: 18px;
}
.services-content h3 {
    font-size: 20px;
}
.services-section{padding: 0 0 40px;}
.completed-section{padding: 0px 0 40px;}
.gallery-section{padding: 0px 0 40px;}
.page-hero{
    height: 250px;
    padding: 40px 0px;
    min-height: auto;
}
.page-hero-content h1 {
    font-size: 28px;
}
.about-company{padding: 40px 0px 0;}
.leadership-section{padding: 0px 0 40px;}
.service-detail-section{padding: 50px 0;}
.gallery-intro{padding: 50px 0;}
.gallery-page-section {
  padding: 0 0 40px;
}
.contact-info-section {
  padding: 50px 0 0px;
}
.contact-map-section {
  padding: 40px 0px;
}
.project-overview-section {
  padding: 40px 0 0;
}
.project-amenities-section {
  padding-bottom: 20px;
}
.landmark-section {
   padding: 40px 0px;
}
.footer-bottom{flex-direction: column;}
.header.scrolled .navbar-brand img {
  height: 45px;
}

}

@media (max-width: 750px) {
.project-dropdown{position:absolute;}
.project-menu {
  position: static;
}
.floating-call{top: 65%;}
.floating-whatsapp{top: 50%;}
.banner-slider{height: auto;}
 .about-gallery {
    margin-bottom:10px;
}
.contact-btn{width:100%;justify-content: center;}
.section-title{font-size:30px;}
.gallery-section .gallery-grid{grid-template-rows: 55px 235px;}
.gallery-section .header-btn{margin: 0px auto 0px;}
.footer-main{padding:40px 0px 10px;}
.footer-contact{padding:40px 0px 10px;}
.footer-icon{width: 30px;height: 30px;font-size: 14px;}
main {
  margin-top: 85px;
}
.leadership-content h4 {
    font-size: 18px;
  }
.cards-on-white {
  padding: 50px 0px 0px;
}
.service-wrapper2{padding: 50px 25px;}
.gallery-masonry{grid-template-columns: repeat(1,1fr);}
.gallery-page-section .gallery-item.large {
  grid-column: span 1;
  grid-row: span 1;
}
.contact-card h4{font-size:18px;}
.contact-form .contact-btn {
  margin:0px auto 0px;
}
.amenity-content h5{font-size: 18px;}
.landmark-card h5{font-size:18px;}
.gallery-grid{grid-template-columns: 1fr;}
.project-menu.active .project-dropdown{
    display: block;
    background: white;
    padding: 20px;
}
.about-company-wrapper .img-two {
  height: 350px;
}
.footer-about{padding-right: 0;}

}

@media (min-width:740px) and (max-width:749px){
}