﻿/*==============================
      FINANCIAL HIGHLIGHTS
==============================*/

.financial-section {
    padding: 70px 0;
    background: linear-gradient(180deg,#f8fbff,#ffffff);
    overflow: hidden;
    position: relative;
}

    .financial-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(128,0,32,.05), transparent 45%);
        pointer-events: none;
    }

/*************************
Heading
*************************/

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

    .section-heading span {
        display: inline-block;
        background: #880000;
        color: #fff;
        padding: 8px 22px;
        border-radius: 50px;
        letter-spacing: 1px;
        font-weight: 600;
        font-size: 15px;
    }

    .section-heading h2 {
        margin-top: 18px;
        font-size: 48px;
        font-weight: 800;
        color: #122b5b;
    }

    .section-heading p {
        color: #666;
        font-size: 18px;
    }

/*************************
Slider
*************************/

.financial-slider {
    display: flex;
    gap: 35px;
}

/*************************
Card
*************************/

.finance-card {
    position: relative;
    width: 330px;
    min-width: 330px;
    height: 560px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .45s;
}

    .finance-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0,0,0,.16);
    }

    /*************************
Left Maroon Panel
*************************/

    .finance-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 90px;
        height: 100%;
        background: linear-gradient( 180deg, #9d002d, #73001e);
        clip-path: polygon( 0 0, 100% 0, 65% 50%, 100% 100%, 0 100% );
    }

/*************************
Quarter Tag
*************************/

.quarter-tag {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #880000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/*************************
Icon
*************************/

.icon-circle {
    position: absolute;
    left: 42px;
    top: 45px;
    transform: translateX(-50%);
    width: 95px;
    height: 95px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
    z-index: 20;
}

    .icon-circle i {
        font-size: 42px;
        color: #880000;
        transition: .35s;
    }

.finance-card:hover .icon-circle i {
    transform: rotate(12deg) scale(1.15);
}

/*************************
Background Illustration
*************************/

.bg-image {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: 85%;
    height: 45%;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    opacity: .08;
    pointer-events: none;
}

/*************************
Content
*************************/

.finance-card h3 {
    margin-top: 150px;
    margin-left: 120px;
    margin-right: 25px;
    color: #12326c;
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
}

.finance-card h1 {
    margin-top: 40px;
    text-align: center;
    font-size: 62px;
    font-weight: 800;
    color: #880000;
    line-height: 1.1;
}

    .finance-card h1 span {
        display: block;
        font-size: 26px;
        margin-top: 5px;
    }

.finance-card p {
    margin-top: 30px;
    text-align: center;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.finance-card small {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #777;
    font-size: 18px;
}

/*************************
Growth Ribbon
*************************/

.growth {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient( 90deg, #082b67, #0f4da3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: .5px;
}

    .growth span {
        font-size: 20px;
        font-weight: 500;
    }

    .growth i {
        color: #74d800;
        font-size: 32px;
    }

/*************************
Responsive
*************************/

@media(max-width:992px) {

    .finance-card {
        width: 300px;
        min-width: 300px;
        height: 520px;
    }

        .finance-card h3 {
            margin-top: 140px;
            font-size: 28px;
        }

        .finance-card h1 {
            font-size: 54px;
        }
}

@media(max-width:576px) {

    .finance-card {
        width: 280px;
        min-width: 280px;
        height: 500px;
    }

        .finance-card h3 {
            font-size: 24px;
        }

        .finance-card h1 {
            font-size: 46px;
        }

    .growth {
        font-size: 28px;
    }
}
