/* ========== Green & White Theme Variables (No Pure Black) ========== */
:root {
    --green-primary: #16a34a;
    --green-light: #22c55e;
    --green-bright: #4ade80;
    --green-dark: #15803d;
    /* repurposed as deep greens instead of true black */
    --black: #064e3b;
    --black-soft: #065f46;
    --black-muted: #0f766e;
    --gray-dark: #2d2d2d;
    --gray-text: #14532d;
    --bg-light: #f0fdf4;
    --white: #ffffff;
    --shadow-green: 0 4px 20px rgba(22, 163, 74, 0.25);
    --shadow-strong: 0 10px 40px rgba(22, 163, 74, 0.25);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--gray-text);
    background: var(--white);

}

a {
    color: var(--green-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--green-light);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--green-dark);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--green-dark);
    border-top-color: var(--green-bright);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container{
    padding-left:20px;
    padding-right:20px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--green-primary);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-green);
}

.back-to-top i {
    font-size: 28px;
    color: var(--white);
    line-height: 0;
}

.back-to-top:hover {
    background: var(--green-light);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(22, 163, 74, 0.4);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 80px;
    transition: var(--transition-smooth);
    z-index: 997;
    background: #ffffff;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(22, 163, 74, 0.1);
}

#header.header-transparent {
    background: rgba(255, 255, 255, 0.95);
}

#header.header-scrolled {
    background: #ffffff;
    height: 64px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: var(--green-primary);
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 200px;
    height: 90px;
    width: auto;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: var(--green-primary);
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 3px;
    left: 30px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-bright));
    visibility: hidden;
    transition: var(--transition-smooth);
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 28px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--green-bright);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--black-soft);
    box-shadow: var(--shadow-strong);
    transition: var(--transition-smooth);
    border-radius: 8px;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: rgba(255, 255, 255, 0.9);
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--green-bright);
    padding-left: 24px;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: var(--green-primary);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.96);
    transition: var(--transition-smooth);
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 12px;
    background: var(--black-muted);
    border: 1px solid rgba(22, 163, 74, 0.2);
    overflow-y: auto;
    transition: var(--transition-smooth);
}

.navbar-mobile>ul>li>a:before {
    left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--green-bright);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: var(--black-muted);
    border: 1px solid rgba(22, 163, 74, 0.2);
    box-shadow: var(--shadow-strong);
    border-radius: 8px;
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
    color: var(--green-bright);
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    background: url("../img/bg.png") right center no-repeat;
    background-size: cover;
    background-color: var(--green-dark);
    position: relative;
    padding: 90px 0 0 0;
    overflow: hidden;
}

#hero:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(22, 163, 74, 0.95) 0%, rgba(22, 163, 74, 0.6) 55%, transparent 85%);
    pointer-events: none;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 33px;
    font-weight: 700;
    line-height: 59px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

#hero h1 span {
    color: var(--green-bright);
}

#hero h2 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 400;
}

#hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    color: var(--white);
    background: #d4af37;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

#hero .btn-get-started:hover {
    background: #e6c547;
    border-color: #e6c547;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.6);
}

#hero .animated {
    animation: float-img 4s ease-in-out infinite;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        padding-top: 80px;
    }
    #hero .animated {
        animation: none;
    }
    #hero .hero-img {
        text-align: center;
    }
    #hero .hero-img img {
        /* Make hero illustration/GIF larger and always centered on mobile/tablet */
        display: block;
        margin: 0 auto;
        max-width: 88%;
        height: auto;
    }
    #hero h1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 92%;
        max-width: 92%;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes float-img {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.hero-waves {
    display: block;
    /* margin-top: 60px; */
    width: 100%;
    /* height: 60px; */
    z-index: 5;
    position: relative;
}

.wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
}

.wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
}

.wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: var(--bg-light);
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-primary);
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 3px;
    display: inline-block;
    background: linear-gradient(90deg, var(--green-primary), var(--green-bright));
    margin: 4px 10px;
    border-radius: 2px;
}

.section-title p {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: var(--green-dark);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 20px 0;
    background-color: var(--bg-light);
    min-height: 40px;
    margin-top: 80px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 64px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fffe 100%);
}

.about .icon-boxes h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 15px;
}

.about .icon-box {
    margin-top: 40px;
    transition: var(--transition-smooth);
}

.about .icon-box:hover {
    transform: translateY(-6px);
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid var(--green-primary);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.about .icon-box .icon i {
    color: var(--green-primary);
    font-size: 32px;
}

.about .icon-box:hover .icon {
    background: var(--green-primary);
    border-color: var(--green-primary);
    box-shadow: var(--shadow-green);
}

.about .icon-box:hover .icon i {
    color: var(--white);
}

.about .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.about .icon-box .title a {
    color: var(--green-dark);
    transition: var(--transition-smooth);
}

.about .icon-box .title a:hover {
    color: var(--green-primary);
}

.about .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--green-primary);
    border-radius: 2px;
}

.about-content .lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-text);
    line-height: 1.8;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
}

.feature-item {
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        margin-top: 40px;
        padding-left: 0 !important;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--green-primary) 50%, rgba(22, 163, 74, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.about .play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 0 20px rgba(22, 163, 74, 0.2);
}

.about .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(22, 163, 74, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(22, 163, 74, 0);
}

.about .play-btn:hover::after {
    border-left: 15px solid var(--green-bright);
    transform: scale(20);
}

.about .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--bg-light);
    transition: var(--transition-smooth);
    border-radius: 12px;
    border-left: 4px solid transparent;
}

.features .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
    color: var(--green-primary);
}

.features .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
}

.features .icon-box h3 a {
    color: var(--black);
    transition: var(--transition-smooth);
}

.features .icon-box h3 a:hover {
    color: var(--green-primary);
}

.features .icon-box:hover {
    background: rgba(22, 163, 74, 0.08);
    border-left-color: var(--green-primary);
    transform: translateX(6px);
    box-shadow: var(--shadow-green);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    background: var(--bg-light);
    padding: 40px 0 40px;
}

.counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.counts .count-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
}

.counts .count-box i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    background: var(--green-primary);
    padding: 12px;
    color: var(--white);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    width: 48px;
    height: 48px;
    box-shadow: var(--shadow-green);
}

.counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: var(--black);
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/

.details .content+.content {
    margin-top: 30px;
}

.details .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: var(--black);
}

.details .content ul {
    list-style: none;
    padding: 0;
}

.details .content ul li {
    padding-bottom: 10px;
    transition: var(--transition-smooth);
}

.details .content ul li:hover {
    padding-left: 8px;
}

.details .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--green-primary);
}

.details .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Carousel
--------------------------------------------------------------*/

.services-carousel-wrapper {
    margin: 60px 0;
    padding: 40px 0;
}

.services-carousel {
    padding: 20px 0 60px 0;
    overflow: visible;
}

.services-carousel .swiper-slide {
    height: auto;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.services-carousel .swiper-slide-active {
    opacity: 1;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    background: linear-gradient(180deg, #ffffff 0%, rgba(22, 163, 74, 0.05) 100%);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(22, 163, 74, 0.2);
    border-color: var(--green-primary);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
    padding: 20px;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(22, 163, 74, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    font-family: "Montserrat", sans-serif;
    transition: var(--transition-smooth);
}

.service-card:hover .service-content h4 {
    color: var(--green-primary);
}

.service-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-primary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.service-link i {
    transition: var(--transition-smooth);
    font-size: 16px;
}

.service-link:hover {
    color: var(--green-light);
    gap: 12px;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Carousel Navigation Buttons */
.services-carousel .swiper-button-next,
.services-carousel .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: var(--green-primary);
    transition: var(--transition-smooth);
    top: 50%;
    margin-top: -25px;
}

.services-carousel .swiper-button-next:after,
.services-carousel .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.services-carousel .swiper-button-next:hover,
.services-carousel .swiper-button-prev:hover {
    background: var(--green-primary);
    color: var(--white);
    box-shadow: var(--shadow-green);
    transform: scale(1.1);
}

.services-carousel .swiper-button-prev {
    left: -25px;
}

.services-carousel .swiper-button-next {
    right: -25px;
}

/* Carousel Pagination */
.services-carousel .swiper-pagination {
    bottom: 0;
    margin-top: 30px;
}

.services-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--gray-dark);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.services-carousel .swiper-pagination-bullet-active {
    background: var(--green-primary);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-carousel .swiper-button-prev {
        left: -15px;
    }
    
    .services-carousel .swiper-button-next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .services-carousel-wrapper {
        margin: 40px 0;
        padding: 20px 0;
    }
    
    .service-image-wrapper {
        height: 220px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h4 {
        font-size: 20px;
    }
    
    .services-carousel .swiper-button-next,
    .services-carousel .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .services-carousel .swiper-button-prev {
        left: 10px;
    }
    
    .services-carousel .swiper-button-next {
        right: 10px;
    }
    
    .services-carousel .swiper-button-next:after,
    .services-carousel .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .service-image-wrapper {
        height: 200px;
    }
    
    .service-content h4 {
        font-size: 18px;
    }
    
    .service-content p {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
    padding: 80px 0;
    background: url("../img/cta-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(22, 163, 74, 0.9);
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(22, 163, 74, 0.4);
    margin: 0 auto;
    transition: var(--transition-smooth);
}

.testimonials .testimonial-item:hover .testimonial-img {
    border-color: var(--green-primary);
    box-shadow: 0 0 24px rgba(22, 163, 74, 0.3);
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #eee;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--green-primary);
    transform: scale(1.2);
}

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
    background: #fff;
}

.team .member {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.team .member .pic {
    border-radius: 4px;
    overflow: hidden;
}

.team .member {
    transition: var(--transition-smooth);
}

.team .member img {
    transition: var(--transition-smooth);
}

.team .member:hover img {
    transform: scale(1.08);
}

.team .member:hover .member-info {
    box-shadow: var(--shadow-green);
    background: rgba(243, 255, 247, 0.98);
}

.team .member .member-info {
    position: absolute;
    bottom: -80px;
    left: 0px;
    right: 0px;
    background: rgba(255, 255, 255, 0.96);
    padding: 15px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    border-top: 3px solid var(--green-primary);
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--black);
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: var(--green-primary);
    bottom: 0;
    left: calc(50% - 25px);
    border-radius: 2px;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: var(--gray-text);
}

.team .member .social {
    margin-top: 10px;
}

.team .member .social a {
    transition: var(--transition-smooth);
    color: var(--gray-text);
}

.team .member .social a:hover {
    color: var(--green-primary);
    transform: translateY(-2px);
}

.team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
    padding: 20px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.pricing .box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-green);
    border-color: rgba(22, 163, 74, 0.2);
}

.pricing h3 {
    font-weight: 600;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    color: var(--gray-text);
    background: var(--bg-light);
}

.pricing h4 {
    font-size: 36px;
    color: var(--green-primary);
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: var(--gray-text);
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: var(--gray-text);
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: var(--green-primary);
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #9ca3af;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: var(--bg-light);
    text-align: center;
}

.pricing .btn-buy {
    background: var(--green-primary);
    display: inline-block;
    padding: 10px 35px 12px 35px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid var(--green-primary);
}

.pricing .btn-buy:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.pricing .featured h3 {
    color: var(--white);
    background: var(--green-primary);
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: var(--green-primary);
    color: var(--white);
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/

.faq .faq-list {
    padding: 0;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    position: relative;
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.faq .faq-list li:hover {
    border-left-color: var(--green-primary);
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.1);
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: var(--green-primary);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: var(--black);
}

.faq .faq-list a.collapsed:hover {
    color: var(--green-primary);
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: var(--green-primary);
    float: left;
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--black);
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--gray-text);
}

.contact .info .email,
.contact .info .address,
.contact .info .phone {
    margin-top: 40px;
    transition: var(--transition-smooth);
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--green-primary);
    color: var(--white);
    transform: scale(1.08);
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: var(--green-primary);
    border: 2px solid var(--green-primary);
    padding: 12px 32px;
    color: var(--white);
    transition: var(--transition-smooth);
    border-radius: 50px;
    font-weight: 600;
}

.contact .php-email-form button[type=submit]:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: var(--black);
    padding: 0 0 30px 0;
    color: var(--white);
    font-size: 14px;
}

#footer .footer-top {
    padding: 60px 0 40px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
    color: var(--white);
    padding: 0;
}

#footer .footer-top .footer-info:first-child {
    padding-right: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 22px;
    margin: 0 0 25px 0;
    padding: 0 0 15px 0;
    line-height: 1.3;
    font-weight: 700;
    color: var(--white);
    border-bottom: 2px solid var(--green-primary);
    display: inline-block;
    width: 100%;
}

#footer .footer-top .footer-info h4 {
    font-size: 18px;
    margin: 0 0 25px 0;
    padding: 0 0 15px 0;
    line-height: 1.3;
    font-weight: 600;
    color: var(--white);
    border-bottom: 2px solid var(--green-primary);
    display: inline-block;
    width: 100%;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 12px;
    font-family: "Open Sans", sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: var(--green-primary);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

#footer .footer-top .footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--green-primary);
    display: inline-block;
    width: 100%;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
    padding-left: 20px;
}

@media (max-width: 991px) {
    #footer .footer-top .footer-links {
        padding-left: 0;
        margin-top: 30px;
    }
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--green-bright);
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--green-bright);
    padding-left: 6px;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px 6px 15px;
    position: relative;
    border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--green-primary);
    color: var(--white);
    transition: var(--transition-smooth);
    border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: var(--green-light);
}

#footer .copyright {
    border-top: 1px solid var(--black-muted);
    text-align: center;
    padding-top: 30px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 999;
    padding-bottom: 20px;
}

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

.footer-marquee-inner {
    display: inline-block;
    padding: 0 2rem;
    animation: footer-marquee 25s linear infinite;
}

.footer-services {
    color: #d4af37;
    font-weight: 600;
    margin-right: 1.5rem;
}

.footer-divider {
    color: #d4af37;
    margin-right: 1.5rem;
}

.footer-quote {
    color: #d4af37;
}

@keyframes footer-marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
    #footer .footer-top {
        padding: 50px 0 30px 0;
    }
    
    #footer .footer-top .footer-info:first-child {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    #footer .footer-top .footer-links {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    #footer .footer-top {
        padding: 40px 0 20px 0;
    }
    
    #footer .footer-top .footer-info h3,
    #footer .footer-top .footer-info h4,
    #footer .footer-top .footer-links h4 {
        font-size: 18px;
    }
}

/* --- floating whatsapp button ---*/

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 70px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

/* ---- Text blink --- */

.blink-text {
    color: var(--green-bright);
    font-weight: bold;
    font-size: 2rem;
    animation: blinkingText 2.5s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}

@keyframes blinkingText {
    0%, 100% {
        color: var(--green-bright);
        text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    }
    50% {
        color: var(--green-primary);
        text-shadow: 0 0 30px rgba(22, 163, 74, 0.6);
    }
}

/* ========== Smooth scroll & extra animations ========== */
html {
    scroll-behavior: smooth;
}

.gallery .gallery-item {
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.gallery .gallery-item:hover {
    box-shadow: var(--shadow-green);
}

.gallery .gallery-item img {
    transition: var(--transition-smooth);
}

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