/* Font Definitions */
@font-face {
    font-family: "Museo Sans 500 Medium", serif;
    src: url("../fonts/museo-sans/MuseoSans_500.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Museo Sans 700 Bold", serif;
    src: url("../fonts/museo-sans/MuseoSans_700.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

p{
    font-size: 12px;
    font-weight: 700;
}

/* ==================== SECTION HEADERS ==================== */
.fx-section-header {
    text-align: center;
    margin-bottom: 80px;
}

    .fx-section-header.center {
        text-align: center;
        z-index: 2;
        position: relative;
    }

.fx-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgb(134 184 155 / 10%);
    border: 1px solid rgb(66 91 62 / 40%);
    border-radius: 25px;
    color: #48514a;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

    .fx-section-badge.dark {
        background: rgba(0, 0, 0, 0.8);
        border-color: rgb(65 161 42);
        color: white;
    }

    .fx-section-badge.light {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        color: white;
    }

@media screen and (max-width: 768px) {
    .fx-section-badge {
        margin-left: auto;
        margin-right: auto;
        width: 200px;
        align-items: center;
        justify-content: center;
        display: flex;
    }
}

.fx-section-title {
    font-size: 2.5rem;
    color: #0d1d2c;
    margin: 0 0 30px 0;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

    .fx-section-title.dark {
        color: white;
    }

    .fx-section-title.light {
        color: white;
    }

    .fx-section-title .fx-highlight {
        color: #4f4f4f;
        position: relative;
    }

        .fx-section-title .fx-highlight::after {
            content: '';
            position: absolute;
            bottom: 12px;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #0f9c2a, #2ecc71);
            border-radius: 2px;
            transition: width 1s cubic-bezier(0.65, 0, 0.35, 1);
            transform-origin: left;
        }
/* ==================== GLOBAL BREADCRUMB STYLES ==================== */
.fx-breadcrumb {
    background: linear-gradient(135deg, #0d1d2c 0%, #34495e 100%);
    padding: 200px 0 30px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    background-image: url(../images/leaf2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    background-attachment: fixed;
}

    .fx-breadcrumb::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/bg6.webp);
        background-position: center;
        background-size: cover;
        opacity: 0.4;
        z-index: 1;
        background: linear-gradient(45deg, #202020, #000000);
    }

.fx-breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

    .fx-breadcrumb-list li {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
    }

        .fx-breadcrumb-list li:not(:last-child)::after {
            content: '→';
            margin: 0 15px;
            color: #ffffff;
            font-size: 26px;
            padding-bottom: 3rem;
            background: none;
            font-weight: 900;
            margin-right: 2rem;
        }

        .fx-breadcrumb-list li a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 900;
            text-transform: uppercase;
        }

            .fx-breadcrumb-list li a:hover {
                color: #0f9c2a;
            }

        .fx-breadcrumb-list li.active {
            color: #ffffff;
            font-weight: 600;
            font-size: 32px;
            font-weight: 800;
            line-height: 2rem;
        }

@media screen and (max-width: 768px){
    .fx-breadcrumb-list li:not(:last-child)::after {
        margin: 0px;
        margin-right: 1rem;
    }
}
/* ==================== ABOUT PAGE TEXT STYLES ==================== */
.fx-about-text {
    margin-top: 50px;
    text-align: left;
}

    .fx-about-text p {
        font-family: "Museo Sans 500 Medium", serif;
        font-size: 16px;
        line-height: 1.8;
        color: #7f8c8d;
        margin-bottom: 25px;
        text-align: justify;
    }

.fx-lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #0d1d2c;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: justify;
}

/* Partners Section Styles */
.fx-partners-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #0d1d2c 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
    background-image: url(../images/5.webp);
    background-size: cover;
    background-attachment: fixed;
}

.fx-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.fx-partner-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .fx-partner-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(39, 174, 96, 0.5);
    }

    .fx-partner-card i {
        font-size: 48px;
        color: #0f9c2a;
        margin-bottom: 20px;
        display: block;
    }

    .fx-partner-card h3 {
        font-family: 'Bebas Neue';
        font-size: 24px;
        color: white;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* Impact Section Styles */
.fx-impact-section {
    padding: 150px 0;
    background: white;
    position: relative;
}

.fx-impact-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 80px 0 50px;
}

.fx-stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(39, 174, 96, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 200px;
}

    .fx-stat-item:hover {
        transform: translateY(-10px);
        background: rgba(39, 174, 96, 0.15);
        border-color: rgba(39, 174, 96, 0.6);
    }

.fx-stat-number {
    font-family: 'Bebas Neue';
    font-size: 48px;
    color: #565656;
    display: block;
    margin-bottom: 10px;
    font-weight: 100;
}

.fx-stat-label {
    font-family: "Museo Sans 500 Medium", serif;
    font-size: 16px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.fx-impact-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .fx-impact-text p {
        font-family: "Museo Sans 500 Medium", serif;
        font-size: 18px;
        line-height: 1.8;
        color: #7f8c8d;
    }

/* Services Section Styles */
.fx-services-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #0d1d2c 0%, #34495e 100%);
    background-image: url(../images/4.webp);
    background-size: cover;
    background-attachment: fixed;
    width: 80%;
    margin: auto;
    border-radius: 20px;
    margin-bottom: 5rem;
}

.fx-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.fx-service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .fx-service-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(39, 174, 96, 0.5);
    }

    .fx-service-card i {
        font-size: 48px;
        color: #0f9c2a;
        margin-bottom: 20px;
        display: block;
    }

    .fx-service-card h3 {
        font-family: 'Bebas Neue';
        font-size: 24px;
        color: white;
        margin: 0 0 15px 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .fx-service-card p {
        font-family: "Museo Sans 500 Medium", serif;
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
    }

/* Responsive Styles */
@media (max-width: 1200px) {
    .fx-partners-grid,
    .fx-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fx-services-section {
        width: 90%;
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 320px;
    }

    .fx-breadcrumb {
        padding: 180px 0 20px;
    }

    .fx-breadcrumb-list {
        flex-wrap: wrap;
    }

        .fx-breadcrumb-list li {
            font-size: 14px;
        }

    .fx-partners-section, .fx-impact-section {
        padding: 50px 0;
    }

    .fx-partners-grid,
    .fx-services-grid {
        grid-template-columns: 1fr;
    }

    .fx-impact-stats {
        flex-direction: column;
        gap: 30px;
    }

    .fx-stat-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .fx-lead-text {
        font-size: 18px;
    }

    .fx-about-text p {
        font-size: 15px;
    }
}

@media screen and (max-width: 465px) {
    .fx-stat-item {
        max-width: 200px;
    }
}

/* Container Overrides */
.fx-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .fx-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .fx-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .fx-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .fx-container {
        max-width: 1140px;
    }
}

.corporate-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}
