
/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 15px;
    text-align: end;
}

.language-switcher a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-switcher a.active {
    color: var(--white-color);
    background-color: var(--primary-color);
    font-weight: bold;
}

.language-switcher a:hover {
}

.language-switcher span {
    color: var(--white-color);
    opacity: 0.7;
}

:root {
    --primary-color: #018d37!important;
    --primary-color-hover: #1a4229;
    --secondary-color: #018d37;
    --tertiary-color: #018d37;
    --white-color: #fff;
    --black-color: #000;
    --gray-color: #333;
    --gray-color-hover: #666;
    --background-color: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url("../images/forest.jpg") ;

    min-height: 100vh;
}
.bg-white{
    background-color: var(--white-color);
}
.bg-primary{
    background-color: var(--primary-color)!important;
}
.text-primary{
    color: var(--primary-color)!important;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-full {
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 20px;
}
nav{
    width: 100%;
    padding: 20px 0;
}

/* Header */
header {
    background: rgba(1, 141, 55, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding:  0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #062A26;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-bottom: 3px solid #062A26;
    border-radius: 3px;
}

.nav-links a:hover {
    color: var(--white-color)!important;
    background-color: var(--primary-color);
}


/* Top Banner */
.top-banner {
    background-color: white;

    color: #2e8b57;
    padding: 1rem 0;
}
.top-line{
    padding: 1rem 5rem;
    margin: 0;
    color: white;
    background-color: #062a26;
}
.top-line .fas{
    color: var(--primary-color);
}

.banner-content {
    padding: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    
    gap: 3rem;
    flex-wrap: wrap;
}

.fie-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    font-weight: bold;
    color: #2e8b57;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
    margin-right: 1rem;
    border: 3px solid rgba(255,255,255,0.3);
}
.fie-logo img{
    width: 140px;
    height: 120px;
    border-radius: 50%;
}

.banner-text {
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.9;
    font-weight: 300;
}

header{
    background-color: #DEE7D9;
    color: black!important;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-btn.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
}

.cta-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Main Content */
main {
    background: white;
    border-radius: 30px 30px 0 0;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.content-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #018d37, #018d37);
    border-radius: 2px;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.principle-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.principle-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.contact-card:hover {
    transform: scale(1.05);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
}

.timeline-item {
    margin: 2rem 0;
    position: relative;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--secondary-color);
    width: 45%;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -45px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -45px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--secondary-color);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .banner-content{
        padding-top:  2rem;
    }
    .banner-title {
    text-align: center;
    font-size: 1.3rem!important;
    }

    .banner-subtitle {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-content::before {
        left: -45px !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

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


.header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        position: relative;
    }

    .nav-container {
        width: 100%;

        transition: all 0.3s ease;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links li a {
        color: #333;
        text-decoration: none;
        padding: 0.5rem 1rem;
        font-weight: 500;
        transition: color 0.3s ease;
        display: block;
    }

    .nav-links li a:hover {
        color: var(--primary-color);
    }

    .menu-toggle {
        display: none;
        cursor: pointer;
        padding: 10px;
    }

  

    @media (max-width: 991.98px) {
        .menu-toggle {
            display: block;
            z-index: 1001;
        }

          .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px 0;
        background-color: #333;
        transition: all 0.3s ease;
    }
        .menu-toggle.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .menu-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .nav-container {
            
            background-color: #fff;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 5rem 2rem;
            transition: right 0.3s ease;
        }
        .nav-container{
            display: none;
        }

        .nav-container.active {
            display: block;
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            left: 0;
        }

        .nav-links {
            flex-direction: column;
            align-items: flex-end;
            gap: 1.5rem;
        }

        .nav-links li {
            width: 100%;
            border-bottom: 1px solid #eee;
        }

        .nav-links li a {
            padding: 0.75rem 0;
            font-size: 1.1rem;
        }
    }

    @media (min-width: 992px) {
 
    }