@charset "UTF-8";
/* styles.css */

:root {
    --primary-color: #e53935;
    --secondary-color: #1653c5;
}

* {
    padding: 2px;
    margin: auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* Spacing that's grand, for our brand */
.logo {
    margin-top: 0px;
    margin-bottom: 1px;
    margin-right: 3px;
    margin-left: -10px;
    width: 100px;
    height: 0.5em;
    padding: 50px 10px;
    /* Center the image vertically */
    display: flex;
    align-items: center;
    justify-content: center;

}

/* Image in sight, just right */
.logo-image {
    width: auto;
    height: auto;
    /* Equal width and height for a perfect circle */
    margin-top: 0px;
    margin-bottom: 1px;
    margin-right: 3px;
    margin-left: -10px;
    padding: 0px;
    display: flex;

}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
        /* Reduce the logo height on smaller screens */
        margin-right: 5px;
        /* Reduce the spacing between the logo and text */
    }

    .logo-text {
        font-size: 16px;
        /* Reduce the font size on smaller screens */
    }
}

/* FOR TESTING */
@media (max-width: 1023px) {
    .container {
        display: flex;
        align-items: center;
    }

    .logo {
        max-width: calc(100% - 120px);
        z-index: 1;
        position: relative;
    }

    .content {
        flex-grow: 1;
    }
}

/* Responsive design */
@media (max-width: 600px) {
    .search-container {
        flex-direction: column;
        align-items: right;
    }

    #searchInput,
    .button7 {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .button7 {
        border-radius: 4px;
        border-left: 1px solid #ccc;
    }
}

.btn:hover {
    background: #4169e1;
}

.header-text {
    margin-top: 10px;
    font-size: 30px;
}

.header-text h1 {
    font-size: 60px;
    margin-top: 20px;
}

.header-text h1 span {
    color: #4169e1;
}

/* About */
/* General Styles */
/* General Styles */
body {
    font-family: Arial, sans-serif;
}

/* Container */
.container1 {
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
    padding: 0 15px; /* Add some padding on the sides */
    margin-bottom: 50px;
}

/* About Section */
#about {
    padding: 60px 20px;
    color: #333;
}

.about-us {
    padding: 0 15px;
}

.sub-title {
    font-size: 32px;
    font-weight: 600;
    color: orangered;
    margin-bottom: 20px;
}

/* Testimonials Section */
#testimonials {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
    margin: 20px 0;
}

#testimonials > div {
    padding: 20px;
    background: #F0F0F0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#testimonials div i {
    font-size: 48px;
    color: orangered;
}

#testimonials div h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

#testimonials div a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
    padding: 10px 15px;
    background-color: orangered;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#testimonials div a:hover {
    background-color: rgb(82, 189, 252);
}

/* Pillars Section */
.pillars-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pillar {
    width: calc(50% - 10px);
    margin: 10px 0;
    background-color: #f0f0f0;
    padding: 25PX;
    border-radius: 30px 50px;
    box-sizing: border-box;
}

.pillar h2 {
    color: #333;
}

.pillar p {
    color: #555;
}

.pillar a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: orangered;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pillar a:hover {
    background-color: rgb(82, 189, 252);
}

/* Media Queries for Responsiveness */

/* Medium screens (tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #testimonials {
        grid-template-columns: repeat(2, 1fr); /* Two columns */
    }

    .pillar {
        width: calc(50% - 10px);
    }
}

/* Large screens (desktops, 1024px and up) */
@media only screen and (min-width: 1024px) {
    #testimonials {
        grid-template-columns: repeat(3, 1fr); /* Three columns */
    }

    .pillar {
        width: calc(33.33% - 10px);
    }
}

/* Small screens (mobile devices, less than 768px) */
@media only screen and (max-width: 767px) {
    #testimonials div {
        padding: 20px;
    }

    #testimonials div i {
        font-size: 40px;
    }

    #testimonials div h2 {
        font-size: 20px;
    }

    #testimonials div a {
        font-size: 12px;
        margin-top: 15px;
    }

    .pillar {
        width: 100%;
        margin: 10px 0;
        padding: 15px;
    }

    .pillar a {
        padding: 8px 12px;
    }
}


/* Contact */

#contact {
    padding-top: 0;
    margin-left: 5px;
    margin-right: 5px;
    border-top: 0.5px solid transparent; /* Example of creating a transparent line */
    /*padding-top: 10px; * Adjust padding as needed */
}


/*Counties*/

.counties {
    max-width: auto;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(249, 8, 8, 0.1);
    background: #D3D3D3;
    background-size: cover;
    background-repeat: no-repeat;
}

h1 {
    text-align: center;
    color: #333;
}

.sub-menu {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 2fr));
    grid-gap: 15px;
}

.sub-menu li {
    border-radius: 10px;
}

.sub-menu li a {
    text-decoration: none;
    color: black;
    display: block;
    padding: 10px;
}

.sub-menu li a:hover {
    background-color: rgba(255, 68, 0, 0.151);
    max-width: fit-content;
}

.sub-menu li span {
    display: block;
    font-weight: bold;
}

/* Media Query for smaller screens */
@media screen and (max-width: 768px) {
    .sub-menu {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}


/* Rules/Statutes and Regulations */

/* Style for the sub-menu list */
.sub-menu-r {
    list-style-type: none;
    /* Remove default list styles */
    padding: 0;
    /* Remove default padding */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns with equal width */
    gap: 10px;
    /* To set gap between columns and rows */
}

/* Style for each list item */
.sub-menu-r li {
    background-color: #ffffff;/* Background color */
    color: orangered;/* Text color */
    padding: 10px;/* Padding around the content */
    margin-bottom: 10px;/* Bottom margin for spacing between items */
    border-radius: 5px;/* Rounded corners */
    overflow: hidden; /* Ensure no overflow happens when collapsed */
    transition: max-height 0.3s ease-out; /* Smooth transition for height changes */
     /* Dark shadow below the element */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    /* Horizontal offset, Vertical offset, Blur radius, Shadow color */
}

/* Style for the description text */
.p1.menu-description {
    font-weight: bold;
    max-height: 3.6em; /* Limit height for collapsed state */
    overflow: hidden; /* Hide overflow text in collapsed state */
    transition: max-height 0.3s ease-out; /* Smooth transition for height changes */
}

/* Expanded state for the description */
.menu-description.expanded {
    max-height: none; /* Remove the height limit when expanded */
    overflow: visible; /* Show all content when expanded */
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .sub-menu-r {
        grid-template-columns: 1fr;
        /* Change to a single column layout on smaller screens */
    }
    
    .sub-menu-r li {
        padding: 8px;
        /* Reduce padding for smaller screens */
        margin-bottom: 8px;
        /* Reduce margin for smaller screens */
    }
}

@media screen and (max-width: 576px) {
    .sub-menu-r li {
        padding: 6px;
        /* Further reduce padding for even smaller screens */
        margin-bottom: 6px;
        /* Further reduce margin for even smaller screens */
    }
}

/*Gallery Slide for events*/
.events-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.gallery-list img {
    width: calc(33.33% - 10px);
    margin-bottom: 20px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-list img {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .gallery-list img {
        width: 100%;
    }
}



/* World Cup Gallery */
.national-team {
    width: 90%;
    min-height: 100vh;
    padding: 5px;
    background-color:  rgb(251, 251, 252);
    background-position: center;
    background-size: cover;
}

.picture-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px; /* Reduce space between paragraph and picture container */
}

.picture-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 10px;
    max-width: 300px;
}

.picture-column img {
    max-width: 100%;
    height: 100%;
}

.image-caption {
    text-align: center;
    font-style: italic;
    font-weight: bolder;
    margin-top: 5px;
}

/* Style for the paragraph space */
.paragraph-space {
    display: inline-block;
    margin: 5px 0; /* Adjust margin to reduce space */
    text-align: left;
    gap: 2px;
}

.menu-descriptions {
    margin: 0;
    padding: 0;
}

.menu-descriptions h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.menu-descriptions p {
    margin-bottom: 5px;
    line-height: 1.5;
    color: black;
}

.menu-descriptions a {
    text-decoration: none;
    color: inherit;
}

/* Responsive styles */
@media screen and (min-width: 768px) {
    /* Two-column layout for larger screens */
    .picture-column {
        width: calc(50% - 50px);
        /* 50px margin on each side of the column */
        float: left;
        margin: 25px;
        /* Equal margin around each image */
    }
}

@media (max-width: 768px) {
    .picture-container {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet layout: 2 columns */
    }
}

@media (max-width: 480px) {
    .picture-container {
        grid-template-columns: 1fr;
        /* Mobile layout: 1 column */
    }
}


/* Events Gallery */

.sub-menu-g {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Three columns with equal width */
    gap: 10px;
    /* To set gap between columns and rows */
}

/* Style for each list item */
.sub-menu-g li {
    background-color: #ccc;
    color: black;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}


/* Adjust styles for the first two items to occupy one column each */
.sub-menu-g li:nth-child(1),
.sub-menu-g li:nth-child(2) {
    grid-column: span 1;
    /* Each item occupies one column */
}

/* For the third item and onwards, they will start a new row */
.sub-menu-g li:nth-child(n+4) {
    grid-column: span 1;
    /* Each item occupies one column */
}


/*Menu links */
.menu-link {
    text-decoration: none;
    color: rgba(3, 53, 82, 0.938);
    font-weight: bold;
    margin-bottom: 3px;
    text-decoration: underline;
}

.menu-description {
    margin-top: 5px;
    color: black;
}


/* CSS For General small Screens */

nav .fa-solid {
    display: none;
    /* To hide the navigation closing and opening tabs */
}

/*responsive Styles for smaller and bigger Screens */
@media only screen and (max-width: 600px) {
    nav ul .fa-solid {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }

    .sub-title {
        font-size: 30px;
    }

}


/* History */
body.history {
    background-color: #F0F0F0;
    color: black;
    font-family: Arial, sans-serif;
}

header {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

header h1 {
    margin: 0;
    color: orangered;
}

main {
    padding: 20px;
}

section {
    background-color: rgba(0, 0, 0, 0);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    color: #000000;
    font-family: Arial, sans-serif;
    line-height: 2;
}

section h2 {
    color: orangered;
}

section a {
    color: #0bb7ef;
    text-decoration: none;
    margin-right: 10px;
}

section a:hover {
    text-decoration: underline;
}

/* Media Query for Responsive Design */
@media screen and (max-width: 768px) {
    header {
        padding: 10px;
    }

    main {
        padding: 10px;
    }

    section {
        padding: 10px;
    }

    section a {
        margin-right: 5px;
    }
}

/* Partnership */
.body_ptn {
    font-family: Arial, sans-serif;
    color: black;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer-container_ptn {
    background-color: rgba(0, 0, 0, .0001);
    color: black;
    padding: 20px 0;
    margin: -130px 5px 0 5px;
    margin-bottom: 20px;
}

.footer-container_ptn h5,
.footer-container_ptn h6,
.footer-container_ptn p,
.footer-container_ptn .fa-ul_ptn,
.footer-container_ptn .fa-li_ptn,
.footer-container_ptn .table_ptn td {
    color: black;
}

.footer-container_ptn h5,
.footer-container_ptn h6 {
    margin-bottom: 1.5rem;
    color: orangered;
}

.footer-container_ptn p,
.footer-container_ptn .table_ptn td {
    margin-bottom: 1.5rem;
}

.footer-container_ptn .btn-floating_ptn {
    background-color: #0056b3;
    margin-right: 10px;
}

.footer-container_ptn .btn-floating_ptn:hover {
    background-color: #004494;
}

.footer-container_ptn .form-control_ptn {
    background-color: transparent;
    border: 1px solid rgb(18, 6, 129);
    color: rgba(0, 0, 0, 0.685);
}

.footer-container_ptn .form-control_ptn:focus {
    background-color: transparent;
    border: 1px solid #ccc;
    color: black;
}

.footer-container_ptn .form-control_ptn::placeholder {
    color: black;
}

.footer-container_ptn .fa-ul_ptn {
    margin-left: 1.65em;
    font-weight: bolder;
}

.footer-container_ptn .fa-li_ptn {
    position: relative;
    left: -1.65em;
}

.footer-container_ptn .table_ptn td {
    border-top: none;
}

.footer-container_ptn .copyright_ptn {
    background-color: rgba(11, 2, 94, 0.425);
    padding: 15px 0;
    margin-top: 20px;
}

.header_ptn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px; /* Reduced bottom margin */
    margin-top: 10px; /* Adjusted top margin */
    color: black;
}

.logo_ptn {
    margin-top: -5px;
    margin-left: 20px;
    max-width: 100px;
    max-height: 30px;
    margin-right: 10px;
}

.text_ptn {
    text-align: left;
    margin-left: 5px;
    color: black;
    margin-top: 20px;
    
}

.text_ptn h5 {
    color: orangered;
}


/* Featured Clients */
.featured-clients_ptn {
    text-align: center;
    padding: 20px;
}

.featured-clients_ptn h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: orangered;
}

.featured-clients_ptn p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Grid display for clients */
.clients-container_ptn {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default: 4 columns for large screens */
    gap: 10px; /* Space between grid items */
    justify-content: center;
}

.client_ptn {
    text-align: center;
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.client-logo {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-bottom: 5px;
}

.client-description {
    font-size: 0.9em;
    color: #555;
    margin: 1px 0;
}

.client_ptn button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 4px 6px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.85em;
    text-transform: uppercase;
    margin-top: 5px;
}

.client_ptn button:hover {
    background-color: #0056b3;
}

.separator_ptn {
    border-top: 0.5px solid #000;
    margin: 10px 0;
}

.btn_ptn {
    background-color: rgba(172, 168, 168, 0.63);
    color: orangered;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid rgb(4, 0, 255);
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.btn_ptn:hover {
    background-color: orangered;
    color: white;
}

/* Media Queries for Responsiveness */

/* Medium screens (tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .clients-container_ptn {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for medium screens */
    }
}

/* Large screens (desktops, 1024px and up) */
@media only screen and (min-width: 1024px) {
    .clients-container_ptn {
        grid-template-columns: repeat(4, 1fr); /* 4 columns for large screens */
    }
}

/* Small screens (mobile devices, less than 768px) */
@media only screen and (max-width: 767px) {
    .clients-container_ptn {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for small screens */
    }

    .client_ptn {
        width: 100%;
        padding: 5px;
    }

    .client_ptn img {
        margin-bottom: 5px;
    }

    .client_ptn p {
        font-size: 0.9em;
    }

    .client_ptn button {
        padding: 5px 8px;
    }

    .separator_ptn {
        margin: 20px 0;
    }

    .btn_ptn {
        padding: 8px 16px;
    }
}


/* Social Media Icons */
.social-icons a {
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.9s;
}

.social-icons a:hover {
    color: #4169e1;
    transform: translateY(-6px);
}

/* Styling the icons */
.icon-style {
    font-weight: 400;
    /*font-size: 15px;  Default size */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effect for the icons */
.icon-style:hover {
    color: #3308f3; /* Change the color on hover */
    transform: scale(1.2); /* Slightly enlarge the icon on hover */
}

/* Styling the button */
.btn-floating_ptn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; /* Default size */
    height: 30px; /* Default size */
    border-radius: 50%; /* Make the button circular */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effect for the button */
.btn-floating_ptn:hover {
    background-color: #e6eef7; /* Change the background color on hover */
    transform: scale(1.1); /* Slightly enlarge the button on hover */
}

/* Responsive styles */

/* Large screens (desktops, laptops) */
@media (min-width: 1200px) {
    .icon-style {
        font-size: 28px; /* Increase icon size */
    }
    .btn-floating_ptn {
        width: 60px; /* Increase button size */
        height: 60px; /* Increase button size */
    }
}

/* Medium screens (tablets) */
@media (max-width: 1199px) and (min-width: 768px) {
    .icon-style {
        font-size: 26px; /* Adjust icon size */
    }
    .btn-floating_ptn {
        width: 55px; /* Adjust button size */
        height: 55px; /* Adjust button size */
    }
}

/* Small screens (phones) */
@media (max-width: 767px) {
    .icon-style {
        font-size: 22px; /* Reduce icon size */
    }
    .btn-floating_ptn {
        width: 45px; /* Reduce button size */
        height: 45px; /* Reduce button size */
    }
}



    /*standings Container */
    .standing-container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        overflow-x: auto;
    }

