@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Blog Regular';
    src: url('./fonts/Blog-Regular.woff2') format('woff2'),
        url('./fonts/Blog-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Poppins', sans-serif !important;
    background-color: #111111;
    font-size: 1rem;
}

.font-style {
    font-family: 'Blog Regular', sans-serif !important;
}

.info {
    padding: 50px 0;
}

.bg-brand {
    background: #8c2223;
}
.bg-brand-light {
    background: #f0ede6;
}
.bg-light {
    background: #e6e6e6 !important;
}

.text-brand {
    color: #8c2223;
}
.text-brand-dark {
    color: #e63b27;
}

.text-brand-blue {
    color: #005996;
}

.text-brand-light {
    color: #888;
}

.btn-brand {
    background: #8c2223;
    border: 1px solid #8c2223;
    color: #fff;
    font-weight: 600;
    transition: 0.3s all ease-in-out;
}
.btn-brand:hover{
    background: #8c2223;
    border: 1px solid #8c2223;
    color: #fff;
}
.btn-brand-blue {
    background: #005996;
    border: 1px solid #005996;
    color: #fff;
    font-weight: 600;
    transition: 0.3s all ease-in-out;
}

.btn-brand-blue:hover {
    background: #ffffff;
    border: 1px solid #005996;
    color: #005996;
}

#header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(5px);
    transition: background-color 0.3s;
}

#header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

@media (min-width: 767px) {
    #header {
        position: fixed;
    }
}

#header.bg {
    background-color: #FEFEFE !important;
}

.info-render-video {
    min-height: 100vh;
    position: relative;
}
.info-render-video .video-wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.info-render-video .video-wrapper {
    video {
        object-fit: fill;
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 1024px){
    .info-render-video .video-wrapper {
        video {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
    }
}
@media (max-width: 600px){
    .info-render-video {
        min-height: 34vh;
    }
    .info-render-video .video-wrapper {
        height: 34vh;
    }
}
.info-logos{
    border: 1px solid #8c2223;
    border-radius: 50%;
}

.info-countdown-box {
    border: 2px solid white;
    border-radius: 15px;
    padding: 10px;
    min-width: 100px;
    text-align: center;
}

.date {
    opacity: 0.7;
    margin-bottom: 30px;
}

.info-date-bg {
    position: relative;
    background: #005996;
    width: fit-content;
}

/* .info-date-bg::before{
    position: absolute;
    content: '';
    background: #005996;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
} */
.triangle-up::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-top: 32px solid #005996;
    border-right: 18px solid transparent;
    top: 0;
    right: -18px;
}
.about-banner{
    background: url('../img/hero-banner.webp');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.about-banner-overlay::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #f0ede6, #f0ede6, #ffffff00);
    top: 0;
    left: 0;
}
.about-banner p{
    margin-bottom: 8px;
    color: #888;
}

.hero-bg {
    background: url('../img/hero-banner.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: relative;
}

.hero-overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: linear-gradient(40deg, #842421e0, #84242100, #ffffff00);
    top: 0;
    left: 0;

}

.walking-element {
    position: absolute;
    right: 15%;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40%;
}

.logo-element {
    position: fixed;
    top: 0;
    left: 0;
    width: 150px;
    z-index: 999;
    transition: width 0.3s ease;
    /* smooth animation */
}

.logo-element.scrolled {
    width: 80px;
}

.header-line,
.line-cente {
    position: relative;
}

.header-line::after {
    position: absolute;
    content: '';
    height: 3px;
    width: 150px;
    background: #e63b27;
    left: 0;
    bottom: 0;
    border-radius: 15px;
}

.line-center::after {
    position: absolute;
    content: '';
    height: 3px;
    width: 150px;
    background: #e63b27;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 15px;
}

/* .walking-img{
    opacity: 0.5;
} */

.team-banner {
    background: #262626;
}

.info-overlay {
    position: relative;
}

.info-overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: rgb(0, 0, 0, 0.85);
    top: 0;
    left: 0;
}

.info-icon-list li:not(:last-child){
    margin-bottom: 10px;
}
.winnner-card img{
    margin-top: 30px;
}




/* .teams-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      padding: 40px;
    } */

.teams-grid .team-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s ease;
}

.teams-grid .team-card:hover {
    transform: translateY(-5px);
}

.team-logo {
    width: 80px;
    margin-bottom: 10px;
}

/* Avatar */
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400 !important;
    color: #fff;
    font-size: 16px;
    border: 1px solid #00000075 !important;
}

.avatar-fallback {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.captain .avatar {
    width: 60px;
    height: 60px;
    font-size: 20px;
    margin-bottom: 5px;
}

.members-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.motto {
    font-style: italic;
    color: #666;
    margin-top: 15px;
}

/* Theme colors */
.team-card.team-red {
    border: 2px solid #e31f25;
}

.team-card.team-blue {
    border: 2px solid #0c8cda;
}

.team-card.team-orange {
    border: 2px solid #f59005;
}

.extra-count {
    font-weight: 700;
    font-size: 14px;
}

.team-red .avatar {
    border: 1px solid #e31f25 !important;
}

.team-blue .avatar {
    border: 1px solid #0c8cda !important;
}

.team-orange .avatar {
    border: 1px solid #f59005 !important;
}

/* Theme colors */
.team-card.team-red:hover {
    border-top: 5px solid #e31f25;
}

.team-card.team-blue:hover {
    border-top: 5px solid #0c8cda;
}

.team-card.team-orange:hover {
    border-top: 5px solid #f59005;
}





/* Avatar */
.avatar {
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    margin-left: -10px;
    border: 2px solid #fff;
    cursor: pointer;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-fallback {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Members row */
.members-grid {
    display: flex;
    align-items: center;
}

/* +X badge */
.extra-count {
    background: #ddd;
    color: #333;
    margin-left: -10px;
    font-weight: bold !important;
}


/* Modal members */
.modal-member {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* .modal-dialog{
    width: 350px;
} */

.avatar-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    opacity: 0;
    transition: 0.2s;
    white-space: nowrap;
}

.avatar-wrapper:hover .tooltip {
    opacity: 1;
}


.teams-grid {
    display: grid;
    gap: 25px;
    padding: 20px;
    grid-template-columns: repeat(3, 1fr);
}

/* Tablet */
@media (max-width: 992px) {
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .teams-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

ul {
    padding-left: 1.2rem;
}

ul li::marker {
    color: #e63b27;
}

.modal-members .modal-member:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
}

.team-red .avatar-fallback {
    background: #e31f25 !important;
}

.team-blue .avatar-fallback {
    background: #0582d3 !important;
}

.team-orange .avatar-fallback {
    background: #f59005 !important;
}

.team-card.team-red .motto {
    color: #e31f25;
}

.team-card.team-blue .motto {
    color: #0582d3;
}

.team-card.team-orange .motto {
    color: #f59005;
}

.spikes {
    position: relative;
    background: #8C2223;
    /* height: 50vh; */
}

.spikes::after {
    content: '';
    position: absolute;
    right: 0;
    left: -0%;
    top: 100%;
    z-index: 10;
    display: block;
    height: 30px;
    background-size: 30px 100%;
    background-image: linear-gradient(135deg, #8C2223 25%, transparent 25%), linear-gradient(225deg, #8C2223 25%, transparent 25%);
    background-position: 0 0;
}

.triangle {
    position: relative;
}

.triangle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 40px 40px;
    border-color: transparent transparent #8c2223 transparent;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}
.bg-white.triangle::before, .bg-light.triangle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 30px;
    border-color: transparent transparent #8c2223 transparent;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.winnner-card{
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}
.team-position{
    position: absolute;
    background: #fff;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 2px solid #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    right: 0;
    left: 0;
    margin: auto;
}

.info-team-logo {
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    border: 2px solid #832420;
    border-radius: 50%;
}
.winnner-card{
    transition: 0.3s all ease-in-out;
}
.winnner-card:hover{
    transform: translateY(-10px);
}

/* Gallery Css */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

.play-icon {
    font-size: 40px;
}

.team-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
}

.gallery-modal .modal-header,
.gallery-modal .modal-body {
    background: #ffffff00 !important;
    border: 0 !important;
}

.gallery-modal .modal.show .modal-dialog {
    transform: none;
    background: transparent;
}

.gallery-modal .modal-content {
    background: transparent;
    border: 0;
}

.info-btn-close {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.info-btn-close:hover {
    background: #842421;
    color: #fff;
}

.btn.btn-dark {
    background: #952523;
    border: 1px solid #952523;
}

.btn.btn-outline-dark {
    background: #212529 !important;
    color: #fff !important;
}

.btn.btn-outline-dark:hover {
    background: #de5454 !important;
    color: #fff !important;
}

.btn.btn-primary {
    background: #005996 !important;
    border: 1px solid #005996;
    color: #ffffff;
}

.btn.btn-outline-primary {
    background: #ffffff !important;
    border: 1px solid #005996;
    color: #005996;
}



.ex-small {
    font-size: 0.675rem;
}

/* FOOTER STARTS HERE */
.info-contact-bg {
    background-color: #DADADA;
}

.info-contact ul li a {
    color: #000;
    font-size: 25px;
    font-weight: 600;
    text-decoration: none;
}

.info-contact ul li a:hover {
    color: #e63b27;
    transition: .3s ease-in-out;
}

.info-contact-content::after {
    position: absolute;
    content: '';
    background-color: #000;
    height: 80%;
    width: 2px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;

}

.info-footer-bg {
    background-color: #000000;
}

.info-footer-bg p {
    color: #888;
    line-height: 22px;
    font-size: 12px;
}

.info-map-btn {
    border: 1px solid #fff;
    background-color: #000;
    color: #fff;
}

.info-map-btn:hover {
    border: 1px solid #fff;
    background-color: #000;
    color: #fff;
}

.info-map-content li {
    line-height: 3;
}

.info-footer-bg .info-content p {
    min-height: 100px;
}

.social-icons {
    display: flex;
}

.social-icons li a {
    margin-right: 6px;
    height: 30px;
    width: 30px;
    background: #737373 !important;
    color: #000 !important;
    text-align: center;
    align-items: center;
    display: flex;
    text-decoration: none;
    justify-content: center;
    font-size: 1rem !important;
    border: 1px solid #737373;
    transition: .3s ease-in-out;
}

.social-icons li a:hover {
    background: #E63B27 !important;
    color: #fff !important;
    border: 1px solid #E63B27;

}

.info-quick-links-content {
    display: flex;
    justify-content: space-between;
}

.info-quick-links li a {
    color: #888;
    font-size: 12px;
    text-decoration: none;
}

hr {
    border-top: 1px solid #8b8b8b !important;
    margin-top: 20px;
    margin-bottom: 20px;
}



.leaderboard-row {
    padding: 12px 16px;
    border-bottom: 1px solid #de5454;
    background: #de5454;
    border-radius: 10px;
    color: #fff !important;
    transition: 0.3s all ease-in-out;
}

.leaderboard-row:hover {
    transform: scale(1.05);
}

.top-rank {
    background: #952523;
    border: 1px solid #952523;
}

.rank-number {
    font-weight: 700;
    font-size: 18px;
    min-width: 50px;
}

.team-logo img {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.team-name {
    font-weight: 600;
}

.score {
    font-weight: 700;
    text-align: right;
}

.score .label {
    display: block;
    font-size: 12px;
    color: #e6e6e6bb;
    font-weight: 400;
}

.trend {
    font-size: 14px;
}

.leaderboard-list .team-row:not(:last-child) {
    margin-bottom: 10px;
}

.leaderboard-list .team-logo {
    margin-bottom: 0;
}
.mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;

  background: rgba(0,0,0,0.6);
  color: #fff;
  backdrop-filter: blur(14px);

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
}


@media (max-width: 992px) {
    .info-contact-content::after {
        position: absolute;
        content: '';
        background-color: #000;
        height: 2px;
        width: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

    .walking-img {
        opacity: 0.20;
        position: absolute;
        inset: 0;
        margin: auto;
        width: 50%;
    }
}

@media (max-width:767px) {
    .info {
        padding: 30px 15px;
    }

    .navbar-brand {
        max-width: 110px;
    }

    .hero-bg {
        background-position: center right;
    }

    .hero-overlay::before {
        background: linear-gradient(357deg, #842421f7, #84242194, #ffffff00);
    }

    .walking-element {
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 100%;
        opacity: 0.6;
    }

    .logo-element {
        position: fixed;
        top: 0;
        left: 0;
        width: 80px;
        z-index: 999;
    }

    .team-logo {
        width: 60px;
    }

    .team-logo img {
        height: 40px;
        width: 40px;
        object-fit: contain;
    }
    .about-banner-overlay::after {
        position: absolute;
        content: '';
        height: 100%;
        width: 100%;
        background: linear-gradient(75deg, #f0ede6, #f0ede6, #ffffff00);
        top: 0;
        left: 0;
    }
    .about-banner {
        background-position: 92%;
    }
    .catathon-logo img{
        width: 150px;
    }
    .info-logos{
        width: 150px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .info-icon-list {
        font-size: 0.8rem;
    }
    .bg-white.triangle::before, .bg-light.triangle::before{
        border-width: 20px 20px 20px;
    }
    .triangle::before{
        border-width: 20px 20px 20px;
    }
    .filter-team, .filter-type{
        font-size: 0.8rem;
    }
    .winnner-card:hover{
        transform: translateY(0);
    }
    .winnner-card{
        max-width: 250px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }







    .info-contact ul li a {
        font-size: 14px;
        padding-top: 0;
    }

    .info-footer-bg .info-content p {
        min-height: 60px;
    }

    .slick-active .info-content-bg .info-text {
        max-height: 100px;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .walking-img {
        opacity: 0.15;
        position: absolute;
        inset: 0;
        margin: auto;
        width: 100%;
    }
}





/* Slick Slider Dots */
.slick-dots {
    display: block;
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 20px;
    list-style: none;
    text-align: center !important;
}

.slick-dots li {
    display: inline-block;
    margin-right: 10px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50rem;
    background-color: #ffffffad;
    text-indent: -999999px;
    transition: all 500ms ease-in-out;
}

.slick-dots li.slick-active button {
    opacity: 1;
    background: #9A813D;
    width: 50px;
}