    .background-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;

    }

    .faq-toggle {
        display: block;
        background-color: #273d4e;
        color: #fff;
        padding: 15px 20px;
        text-decoration: none;
        font-weight: bold;
        border: none;
        width: 100%;
        text-align: left;
        transition: background-color 0.3s ease;
        font-size: 16px;
    }

    .faq-toggle:hover,
    .faq-toggle:focus {
        background-color: #273d4e;
        color: #fff;
    }

    .panel-body {
        background-color: #f9f9f9;
        padding: 15px 20px;
        border: 1px solid #ccc;
        border-top: none;
    }

    .panel {
        margin-bottom: 10px;
        border: none;
        box-shadow: none;
    }

    .panel-title {
        margin: 0;
    }

    .panel-heading {
        padding: 0;
    }

    .section-title {
        font-weight: bold;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .faq-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #273d4e;
        color: #fff;
        padding: 15px 20px;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
        width: 100%;
    }

    .toggle-icon {
        font-size: 18px;
        margin-left: auto;
        transition: transform 0.3s ease;
    }


    .partners-section {
        background-color: #fff;
    }

    .partners-section img.grayscale {
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .partners-section img.grayscale:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

    .partners-section .btn {
        border-radius: 5px;
        font-size: 0.875rem;
    }

    .sdg-table-wrapper {
        overflow-x: auto;
        margin: 2rem 0;
        background-color: #fff;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    }

    .sdg-table {
        width: 100%;
        border-collapse: collapse;
        font-family: 'Segoe UI', sans-serif;
        font-size: 16px;
    }

    .sdg-table thead {
        background-color: #f2f4f7;
    }

    .sdg-table thead th {
        text-align: left;
        padding: 12px;
        font-weight: 600;
        color: #333;
        border-bottom: 2px solid #e2e6ea;
    }

    .sdg-table tbody td {
        padding: 14px;
        vertical-align: top;
        border-bottom: 1px solid #f0f0f0;
    }

    .sdg-table tbody tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .sdg-icon {
        width: 50px;
        height: auto;
    }

    .schedule-box {
        background: #273d4e;
        border-radius: 12px;
        color: white;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 220px;
        transition: transform 0.3s ease;
    }

    .schedule-box:hover {
        transform: translateY(-5px);
    }

    .schedule-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #ffffff;
    }

    .schedule-box i {
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .schedule-box p {
        font-size: 14px;
        color: #e0e0e0;
        margin-top: auto;
        overflow-y: auto;
        max-height: calc(100% - 20px);
    }


    #partners .container .row img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    #partners .container .row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    #partners .container .col-6 {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    #hero {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100vh;
    }

    .background-video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
        filter: brightness(1.2);
    }

    @media (max-width: 768px) {
        #hero {
            height: auto;
            padding-top: 20px;
            padding-bottom: 20px;
        }
    }



    /* Safe Sport Initiative */
    @keyframes spinEarth {
        0% {
            transform: rotateY(0deg);
        }

        100% {
            transform: rotateY(360deg);
        }
    }

    /* Rotate Clock-Wise */
    /* @keyframes spinEarth {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg); 
        }
      } */


    .football-icon-wrapper {
        animation: spinEarth 5s linear infinite;
        display: inline-block;
        transform-style: preserve-3d;
    }

    /* Popup overlay */
    .popup-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }

    /* Popup content */
    .popup-content {
        background: #fff;
        padding: 2rem;
        border-radius: 12px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        animation: fadeIn 0.3s ease;
    }

    /* Close button */
    .close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Animation */
    @keyframes fadeIn {
        from {
            transform: scale(0.8);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* Just a little flair for the link */
    .learn-more-link {
        display: inline-block;
        margin-top: 20px;
        color: #007bff;
        text-decoration: underline;
        cursor: pointer;
    }



    /* Footer */
    .simple-footer {
        background-color: #111;
    }

    .social-icons a {
        font-size: 1.6rem;
        color: #fff;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .social-icons a:hover {
        transform: scale(1.3);
    }

    .social-icons a.twitter:hover {
        color: #1da1f2;
    }

    .social-icons a.facebook:hover {
        color: #1877f2;
    }

    .social-icons a.instagram:hover {
        color: #e1306c;
    }

    .social-icons a.linkedin:hover {
        color: #0077b5;
    }

    .social-icons a.youtube:hover {
        color: #ff0000;
    }

    /* Footer Navigation Link Styles */
    .footer-logo-img {
        max-height: 170px;
        transition: transform 0.3s ease;
    }

    .footer-logo-img:hover {
        transform: scale(1.2);
        cursor: pointer;
    }

    .footer-links a {
        font-weight: 500;
        position: relative;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0%;
        height: 2px;
        background-color: #fff;
        transition: width 0.3s ease;
    }

    .footer-links a:hover {
        color: #ffffffcc;
    }

    .footer-links a:hover::after {
        width: 80%;
    }

    .simple-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-dropdown {
        position: relative;
        display: inline-block;
    }

    .footer-dropdown-menu {
        position: absolute;
        top: 100%;
        /* shows below the link */
        left: 0;
        background-color: #343a40;
        padding: 10px 0;
        border-radius: 5px;
        display: none;
        z-index: 1000;
        min-width: 200px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .footer-dropdown:hover .footer-dropdown-menu,
    .footer-dropdown-menu:hover {
        display: block;
    }

    .footer-dropdown-menu li {
        list-style: none;
        padding: 5px 20px;
    }

    .footer-dropdown-menu a {
        color: white;
        text-decoration: none;
        display: block;
    }

    .footer-dropdown-menu a:hover {
        color: #ffc107;
        text-decoration: underline;
    }

    .footer-dropdown .dropdown-toggle {
        color: white;
        cursor: pointer;
        display: inline-block;
        padding: 5px 10px;
    }