/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 5px;
}

nav {
    display: flex;
    justify-content: center; /* Center the navbar on large screens */
    align-items: center;
    position: relative;
}

#menu {
    display: flex;
    list-style: none;
}

#menu li {
    margin: 0 15px;
}

#menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

#menu li a:hover {
    color: #ff5b5b;
}

.join-btn {
    background: #ff5b5b;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.join-btn:hover {
    background: #ff8b8b;
}







/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: -1;
}

.content {
    color: white;
}

.content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.content p {
    font-size: 1.2rem;
    margin: 20px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.explore-btn {
    background: #ff5b5b;
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.3rem;
}

.explore-btn:hover {
    background: #ff8b8b;
    transform: scale(1.05);
}

/* Sidebar Menu */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    padding: 10px 30px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    background-color: #ff5b5b;
}

.closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}

/* Menu Toggle */
.menu-toggle {
    display: none; /* Hidden in larger screens */
    cursor: pointer;
}

.menu-toggle i {
    font-size: 24px;
    color: white;
}

/* Responsive Design */
@media (max-width: 752px) {
    .join-btn {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    #menu {
        display: none;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
    }

    #menu.open {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: calc(100vh - 60px);
    }    
}

/* Large screens */
@media (min-width: 752px) {
    header {
        justify-content: space-between;
    }

    nav {
        flex: 1;
        display: flex;
        justify-content: center; /* Center the navbar menu */
        align-items: center;
        position: relative;
    }

    #menu {
        display: flex;
        flex-direction: row; /* Horizontal alignment */
        justify-content: center; /* Ensure the menu is centered */
    }

    .join-btn {
        position: absolute;
        right: 20px; /* Keep join button on the far right */
    }
}











/* Features Section */
#features_section-unique {
    padding: 50px 20px;
    background-color: #f3f4f6;
    text-align: center;
}

.features_title-unique {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.features_cards-wrapper-unique {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature_card-unique {
    background-color: white;
    padding: 20px;
    width: 250px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature_card-unique:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature_icon-unique {
    font-size: 2.5rem;
    color: #ff5b5b;
    margin-bottom: 15px;
}

.feature_title-unique {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.feature_desc-unique {
    font-size: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features_cards-wrapper-unique {
        flex-direction: column;
        align-items: center;
    }

    .feature_card-unique {
        width: 90%;
    }
}









/* Main Alliances Section */
#alliances_section-unique {
    padding: 50px 20px;
    background-color: #e5e7eb;
    text-align: center;
}

.alliances_title-unique {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.alliances_cards-wrapper-unique {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: start;
}

.alliance_card-unique {
    background-color: white;
    padding: 20px;
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alliance_card-unique:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.alliance_logo-unique {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.alliance_name-unique {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.alliance_desc-unique {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.alliance_btn-unique {
    background: #ff5b5b;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.alliance_btn-unique:hover {
    background: #ff8b8b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .alliances_cards-wrapper-unique {
        grid-template-columns: 1fr;
    }

    .alliance_card-unique {
        max-width: 90%;
    }
}









/* General Section Styling */
#xyz-leadership-section {
    background-color: #f4f4f9;
    padding: 50px 20px;
    text-align: center;
}

.xyz-section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

/* Card Container */
.xyz-card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Leader Card Styling */
.xyz-leader-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin: 20px;
    padding: 30px 20px;
    transition: transform 0.3s ease-in-out;
}

.xyz-leader-card:hover {
    transform: translateY(-10px);
}

.xyz-leader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.xyz-leader-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.xyz-leader-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.xyz-contact-btn {
    background-color: #ff5b5b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.xyz-contact-btn:hover {
    background-color: #ff8b8b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .xyz-card-container {
        align-items: center;
    }
}







/* FAQ Section Styling */
#faq-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background-color: #ff5b5b;
    color: white;
    padding: 15px;
    border: none;
    font-size: 1.2rem;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #ff8b8b;
}

.faq-answer {
    display: none;
    padding: 15px;
    font-size: 1rem;
    background-color: #fff;
    color: #333;
}

/* Show answer when active */
.faq-item.active .faq-answer {
    display: block;
}








/* Footer Section Styling */
#main-footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links li a:hover {
    color: #ff5b5b;
}

.social-media-icons a {
    margin: 0 10px;
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-media-icons a:hover {
    color: #ff5b5b;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
}








/* Modal Container */
.modal_custom {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    overflow: auto;
}

/* Modal Content */
.modal-content_custom {
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

/* Modal Header (Fixed) */
.modal-header_custom {
    background-color: #fff;
    position: sticky;
    top: 0;
    padding: 20px;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.modal-header_custom h2 {
    font-size: 28px;
    margin-bottom: 5px;
    color: #333;
}

.modal-header_custom p {
    font-size: 14px;
    color: #777;
}

/* Modal Body with Scroll */
.modal-body_custom {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
    margin-top: 10px;
    text-align: left;
}

.modal-body_custom p, .modal-body_custom ul {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.modal-body_custom ul {
    padding-left: 20px;
}

/* Modal Buttons */
.modal-buttons_custom {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.btn_custom {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.accept-btn_custom {
    background-color: #4CAF50;
    color: white;
}

.decline-btn_custom {
    background-color: #F44336;
    color: white;
}

.btn_custom:hover {
    opacity: 0.9;
}

.modal-body-p-final {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 600px) {
    .modal-content_custom {
        padding: 10px;
    }

    .btn_custom {
        width: 45%;
    }
}

