:root {
    /* brand colors */
    --primary: #393186;
    --primary-rgb: 57, 49, 134;
    --dark: #2B2A28;
    --dark-rgb: 43, 42, 40;
    --brand-1: #2F5BEA;
    --brand-1-rgb: 47, 91, 234;
    --brand-2: #3B6CF0;
    --brand-2-rgb: 59, 108, 240;
    --primary-hover: #2f2870;

    /* neutrals */
    --white: #ffffff;
    --white-rgb: 255, 255, 255;
    --muted: #555555;
    --black-rgb: 0, 0, 0;
    --black-90: #1F1F1F;

    /* backgrounds */
    --offwhite: #f8f9fc;
    --offwhite-2: #fdfdff;
    --bg-200: #fafbff;

    /* accents */
    --highlight: #C6FF00;

    /* icon gradients & colors */
    --icon-1: #f6d365;
    --icon-2: #fda085;
    --icon-3: #6b2b7c;
    --icon-4: #a18cd1;
    --icon-5: #fbc2eb;
    --icon-6: #5b1366;
    --icon-7: #84fab0;
    --icon-8: #8fd3f4;
    --icon-9: #0b486b;
}

/* Navbar */
.navbar {
    background-color: var(--dark);
}

.navbar-brand,
.nav-link {
    color: var(--white) !important;
}

.nav-link:hover {
    color: var(--primary) !important;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Navbar */
.custom-navbar {
    background: var(--brand-1);
}

.navbar-brand img {
    height: 50px;
}

/* Hero */
.hero-section {
    background: url('../images/bg_1.jpg') no-repeat center center/cover;
    padding: 140px 0 80px;
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
}

.hero-title span {
    color: var(--icon-1);
}

.hero-sub {
    margin-top: 15px;
    opacity: 0.9;
}

section {
    padding: 90px 0;
}

.hero-search {
    margin-top: 25px;
    background: var(--white);
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
    max-width: 420px;
}

.hero-search i {
    color: var(--brand-1);
}

.hero-search input {
    border: none;
    outline: none;
    width: 100%;
}

/* Hero Image */
.hero-image img {
    border-radius: 28px;
    max-height: 420px;
    object-fit: cover;
}

/* Section title */
.section-title {
    font-weight: 800;
    color: var(--brand-1);
}

/* Clubs */
.club-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.08);
}

.club-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Players Section */
.players-section {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    padding: 80px 0;
}

.player-card {
    background: var(--white);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

.player-card h6 {
    font-weight: 700;
    color: var(--brand-1);
}

/* Footer */
.footer {
    background: var(--black-90);
    color: var(--white);
    text-align: center;
    padding: 25px 0;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    color: var(--white);
    /* padding: 100px 0; */
    position: relative;
}

.sliderImg {
    width: 100%;
    min-height: 700px;
    object-fit: cover;
    height: 80vh;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

/* Section Titles */
.section-title {
    color: var(--primary);
    font-weight: 700;
}

/* Cards */
.service-card {
    border: none;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.1);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 30px 0;
}

/* Slick slider adjustments */
.slick-hero .hero {
    /* padding: 100px 0; */
    color: var(--white);
}

.slick-prev,
.slick-next {
    background: rgba(var(--black-rgb), 0.4);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(var(--black-rgb), 0.6);
}

.slick-next {
    right: 15px !important;
}

.slick-prev {
    left: 15px !important;
}

.slick-dots li button:before {
    color: var(--white);
    opacity: 0.8;
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
}

.slick-dots {
    position: absolute;
    bottom: 25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.sliderContent {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* service icons */
.service-icon svg {
    display: inline-block;
    border-radius: 12px;
    background: rgba(var(--white-rgb), 0.05);
    padding: 8px;
}

.service-card .service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h5 {
    margin-top: 12px;
}

/* =========================
   About Section – WOW Edition
========================= */


/* Title + Intro */
.about-intro .section-title {
    font-weight: 800;
    letter-spacing: -0.6px;
    position: relative;
}

.about-intro .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--dark));
    display: block;
    margin-top: 10px;
    border-radius: 4px;
}

.about-intro .lead {
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.08rem;
}

/* ================= Checklist ================= */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    position: relative;
    padding: 14px 0 14px 42px;
    color: var(--muted);
    line-height: 1.7;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.35);
}

.checklist li::after {
    content: "✓";
    position: absolute;
    left: 7px;
    top: 18px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.checklist li strong {
    color: var(--dark);
}

/* ================= Stats ================= */
.stats-row {
    margin-top: 2rem;
}

.stats {
    min-width: 130px;
    padding: 1.2rem 1rem;
    background: linear-gradient(180deg, var(--white), var(--offwhite-2));
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(var(--black-rgb), 0.08);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(var(--primary-rgb), 0.08),
            transparent);
    opacity: 0;
    transition: opacity .35s ease;
}

.stats:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(var(--black-rgb), 0.12);
}

.stats:hover::before {
    opacity: 1;
}

.stats .h2 {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

/* ================= Feature Cards ================= */
.feature-card {
    border: none;
    border-radius: 22px;
    background: linear-gradient(180deg, var(--white), var(--bg-200));
    padding: 1.5rem !important;
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.06);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(var(--white-rgb), 0.7),
            transparent);
    transform: translateX(-100%);
    transition: transform .6s ease;
}

.feature-card:hover::after {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(var(--black-rgb), 0.14);

    /* Font Awesome in feature icons */
    .feature-icon i {
        font-size: 20px;
    }
}

/* Feature Icon */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(var(--black-rgb), 0.2);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

/* Feature Text */
.feature-card h6 {
    font-weight: 700;

    .stats-icon i {
        display: inline-block;
    }

    .stats-icon {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(var(--black-rgb), 0.03);
    }

    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ================= Mobile ================= */
@media (max-width: 767px) {
    .stats-row {
        justify-content: center;
        gap: 14px;
    }

    .about-intro .lead {
        font-size: 1rem;
    }
}


/* Contact page banner */

.ui-page-banner {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    padding: 120px 0 70px;
}

.ui-contact {
    padding-bottom: 90px;
}

.ui-map iframe {
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(var(--black-rgb), 0.12);
}

.ui-form-wrap {
    background: var(--white);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(var(--black-rgb), 0.1);
}

.icon-wrap {
    border: none;
}

.icon-wrap i {
    color: var(--brand-1);
    font-size: 1rem;
}

.ui-footer {
    background: var(--black-90);
    color: var(--white);
    padding: 30px 0;
}

.input-group .icon-wrap {
    background: #eeeeee;
    border: none;
    font-size: 1.05rem;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
}


.input-group .form-control {
    border-left: none;
}

.input-group .input-group-text {
    border-right: none;
}