@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
}

/* Topbar styles */
.topbar {
    background-color: #403f4c;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    color: #fff;
}

.topbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #76c25e;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info i {
    color: #76c25e;
}

.contact-info a:hover {
    color: #76c25e;
}

.quick-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.quick-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #76c25e;
}

.language {
    padding: 5px 10px;
    background-color: #76c25e;
    border-radius: 4px;
}

.language:hover {
    background-color: #fff;
    color: #76c25e !important;
}

/* Modern Navigation Styles */
.HeaderArea {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.HeaderArea.scrolled {
    padding: 5px 0;
}

.SetContent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.Logo {
    flex: 0 0 auto;
}

.Logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.HeaderArea.scrolled .Logo img {
    height: 50px;
}

.Menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.top-level-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.top-level-menu > li {
    position: relative;
}

.top-level-menu > li > a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.top-level-menu > li > a:hover,
.top-level-menu > li.active > a {
    color: #76c25e;
    background: rgba(118, 194, 94, 0.1);
}

.top-level-menu > li > a i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.top-level-menu > li:hover > a i {
    transform: rotate(180deg);
}

.top-level-menu > li > .second-level-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.top-level-menu > li:hover > .second-level-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.second-level-menu li {
    list-style: none;
    position: relative;
}

.second-level-menu li .second-level-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 220px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 101;
}

.second-level-menu li:hover > .second-level-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.second-level-menu li a {
    color: #333;
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.second-level-menu li a:hover,
.second-level-menu li.active > a {
    color: #76c25e;
    background: rgba(118, 194, 94, 0.1);
}

.HeaderArea .SetContent .responsiveMenu.fa,
.HeaderArea .SetContent .responsiveMenu.fas {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1000;
}

.Menu .MenuClose .fa,
.Menu .MenuClose .fas {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px;
    text-align: right;
}

@media (max-width: 992px) {
    .HeaderArea .SetContent .responsiveMenu.fa,
    .HeaderArea .SetContent .responsiveMenu.fas {
        display: block !important;
        transition: opacity 0.3s ease;
    }

    .Menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #fff;
        padding: 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: 1001;
    }

    .Menu.active {
        right: 0;
    }

    body.menu-open .HeaderArea .SetContent .responsiveMenu.fa,
    body.menu-open .HeaderArea .SetContent .responsiveMenu.fas {
        opacity: 0;
        visibility: hidden;
        display: none !important;
    }

    .Menu .MenuClose {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1002;
        cursor: pointer;
        padding: 10px;
    }

    .Menu .MenuClose .fa,
    .Menu .MenuClose .fas {
        display: block !important;
        font-size: 24px;
        color: #333;
    }

    .top-level-menu {
        flex-direction: column;
        gap: 5px;
        margin-top: 40px;
    }

    .second-level-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding-left: 20px !important;
        display: none;
        background: rgba(118, 194, 94, 0.1) !important;
        border-radius: 5px !important;
        margin: 5px 0 !important;
    }

    .top-level-menu > li.active > .second-level-menu,
    .second-level-menu > li.active > .second-level-menu {
        display: block;
    }

    .second-level-menu .second-level-menu {
        padding-left: 20px !important;
    }

    .top-level-menu > li > a {
        padding: 12px 15px;
        justify-content: space-between;
    }
}

/* Add backdrop when mobile menu is open */
.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.menu-backdrop.active {
    display: block;
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 134px);
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.slider-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-subtitle {
    font-size: 20px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.slider-button.prev {
    left: 20px;
}

.slider-button.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #76c25e;
}

/* Responsive slider */
@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }

    .slider-title {
        font-size: 32px;
    }

    .slider-subtitle {
        font-size: 16px;
    }

    .slider-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Welcome Section Styles */
.welcome-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: space-between;
    width: 100%;
}

.quick-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 10px;
    padding: 40px 10px;
    background: #76c25e;
    transition: all 0.3s ease;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
}

.quick-button:hover {
    background: #62a34c;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.quick-button:hover .icon-box {
    transform: translateY(-3px);
}

.icon-box i {
    font-size: 24px;
    color: #76c25e;
}

.quick-button span {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    display: block;
    text-align: center;
}

.welcome-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.text-content {
    flex: 1;
}

.text-content h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.text-content h2 {
    color: #333;
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 500;
}

.text-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.text-content ul {
    list-style-type: none;
    padding: 0;
}

.text-content ul li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.text-content ul li:before {
    content: "•";
    color: #76c25e;
    position: absolute;
    left: 0;
}

.welcome-image {
    width: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive styles */
@media (max-width: 992px) {
    .welcome-content {
        flex-direction: column;
    }

    .welcome-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .quick-buttons {
        flex-wrap: wrap;
        gap: 15px;
    }

    .quick-button {
        width: calc(50% - 8px);
        min-width: unset;
        flex: unset;
    }

    .icon-box {
        width: 35px;
        height: 35px;
    }

    .icon-box i {
        font-size: 16px;
    }

    .quick-button span {
        font-size: 12px;
    }

    .text-content h1 {
        font-size: 24px;
    }

    .text-content h2 {
        font-size: 20px;
    }
}

/* News Section Styles */
.news-section {
    padding: 60px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #76c25e;
    margin: 15px auto 0;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
}

.news-date {
    color: #76c25e;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-date i {
    font-size: 14px;
}

.news-title {
    color: #333;
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: #76c25e;
}

.news-footer {
    text-align: center;
    margin-top: 40px;
}

.see-all-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background-color: #76c25e;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(118, 194, 94, 0.3);
}

.see-all-button:hover {
    background-color: #5a9e47;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 194, 94, 0.4);
}

.see-all-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.see-all-button:hover i {
    transform: translateX(5px);
}

/* Responsive styles for news section */
@media (max-width: 992px) {
    .news-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .news-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 15px;
    }

    .news-title {
        font-size: 16px;
    }
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    background-image: url('assets/cta/Poster.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-date {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-date i {
    color: #76c25e;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background-color: #76c25e;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #fff;
    color: #76c25e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive styles for CTA section */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .cta-date {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 60px 0;
    background-color: #fff;
}

.gallery-carousel-container {
    position: relative;
    margin-top: 40px;
    padding: 0 40px;
}

.gallery-carousel {
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 24px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #76c25e;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-nav:hover {
    background: #5a9e47;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 0;
}

.gallery-nav.next {
    right: 0;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 1100;
    padding: 40px;
}

.lightbox.active {
    display: block;
}

.lightbox-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1110;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1110;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

/* Responsive styles for gallery */
@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .gallery-item {
        flex: 0 0 calc(100% - 20px);
    }

    .gallery-carousel-container {
        padding: 0 30px;
    }

    .gallery-nav {
        width: 30px;
        height: 30px;
    }
}

/* Footer Styles */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: #76c25e;
}

.footer-contact-item i {
    color: #76c25e;
    font-size: 16px;
    width: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links-column h3 {
    color: #76c25e;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links-column ul li a:hover {
    color: #76c25e;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #76c25e;
    transform: translateY(-3px);
}

.footer-info {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.fes-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-info {
        flex-direction: column;
    }
}
.fes_link{
    text-decoration: none;
    color: #fff;
}
.fes_link p span.fes_text:hover{
    color: #76c25e;
}
.fes_link:visited{
    text-decoration: none;
}

.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #76c25e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 999;
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top:hover {
    background-color: #62a34c;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.go-to-top i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

.quick-access-dropdown {
    position: relative;
}

.quick-access {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.quick-access i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.quick-access-dropdown:hover .quick-access i {
    transform: rotate(180deg);
}

.quick-access-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    background: #403f4c;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
    z-index: 10000;
}

.quick-access-dropdown:hover .quick-access-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quick-access-menu li {
    list-style: none;
}

.quick-access-menu li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.quick-access-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #76c25e;
}