@keyframes anim-roll-down {
    50% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    51% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

video {
    max-width: 100%;
}

.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}


.header-bg {
    background-color: #1B215A;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}
.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: -1;
    width: 100%;
    height: 200%;
}
img.custom-logo {
    max-width: 82px;
}

.main-navigation ul {
    display: flex;
    justify-content: end;
}


.main-navigation .nav-menu>li>a {
    padding: 1em;
    position: relative;
    color: #fff;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.main-navigation .nav-menu>li>a>span {
    display: block;
    pointer-events: none;

}



.main-navigation .nav-menu li>a:before {
    content: " ";
    position: absolute;
    top: 3.3em;
    right: 0.7em;
    bottom: auto;
    left: 0.7em;
    height: 1px;
    opacity: 0;
    transform: translate3d(0, -3em, 0);
    transition: transform 0s 0.3s, opacity 0.2s;
    background-color: #ffa500;
}

.main-navigation .nav-menu>li:hover>a>span {
    animation: anim-roll-down 0.3s forwards;
}

.main-navigation .nav-menu li.current-menu-parent a,
.main-navigation .nav-menu li.current-menu-item a,
.main-navigation .nav-menu li:hover a {
    color: #ffa500;
}

.main-navigation .nav-menu li.current-menu-parent>a:before,
.main-navigation .nav-menu li.current-menu-item>a:before,
.main-navigation .nav-menu li:hover>a:before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s, opacity 0.1s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}


.home-banner {
    position: fixed;
    overflow: hidden;
    z-index: -1;
    width: 100%;
    left: 0;
    top: 0;
    height: 100vh;
    background: #000;
}

section.home-banner::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 1s ease;
    opacity: 0;
}

.scrolled section.home-banner::after {
    opacity: 1;
    transition: opacity 1s ease;
}

.home-banner-slides {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Adjust height as needed */
}

.home-banner-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

.home-banner-slide-athlete {
    display: flex;
    gap: 10px;
    align-items: center;
    position: absolute;
    left: 35px;
    bottom: 19px;
    opacity: 1;
    transition: opacity 1s ease;
}

.scrolled .home-banner-slide-athlete {
    opacity: 0;
    transition: opacity 1s ease;
}

.home-banner-slide-athlete-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

.home-banner-slide-athlete-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner-slide-athlete-details {
    color: #fff;
}

.home-banner-slide-athlete-details h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
}

.home-banner-slide-athlete-details p {
    margin: 0;
    font-size: 14px;
    color: #ffa500;
}

.latest-news-items {
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    margin: 60px 40px 0 0;
}

.latest-news-items .latest-news-item {
    display: flex;
    align-items: center;
    min-height: 115px;
    width: 360px;
    padding-left: 100px;
    padding-right: 10px;
    position: relative;

}

.latest-news-items .latest-news-item h1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1.4em;
    margin: 0;

}

.latest-news-items .latest-news-item h1 a::before {
    content: attr(data-counter);
    opacity: 0.5;
    font-size: 56px;
    position: absolute;
    left: 10px;
    top: 50%;
    font-weight: 900;
    margin-top: -28px;
    line-height: 56px;
}

.latest-news-items .latest-news-item h1 a {
    font-weight: 500;
    text-decoration: none;
}

.latest-news-items .latest-news-item:nth-child(1) {
    background-color: #ffa500;
}

.latest-news-items .latest-news-item:nth-child(1) h1 a {
    color: #ffffff !important;
}

.latest-news-items .latest-news-item:nth-child(2) {
    background-color: #ffffff;
}

.latest-news-items .latest-news-item:nth-child(2) h1 a {
    color: #333333 !important;
}

.latest-news-items .latest-news-item:nth-child(3) {
    background-color: #008000;
}

.latest-news-items .latest-news-item:nth-child(3) h1 a {
    color: #ffffff !important;
}

section.home-announcement-section {
    padding-top: 130px;
    min-height: 100vh;
}

.latest-news-all-btn {
    margin-top: 20px;
    display: block;
    text-align: center;
    width: 360px;
}

.arrow-btn {
    text-decoration: none;
    color: #fff !important;
    display: inline-block;
    border-bottom: 1px solid;
    transition: all 0.3s ease-in-out;
	    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.arrow-btn span {
    display: inline-block;
    width: 25px;
}

.arrow-btn:hover {
    color: #ffa500 !important;
}

/* Home Athletes */
.home-athletes-section {
    margin-top: 110px;
}

.home-athletes-section-content-top h6 {
    margin-bottom: 1.1em;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    margin-left: 2px;
    letter-spacing: 3px;
}

.home-athletes-section-content h1 {
    color: #fff;
    margin-top: 0;
    font-size: 56px;
    letter-spacing: 3px;
    line-height: 1;
}

.home-athletes-section-content p {
    color: #fff;
}

.home-athletes-section-content a {
    float: right;
}

.row.home-athletes-boxes {
    margin-top: 50px;
    margin-bottom: 50px;
}

.home-athletes-box-wrapper {
    position: relative;
}

.home-athletes-box {
    position: relative;
    margin-bottom: 30px;
	background-color: #050050;
}

.home-athletes-box::before {
    background: linear-gradient(180deg, rgba(0, 42, 66, 0), rgba(0, 42, 66, .9), #050050);
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    content: "";
    position: absolute;
}

.athletes-box-details h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffa500;
}

.athletes-box-image {}

.athletes-box-image img {
    width: 100%;
    height: auto;
}

.athletes-box-details {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.athletes-box-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    align-items: center;
}

.athletes-box-meta-sport {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.athletes-box-meta-games {
    font-size: 12px;
    color: #8e8b8b;
    display: flex;
    gap: 10px;
}

.medal-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    position: relative;
    border: 2px solid;
    cursor: pointer;
}

.medal-icon:before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    font-weight: 700;
    line-height: 27px;
}

.medal-icon.medal-type-gold {
    background-color: rgb(239 200 27);
    color: rgb(196 150 13);
}

.medal-icon.medal-type-silver {
    background-color: rgb(175, 180, 181);
    color: rgb(71, 73, 73);
}

.medal-icon.medal-type-bronze {
    background-color: rgb(198, 94, 20);
    color: rgb(106, 49, 9);
}

.medal-icon.medal-type-gold:before {
    content: "G";
}

.medal-icon.medal-type-silver:before {
    content: "S";
}

.medal-icon.medal-type-bronze:before {
    content: "B";
}

/* Count Down */
section.count-down-section {
    background-size: cover;
    background-position: center;
    padding-top: 10px;
    padding-bottom: 10px;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.blockWrap {
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    margin: 60px 40px 0 0;
}

.blockWrap .blocks {
    width: 350px;
    min-height: 320px;
    color: #fff;
    position: sticky;
    top: 0;
}

.blockWrap .blocks.block01,
.blockWrap .blocks.block02 {
    background-color: #eb0032 !important;
    margin-bottom: 40px;
    padding: 40px;
}

.blockWrap .blocks.block01 .countdown-card__title,
.blockWrap .blocks.block02 .countdown-card__title {
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: #333;
    text-transform: uppercase;
}

.blockWrap .blocks.block01 .countdown-card__title span,
.blockWrap .blocks.block02 .countdown-card__title span {
    font-size: 0.8rem;
    line-height: 1.42857;
    color: #333;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1px;
    opacity: 0.6;
}

.blockWrap .blocks.block01 .countdown-card__countdown,
.blockWrap .blocks.block02 .countdown-card__countdown {
    font-size: 6rem;
    line-height: 1.05769;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-top: 40px;
    color: #333;
}

.blockWrap .blocks.block01 .countdown-card__countdown span,
.blockWrap .blocks.block02 .countdown-card__countdown span {
    font-size: 1.5rem;
    line-height: 1;
    display: block;
    color: #333;
    text-transform: uppercase;
    opacity: 0.6;
}

.blockWrap .blocks.block02 {
    background-color: #002deb !important;
}

/* Inner Page Banner */
section.inner-page-banner {
    padding-top: 120px;
    text-align: center;
    padding-bottom: 70px;
}

section.inner-page-banner h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Archive Announcement */
section.inner-page-section {
    padding-bottom: 70px;
    background: #fff;
    padding-top: 70px;
}

.inner-page-content {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.announcement-tab-wrapper .nav-pills {
    margin: 0;
    padding: 0;
}

.announcement-tab-wrapper .nav-link {
    font-size: 14px;
    border-radius: 0;
    padding: 11px 16px;
}

.announcement-tab-wrapper .nav-pills .nav-link.active,
.announcement-tab-wrapper .nav-pills .show>.nav-link {
    background-color: #ffa500;
}

.announcement-tab-wrapper .tab-pane {
    margin-top: 30px;
}

.document-items a,
.announcement-tab-wrapper .tab-pane a {
    display: block;
    text-decoration: none;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding-left: 50px;
    color: #333;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.document-items a::before,
.announcement-tab-wrapper .tab-pane a::before {
    position: absolute;
    left: 10px;
    top: 10px;
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../images/pdf-svgrepo-com.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.document-items a:hover::before,
.announcement-tab-wrapper .tab-pane a:hover::before {
    transform: rotate(-25deg);
}

.document-items a:hover,
.announcement-tab-wrapper .tab-pane a:hover {
    color: #ffa500;
}

/* Social Section */
section.home-social-section {
    background: #fff;
    padding: 100px 0px;
}


/* Footer */
section.logo-gallery-section {
    background: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.logo-gallery {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px -5px;
}

.logo-gallery {
    margin: 0 auto !important;
}

.gallery-item {
    display: inline-block;
    margin: 0;
    max-width: 16%;
    text-align: center;
    vertical-align: top;
    width: 100%;
    padding: 0 0px 0px 0;
}

.gallery-icon {
    padding: 0;
}

figure img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.international-partners-section {
    background: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid #eeeeee;
    display: block;
}

.international-partners-section .logo-gallery {
    margin: 0 -30px -30px 0;
}


.international-partners-section .gallery-item {
    max-width: 14.28%;
    padding: 0 30px 30px 0;
}

.bg-title-wrapper {
    position: relative;
    text-align: center;
    padding-top: 35px;
    padding-bottom: 100px;
}

.bg-title {
    font-size: 8rem;
    line-height: 1.2em;
    font-weight: 900;
    font-style: normal;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #c1c1c1;
    opacity: 0.1;
}

.indian-partners-section {
    background: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    display: block;
}

.indian-partners-section .gallery-item {
    max-width: 25%;
    padding: 0 30px 30px 0;
}

.site-footer {
    background-color: #1B215A;
    padding-top: 110px;
    color: #fff;
    padding-bottom: 10px;
}

.footer-logo-widget {
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img.custom-logo {
    max-width: 150px;
}

.footer-logo-widget h3 {
    font-size: 24px;
    font-weight: 400;
    padding: 0 30px;
}

.footer-widget {
    font-weight: 200;
}


h4.footer-widget-title {
    font-weight: 300 !important;
    font-size: 16px;
    margin-bottom: 40px;
}

.footer-widget-address {
    font-size: 16px;
    margin-bottom: 25px;
}

.footer-widget-email {
    margin-bottom: 40px;
    color: #fff;
}

.footer-widget-email a {
    color: #fff;
    font-size: 16px;
}

.footer-widget-mobile-number a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.footer-widget-mobile-number {
    margin-bottom: 5px;
}

a.social_item {
    color: #fff;
    display: flex;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 20px;
}


.footer-copyrigth {
    padding-top: 30px;
    margin-top: 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyrigth p {
    color: #d6dde4;
    font-weight: 200;
}


.theme-tab-wrapper .nav-pills {
    display: flex;
    justify-content: center;
    margin-left: 0;
}

.theme-tab-wrapper .nav-pills .nav-link {
    padding: 15px 20px;
}

.international-game-box-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 70px;
}

.member-list-item,
.international-game-box {
    width: 100%;
    text-align: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 10px;
}

.member-list-item:hover,
.international-game-box:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #ccc;
}

.member-list-item a,
.international-game-box a {
    text-decoration: none;
}

.member-list-item {
    padding: 0;
    text-align: left;
    margin-bottom: 10px;
}

.member-list-item a {
    text-align: left;
    color: #333333;
    padding: 10px 20px;
    display: block;
    font-weight: 500;
}

.international-game-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

.document-section-title {
    margin-bottom: 20px;
}

.document-items {
    margin-bottom: 70px;
}

.member-list-table h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
}

.member-list h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

.member-box {
    width: 100%;
    text-align: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.member-box-name h3 {
    background-color: #050050;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    padding: 10px;
}

.member-box-content {
    display: flex;
    padding: 15px;
    gap: 15px;
    align-items: center;
    align-content: start;
}


.member-box-content-image {
    width: 20%;
}

.member-box-content-details {
    width: 40%;
    text-align: left;
}

.member-box-content-address p:last-child,
.member-box-content-details p:last-child {
    margin-bottom: 0;
}

.member-box-content-address {
    width: 40%;
    text-align: left;
}

.member-box-content-image img {
    max-width: 100%;
}


.timeline-wrapper {
    margin-bottom: 80px;
}

.timeline-section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.timeline-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    border-radius: 2px;
}

.timeline {
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.timeline li {
    position: relative;
    margin: 40px 0;
    width: 50%;
}

.timeline li:nth-child(odd) {
    left: 0;
    padding-right: 60px;
}

.timeline li:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.timeline-badge {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    transform: translateY(-50%);
    border: 5px solid white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.timeline li:nth-child(odd) .timeline-badge {
    right: -35px;
}

.timeline li:nth-child(even) .timeline-badge {
    left: -35px;
}

.timeline-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.timeline-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb);
    border-radius: 20px 20px 0 0;
}

.timeline li:nth-child(odd) .timeline-panel::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid rgba(255, 255, 255, 0.95);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.timeline li:nth-child(even) .timeline-panel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 20px solid rgba(255, 255, 255, 0.95);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.timeline-title {
    color: #2d3436;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

/* Enhanced visual elements */
.timeline-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

/* Subtle depth and shadows */
.timeline li:nth-child(odd) .timeline-panel {
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.timeline li:nth-child(even) .timeline-panel {
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Premium badge styling */
.timeline-badge {
    background: linear-gradient(145deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #feca57 100%);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Enhanced typography */
.timeline-title {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }

    .timeline-section-title {
        font-size: 1.8rem;
    }

    .timeline::before {
        left: 35px;
    }

    .timeline li {
        width: 100%;
        left: 0 !important;
        padding-left: 90px !important;
        padding-right: 20px !important;
    }

    .timeline-badge {
        left: 0px !important;
        right: auto !important;
        width: 60px;
        height: 60px;
        font-size: 14px;
    }

    .timeline-panel::after {
        display: none;
    }

    .timeline-panel {
        padding: 25px;
    }

    .timeline-title {
        font-size: 1.3rem;
    }
}

/* Clean hover effects without animation */
.timeline-panel:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.timeline-badge:hover {
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

/* Additional visual enhancements */
.timeline-section-title {
    color: #000;
}

/* Subtle pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Enhanced spacing and layout */
.timeline li {
    margin: 50px 0;
}

.timeline-wrapper:last-child {
    margin-bottom: 40px;
}

/* Premium color scheme variations */
.timeline li:nth-child(1) .timeline-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.timeline li:nth-child(2) .timeline-badge {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.timeline li:nth-child(3) .timeline-badge {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.timeline li:nth-child(4) .timeline-badge {
    background: linear-gradient(135deg, #ff9ff3, #54a0ff);
}

.timeline li:nth-child(5) .timeline-badge {
    background: linear-gradient(135deg, #5f27cd, #341f97);
}

.form-control-wrapper p {
    margin: 0;
}

.form-control-wrapper {
    margin-bottom: 15px;
}

.form-control-wrapper p {
    margin: 0;
}

.form-control-wrapper {
    margin-bottom: 15px;
}

.form-container label.form-label {
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.form-container .form-control {
    height: 40px;
    border: 1px solid #333 !important;
}

.form-container textarea.form-control {
    height: 75px;
}

.form-container .wpcf7-submit {
    width: 100%;
    background-color: #050050;
    color: #fff;
    padding: 17px;
    font-weight: 700;
    border: 0 none;
    border-radius: 4px;
}

.gallery-box-image {
    overflow: hidden;
    position: relative;
}

.gallery-box-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-box-image a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* or smaller, e.g. 50% if you only want it at the bottom */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
    /* ensures it doesn't block clicks */
}

.gallery-box-image h3 {
    position: absolute;
    bottom: 0;
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
}

.gallery-box-image a img {
    width: 100%;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 9999;
    margin-left: auto;
}

.primary-menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation */
.menu-toggle[aria-expanded="true"] .icon-one {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] .icon-two {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle[aria-expanded="true"] .icon-three {
    transform: rotate(-45deg) translate(7px, -7px);
}
.theme-tab-wrapper li.nav-item {
    margin-bottom: 10px;
}
.theme-tab-wrapper .nav-pills .nav-link {
    background: #f8f9fa;
    color: #666;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
    border-radius: 6px;
}
.theme-tab-wrapper .nav-pills .nav-link.active {
    background: #007bff;
    color: white;
}

section.register-section {
    background: #cca917;
    padding: 50px 0px;
}
.register-text-widget {
    display: block;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.register-text-widget h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 700;
}

.register-text-widget a {
    color: #fff;
    border: 0;
    background: #1B215A;
    padding: 14px 20px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: 500;
    text-decoration: none;
}
.register-text-widget a:hover {
    color: #fff;
    background: #1B215A;
}
section.news-page-section {
    padding-top: 50px;
    background: #fff;
    padding-bottom: 50px;
}
.news-page-content-wrapper {
    max-width: 700px;
    margin: 0 auto;
}
.news-page-thumbnail img {
    width: 100%;
    height: auto;
}

.news-page-thumbnail {
    margin-bottom: 25px;
    border: 1px solid #f7f7f7;
    border-radius: 5px;
    overflow: hidden;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    color: #ffa500;
}

.news-page-meta {
    margin-bottom: 30px;
}

.news-date svg {
    width: 20px;
}
section.home-news-section {
    background: #f6f7f8;
    padding-top: 70px;
    padding-bottom: 70px;
}

.home-news-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-news-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.home-news-section-header a.arrow-btn {
    color: #000 !important;
}

.news-thumbnail {
    width: 100%;
    max-width: 75%;
    overflow: hidden;
}

.news-thumbnail img {
    width: 100%;
}

.news-box-content {
    width: 100%;
    max-width: 60%;
    float: right;
    padding: 30px;
    background: #fff;
    margin-top: -90px;
    position: relative;
}

.news-box {
    margin-bottom: 50px;
    float: left;
    width: 100%;
}

.news-box-content h3 {
    font-weight: 700;
    text-decoration: none;
    line-height: 1.1;
    margin-bottom: 25px;
}

.news-box-content h3 a {
    text-decoration: none;
    font-size: 20px;
    line-height: 1.1;
    color: #404040;
}
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.nav-links {
    gap: 15px;
    display: flex;
}
.post-type-archive-news section.inner-page-section {
    background: #f6f7f8;
}
.olympian-form-wrapper .form-control {
    height: 40px;
    border: 1px solid #333 !important;
    padding: 5px 10px !important;
    border-radius: 4px !important;
}
.olympian-form-wrapper p {
    margin: 0;
}
.olympian-form-wrapper span.wpcf7-list-item.first {
    margin-left: 0;
}
.olympian-form-wrapper .form-check {
    margin-left: 0;
    padding-left: 0 !important;
}
.olympian-form-wrapper .wpcf7-submit {
    background-color: #050050;
    color: #fff;
    padding: 16px;
    font-weight: 700;
    border: 0 none;
    border-radius: 4px;
    float: right;
    min-width: 200px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.ioa-image-card-box {
    display: flex;
    gap: 30px;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
    max-width: 1080px;
    margin: 0 auto;
}

.ioa-image-card-box-image {
    min-width: 360px;
}

section.ioa-image-card-box-section {
    background: #fff;
    padding-top: 90px;
}
@media (max-width: 768px) {

    .main-navigation ul {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(5px);
    }

    .main-navigation ul.menu-active {
        display: block;
    }

    .menu-primary-menu-container {
        position: absolute;
        width: 100%;
        left: 0;
        background: transparent;
        padding-left: 20px;
        padding-right: 20px;
        top: 100%;
    }

    .main-navigation ul ul.sub-menu {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        display: none !important;
        padding-left: 20px !important;
        float: none !important;
        box-shadow: none !important;
    }

    .main-navigation ul ul.sub-menu li a {
        color: #fff !important;
    }

    .main-navigation ul ul.sub-menu.submenu-visible {
        display: block !important;
    }

    .main-navigation .nav-menu>li>a>span {
        display: inline-block;
    }

    .menu-item-has-children>a:after {
        right: 12px !important;
    }

    .menu-item-has-children.submenu-open>a:after {
        transform: rotate(180deg)
    }

    .bg-title {
        font-size: 3rem;
    }

    .blockWrap {
        align-items: center;
        margin: 60px 30px 0 30px;
    }

    .gallery-item {
        max-width: 20%;
    }

    .international-partners-section .gallery-item {
        max-width: 40%;
    }

    .indian-partners-section .gallery-item {
        max-width: 40%;
    }

    .latest-news-items .latest-news-item {
        display: flex;
        align-items: center;
        min-height: 100px;
        width: 300px;
        padding-left: 80px;
        padding-right: 10px;
        position: relative;
    }

    .latest-news-items .latest-news-item h1 {
        font-size: 14px;
    }

    .latest-news-items .latest-news-item h1 a::before {
        font-size: 32px;
    }

    .latest-news-all-btn {
        width: 300px;
    }

    section.home-announcement-section {
        min-height: 100vh;
    }

    .footer-widget {
        margin-top: 50px;
    }

    h4.footer-widget-title {
        font-weight: 700 !important;
        font-size: 16px;
        margin-bottom: 18px;
    }

    .member-list h3 {
        margin-bottom: 20px;
        margin-top: 50px;
    }

    section.inner-page-banner h1 {
        font-size: 20px;
    }

    section.inner-page-banner {
        padding-top: 140px;
        padding-bottom: 70px;
    }

    .member-box-content {
        display: block;
    }

    .member-box-content-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .member-box-content-details {
        width: 100%;
        margin-bottom: 20px;
    }

    .member-box-content-address {
        width: 100%;
    }

    .member-box-name h3 {
        font-size: 16px;
    }

    .sports-letter-group-wrapper {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .international-game-box-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        margin-top: 70px;
    }

    .gallery-box-wrapper {
        margin-bottom: 30px;
    }

    .gallery--item {
        margin-bottom: 30px;
    }
	.register-text-widget {
    	display: grid;
	}
	.instagram-media.medeus_resize.instagram-media-rendered {
		margin-top: 50px !important;
	}
	.ioa-image-card-box {
		display: block;
	}
	.ioa-image-card-box-image {
		max-width: 100%;
		min-width: 100%;
		margin-bottom: 30px;
	}
}