/* ========== DROPDOWN MENU ========== */
.archive-section.my-5 {
    margin-top: 0px !important;
}
.card.text-center.h-100:hover {
    background: rgb(23 92 161);
    color: #fff;
}

.pagination-wrap {
    margin-top: 20px;
    text-align: center;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 0;
    border-radius: 0.25rem;
    list-style: none;
}

.pagination li {
    display: inline;
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    color: #007bff;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination li a:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination li.active span {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination li.arrow a {
    font-weight: bold;
}

.pagination li.disabled span {
    color: #ccc;
    cursor: not-allowed;
    border-color: #ddd;
}


.about-menu {
    background-color: #0056b3;
    padding: 10px 0;
    margin-bottom: 25px;
    position: sticky; /* change to relative if you don't want sticky */
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.about-menu ul {
   display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-family: 'Poppins' !important;
    font-size: 13px;
    gap: 8px;
}
.about-menu ul li {
    margin: 0;
    position: relative; /* required for dropdown positioning */
}
.about-menu ul li a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
}
.about-menu ul li a:hover,
.about-menu ul li a.active {
    background-color: #ffdd00;
    color: #0056b3;
}

/* Dropdown menu */
.about-menu ul li ul.dropdown-menu {
    display: none; /* hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background: #0056b3;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 160px;
    z-index: 9999;
}
.about-menu ul li ul.dropdown-menu li a {
    color: #fff;
    padding: 8px 12px;
    display: block;
    white-space: nowrap;
}
.about-menu ul li ul.dropdown-menu li a:hover {
    background: #004080;
    color: #fff;
}
.about-menu ul li:hover > ul.dropdown-menu {
    display: block; /* only open on hover */
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 30px 0;
}
.about-section.odd {
    background-color: #f9f9f9;
}
.about-section.even {
    background-color: #ffffff;
}
.about-section h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}
.about-section h4 {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 500;
}
.about-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}
.about-section ul {
    list-style: disc inside;
    margin-bottom: 15px;
}
.about-section ul li {
    margin-bottom: 8px;
}

/* ========== BREADCRUMB ========== */
.site-breadcrumb {
    padding: 40px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
}
.site-breadcrumb h2 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}
.site-breadcrumb .breadcrumb-menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}
.site-breadcrumb .breadcrumb-menu li {
    font-size: 14px;
}
.site-breadcrumb .breadcrumb-menu li a {
    color: #fff;
    text-decoration: none;
}
.site-breadcrumb .breadcrumb-menu li.active {
    font-weight: 600;
}
/* Add vertical separator between li items */
.about-menu ul li {
    position: relative;
    padding-right: 10px; /* space for separator */
}

.about-menu ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%; /* line height */
    width: 1px; /* line thickness */
    background-color: rgba(255, 255, 255, 0.5); /* subtle white line */
}

/* Dropdown menu adjustments (no separator inside dropdown) */
.about-menu ul li ul.dropdown-menu li {
    padding-right: 0;
    position: relative;
}

.about-menu ul li ul.dropdown-menu li:not(:last-child)::after {
    content: none; /* remove separator inside dropdown */
}
/* ========== MAIN MENU WITH VERTICAL SEPARATORS ========== */
.about-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

/* Main menu items with separator */
.about-menu ul > li {
    position: relative;
    padding-right: 15px; /* space for separator */
}

.about-menu ul > li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.5); /* subtle vertical line */
}

/* Menu links */
.about-menu ul li a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
}
.about-menu ul li a:hover,
.about-menu ul li a.active {
    background-color: #ffdd00;
    color: #0056b3;
}

/* ========== DROPDOWN MENU ========== */
.about-menu ul li ul.dropdown-menu {
    display: none; /* hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background: #0056b3;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 160px;
    z-index: 9999;
}

/* Dropdown links */
.about-menu ul li ul.dropdown-menu li a {
    color: #fff;
    padding: 8px 12px;
    display: block;
    white-space: nowrap;
}

/* Hover effect on dropdown links */
.about-menu ul li ul.dropdown-menu li a:hover {
    background: #004080;
    color: #fff;
}


 
/* Article Header */
.article-header { background-color: #f9fafb; border-radius: 10px; padding: 20px 25px; margin-bottom: 30px; }
.article-title { font-size: 1.5rem; font-weight: 600; line-height: 1.3; }
.article-title .btn-share { font-size: 1rem; border-radius: 50%; padding: 8px; background-color: #2563eb; color: #fff; display: flex; align-items: center; justify-content: center; transition: transform 0.2s, opacity 0.2s; }
.article-title .btn-share:hover { transform: translateY(-2px); opacity: 0.85; }
.article-meta span { font-size: 0.95rem; color: #4b5563; display: flex; align-items: center; gap: 4px; }
.article-meta i { color: #6b7280; }

/* Share Buttons - Horizontal */
.share-container { display: flex; flex-direction: row; align-items: center; justify-content: flex-end; margin-bottom: 25px; }
.share-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-share { display: flex; align-items: center; gap: 6px; border: none; border-radius: 8px; padding: 8px 12px; font-size: 14px; cursor: pointer; color: #fff; transition: transform 0.2s, opacity 0.2s; }
.btn-share i { font-size: 14px; }
.btn-share.webshare { background: #2563eb; }
.btn-share.facebook { background: #1877F2; }
.btn-share.twitter { background: #1DA1F2; }
.btn-share.linkedin { background: #0A66C2; }
.btn-share.pinterest { background-color: #E60023; }
.btn-share.whatsapp { background: #25D366; }
.btn-share.email { background: #6b7280; }
.btn-share.copy { background: #4f46e5; }
.btn-share:hover { transform: translateY(-2px); opacity: 0.9; }
.feedback { font-size: 14px; color: green; font-weight: 600; opacity: 0; transition: opacity 0.3s ease; margin-left: 10px; }

/* Article Content */
.club-details-content p { margin-bottom: 1rem; line-height: 1.6; }
.club-details-img img { max-width: 100%; height: auto; border-radius: 8px; }

/* Sidebar */
.club-sidebar .widget { padding: 15px; background: #f8f9fa; border-radius: 8px; }
.club-sidebar .widget-title { font-weight: 700; margin-bottom: 10px; }
.category-list a { display: block; margin-bottom: 5px; color: #1f2937; text-decoration: none; transition: color 0.2s; }
.category-list a:hover { color: #2563eb; }
 

/* Show dropdown on hover */
.about-menu ul li:hover > ul.dropdown-menu {
    display: block;
}

/* Remove separators inside dropdown menu */
.about-menu ul li ul.dropdown-menu li:not(:last-child)::after {
    content: none;
}
