/********** Template CSS **********/

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

.container,
.container-fluid {
    overflow: visible !important;
}
:root {
    --primary: #6B7A1E;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}
.bg-primary{
    background-color: #6B7A1E !important;
}
/* Back To Top */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* WhatsApp Floating Button */
.whatsapp-float{
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37,211,102,.45);
    z-index: 999;
    transition: .3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    color:#fff;
    transform: scale(1.12);
    background:#1ebe5d;
}

/* Pulse Ring */
.whatsapp-float::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(37,211,102,.35);
    animation:ring 2s infinite;
    z-index:-1;
}

@keyframes whatsappPulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

@keyframes ring{
    0%{
        transform:scale(1);
        opacity:.8;
    }
    100%{
        transform:scale(1.8);
        opacity:0;
    }
}

/* Mobile */
@media (max-width:768px){

    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:28px;
        left:15px;
        bottom:15px;
    }

    .back-to-top{
        right:15px;
        bottom:15px;
    }
}

/* Small Mobile */
@media (max-width:480px){

    .whatsapp-float{
        width:50px;
        height:50px;
        font-size:26px;
        left:12px;
        bottom:12px;
    }

    .back-to-top{
        right:12px;
        bottom:12px;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.text-primary-i{
    color: #6B7A1E !important;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    background:#6B7A1E;
    color:#fff;
    border: 1px solid #6B7A1E;
}

.btn.btn-primary:hover{
    background:#fff;
    transform:translateY(-2px);
    color:#6B7A1E;
}

.btn.btn-secondary:hover{
    background:#fff;
    transform:translateY(-2px);
    color:#6B7A1E;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}
.mobile-active{
    color: var(--primary) !important;
}

.navbar.sticky-top {
     transition: all .4s ease;
    background:#fff;
}

.navbar-logo{
    max-height:60px;
    transition:0.3s;
}

.navbar-light .navbar-toggler{
    border: none;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }

     .navbar-logo{
        max-height:40px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/* Sidebar */

.mobile-menu{
    position:fixed;
    top:0;
    left:-320px;
    width:300px;
    height:100%;
    background:#fff;
    z-index:99999;
    transition:.45s ease;
    box-shadow:0 0 35px rgba(0,0,0,.15);
    overflow-y:auto;
}

.mobile-menu.show{
    left:0;
}

.menu-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:99998;
}

.menu-overlay.show{
    opacity:1;
    visibility:visible;
}

.mobile-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #eee;
}

.mobile-header button{
    border:none;
    background:none;
    font-size:24px;
    color: red;
}

.mobile-menu ul{
    margin:0;
    padding:25px;
    list-style:none;
}

.mobile-menu ul li{
    margin-bottom:18px;
}

.mobile-menu ul li a{
    color:#222;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.mobile-menu ul li a:hover{
    color:var(--primary);
    padding-left:8px;
}

/* Hide sidebar on desktop */

@media(min-width:992px){

    .mobile-menu,
    .menu-overlay,
    .navbar-toggler{
        display:none;
    }

}

.mobile-logo{
    height:50px;
}

@media (max-width: 991.98px){
    .mobile-logo{
        height:34px;
    }
}

/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    transition: .5s;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.fact-item:hover .fact-icon {
    background: var(--primary);
    transform: rotateY(180deg);
}

.fact-item .fact-icon i {
    font-size: 48px;
    color: var(--primary);
    transition: .5s;
}

.fact-item:hover .fact-icon i {
    color: #fff;
    transform: rotateY(-180deg);
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}

/* Feature Icons */
.feature-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.4s;
}

.feature-icon i{
    color:#fff;
    font-size:30px;
    transition:.4s;
}

.d-flex:hover .feature-icon{
    transform:translateY(-5px) rotate(10deg);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.d-flex:hover .feature-icon i{
    transform:scale(1.15);
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


.service-icon{
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-size: 42px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    margin-bottom: 25px;
    transition: .5s;
}

.service-item:hover .service-icon{
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg) scale(1.1);
}

/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


/* catagory morqery section */

.category-marquee{
    background:#f3f4f7;
    overflow:hidden;
}

.marquee{
    overflow:hidden;
    white-space:nowrap;
    width:100%;
}

.marquee-content{
    display:inline-flex;
    align-items:center;
    gap:42px;
    animation:marquee 28s linear infinite;
    width:max-content;
}

.category-marquee:hover .marquee-content{
    animation-play-state:paused;
}

.marquee-content a{
    text-decoration:none;
    color:#31486d;
    font-size:18px;
    font-weight:400;
    letter-spacing:4px;
    text-transform:uppercase;
    transition:.3s;
    flex-shrink:0;
}

.marquee-content a:hover{
    color:#1b3358;
}

.marquee-content span{
    color:#c5c5c5;
    font-size:28px;
    flex-shrink:0;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Responsive */

@media (max-width:1200px){

.marquee-content{
gap:35px;
}

.marquee-content a{
font-size:18px;
letter-spacing:6px;
}

.marquee-content span{
font-size:22px;
}

}

@media (max-width:768px){

.category-marquee{
padding:35px 0;
}

.marquee-content{
gap:25px;
}

.marquee-content a{
font-size:16px;
letter-spacing:4px;
}

.marquee-content span{
font-size:16px;
}

}

@media (max-width:576px){

.marquee-content{
gap:18px;
}

.marquee-content a{
font-size:16px;
letter-spacing:3px;
}

.marquee-content span{
font-size:13px;
}

}



/* process section code */
/*==============================
 OUR PROCESS
==============================*/
.our-process{
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

.process-subtitle{
    display:inline-block;
    padding:6px 18px;
    background:rgba(0,107,55,.08);
    color:#6B7A1E;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    border-radius:50px;
    text-transform:uppercase;
}

.process-title{
    font-size:34px;
    font-weight:700;
    color:#1e293b;
    margin-top:15px;
    line-height:1.3;
}

.process-title em{
    color:#6B7A1E;
    font-style:normal;
}

.process-wrapper{
    position:relative;
    margin-top:60px;
}

.process-line{
    position:absolute;
    top:32px;
    left:8%;
    width:84%;
    height:3px;
   background:linear-gradient(to right,#6B7A1E,#8C8A54);
    border-radius:20px;
    z-index:1;
}

.process-card{
    position:relative;
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    transition:.35s;
    z-index:2;
    height:100%;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.step-circle{
    width:64px;
    height:64px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#6B7A1E,#8C8A54);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
    margin-bottom:18px;
    position:relative;
}

.step-circle::after{
    content:"";
    position:absolute;
    width:80px;
    height:80px;
    border:2px dashed rgba(0,107,55,.25);
    border-radius:50%;
}

.process-card h5{
    font-size:18px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:10px;
}

.process-card p{
    font-size:14px;
    color:#64748b;
    line-height:1.7;
    margin:0;
}

.process-card:hover .step-circle{
    transform:rotate(360deg);
    transition:.8s;
}

@media(max-width:991px){

.process-line{
display:none;
}

.process-card{
margin-bottom:25px;
}

.process-title{
font-size:28px;
}

}

@media(max-width:576px){

.process-title{
font-size:24px;
}

.process-card{
padding:25px 15px;
}

.step-circle{
width:56px;
height:56px;
font-size:18px;
}

.process-card h5{
font-size:16px;
}

.process-card p{
font-size:13px;
}

}


/* counter section code start  */
.counter-section{
    background:#6B7A1E;
    padding:55px 0;
}

.counter-box{
    border-right:1px solid rgba(255,255,255,.18);
    padding:10px 15px;
}

.counter-number{
    color:#fff;
    font-size:52px;
    font-weight:700;
    line-height:1;
    margin-bottom:12px;
    letter-spacing:1px;
}

.counter-text{
    color:rgba(255,255,255,.75);
    font-size:16px;
    font-weight:500;
}

@media(max-width:991px){

    .counter-box{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.15);
        padding:35px 15px;
    }

    .counter-box:nth-child(3),
    .counter-box:nth-child(4){
        border-bottom:none;
    }

    .counter-number{
        font-size:42px;
    }

}

@media(max-width:576px){

    .counter-section{
        padding:40px 0;
    }

    .counter-number{
        font-size:34px;
    }

    .counter-text{
        font-size:14px;
    }

}


/*========================================
    3D VISUALIZATION
========================================*/

.visualization-section{
    background:#f8fafc;
    overflow:hidden;
}

.visualization-image{
    position:relative;
}

.visualization-image img{
    width:100%;
    border-radius:22px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.visualization-tag{
    position:absolute;
    top:18px;
    left:18px;
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.visualization-subtitle{
    display:inline-block;
    background:rgba(0,107,55,.08);
    color:#6B7A1E;
    padding:6px 16px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.visualization-title{
    font-size:36px;
    font-weight:700;
    color:#1e293b;
    line-height:1.3;
    margin-bottom:18px;
}

.visualization-title em{
    color:#6B7A1E;
    font-style:normal;
}

.visualization-description{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
    margin-bottom:28px;
}

.visualization-card{
    background:rgba(255,255,255,.9);
    border:1px solid rgba(0,0,0,.05);
    border-radius:18px;
    padding:22px;
    height:100%;
    transition:.35s;
    backdrop-filter:blur(10px);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.visualization-card:hover{
    transform:translateY(-8px);
    border-color:#6B7A1E;
    box-shadow:0 18px 40px rgba(0,107,55,.12);
}

.visualization-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-bottom:15px;
}

.visualization-card h5{
    font-size:17px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:8px;
}

.visualization-card p{
    margin:0;
    color:#64748b;
    font-size:14px;
    line-height:1.6;
}

@media(max-width:991px){

.visualization-image{
margin-bottom:35px;
}

.visualization-title{
font-size:30px;
}

}

@media(max-width:576px){

.visualization-title{
font-size:24px;
}

.visualization-description{
font-size:14px;
}

.visualization-card{
padding:18px;
}

.visualization-icon{
width:42px;
height:42px;
font-size:18px;
}

.visualization-card h5{
font-size:16px;
}

.visualization-card p{
font-size:13px;
}

}




/*=============================
    MODERN CTA
=============================*/

.cta-section{
    background:#f8fafc;
}

.cta-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    padding:60px;
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.cta-wrapper::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-80px;
    right:-60px;
}

.cta-wrapper::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-70px;
    left:-50px;
}

.cta-content,
.cta-buttons{
    position:relative;
    z-index:2;
}

.cta-subtitle{
    display:inline-block;
    padding:7px 18px;
    background:rgba(255,255,255,.15);
    color:#fff;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.cta-title{
    color:#fff;
    font-size:40px;
    font-weight:700;
    line-height:1.3;
    margin:0;
}

.cta-title em{
    color:#8C8A54;
    font-style:normal;
}

.cta-text{
    color:rgba(255,255,255,.8);
    font-size:15px;
    margin-top:18px;
    max-width:520px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:flex-end;
    gap:15px;
    flex-wrap:wrap;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.35s;
}

.cta-btn-primary{
    background:#fff;
    color:#6B7A1E;
}

.cta-btn-primary:hover{
    background:#d1fae5;
    transform:translateY(-4px);
    color:#6B7A1E;
}

.cta-btn-outline{
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
    backdrop-filter:blur(10px);
}

.cta-btn-outline:hover{
    background:rgba(255,255,255,.15);
    color:#fff;
    transform:translateY(-4px);
}

@media(max-width:991px){

.cta-wrapper{
padding:40px 30px;
text-align:center;
}

.cta-title{
font-size:30px;
}

.cta-text{
margin:18px auto 0;
}

.cta-buttons{
justify-content:center;
margin-top:30px;
}

}

@media(max-width:576px){

.cta-wrapper{
padding:30px 20px;
border-radius:18px;
}

.cta-title{
font-size:24px;
}

.cta-text{
font-size:14px;
}

.cta-btn{
width:100%;
padding:13px;
}

}

/* vission and mission code start */

/*==================================
        MISSION & VISION
==================================*/

.mission-section{
    background:#f8fafc;
}

.mission-badge{
    display:inline-block;
    padding:6px 18px;
    background:rgba(0,107,55,.08);
    color:#6B7A1E;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    border-radius:50px;
    margin-bottom:18px;
}

.mission-title{
    font-size:36px;
    font-weight:700;
    color:#1e293b;
    line-height:1.3;
    margin-bottom:18px;
}

.mission-title span{
    color:#6B7A1E;
}

.mission-text{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
    margin-bottom:30px;
}

.mission-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:50px;
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.35s;
}

.mission-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,107,55,.25);
}

.mission-image{
    position:relative;
}

.mission-image img{
    width:100%;
    border-radius:22px;
    object-fit:cover;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.mission-stat{
    position:absolute;
    left:25px;
    bottom:25px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:18px 22px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.mission-stat h3{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#6B7A1E;
}

.mission-stat p{
    margin:0;
    font-size:13px;
    color:#64748b;
}

.mission-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
}

.mission-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.mission-icon{
    width:55px;
    height:55px;
    border-radius:16px;
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:18px;
}

.mission-card h5{
    font-size:18px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:10px;
}

.mission-card p{
    margin:0;
    color:#64748b;
    font-size:14px;
    line-height:1.7;
}

/*=========================
      Responsive
=========================*/

@media(max-width:991px){

.mission-title{
    font-size:30px;
}

.mission-image{
    margin-top:35px;
    margin-bottom:35px;
}

.mission-stat{
    position:static;
    display:inline-block;
    margin-top:20px;
}

}

@media(max-width:576px){

.mission-title{
    font-size:24px;
}

.mission-text{
    font-size:14px;
}

.mission-btn{
    width:100%;
    justify-content:center;
}

.mission-card{
    padding:20px;
}

.mission-icon{
    width:48px;
    height:48px;
    font-size:20px;
}

.mission-card h5{
    font-size:17px;
}

.mission-card p{
    font-size:13px;
}

}



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

.about-social-section{
    background:#f8fafc;
}

.about-social-badge{
    display:inline-block;
    padding:6px 18px;
    background:rgba(0,107,55,.08);
    color:#6B7A1E;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    border-radius:50px;
    margin-bottom:18px;
}

.about-social-title{
    font-size:36px;
    font-weight:700;
    color:#1e293b;
    line-height:1.3;
    margin:0;
}

.about-social-title span{
    color:#6B7A1E;
}

.about-social-text{
    font-size:15px;
    color:#64748b;
    line-height:1.8;
    margin:0;
}

.about-social-card{
    background:#fff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    text-decoration:none;
    display:block;
    height:100%;
    border:1px solid #e5e7eb;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.about-social-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
    border-color:#6B7A1E;
}

.about-social-icon{
    width:65px;
    height:65px;
    margin:0 auto 18px;
    border-radius:18px;
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
}

.about-social-card h5{
    font-size:18px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:6px;
}

.about-social-card span{
    font-size:14px;
    color:#64748b;
}

@media(max-width:991px){

.about-social-title{
    font-size:30px;
}

.about-social-text{
    margin-top:20px;
}

}

@media(max-width:576px){

.about-social-title{
    font-size:24px;
}

.about-social-text{
    font-size:14px;
}

.about-social-card{
    padding:25px 15px;
}

.about-social-icon{
    width:55px;
    height:55px;
    font-size:22px;
}

.about-social-card h5{
    font-size:16px;
}

.about-social-card span{
    font-size:13px;
}

}



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

.services-process{
    background:#f8fafc;
}

.services-badge{
    display:inline-block;
    padding:6px 18px;
    background:rgba(0,107,55,.08);
    color:#6B7A1E;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    border-radius:50px;
    margin-bottom:15px;
}

.services-title{
    font-size:36px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:12px;
}

.services-title span{
    color:#6B7A1E;
}

.services-description{
    max-width:600px;
    margin:auto;
    font-size:15px;
    color:#64748b;
    line-height:1.8;
}

.services-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    border:1px solid #e5e7eb;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    overflow:hidden;
}

.services-card:hover{
    transform:translateY(-10px);
    border-color:#6B7A1E;
    box-shadow:0 20px 45px rgba(0,107,55,.12);
}

.services-number{
    position:absolute;
    top:18px;
    right:20px;
    font-size:40px;
    font-weight:700;
    color:rgba(0,107,55,.08);
}

.services-icon{
    width:70px;
    height:70px;
    margin:0 auto 22px;
    border-radius:18px;
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
}

.services-card h5{
    font-size:20px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:12px;
}

.services-card p{
    font-size:14px;
    color:#64748b;
    line-height:1.8;
    margin:0;
}

.services-card.active{
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
}

.services-card.active .services-number{
    color:rgba(255,255,255,.15);
}

.services-card.active h5,
.services-card.active p{
    color:#fff;
}

.services-card.active .services-icon{
    background:#fff;
    color:#6B7A1E;
}

/* Responsive */

@media(max-width:991px){

.services-title{
    font-size:30px;
}

}

@media(max-width:576px){

.services-title{
    font-size:24px;
}

.services-description{
    font-size:14px;
}

.services-card{
    padding:25px 20px;
}

.services-icon{
    width:60px;
    height:60px;
    font-size:24px;
}

.services-card h5{
    font-size:18px;
}

.services-card p{
    font-size:13px;
}

.services-number{
    font-size:32px;
}

}



/*==================================
        MODERN FAQ
==================================*/

.faq-section{
    background:#f8fafc;
}

.faq-badge{
    display:inline-block;
    padding:6px 18px;
    background:rgba(0,107,55,.08);
    color:#6B7A1E;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.faq-title{
    font-size:36px;
    font-weight:700;
    color:#1e293b;
    line-height:1.3;
    margin:18px 0;
}

.faq-title span{
    color:#6B7A1E;
}

.faq-text{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
    margin-bottom:35px;
}

.faq-contact{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    border:1px solid #eef2f7;
}

.faq-contact-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    margin-bottom:18px;
}

.faq-contact h5{
    font-size:20px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:10px;
}

.faq-contact p{
    color:#64748b;
    font-size:14px;
    line-height:1.8;
}

.faq-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
    padding:13px 28px;
    border-radius:50px;
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.35s;
}

.faq-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,107,55,.25);
}

/* Accordion */

.modern-faq .accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.modern-faq .accordion-button{
    padding:22px 25px;
    font-size:16px;
    font-weight:600;
    color:#1e293b;
    background:#fff;
    box-shadow:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.modern-faq .accordion-button:not(.collapsed){
    background:#fff;
    color:#6B7A1E;
}

.modern-faq .accordion-button::after{
    width:34px;
    height:34px;
    background:#f3f4f6;
    border-radius:10px;
    background-size:14px;
    background-position:center;
    display:none;
}

.faq-toggle-icon{
    width:34px;
    height:34px;
    border-radius:10px;
    background:#f3f4f6;
    color:#6B7A1E;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    transition:.3s;
    flex-shrink:0;
}

.accordion-button:not(.collapsed) .faq-toggle-icon{
    background:linear-gradient(135deg,#6B7A1E,#8C8A54,#6B7A1E);
    color:#fff;
    transform:rotate(45deg); /* Plus becomes X */
}

.modern-faq .accordion-body{
    padding:0 25px 22px;
    color:#64748b;
    font-size:14px;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

.faq-title{
    font-size:30px;
}

.faq-contact{
    margin-bottom:35px;
}

}

@media(max-width:576px){

.faq-title{
    font-size:24px;
}

.faq-text{
    font-size:14px;
}

.faq-contact{
    padding:22px;
}

.modern-faq .accordion-button{
    font-size:15px;
    padding:18px;
}

.modern-faq .accordion-body{
    padding:0 18px 18px;
}

}


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

.gallery-section{
    background:#f8fafc;
}

.gallery-badge{
    display:inline-block;
    padding:7px 18px;
    background:rgba(0,107,55,.08);
    color:#6B7A1E;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.gallery-title{
    font-size:38px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:15px;
}

.gallery-title span{
    color:#6B7A1E;
}

.gallery-text{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
    max-width:650px;
    margin:auto;
}

/* Card */

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.gallery-card img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:.6s;
    display:block;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

/* Category */

.gallery-category{
    position:absolute;
    top:18px;
    left:18px;
    padding:7px 16px;
    border-radius:50px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    color:#6B7A1E;
    font-size:11px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    z-index:2;
}

/* Overlay */

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.78),
    rgba(0,0,0,.25),
    transparent);
    opacity:0;
    transition:.4s;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-content{
    position:absolute;
    left:25px;
    bottom:25px;
    transform:translateY(30px);
    transition:.4s;
}

.gallery-card:hover .gallery-content{
    transform:translateY(0);
}

.gallery-content h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:6px;
}

.gallery-content p{
    color:#ddd;
    font-size:13px;
    margin:0;
    letter-spacing:1px;
}

/* Responsive */

@media(max-width:991px){

.gallery-title{
    font-size:32px;
}

.gallery-card img{
    height:300px;
}

}

@media(max-width:767px){

.gallery-title{
    font-size:26px;
}

.gallery-text{
    font-size:14px;
}

.gallery-card img{
    height:260px;
}

.gallery-content h4{
    font-size:18px;
}

.gallery-content p{
    font-size:12px;
}

}

@media(max-width:576px){

.gallery-card img{
    height:240px;
}

.gallery-category{
    font-size:10px;
    padding:6px 12px;
}

.gallery-content{
    left:18px;
    bottom:18px;
}

}

/*==========================
Gallery Filter
==========================*/

.gallery-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.filter-btn{

    border:none;
    background:#fff;
    color:#1e293b;

    padding:12px 24px;

    border-radius:50px;

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

    transition:.35s;

    cursor:pointer;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.filter-btn:hover{

    background:#6B7A1E;
    color:#fff;

    transform:translateY(-3px);

}

.filter-btn.active{

    background:#6B7A1E;
    color:#fff;

    box-shadow:0 10px 25px rgba(107,122,30,.35);

}

.gallery-item{

    transition:.4s ease;

}

.gallery-item.hide{

    display:none;

}

@media(max-width:768px){

.gallery-filter{

    gap:10px;

}

.filter-btn{

    padding:10px 18px;
    font-size:13px;

}

}