@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #061B38;
    --secondary: #0E315A;
    --accent: #1D4E89;
    --gold: #C7A15A;
    --gold-light: #D8B97A;
    --white: #F7F9FC;
    --light: #E8EDF2;
    --text: #0D1B2A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;

    background:
radial-gradient(circle at right top, rgba(199, 161, 90, 0.15), transparent 35%),
    radial-gradient(circle at left bottom, rgba(29, 78, 137, 0.25), transparent 40%),
    linear-gradient(rgb(3, 18, 37) 0%, rgb(8 27 56 / 84%) 35%, rgb(10, 35, 69) 100%);

    color: #fff;
    overflow-x: hidden;
}

/* GOLD GLOW */

body::before {
    content: "";
    position: fixed;
    width: 700px;
    height: 700px;
    top: -250px;
    right: -250px;

    background:
        radial-gradient(circle,
            rgba(199, 161, 90, .15),
            transparent 70%);

    animation: glowMove 12s ease infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes glowMove {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-80px, 80px);
    }
}

/* NAVBAR */

.navbar {
    background: rgba(6, 27, 56, .92) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(199, 161, 90, .15);
    /* padding: 18px 0; */
}

.navbar-brand {
    font-weight: 800;
    color: #C2A56D !important;}

.nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: .3s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: var(--gold);
    transition: .4s;
}

.nav-link:hover::after {
    width: 100%;
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;

    background:
        linear-gradient(rgba(6, 27, 56, .85),
            rgba(6, 27, 56, .85)),
        url('images/hero-bg.jpg');

    background-size: cover;
    background-position: center;
}


.hero-slider {
    position: relative;
    min-height: 650px;

    border-radius: 40px;
    padding: 80px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition: background-image 1s ease-in-out;

    box-shadow:
        0 40px 80px rgba(0, 0, 0, .30),
        0 0 80px rgba(199, 161, 90, .15);

    overflow: hidden;
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .45));

    z-index: 1;
}

.hero-slider .row {
    position: relative;
    z-index: 2;
}


.hero-tag {
    color: #ffd079;
    background: #0000ff33;
    font-weight: 700;
    border-radius: 20px;
    padding: 5.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: .95;
    color: #0f2a50;

    animation: slideUp 1.2s ease;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero p {
    color: #fff;
    font-size: 1.15rem;
    max-width: 600px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BUTTONS */

.btn-primary-custom {

    background:
        linear-gradient(135deg,
            var(--gold),
            var(--gold-light));

    color: #061B38;

    padding: 16px 38px;

    border-radius: 50px;

    font-weight: 800;

    text-decoration: none;

    transition: .4s;
}

.btn-primary-custom:hover {

    transform:
        translateY(-5px) scale(1.03);

    box-shadow:
        0 15px 35px rgba(199, 161, 90, .35);

    color: #061B38;
}

/* SECTIONS */

.section-padding {
    padding: 110px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 {

    font-size: 3.5rem;
    font-weight: 900;

    background:
        linear-gradient(90deg,
            #ffffff,
            var(--gold));

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    color: #b7c8de;
}

/* CARDS */

.info-card,
.pool-card,
.sponsor-card {

    background:
        rgba(255, 255, 255, .06);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 28px;

    /* padding: 35px;

    height: 100%; */

    position: relative;

    overflow: hidden;

    transition: .5s;
}

.info-card::before,
.pool-card::before,
.sponsor-card::before {

    content: "";

    position: absolute;

    width: 250%;
    height: 100%;

    left: -250%;
    top: 0;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .15),
            transparent);

    transition: 1s;
}

.info-card:hover::before,
.pool-card:hover::before,
.sponsor-card:hover::before {
    left: 100%;
}

.info-card:hover,
.pool-card:hover,
.sponsor-card:hover {

    transform:
        translateY(-12px);

    border-color: var(--gold);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .25);
}

.info-card i,
.pool-card i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.info-card h4,
.pool-card h4,
.sponsor-card h5 {
    color: white;
    font-weight: 700;
}

.info-card p,
.pool-card p {
    color: #c6d2e1;
}

/* TIMELINE */

.timeline-box {

    background:
        rgba(255, 255, 255, .05);

    backdrop-filter: blur(20px);

    border-radius: 30px;

    padding: 50px;
}

.timeline-step {

    text-align: center;

    color: white;

    font-weight: 700;

    position: relative;
}

.timeline-step::after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 22px;
}

.timeline-step:last-child::after {
    display: none;
}

/* COUNTERS */

.counter-section {

    background:
        linear-gradient(135deg,
            #071A35,
            #123E70);

    border-radius: 35px;

    overflow: hidden;

    position: relative;

    margin: 40px auto;
}

.counter-section::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    top: -150px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(199, 161, 90, .20),
            transparent);
}

.counter-section h2 {
    color: white;
    font-size: 3rem;
    font-weight: 900;
}

.counter-section p {
    color: #d3dfef;
}

/* GALLERY */

.gallery img {

    width: 100%;
    height: 320px;

    object-fit: cover;

    border-radius: 25px;

    transition: .6s;
}

.gallery img:hover {

    transform:
        scale(1.08) rotate(2deg);

    box-shadow:
        0 25px 45px rgba(0, 0, 0, .35);
}

/* CTA */

.cta-section {

    background:
        linear-gradient(rgba(6, 27, 56, .85),
            rgba(6, 27, 56, .85)),
        url('images/court.jpg');

    background-size: cover;
    background-position: center;

    text-align: center;

    padding: 140px 0;
}

.cta-section h2 {
    font-size: 4rem;
    font-weight: 900;
}

.cta-section p {
    color: #d2ddec;
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
}

/* FOOTER */

footer {

    background:
        linear-gradient(180deg,
            #020C18,
            #01060D);

    position: relative;

    padding: 80px 0 20px;
}

footer::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(90deg,
            transparent,
            var(--gold),
            transparent);
}

footer h4,
footer h5 {
    color: white;
    margin-bottom: 20px;
}

footer p,
footer li,
footer a {
    color: #c8d4e5;
}

footer a {
    text-decoration: none;
    transition: .3s;
}

footer a:hover {
    color: var(--gold);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 10px;
}

footer hr {
    border-color: rgba(255, 255, 255, .08);
}

.text-center {
    color: #95a9c4;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .hero .container {
        padding: 40px;
    }

    .hero h1 {
        font-size: 1.78rem;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }

    .timeline-step::after {
        display: none;
    }
}

.recognition-section {
    background: #a0b2c3 !important;
}

.recognition-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.recognition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .12);
}

.logo-box {
    height: 180px;
    background:linear-gradient(135deg, #547A95, #123E70);

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.logo-box img {
    max-width: 146px;
    max-height: 154px;
    object-fit: contain;
}

.content-box {
    padding: 30px;
    text-align: center;
}

.badge-custom {
    display: inline-block;
    background: #C7A15A;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-box h4 {
    color: #061B38;
    font-weight: 800;
    margin-bottom: 15px;
}

.content-box p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


.sponsors-section {
    position: relative;
}

.sponsor-logo-card {

    position: relative;

    height: 280px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .08),
            rgba(255, 255, 255, .03));

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 32px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    transition: .6s;
}

/* Animated Glow */

.sponsor-logo-card::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background:
        radial-gradient(circle,
            rgba(199, 161, 90, .20),
            transparent 70%);

    animation: sponsorGlow 5s infinite ease-in-out;
}

@keyframes sponsorGlow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.sponsor-logo-card:hover {

    transform:
        translateY(-12px);

    border-color: #C7A15A;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .25);
}

.sponsor-logo {
    max-width: 381px;
    max-height: 334px;
    /* object-fit: contain; */
    z-index: 2;
    transition: .5s;
}

.sponsor-logo-card:hover .sponsor-logo {

    transform: scale(1.08);
}

.sponsor-badge {

    position: absolute;

    top: 20px;
    left: 20px;

    background:
        linear-gradient(135deg,
            #C7A15A,
            #D8B97A);

    color: #061B38;

    font-size: 12px;

    font-weight: 700;

    padding: 8px 16px;

    border-radius: 50px;

    z-index: 2;
}

/* Shine Effect */

.sponsor-logo-card::after {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .15),
            transparent);

    transition: 1s;
}

.sponsor-logo-card:hover::after {
    left: 140%;
}


.custom-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: 1 / span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .5),
            transparent);
    opacity: 0;
    transition: .5s;
}

.gallery-item:hover::before {
    opacity: 1;
}

.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: gold;
    z-index: 2;
    opacity: 0;
    transition: .5s;
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(-5px);
}

.gallery-item {
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .15);
}

.gallery-item:hover {
    transform: translateY(-8px);
    transition: .4s;
}


.custom-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
    transition: .4s ease;
}

.gallery-item.large {
    grid-row: 1 / span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .6),
            transparent);
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover::before {
    opacity: 1;
}

.overlay {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: gold;
    z-index: 2;
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width: 991px) {

    .custom-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: 1 / span 2;
        grid-row: auto;
        height: 350px;
    }

    .gallery-item {
        height: 250px;
    }
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 767px) {

    .custom-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item.large {
        grid-column: auto;
        height: 280px;
    }

    .gallery-item {
        height: 220px;
    }

    .overlay h4 {
        font-size: 1rem;
    }
}

/* ============================= */
/* SMALL MOBILE */
/* ============================= */

@media (max-width: 480px) {

    .gallery-item.large {
        height: 220px;
    }

    .gallery-item {
        height: 180px;
    }

    .overlay {
        left: 15px;
        bottom: 15px;
    }

    .overlay h4 {
        font-size: .9rem;
    }
}


/* ===================================
   PREMIUM 3D GLOBAL ANIMATIONS
=================================== */

section {
    position: relative;
    z-index: 1;
}

/* Floating Background Orbs */

/* section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(199, 161, 90, .12),
            transparent 70%);
    top: 10%;
    right: -100px;
    animation: floatingOrb 12s ease-in-out infinite;
    pointer-events: none;
}

section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(84, 122, 149, .15),
            transparent 70%);
    bottom: 5%;
    left: -80px;
    animation: floatingOrb2 15s ease-in-out infinite;
    pointer-events: none;
} */

@keyframes floatingOrb {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
    }
}

@keyframes floatingOrb2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(40px) rotate(-180deg);
    }
}

/* ===================================
   HERO 3D EFFECT
=================================== */

/* .hero .container {
    transform-style: preserve-3d;
    animation: heroFloat 6s ease-in-out infinite;
} */

@media (min-width: 992px) {
    .hero .container {
        animation: heroFloat 6s ease-in-out infinite;
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero h1 {
    animation: heroTitle 1.5s ease forwards;
}

@keyframes heroTitle {
    from {
        opacity: 0;
        transform:
            translateY(80px) rotateX(50deg);
    }

    to {
        opacity: 1;
        transform:
            translateY(0) rotateX(0deg);
    }
}

.hero-tag {
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(199, 161, 90, .4);
    }

    50% {
        box-shadow: 0 0 30px rgba(199, 161, 90, .7);
    }
}

/* ===================================
   SECTION TITLES
=================================== */

.section-heading h2 {
    animation: titleGlow 4s infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow:
            0 0 0 transparent;
    }

    to {
        text-shadow:
            0 0 20px rgba(199, 161, 90, .35);
    }
}

/* ===================================
   CARD 3D EFFECTS
=================================== */

.recognition-card,
.pool-logo-card,
.sponsor-logo-card,
.gallery-item {
    transform-style: preserve-3d;
    transition:
        transform .6s ease,
        box-shadow .6s ease;
}

.recognition-card:hover,
.pool-logo-card:hover,
.sponsor-logo-card:hover,
.gallery-item:hover {
    transform:
        perspective(1200px) rotateX(8deg) rotateY(-8deg) translateY(-15px);

    box-shadow:
        0 40px 60px rgba(0, 0, 0, .35),
        0 0 30px rgba(199, 161, 90, .25);
}

/* ===================================
   LOGO FLOATING
=================================== */

.logo-box img,
.pool-logo img,
.sponsor-logo {
    animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ===================================
   TIMELINE PREMIUM
=================================== */

.timeline-step {
    position: relative;
    transition: .4s;
}

.timeline-step:hover {
    transform: translateY(-8px);
    color: #C7A15A;
}

.timeline-step::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #C7A15A;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 0 15px rgba(199, 161, 90, .8);
}

/* ===================================
   GALLERY PREMIUM
=================================== */

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    transition: 1s;
}

.gallery-item:hover img {
    transform:
        scale(1.15) rotate(2deg);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(135deg,
            transparent,
            rgba(255, 255, 255, .15),
            transparent);

    transform: translateX(-150%);
}

.gallery-item:hover::after {
    animation: shine 1.2s;
}

@keyframes shine {
    from {
        transform: translateX(-150%);
    }

    to {
        transform: translateX(150%);
    }
}

/* ===================================
   BUTTON PREMIUM
=================================== */

.btn-primary-custom {
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .5),
            transparent);
}

.btn-primary-custom:hover::before {
    animation: btnShine .8s;
}

@keyframes btnShine {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

/* ===================================
   FOOTER GLOW
=================================== */

footer {
    overflow: hidden;
}

footer::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(199, 161, 90, .15),
            transparent);

    top: -250px;
    right: -250px;

    animation: footerGlow 12s infinite linear;
}

@keyframes footerGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   SCROLL REVEAL ANIMATION
=================================== */

.recognition-card,
.pool-logo-card,
.sponsor-logo-card,
.gallery-item,
.timeline-step {
    animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform:
            translateY(50px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}

/* ===================================
   MOBILE OPTIMIZATION
=================================== */

@media(max-width:991px) {

    .recognition-card:hover,
    .pool-logo-card:hover,
    .sponsor-logo-card:hover,
    .gallery-item:hover {

        transform:
            translateY(-10px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }
}

/* ===================================
   MOBILE RESPONSIVE ANIMATION FIX
=================================== */

@media (max-width: 991px) {

    /* Prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden !important;
        width: 100%;
    }

    section::before,
    section::after,
    body::before,
    footer::after {
        display: none;
    }

    /* Disable heavy 3D transforms */
    .recognition-card,
    .pool-logo-card,
    .sponsor-logo-card,
    .gallery-item,
    .hero .container {
        transform: none !important;
        animation: none !important;
    }

    .recognition-card:hover,
    .pool-logo-card:hover,
    .sponsor-logo-card:hover,
    .gallery-item:hover {
        transform: translateY(-6px) !important;
    }

    /* Stop floating logos */
    .logo-box img,
    .pool-logo img,
    .sponsor-logo {
        animation: none !important;
        transform: none !important;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero .container {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    /* About Section */
    #about img {
        max-width: 100%;
        height: auto;
        margin-bottom: 25px;
    }

    /* Recognition Cards */
    .logo-box {
        height: 150px;
    }

    /* Pool Cards */
    .pool-logo {
        height: 180px;
    }

    .pool-logo img {
        max-width: 90%;
        max-height: 140px;
    }

    /* Sponsor */
    .sponsor-logo-card {
        height: 220px;
    }

    .sponsor-logo {
        max-width: 85%;
        max-height: 150px;
    }

    /* Timeline */
    .timeline-box {
        padding: 25px;
    }

    .timeline-step {
        margin-bottom: 20px;
        display: block;
    }

    .timeline-step::before {
        display: none;
    }

    .timeline-step::after {
        display: none;
    }

    /* Section spacing */
    .section-padding {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 2rem !important;
    }
}

/* Small Phones */
@media (max-width: 576px) {

    .navbar-brand img {
        height: 55px !important;
    }

    .hero h1 {
        font-size: 1.7rem !important;
    }

    .hero-tag {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .btn-primary-custom {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .col-4 h3 {
        font-size: 1.4rem;
    }

    .sponsor-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
}


/* ===========================
   TOURNAMENT POOLS
=========================== */

.pools-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
    linear-gradient(rgb(3 15 30 / 5%), rgb(3 15 30 / 3%)),
        url(../images/background.png);
    background-size: cover;
}

.tennis-ball-bg {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
            rgba(212, 175, 55, .08),
            transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.section-heading h2 {
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-heading p {
    color: rgba(255, 255, 255, .75);
    max-width: 700px;
    margin: auto;
}

.hero-tag {
    color: #d4af37;
    letter-spacing: 3px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

/* ===========================
   CARD
=========================== */

.pool-card {
    position: relative;
    width: 260px;
    height: 310px;
    margin: auto;
    /* background: #fff; */

    clip-path: polygon(0 0,
            100% 0,
            100% 60%,
            92% 74%,
            80% 87%,
            65% 96%,
            50% 100%,
            35% 96%,
            20% 87%,
            8% 74%,
            0 60%);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);

    transition: .4s;
}

.pool-card:hover {
    transform: translateY(-15px);
}

.pool-icon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);

    width: 155px;
    height: 130px;

    background: #0b3d75;

    clip-path: polygon(0 0,
            100% 0,
            100% 72%,
            50% 100%,
            0 72%);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .4s;
}

.pool-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);

    width: 180px;
    height: 180px;
    /* Increased */

    background: #0b3d75;

    clip-path: polygon(0 0,
            100% 0,
            100% 72%,
            50% 100%,
            0 72%);

    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.pool-icon img {
    width: 177px;
    height: 185px;
    object-fit: contain;
        z-index: 2;
}

.pool-icon::before {
    content: "";
    position: absolute;
    top: 0;
    right: -12px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .12);

    clip-path: polygon(0 0,
            100% 0,
            100% 72%,
            50% 100%,
            0 72%);
}

/* .pool-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    z-index: 2;
} */

.pool-content {
    text-align: center;
    padding:183px 20px 0;
}

.pool-content h4 {
    color: var(--gold);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.pool-content span {
    display: block;
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.pool-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:991px) {

    .pool-card {
        width: 100%;
        max-width: 260px;
    }

    .section-heading h2 {
        font-size: 40px;
    }
}

@media(max-width:576px) {

    .pools-section {
        padding: 80px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }
}

.hero-slider {
    animation: zoomEffect 5s linear infinite;
}

@keyframes zoomEffect {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}


.hero-slider {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 700px;
    transition: background-image 0.8s ease-in-out;
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 550px;
        background-position: center center;
    }
}

/* .hero-slider {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width:768px) {
    .hero-slider {
        background-size: contain;
    }
} */