
        .hero-title {
            font-weight: 900;
            font-size: 2.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .cup-badge {
            background: rgb(235 0 0 / 15%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            padding: 6px 16px;
            font-size: 0.85rem;
            margin: 4px;
            display: inline-block;
        }
        .cup-badge1 {
            background: rgb(0 49 235 / 15%);
            border: 1px solid rgb(11 21 255 / 30%);
            border-radius: 30px;
            padding: 6px 16px;
            font-size: 0.85rem;
            margin: 4px;
            display: inline-block;
        }
.cup-badge2 {
            background: rgb(0 151 27 / 15%);
            border: 1px solid rgb(0 116 8 / 30%);
            border-radius: 30px;
            padding: 6px 16px;
            font-size: 0.85rem;
            margin: 4px;
            display: inline-block;
        }
        /* Card Custom Styling */
        .section-title {
            position: relative;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }
        .section-title::after {
            content: '';
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Pitch Cards */
        .pitch-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .pitch-card:hover {
            transform: translateY(-8px);
        }
        .pitch-card img {
            height: 200px;
            object-fit: cover;
        }

        /* Fixture Schedule Tabs */
        .nav-pills .nav-link {
            border-radius: 20px;
            color: var(--primary-color);
            background-color: #e9ecef;
            font-weight: 700;
            padding: 10px 24px;
            margin: 0 5px;
        }
        .nav-pills .nav-link.active {
            background-color: var(--accent-color);
            color: #fff;
        }
        .match-card {
            border-left: 4px solid var(--accent-color);
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-radius: 8px;
        }

        /* News Cards */
        .news-card img {
            height: 180px;
            object-fit: cover;
        }
.team-card h4{margin: 0; color: #fff;}
img{height:auto !important}




