@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --brand-green: rgb(118 159 86);
    --brand-green-hover: rgb(84 125 51);
    --brand-dark: #183835;
    --brand-white: #FFFFFF;
    --brand-black: #000000;
    --pd-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

html {
    text-rendering: optimizeLegibility;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:focus-visible {
    outline: 2px solid #1D4ED8;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.text-brandGreen {
    color: #8EB471;
}
.bg-brandGreen {
    background-color: #8EB471;
}
.no-scroll {
    overflow: hidden;
}
.project-card .image-container {
    height: 550px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    background-color: #f8fafc;
}
.project-card .scroll-image {
    width: 100%;
    height: auto;
    transition: transform 6s ease-in-out;
    transform: translateY(0);
}
.project-card:hover .scroll-image {
    transform: translateY(calc(-100% + 100%));
}
.visit-btn {
    background-color: #8EB471;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.visit-btn:hover {
    background-color: #7a9c61;
    letter-spacing: 1px;
}
.v2-project-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.v2-image-box {
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
    border: 1px solid rgba(142, 180, 113, 0.1);
}
.v2-scroll-img {
    width: 100%;
    transition: transform 8s ease-in-out;
}
.v2-project-card:hover .v2-scroll-img {
    transform: translateY(calc(-100% + 600px));
}
.v2-project-card:hover {
    transform: scale(1.02);
}
.category-badge {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.neon-glow:hover {
    box-shadow: 0 0 30px rgba(142, 180, 113, 0.4);
}
.reveal-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 650px;
    background: #111827;
}
.reveal-image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}
.reveal-img {
    width: 100%;
    transition: transform 7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(40%);
}
.reveal-card:hover .reveal-img {
    transform: translateY(calc(-100% + 650px)) scale(1.05);
    filter: grayscale(0%);
}
.info-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 20px;
    transform: translateY(110%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.reveal-card:hover .info-overlay {
    transform: translateY(0);
}
.custom-dot {
    height: 8px;
    width: 8px;
    background-color: #8EB471;
    border-radius: 50%;
    display: inline-block;
}
.navigation li a {
    position: relative;
    color: rgba(255, 255, 255, 0.8); 
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 10px 0;
    display: inline-block;
}
.navigation li a:hover {
    color: #769f56 !important; 
}
.navigation li.current-menu-item > a,
.navigation li.current_page_item > a {
    color: #769f56 !important;
    font-weight: 800;
}
.navigation li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #769f56;
    transition: width 0.3s ease;
}
.navigation li a:hover::after,
.navigation li.current-menu-item > a::after {
    width: 100%;
}
.pd_wrapper {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}
.pd_header {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 0;
    z-index: 99999;
    border-bottom: 1px solid #ffffff2b;
    transition: var(--pd-transition);
}
.pd_header.is-top {
    background: transparent !important;
}
@media (min-width: 1024px) {
    .pd_header {
        position: fixed;
    }
}
.pd_header.pd_sticky {
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: white !important;
}
.pd_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pd_logo img {
    height: 40px;
    display: block;
    transition: 0.3s;
    filter: none; 
}
.pd_header.is-top .pd_logo img {
    filter: brightness(0) invert(1) !important;
}
.pd_header.pd_sticky img {
    filter: none !important;
}
.pd_mobile_toggle span, 
.pd_mobile_toggle .pd_bar {
    background-color: white !important;
}
.pd_header.is-top .pd_mobile_toggle span,
.pd_header.is-top .pd_mobile_toggle .pd_bar {
    background-color: #ffffff !important;
}
.pd_nav_desktop ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pd_nav_desktop a {
    text-decoration: none;
    /*color: var(--brand-black) !important;*/
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    position: relative;
}
.pd_header.is-top .pd_nav_desktop a {
    color: var(--brand-white, #ffffff) !important;
}
.pd_header.pd_sticky a {
    color: var(--brand-black) !important;
}
.pd_header.pd_sticky .pd_right a {
    color: var(--brand-white) !important;
}
.pd_nav_desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pd-green);
    transition: 0.3s;
}
.pd_nav_desktop a:hover::after {
    width: 100%;
}
.pd_nav_desktop a:hover {
    color: #759f55;
}
.pd_btn_cta {
    background: var(--brand-green);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    display: inline-block;
    box-shadow: none;
}
.pd_btn_cta:hover {
    background: var(--brand-green-hover);
    transform: translateY(-2px);
}

.pd_mobile_toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 100001;
}
.pd_bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--brand-white);
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 2px;
}
.pd_header.pd_sticky .pd_bar {
    background: var(--brand-black);
}
.pd_side_panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: var(--brand-dark);
    z-index: 100000;
    padding: 0;
    transition: var(--pd-transition);
    box-sizing: border-box;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.2);
}
.pd_side_panel.pd_open {
    right: 0 !important;
}
.pd_side_inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px;
}
.pd_side_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.pd_side_top .pd_logo img {
    filter: brightness(0) invert(1);
    height: 35px;
}
.pd_side_close {
    background: none;
    border: none;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}
.pd_side_close:hover {
    transform: rotate(90deg);
}
.pd_menu_label {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: block;
}
.pd_side_links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pd_side_links li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(30px);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pd_side_panel.pd_open .pd_side_links li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(0.1s * var(--d));
}
.pd_side_links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px !important;
    font-weight: 700;
    transition: 0.3s;
    display: block;
}
.pd_side_links a span {
    font-size: 16px;
    color: var(--pd-green);
    margin-right: 15px;
    font-weight: 400;
}
.pd_side_links a:hover {
    color: var(--brand-green);
    padding-left: 10px;
}
.pd_side_email {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 25px;
}
.pd_btn_cta_full {
    background: var(--pd-green);
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
}
.pd_overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    z-index: 99998;
    display: none;
    opacity: 0;
    transition: 0.4s;
}
.pd_overlay.open {
    display: block;
    opacity: 1;
}
@media (max-width: 992px) {

    .pd_nav_desktop,
    .pd_btn_cta {
        display: none;
    }

    .pd_mobile_toggle {
        display: block;
    }

    .pd_side_panel {
        width: 100%;
    }

    .pd_container {
        padding: 0 25px;
    }

    .pd_side_inner {
        padding: 40px 30px;
    }

    .pd_side_links a {
        font-size: 28px;
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}
@keyframes loop-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
.animate-loop-scroll {
    animation: loop-scroll 40s linear infinite;
}
.hover-stop-animation:hover .animate-loop-scroll {
    animation-play-state: paused !important;
}
.tooltip-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1e293b;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-40px) translateX(20px);
    }
}
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.animate-float {
    animation: float 10s ease-in-out infinite;
}
.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}
@keyframes shimmer {
    from {
        background-position: 200% center;
    }

    to {
        background-position: 0% center;
    }
}
.animate-shimmer {
    animation: shimmer 3s linear infinite;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: all 0.6s ease;
}
.shine-green.btn-shine::after {
    background: linear-gradient(to right, transparent, rgba(90, 143, 50, 0.2), transparent);
}
.btn-shine:hover::after {
    transform: rotate(45deg) translate(100%, 100%);
}
.animate-on-scroll {
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 {
    transition-delay: 100ms;
}
.delay-200 {
    transition-delay: 200ms;
}
.delay-300 {
    transition-delay: 300ms;
}
.delay-500 {
    transition-delay: 500ms;
}
.delay-700 {
    transition-delay: 700ms;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 10px;
    background: #89AE6D !important;
}
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}
.animate-float {
    animation: float 5s ease-in-out infinite;
}
@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}
.animate-bounce-slow {
    animation: bounce-slow 3s ease-in-out infinite;
}
.drop-shadow-3xl {
    filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.1));
}
.faq-container {
    max-width: 1000px;
    margin: auto;
}
.faq-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: fit-content;
}
.faq-card:hover {
    border-color: var(--brand-green);
    shadow: 0 10px 25px -5px rgba(142, 180, 113, 0.1);
}
.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
    transition: background 0.3s;
}
.faq-question {
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
    line-height: 1.4;
}
.faq-trigger {
    width: 32px;
    height: 32px;
    background: var(--soft-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    transition: all 0.3s;
    flex-shrink: 0;
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    background: #fff;
}
.faq-content {
    padding: 0 24px 24px 24px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}
.faq-card.active {
    border-color: var(--brand-green);
    background: #fff;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}
.faq-card.active .faq-trigger {
    background: var(--brand-green);
    color: #fff;
    transform: rotate(180deg);
}
.faq-card.active .faq-body {
    max-height: 300px;
}
@media (max-width: 850px) {
    .faq-group {
        grid-template-columns: 1fr;
    }
}
@keyframes gradient-x {

    0%,
    100% {
        background-size: 200% 200%;
        background-position: left center;
    }

    50% {
        background-size: 200% 200%;
        background-position: right center;
    }
}
.animate-gradient-x {
    animation: gradient-x 5s ease infinite;
}
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}
@keyframes bounce-delayed {

    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.animate-bounce-delayed {
    animation: bounce-delayed 4s ease-in-out infinite;
}
.perspective-1000 {
    perspective: 1000px;
}
.lux-card:hover img {
    filter: brightness(0) invert(1);
}
.lux-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 35px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.lux-card:hover {
    transform: translateY(-12px);
    border-color: var(--brand-green);
    box-shadow: 0 35px 70px -15px rgba(142, 180, 113, 0.15);
}
.lux-icon-box {
    width: 75px;
    height: 75px;
    background: #f8fafc;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--deep-black);
    transition: all 0.4s ease;
}
.lux-card:hover .lux-icon-box {
    background: var(--brand-green);
    color: white;
    transform: scale(1.1) rotate(-6deg);
}
.ser-num {
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 0;
    transition: 0.4s ease;
}
.lux-card:hover .ser-num {
    color: rgba(142, 180, 113, 0.08);
}
.hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 0;
    background: var(--brand-green);
    transition: width 0.6s ease;
}
.lux-card:hover .hover-line {
    width: 100%;
}
.pro-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 45px 20px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.icon-main {
    width: 65px;
    height: 65px;
    filter: brightness(0) saturate(100%) invert(69%) sepia(28%) saturate(463%) hue-rotate(60deg) brightness(92%) contrast(88%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}
.pro-card:hover {
    transform: translateY(-12px);
    background: var(--brand-green);
    border-color: var(--brand-green);
    box-shadow: 0 30px 60px -12px rgba(142, 180, 113, 0.4);
}
.pro-card:hover .icon-main {
    filter: brightness(0) invert(1);
    transform: scale(1.2) translateY(-5px);
}
.ind-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    font-size: 13px;
    font-weight: 800;
    margin-top: 25px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 2;
}
.pro-card:hover .ind-label {
    color: #ffffff;
    letter-spacing: 2px;
}
.card-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(142, 180, 113, 0.05);
    border-radius: 50%;
    transition: all 0.6s ease;
    z-index: 1;
}
.pro-card:hover .card-circle {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}
.faq-container {
    max-width: 1000px;
    margin: auto;
}
.faq-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: fit-content;
}
.faq-card:hover {
    border-color: var(--brand-green);
    shadow: 0 10px 25px -5px rgba(142, 180, 113, 0.1);
}
.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
    transition: background 0.3s;
}
.faq-question {
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
    line-height: 1.4;
}
.faq-trigger {
    width: 32px;
    height: 32px;
    background: var(--soft-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    background: #fff;
}

.faq-content {
    padding: 0 24px 24px 24px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.faq-card.active {
    border-color: var(--brand-green);
    background: #fff;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}

.faq-card.active .faq-trigger {
    background: var(--brand-green);
    color: #fff;
    transform: rotate(180deg);
}

.faq-card.active .faq-body {
    max-height: 300px;
}

@media (max-width: 850px) {
    .faq-group {
        grid-template-columns: 1fr;
    }
}


section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

@keyframes gradient-x {

    0%,
    100% {
        background-size: 200% 200%;
        background-position: left center;
    }

    50% {
        background-size: 200% 200%;
        background-position: right center;
    }
}

.animate-gradient-x {
    animation: gradient-x 5s ease infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes bounce-delayed {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-delayed {
    animation: bounce-delayed 3.5s ease-in-out infinite;
}

.perspective-1000 {
    perspective: 1000px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeIn 0.4s ease-out forwards;
}

.post-card {
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(110, 167, 84, 0.15);
    border-color: #6ea754;
}

.cat-item.active {
    background-color: #6ea754;
    border-color: #6ea754;
    color: #ffffff;
}

.cat-item.active span:first-child {
    color: #ffffff;
}

.cat-item.active span:last-child {
    background-color: #ffffff;
    color: #6ea754;
}


@keyframes gradient-x {

    0%,
    100% {
        background-size: 200% 200%;
        background-position: left center;
    }

    50% {
        background-size: 200% 200%;
        background-position: right center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.animate-gradient-x {
    animation: gradient-x 5s ease infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce-slow 4s ease-in-out infinite;
}

.animate-bounce-delayed {
    animation: bounce-slow 4s ease-in-out infinite;
    animation-delay: 2s;
}

.perspective-1000 {
    perspective: 1200px;
}

::selection {
    background: #8EB471;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeIn 0.4s ease forwards;
}

.cat-item.active {
    background-color: #f0fdf4;
    border-color: #6ea754;
}




.footer-services-list li a {
    color: rgba(243, 244, 246, 1);
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-services-list li a:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.footer-services-list li a i {
    font-size: 10px;
    margin-right: 0.5rem;
    opacity: 0.5;
}

.footer-services-list li a {
    @apply text-gray-100 flex items-center transition-all duration-300;
}

.footer-services-list li a:hover {
    @apply text-white pl-2;
}

.footer-services-list li a i {
    @apply text-[10px] mr-2 opacity-50;
}





        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        @keyframes gradient-x {

            0%,
            100% {
                background-size: 200% 200%;
                background-position: left center;
            }

            50% {
                background-size: 200% 200%;
                background-position: right center;
            }
        }

        .animate-gradient-x {
            animation: gradient-x 5s ease infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(2deg);
            }
        }

        .animate-float-custom {
            animation: float 6s ease-in-out infinite;
        }

        .perspective-2000 {
            perspective: 2000px;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }



        .lux-card {
  position: relative;
  background: #fff;
  border-radius: 2rem;
  transition: all .4s ease;
}

.lux-card:hover {
  transform: translateY(-8px);
}

.hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #8EB471;
  transition: width .4s ease;
}

.lux-card:hover .hover-line {
  width: 100%;
}

.faq-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-card.active .faq-body {
  max-height: 300px;
}



  @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-14px);
            }
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        .animate-float-delayed {
            animation: float 6s ease-in-out infinite;
            animation-delay: 1.8s;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-radius: 28px;
            padding: 2.5rem;
            box-shadow: 0 35px 80px rgba(29, 78, 216, 0.12);
            transition: transform .5s cubic-bezier(.23, 1, .32, 1);
        }

        .glass-card:hover {
            transform: translateY(-12px) scale(1.02);
        }

        .modern-btn {
            background: linear-gradient(135deg, #8EB471, #28A650);
            transition: all .35s ease;
        }

        .modern-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 60px rgba(39, 234, 88, 0.35);
        }



            @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-14px);
            }
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        .animate-float-delayed {
            animation: float 6s ease-in-out infinite;
            animation-delay: 1.8s;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-radius: 28px;
            padding: 2.5rem;
            box-shadow: 0 35px 80px rgba(29, 78, 216, 0.12);
            transition: transform .5s cubic-bezier(.23, 1, .32, 1);
        }

        .glass-card:hover {
            transform: translateY(-12px) scale(1.02);
        }

        .modern-btn {
            background: linear-gradient(135deg, #8EB471, #28A650);
            transition: all .35s ease;
        }

        .modern-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 60px rgba(39, 234, 88, 0.35);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        @keyframes gradient-x {

            0%,
            100% {
                background-size: 200% 200%;
                background-position: left center;
            }

            50% {
                background-size: 200% 200%;
                background-position: right center;
            }
        }

        .animate-gradient-x {
            animation: gradient-x 5s ease infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(2deg);
            }
        }

        .animate-float-custom {
            animation: float 6s ease-in-out infinite;
        }

        .perspective-2000 {
            perspective: 2000px;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination a {
    background-color: #4C51BF;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
}

.pagination .current {
    background-color: #2D3748;
    color: white;
}




.post-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.entry-content {
    line-height: 1.6;
    margin-top: 20px;
}


  .timeline-wrapper::before {
        content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
        width: 2px; height: 100%; background: linear-gradient(to bottom, transparent, #8EB471, #8EB471, transparent); z-index: 1;
    }
    .line-glow {
        position: absolute; left: 50%; transform: translateX(-50%);
        width: 6px; height: 100px; background: linear-gradient(to bottom, transparent, #8EB471, transparent);
        z-index: 2; animation: moveGlow 6s linear infinite;
    }
    @keyframes moveGlow { 0% { top: -10%; } 100% { top: 110%; } }
    .floating-img { animation: floatIcon 5s ease-in-out infinite; }
    @keyframes floatIcon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

    @media (max-width: 768px) {
        .timeline-wrapper::before, .line-glow { left: 20px; transform: none; }
        .step-container { flex-direction: column !important; align-items: flex-start !important; padding-left: 45px !important; }
        .central-dot { left: 20px !important; transform: translateX(-50%) !important; }
        .w-full.md\:w-\[45\%\] { width: 100% !important; margin-bottom: 2rem; }
    }







  
.sidebar-container {
    background: #FFFFFF;
    border-radius: 40px; 
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05); 
    border: 1px solid #F1F5F9;
}

.search-box {
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 18px !important;
    color: #64748B;
}

.filter-btn {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.filter-btn:hover {
    background: #F1F5F9;
}

.filter-box.active .filter-btn {
    background: #F8FAFC;
    border-color: #E2E8F0;
}

.count-badge {
    background: #FFFFFF;
    color: #1E293B;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sub-filter-item {
    padding: 10px 20px;
    border-radius: 12px;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sub-filter-item:hover {
    background: #F1F5F9;
    color: #8EB471;
}

.sub-filter-item.active {
    background: #8EB471/10;
    color: #8EB471;
}






/* আপনার আগের স্টাইল নষ্ট না করে ড্রয়ার ফিক্স */
@media (max-width: 1023px) {
    #filterSidebar {
        z-index: 200000 !important; /* সবার উপরে রাখার জন্য */
        position: fixed !important;
        inset: 0;
        display: none; 
    }
    
    #filterSidebar.flex {
        display: flex !important;
    }

    #sidebarInner {
        z-index: 200001 !important;
        transform: translateX(-100%); /* বাম দিক থেকে আসবে */
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    #filterSidebar.active #sidebarInner {
        transform: translateX(0);
    }

    /* ওভারলে ফিক্স */
    .close-drawer.bg-black\/60 {
        z-index: 199999 !important;
    }
}




    



 body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            
            color: #fff;
            overflow-x: hidden;
        }

        .hero-bg {
            background:
                radial-gradient(circle at 10% 20%, rgba(142, 180, 113, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
                url('https://www.transparenttextures.com/patterns/dark-matter.png');
                background-color: var(--brand-dark);
        }

        .dashboard-frame {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
            z-index: 10;
        }

        #magic-cursor {
            z-index: 100 !important;
            pointer-events: none;
            filter: drop-shadow(0 0 8px rgba(142, 180, 113, 0.8));
            position: absolute;
            transform: translate(-50%, -50%);
        }

        .code-block {
            font-family: 'Courier New', Courier, monospace;
            font-size: 13px;
            color: #8EB471;
            line-height: 1.6;
            display: inline-block;
            white-space: nowrap;
            overflow: hidden;
            border-right: 2px solid #8EB471;
        }

        .btn-primary {
            background-color: #8EB471;
            color: #020617;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border: 1px dashed rgba(19, 18, 18, 0.459);
           
        }

        #floating-badge {
            z-index: 10;
            display: flex;
            opacity: 0;
            transform: translateY(20px);
            box-shadow: 0 0 20px rgba(142, 180, 113, 0);
            transition: box-shadow 0.5s ease;
        }

        .badge-glow {
            box-shadow: 0 0 30px rgba(142, 180, 113, 0.3) !important;
        }

        .code-block {
            display: block;
            white-space: nowrap;
            overflow: hidden;
            width: 0;
        }



            html { scroll-behavior: smooth; }

    .filter-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .filter-box.active .filter-content {
        max-height: 1000px;
        opacity: 1;
        margin-top: 8px;
    }
    .rotate-icon { transition: transform 0.4s ease; }
    .filter-box.active .rotate-icon { transform: rotate(180deg); }

    .img-scroll-container {
        position: relative;
        width: 100%;
        height: 500px; 
        overflow: hidden;
        border-radius: 2.5rem;
    }

    .project-card-img {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        transition: transform 5s ease-in-out; 
    }

  
    .img-scroll-container:hover .project-card-img {
        transform: translateY(calc(-100% + 500px)); 
    }

    .animate-fade-in {
        animation: fadeIn 0.5s ease forwards;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .cat-badge {
        z-index: 20;
        pointer-events: none;
    }



    .project-scrolling-image {
    transform: translateY(0);
    will-change: transform;
}

.project-card:hover .project-scrolling-image {
    transform: translateY(calc(-100% + 680px)); 
}





   
    #primary, .site-main { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
    
    .custom-blog-container { font-family: 'Inter', sans-serif !important; background-color: #FDFDFD; }
    .gradient-text {
        background: linear-gradient(90deg, #8EB471, #5d7a46, #8EB471);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .glass-card { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(12px); border: 1px solid rgba(226, 232, 240, 0.5); }





.faq-card .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.faq-card.active .faq-body {
    max-height: 500px; 
    opacity: 1;
    padding-bottom: 20px;
}

.faq-card.active .faq-trigger i {
    transform: rotate(180deg);
}

.faq-trigger i {
    transition: transform 0.3s ease;
}

.navigation li.current-menu-item > a {
    color: var(--brand-green);
}
ul#menu-menu-1 a {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 992px) and (max-width: 1100px) {
  .pd_right {
    display: none;
}
}
.custom-bg-green{
    background:var(--brand-green);
}
.custom-bg-white{
    background:var(--brand-white);
    color: var(--brand-black) !important;
}
.bottom-mobile-menu{
    z-index: 99999 !important;
}
.brand-t-green{
    color: #8EB471;
}
.footer-bg {
    background: radial-gradient(circle at 10% 20%, rgba(142, 180, 113, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
                url('https://www.transparenttextures.com/patterns/dark-matter.png');
    background-color: var(--brand-dark);
    
}
















