﻿/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body::-webkit-scrollbar {
    width: 0.3em;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: #F58220;
    outline: 1px solid slategrey;
}

.fade-section {
    transition: opacity 0.5s ease-in-out;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: block;
}


body {
    background-color: #f5f5f5;
}

/* Top bar */
.top-bar {
    background-color: #282572;
    color: white;
    padding: 5px 20px;
    display: flex;
    justify-content: flex-end;
    font-size: 12px;
    gap: 40px;
}


/* Header */
.main-header {
    background-color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    /*width: 50px;
    height: 50px;*/
}

.language-selection {
    display: flex;
    gap: 10px;
}
    .language-selection a {
        text-decoration: none !important;
    }

    .language-selection img {
        width: 24px;
        height: 16px;
        cursor: pointer;
    }

/* Navigation */

#languageSelector {
    display: none;
}

.main-nav {
    background-color: #282572;
    padding: 0;
}

    .main-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
    }

    .main-nav li {
        position: relative;
    }

    .main-nav a {
        display: block;
        padding: 15px;
        color: #f5f5f5;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s, background-color 0.3s;
    }

        .main-nav a:hover {
            background-color: #e9ecef;
        }

        .main-nav a.active {
            color: #0d6efd;
            border-bottom: 2px solid #0d6efd;
        }

/* Mobile navigation styles */
.navbar-toggler {
    border: none;
    padding: 10px 0;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.active {
    color: #F58220 !important;
}

/* Hero section */
.slider-container {
    position: relative;
    max-width: 100%;
    min-height: 100%;
    max-height: 620px;
    overflow: hidden;
}

#languageSelector {
    display: none;
}

/* /////////////////////////////////////////////////////// */


.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

    .slide img {
        width: 100%;
        height: auto;
        display: block;
    }

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-title {
    font-size: 18px;
    font-weight: bold;
    max-width: 70%;
}

.read-more {
    color: #FF8C00;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

    .read-more:hover {
        text-decoration: underline;
    }

.arrow {
    margin-left: 5px;
    font-size: 20px;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    font-weight: 800;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    .nav-button:hover {
        background-color: rgba(255, 255, 255, 0.8);
    }

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Features section */
.features {
    background-color: #F58220;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    text-align: center;
}

.feature {
    color: #282572;
    font-weight: 800;
    font-size: 17pt;
    width: 25%;
}


/* About section */
.about-section {
    background-color: white;
    padding: 40px 20px;
}

    .about-section h2 {
        margin-bottom: 20px;
        font-size: 28px;
        font-weight: 500;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 20px 0;
    }

        .about-section h2::before,
        .about-section h2::after {
            content: "";
            width: 100px;
            border-bottom: 2px solid #333;
        }

        .about-section h2::before {
            margin-right: 20px;
        }

        .about-section h2::after {
            margin-left: 20px;
        }

.about-cards {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    gap: 10px;
    
}

.about-title {
    color: #F58220;
    font-weight: 700;
    font-size: 20px;
}

.person-card, .info-card {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 30%;
}

    .person-card h3, .info-card h3 {
        font-size: 32px;
        font-weight: 500;
    }

.person-img {
    width: 120px;
    height: 120px;
    border-radius: 5px;
    margin: 0 auto 15px;
    object-fit: cover;
}

.info-card img {
    width: 100px;
    height: 100px;
    margin: 10px auto;
}

.contact-details {
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
}

    .contact-details div {
        margin-bottom: 8px;
    }

/* Facebook section */
.fb-section {
    background-color: white;
    padding: 40px 20px;
}

.fb-cards {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
}

    .fb-cards .fb-docs {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 20%;
    }

.youtube-container {
    width: 50% !important;
}

.video-grid {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

/* Individual video container */
.video-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .video-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

/* Video embed responsive container */
.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

    .video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* Video details */
.video-details {
    padding: 12px;
}

.video-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.3;
}

.video-date {
    font-size: 12px;
    color: #666;
}

/* View all button */
.view-all-container {
    margin-top: 30px;
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF0000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .view-all-btn:hover {
        background-color: #CC0000;
    }



/* News section */
.news-section {
    padding: 20px;
    background-color: #f5f5f5;
}

    .news-section h2 {
        margin-bottom: 20px;
        font-size: 28px;
        font-weight: 500;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 20px 0;
    }

        .news-section h2::before,
        .news-section h2::after {
            content: "";
            width: 100px;
            border-bottom: 2px solid #333;
        }

        .news-section h2::before {
            margin-right: 20px;
        }

        .news-section h2::after {
            margin-left: 20px;
        }

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-card {
    display: flex;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-img {
    width: 250px;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 15px;
    font-size: 14px;
}

    .news-content h3 {
        margin-bottom: 10px;
        font-size: 16px;
    }

.news-btn {
    display: inline-block;
    background-color: #F58220;
    color: white;
    padding: 5px 15px;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 10px;
    font-size: 12px;
}

/* Gallery section */
.gallery-section {
    padding: 20px;
}

    .gallery-section h2 {
        margin-bottom: 20px;
        font-size: 28px;
        font-weight: 500;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 20px 0;
    }

        .gallery-section h2::before,
        .gallery-section h2::after {
            content: "";
            width: 100px;
            border-bottom: 2px solid #333;
        }

        .gallery-section h2::before {
            margin-right: 20px;
        }

        .gallery-section h2::after {
            margin-left: 20px;
        }
/* Partners section */
/* General styling */
.partners-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

    .partners-section h2 {
        margin-bottom: 20px;
        font-size: 28px;
        font-weight: 500;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 20px 0;
    }

        .partners-section h2::before,
        .partners-section h2::after {
            content: "";
            width: 100px;
            border-bottom: 2px solid #333;
        }

        .partners-section h2::before {
            margin-right: 20px;
        }

        .partners-section h2::after {
            margin-left: 20px;
        }

/* Carousel container */
.partners-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Carousel track */
.partners-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Page styling */
.partners-page {
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

/* Partner logo styling */
.partner-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

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

/* Navigation buttons */
.partners-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    padding: 0 10px;
}

.partner-nav-btn {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 18px;
    color: #333;
    transition: background 0.3s;
}

    .partner-nav-btn:hover {
        background: rgba(0, 0, 0, 0.2);
    }

/* Dots navigation */
.partners-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.partner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .partner-dot.active {
        background-color: #555;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners-page {
        gap: 15px;
    }

    .partner-logo {
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .partners-page {
        gap: 10px;
    }

    .partner-logo {
        width: 80px;
        height: 40px;
    }
}

/* Footer */
footer, .footer {
    background-color: #2a2e8c;
    color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-map {
    width: 30%;
}

.footer-info {
    width: 40%;
}

    .footer-info h3 {
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: 700;
        color: #F58220;
    }

    .footer-info h4 {
        margin-bottom: 15px;
        color: #F58220;
        font-weight: 500;
        font-size: 14px;
    }

    .footer-info p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.5;
    }

.more-info-btn {
    background-color: #F58220;
    color: #212121;
    font-size: 14px;
    font-weight: 500;
    padding: 20px;
    border-radius: 4px;
    border: none;
}

.footer-contact {
    margin-top: 20px;
}

    .footer-contact div {
        margin-bottom: 5px;
        font-size: 14px;
    }

.contact-form {
    width: 30%;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: none;
        border-radius: 3px;
    }

    .contact-form button {
        background-color: #ff7b00;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 3px;
        cursor: pointer;
    }

.copyright {
    text-align: center;
    font-size: 12px;
    padding: 10px;
    background-color: #262368;
    color: white;
}

.emergency-call {
    background-color: #ff7b00;
    color: white;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    font-weight: bold;
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-cards, .news-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .person-card, .info-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .features {
        flex-wrap: wrap;
    }

    .feature {
        width: 50%;
        margin-bottom: 20px;
    }

    footer {
        flex-direction: column;
    }

    .footer-info, .contact-form {
        width: 100%;
        margin-bottom: 30px;
    }
}


