:root {
    /* Primary Colors */
    --color-green-dark: #1a3b32;
    --color-green-mid: #2d5a4c;
    --color-green-light: #5d8233;
    --color-orange: #e67e22;
    --color-yellow: #f1c40f;
    --color-yellow-dark: #d4ac0d;

    /* Project Specific Colors */
    --color-beige: #f3f2eb;
    --color-proj-yellow: #e0b144;
    --color-proj-coral: #e27447;
    --color-proj-green: #70944a;

    /* Navigation Colors */
    --color-nav-bg: #f9f9f4;
    --color-nav-text: #223c36;
    --color-nav-sep: #e0e0d1;
    --color-btn-yellow: #f1b34a;
    --color-btn-orange: #ed724b;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-light: #f4f4f4;
    --color-gray-dark: #333333;

    /* Typography */
    --font-primary: 'Anton', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Borders & Shadows */
    --border-radius: 8px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--color-gray-dark);
    overflow-x: hidden;
    background: #f3f2eb;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

/* Container override if needed, but Bootstrap's default is usually fine */
/* .container { ... } */

/* Buttons - CEMIRDE Customizations */
.btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.2s ease, background 0.3s ease;
}

.info-listed {
    padding: 10px 20px;
    border: 2px solid #C5C6B1;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.home .site-header {
    background: transparent;
}

.btn.btn-yellow-action.py-3.px-5.fw-bold {
	display: flex !important;
	align-content: center;
	align-items: center;
}

/* Header & Navigation */
.site-header {
    background: #f3f2ec;
    position: absolute;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding-top: 38px !important;
}

@media (max-width: 991px) {
    .site-header {
        padding-top: 15px !important;
    }
}

.navbar-toggler {
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.05);
}

.site-logo {
    max-height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .site-logo {
        max-height: 50px;
    }
}

.nav-capsule-bootstrap {
    background-color: #fff;
    border-radius: 50px;
    padding: 10px 40px;
    text-align: center;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none !important;
    width: auto;
    max-width: fit-content;
    margin: 0 auto;
    white-space: nowrap;
    display: none !important;
    /* Hide by default (mobile) */
}

@media (min-width: 992px) {
    .nav-capsule-bootstrap {
        display: flex !important;
        /* Show on desktop */
        align-items: center;
        justify-content: center;
    }
}






.nav-capsule-bootstrap ul,
.nav-capsule-bootstrap .capsule-nav,
.nav-capsule-bootstrap .capsule-nav>ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
}


.nav-capsule-bootstrap li {
    display: inline-block !important;
    vertical-align: middle !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-capsule-bootstrap a {
    display: inline-block !important;
    padding: 8px 15px !important;
}


.nav-capsule-bootstrap li:not(:last-child)::after {
    content: "";
    display: inline-block !important;
    width: 1px;
    height: 15px;
    background-color: var(--color-nav-sep);
    vertical-align: middle !important;
    margin: 0 5px !important;
}

.nav-capsule-bootstrap a,
.nav-capsule-bootstrap .nav-link {
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--color-nav-text) !important;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-decoration: none !important;
}



.nav-capsule-bootstrap a:hover,
.nav-capsule-bootstrap .nav-link:hover {
    color: var(--color-orange) !important;
}

/* Header Buttons */
.btn-yellow-action {
    background: #F3B948;
    color: var(--color-white) !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 12px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-family: 'Inter', sans-serif !important;
    display: inline-block !important;
    line-height: 1 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
}

.btn-orange-action {
    background: #ed724b;
    color: var(--color-white) !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 12px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-family: 'Inter', sans-serif !important;
    display: inline-block !important;
    line-height: 1 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer !important;
}

.btn-yellow-action:hover,
.btn-orange-action:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2) !important;
    filter: brightness(1.1) !important;
    color: var(--color-white) !important;
}



/* Mobile specific adjustments */
@media (max-width: 991px) {
    .capsule-nav {
        display: none !important;
    }

    .offcanvas-body .navbar-nav,
    .offcanvas-body .nav-capsule-bootstrap {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        width: 100% !important;
        background-color: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .offcanvas-body .navbar-nav li,
    .offcanvas-body .navbar-nav .menu-item,
    .offcanvas-body .navbar-nav a,
    .offcanvas-body .nav-capsule-bootstrap a {
        display: block !important;
        width: 100% !important;
        font-size: 1.1rem !important;
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        text-align: left !important;
        margin: 0 !important;
    }

    /* Hide all separators on mobile */
    .offcanvas-body li::after,
    .offcanvas-body .menu-item::after,
    .offcanvas-body a::after,
    .offcanvas-body .navbar-nav a::after,
    .offcanvas-body .nav-item::after {
        content: none !important;
        display: none !important;
    }

    .offcanvas-body .btn-warning {
        background: linear-gradient(135deg, #f1b34a 0%, #e0a23a 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 12px !important;
    }

    .offcanvas-body .btn-danger {
        background: linear-gradient(135deg, #ed724b 0%, #d65d3a 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 12px !important;
    }
}




.bg-green-mid {
    background: green;
}

.program-card {
    background: linear-gradient(90deg, #ffffff 50%, var(--card-color) 50%);
}

@media (max-width: 991px) {
    .program-card {
        background: #ffffff !important;
        border-top: 8px solid var(--card-color) !important;
        margin: 0 10px 30px !important;
    }
}

.bg-white {
    background-color: #ffffff !important;
}


.bg-item {
    background-image: url('../images/topo-pattern.svg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    transition: transform 0.3s ease;
}

.bg-item:hover {
    transform: translateY(-5px);
}

.cta-title {
    letter-spacing: -1px;
}



.name-and-picture {
    display: flex;
    align-content: center;
    gap: 20px;
}

.name-and-picture img {
    width: 40px;
    height: 40px;
    border-radius: 90%;
}



.info-listed-card {
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.05) !important;
    border-style: dashed !important;
}



.count-num {
    color: #EB6D45;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.info-desc {
    color: #223C36;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
}


.testemonial-name {
    margin-bottom: -7px;
}



.btn:hover {
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--color-orange);
    color: var(--color-white);
}

.btn-yellow {
    background: var(--color-yellow);
    color: var(--color-green-dark);
}

.btn-outline {
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

/* Sections
section {
    padding: var(--spacing-xl) 0;
} */


@media (max-width: 767px) {
    section {
        padding: var(--spacing-lg) 0;
    }
}

.text-green-dark {
    color: #223c36;
}


.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    color: var(--color-white);
}

/* Inner Page Hero Styles */
.inner-hero {
    background-color: var(--color-beige);
    background-image: url('../images/topo-pattern.svg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-align: center;
    display: flex !important;
    align-items: center;
    height: 467px;
    margin: 0 !important;
    padding-top: 11rem;
}

@media (max-width: 991px) {
    .inner-hero {
        padding: 100px 0 60px !important;
        min-height: 300px;
    }

    .inner-hero .display-3 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 576px) {

    /* Slider 1:1 on Mobile */
    .hero-section,
    .hero-swiper,
    .h-slide {
        height: 100vw !important;
        min-height: auto !important;
    }

    .inner-hero {
        padding: 80px 0 40px !important;
    }
}

.inner-hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
}

.inner-hero .display-3 {
    font-family: var(--font-primary);
    color: var(--color-green-dark);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.inner-hero .title-line {
    width: 80px;
    height: 4px;
    background: var(--color-btn-orange);
    margin: 20px auto;
}

.inner-hero .breadcrumb-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-btn-yellow);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.inner-hero .lead {
    color: var(--color-green-mid);
    max-width: 750px;
    margin: 0 auto;
    font-weight: 500;
}

@media (max-width: 991px) {
    .inner-hero {
        padding: 100px 0 60px;
        min-height: 350px;
    }

    .inner-hero .display-3 {
        font-size: 2.5rem;
    }
}

/* Utilities */
.text-white {
    color: var(--color-white);
}

.bg-green-dark {
    background-color: var(--color-green-dark);
}

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

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

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

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

/* Footer Design - Based on Image */
.site-footer {
    padding: 100px 0 60px;
    font-family: var(--font-secondary);
    color: var(--color-green-dark);
    line-height: 1.4;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu .menu-item a {
    color: var(--color-green-dark);
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu .menu-item a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.btn-footer-cta {
    background-color: #EBB65B;
    /* Matches the golden-yellow in image */
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 40px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(235, 182, 91, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-footer-cta:hover {
    background-color: #d4a34d;
    transform: translateY(-2px);
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text {
    font-weight: 700;
    font-size: 1.5rem;
    /* Larger as per image */
    letter-spacing: -0.5px;
}

.contact-subtext {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 2px;
}

.link-location {
    font-weight: 700;
    color: var(--color-green-dark);
    text-decoration: none;
    margin-top: 5px;
    margin-left: 68px;
    /* Align with text */
    display: inline-block;
    border-bottom: 2px solid var(--color-green-dark);
    padding-bottom: 2px;
}

.footer-bottom-row {
    margin-top: 100px;
}

.footer-bottom-links a {
    font-weight: 500;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
}

.col-lg-6.intro-feature.d-flex.flex-column {
    gap: 12px !important;
}

.footer-copyright,
.footer-designer {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Hero Section & Swiper */
.hero-section {
    background: #F3F2EC;
    color: var(--color-white);
    height: 90vh;
    min-height: 700px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    /* Removed padding for full-width look */
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-main-title {
    font-family: var(--font-primary);
    line-height: 1;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    /*letter-spacing: -1px;*/
}

.h-slide {
    height: 90vh !important;
}


.text-lime {
    color: #a4d65e;
}

.title-line {
    width: 100%;
    height: 3px;
    background-color: #fff;
}

.hero-text-bottom {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .hero-main-title {
        font-size: 4rem;
    }
}

.intro-section {
    background-color: #1a2e28;
    /* Dark green background from image */
    padding: 80px 0;
}

.intro-text {
    background-image: url('../images/topo-pattern.svg');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.intro-feature .feature-text {
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    min-height: 300px;
}

.intro-feature .feature-image-wrapper {
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    min-height: 350px;
}

.bg-yellow-light {
    background-color: #f1b34a;
}

.text-yellow {
    color: #f1b34a;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Swiper Global Customization */
.swiper-button-next,
.swiper-button-prev {
    background-color: #f3b948 !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: block !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    color: white !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1) !important;
    background-color: #e2a836 !important;
}



/* Responsive handled by Bootstrap */

.programs-section {
    background-color: #223c36;
}

.program-card {
    background-color: #fff;
    min-height: 380px;
}

.program-card .title {
    font-family: var(--font-primary);
    color: #223c36;
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 1.1;
}

.program-card .description-container {
    background-color: var(--card-color);
}

.program-card .description {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #000;
}

/* Moments Section */
.moment-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.moment-card:hover {
    transform: scale(1.03);
}

.moment-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    height: 60%;
    /* Gradient starts from bottom */
    transition: all 0.3s ease;
}

.moment-card:hover .moment-overlay {
    height: 70%;
    background: linear-gradient(to top, rgba(26, 46, 40, 0.9) 0%, rgba(26, 46, 40, 0.5) 50%, transparent 100%);
}

.moment-card h3 {
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {


    .cta-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .info-list-text h2 {
        font-size: 2.5rem;
    }

    .info-desc {
        font-size: 1.2rem;
    }

    .count-num {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 75vh !important;
        min-height: 550px !important;
        padding: 0;
    }

    .hero-slide-item {
        background-size: contain !important;
        background-position: center 25% !important;
        /* Move artwork up slightly */
    }

    .hero-main-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .title-line {
        height: 2px;
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none !important;
        /* Hide arrows on mobile for cleaner UI */
    }

    .hero-text-bottom {
        margin-bottom: 2rem !important;
    }

    /* Intro Section Mobile */
    .intro-section {
        margin-top: -40px;
    }

    /* Programs Section Mobile Split */
    .program-card {
        min-height: auto !important;
    }

    .program-card .title-container {
        padding: 40px 25px !important;
        background-color: #fff !important;
    }
    
    .program-card .title {
        font-size: 1.75rem !important;
    }

    .program-card .img-programer {
        height: 250px;
    }

    .program-card .description-container {
        background-color: var(--card-color) !important;
        padding: 40px 25px !important;
    }
    
    .program-card .description {
        color: #000 !important;
    }

    /* CTA Mobile */
    .cta-title {
        font-size: 2rem;
    }

    .bg-item {
        min-height: 350px;
    }

    /* Info List Mobile */
    .info-list-text h2 {
        font-size: 2rem;
        margin-bottom: 30px !important;
    }

    .info-listed-card {
        padding: 1.5rem !important;
    }

    .count-num {
        font-size: 1.8rem;
    }

    .info-desc {
        font-size: 1.1rem;
    }
}

/* Real Stories Swiper */
.stories-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.stories-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-yellow);
    width: 30px;
    border-radius: 6px;
}

.story-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width:600px) {
    .capsule-nav.align-items-center.gap-0 {
        display: none !important;
    }

    .hero-text-bottom {
        margin-bottom: 10rem !important;
    }
}

/* --- Contact Page Styles --- */
.contact-page .page-header {
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-icon-large {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-item-hover:hover {
    background-color: rgba(0, 0, 0, 0.03);
    transform: translateX(10px);
}

.social-btn-large {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--color-green-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-btn-large:hover {
    background: var(--color-yellow);
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    box-shadow: none;
    background-color: #fff !important;
    border: 1px solid var(--color-green-light) !important;
}

.btn-hover-grow {
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-hover-grow:hover {
    transform: scale(1.02);
}

.max-w-600 {
    max-width: 600px;
}

.shadow-inner {
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 991px) {
    .contact-item-hover:hover {
        transform: none;
    }
}

/* --- About Us Page & Timeline --- */
.timeline-card {
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 4px solid var(--color-green-light) !important;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.timeline-swiper {
    padding: 20px 0 50px;
}

.timeline-swiper .swiper-button-next,
.timeline-swiper .swiper-button-prev {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--color-green-dark);
}

.timeline-swiper .swiper-button-next:after,
.timeline-swiper .swiper-button-prev:after {
    font-size: 1rem !important;
    font-weight: bold;
}

/* Team Styles */
.grayscale-hover {
    filter: grayscale(100%);
    opacity: 0.8;
}

.team-member:hover .grayscale-hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.member-img-wrapper {
    border: 5px solid #f3f2eb;
    transition: all 0.3s ease;
}

.team-member:hover .member-img-wrapper {
    border-color: var(--color-yellow);
}