:root {

    --primary: #0A2647;
    --secondary: #144272;
    --accent: #205295;
    --light-blue: #8FE3CF;
    --orange: #FFA62B;
    --white: #ffffff;
    --gray: #f4f7fb;

}

/* =========================
    GENERAL
========================= */

body {

    font-family: 'Roboto', sans-serif;
    background: var(--gray);
    overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
.navbar-brand {

    font-family: 'Montserrat', sans-serif;

}

/* =========================
    NAVBAR
========================= */

.custom-navbar {

    background: rgba(10, 38, 71, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: .3s;

}

.brand-text {

    font-size: 1.2rem;
    font-weight: 700;

}

.nav-link {

    color: white !important;
    margin-left: 15px;
    position: relative;
    transition: .3s;

}

.nav-link:hover {

    color: var(--orange) !important;

}

/* =========================
    HERO
========================= */

.hero-section {

    background:
        linear-gradient(
            90deg,
            rgba(10,38,71,.92) 0%,
            rgba(10,38,71,.78) 35%,
            rgba(10,38,71,.45) 60%,
            rgba(10,38,71,.15) 100%
        ),
        url('/img/hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;

    position: relative;
    overflow: hidden;

}
.hero-section::before {

    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at right,
            rgba(255,255,255,.05),
            transparent 40%
        );

}

.hero-title {

    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;

}

.hero-title span {

    color: var(--orange);

}

.hero-text {

    color: rgba(255, 255, 255, .8);
    font-size: 1.1rem;
    margin: 25px 0;

}

.hero-buttons {

    display: flex;
    gap: 15px;
    flex-wrap: wrap;

}

.hero-image {

    max-width: 550px;
    animation: float 4s ease-in-out infinite;

}

.hero-badge {

    display: inline-block;
    background: rgba(255,255,255,.12);
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);

}

/* =========================
    BUTTONS
========================= */

.btn-primary-custom {

    background: linear-gradient(90deg,
            var(--accent),
            var(--secondary));

    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;

}

.btn-primary-custom:hover {

    background: var(--orange);
    transform: translateY(-3px);

}

.btn-outline-custom {

    border: 2px solid rgba(255,255,255,.3);
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    transition: .3s;

}

.btn-outline-custom:hover {

    background: white;
    color: var(--primary);

}

/* =========================
    STATS
========================= */

.stats-section {

    margin-top: -70px;
    position: relative;
    z-index: 10;

}

.stat-card {

    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);

}

.stat-card h2 {

    font-size: 2.5rem;
    color: var(--primary);

}

/* =========================
    SECTIONS
========================= */

.services-section,
.results-section {

    padding: 120px 0;

}

.section-title span {

    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;

}

.section-title h2 {

    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 10px;

}

/* =========================
    CARDS
========================= */

.service-card {

    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    transition: .3s;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);

}

.service-card:hover {

    transform: translateY(-10px);

}

.icon-box {

    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,
            var(--accent),
            var(--secondary));

    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 2rem;
    margin-bottom: 25px;
    color: white;

}

/* =========================
    MATCH CARD
========================= */

.match-card {

    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);

}

.match-date {

    color: gray;
    margin-bottom: 20px;

}

.teams {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.score {

    background: var(--primary);
    color: white;
    padding: 12px 18px;
    border-radius: 15px;
    font-weight: bold;

}

/* =========================
    FOOTER
========================= */

.footer {

    background: var(--primary);
    color: white;
    padding: 60px 0;

}

/* =========================
    BLUR EFFECTS
========================= */

.blur-circle {

    position: absolute;
    border-radius: 50%;
    filter: blur(120px);

}

.blur-1 {

    width: 300px;
    height: 300px;
    background: rgba(143, 227, 207, .15);
    top: -100px;
    right: -50px;

}

.blur-2 {

    width: 250px;
    height: 250px;
    background: rgba(255, 166, 43, .15);
    bottom: 0;
    left: 0;

}

/* =========================
    ANIMATION
========================= */

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================
    RESPONSIVE
========================= */

@media(max-width: 991px) {

    .hero-title {

        font-size: 2.8rem;

    }

    .hero-section {

        text-align: center;
        padding-top: 120px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-image {

        margin-top: 50px;

    }

}
/* =========================
    INSTITUTIONAL MODERN
========================= */

.institutional-modern {

    padding: 140px 0;
    background: #f8f9fc;
    overflow: hidden;
    position: relative;

}

/* =========================
    DIAMONDS
========================= */

.diamond-container {

    position: relative;
    width: 450px;
    height: 450px;

}

.diamond {

    position: absolute;
    background: #000;
    transform: rotate(45deg);
    border-radius: 12px;

}

.diamond-big {

    width: 260px;
    height: 260px;

    left: 0;
    top: 90px;

}

.diamond-small {

    width: 140px;
    height: 140px;

}

.diamond-small.top {

    left: 170px;
    top: 0;

}

.diamond-small.right {

    right: 0;
    top: 150px;

}

.diamond-small.bottom {

    left: 170px;
    bottom: 0;

}

/* =========================
    ITEMS
========================= */

.institution-item {

    display: flex;
    align-items: flex-start;
    gap: 25px;

    margin-bottom: 70px;

    max-width: 700px;

}

.institution-item h3 {

    font-size: 2rem;
    color: #1e73d8;
    font-weight: 700;
    margin-bottom: 12px;

}

.institution-item p {

    color: #333;
    line-height: 1.9;
    font-size: 1rem;

}

/* =========================
    ICONS
========================= */

.institution-icon-modern {

    min-width: 90px;
    height: 90px;

    border: 3px solid #1e73d8;

    transform: rotate(45deg);

    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;
    color: #1e73d8;

    margin-top: 10px;

}

.institution-icon-modern span {

    transform: rotate(-45deg);

}

/* =========================
    RESPONSIVE
========================= */

@media(max-width: 991px) {

    .institution-item {

        flex-direction: column;
        align-items: center;
        text-align: center;

    }

    .institution-item h3 {

        font-size: 1.7rem;

    }

    .institution-item {

        margin-bottom: 50px;

    }

}
/* =========================
    CONTACT SECTION
========================= */

.contact-section {

    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #f7f9fc,
            #eef4fb
        );

    position: relative;
    overflow: hidden;

}

/* =========================
    CONTACT INFO
========================= */

.contact-info {

    display: flex;
    flex-direction: column;
    gap: 30px;

}

.contact-item {

    display: flex;
    align-items: flex-start;
    gap: 20px;

    background: white;

    padding: 25px;

    border-radius: 24px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

    transition: .3s;

}

.contact-item:hover {

    transform: translateY(-5px);

}

.contact-icon {

    min-width: 65px;
    height: 65px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--secondary)
        );

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.6rem;
    color: white;

}

.contact-item h5 {

    font-weight: 700;
    margin-bottom: 8px;

    color: var(--primary);

}

.contact-item p {

    margin: 0;
    color: #555;
    line-height: 1.7;

}

/* =========================
    FORM
========================= */

.contact-form-box {

    background: white;

    padding: 45px;

    border-radius: 30px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

}

.custom-input {

    border: none;
    background: #f4f7fb;

    padding: 16px 20px;

    border-radius: 16px;

    font-size: 1rem;

    transition: .3s;

}

.custom-input:focus {

    box-shadow: none;

    border: 2px solid var(--accent);

    background: white;

}

textarea.custom-input {

    resize: none;

}

/* =========================
    BUTTON
========================= */

.btn-contact {

    background:
        linear-gradient(
            90deg,
            var(--accent),
            var(--secondary)
        );

    border: none;

    padding: 14px 35px;

    border-radius: 40px;

    color: white;

    font-weight: 600;

    transition: .3s;

}

.btn-contact:hover {

    background: var(--orange);

    transform: translateY(-3px);

    color: white;

}

/* =========================
    RESPONSIVE
========================= */

@media(max-width: 991px) {

    .contact-form-box {

        padding: 30px;

    }

}
/* =========================
    HISTORY
========================= */

.history-section {

    padding: 120px 0;
    background: white;

}

.history-content span {

    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;

}

.history-content h2 {

    font-size: 3rem;
    font-weight: 800;

    margin: 20px 0;

    color: var(--primary);

}

.history-content p {

    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;

}

.history-image img {

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);

}