h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    color: #111;
}

p {
    color: #555;
}

/* ---------- BREADCUMB / HERO SECTION ---------- */
.breadcumb-section-finetech {
    background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url("/assests/images/bg/fintech-1.jpg") no-repeat center/cover !important;
    height: 560px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.breadcumb-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    padding: 80px 0;
    padding-bottom: 0px;
}

.about-section .section-head h5 {
    color: #e6007e;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.about-section .section-head h2 {
    font-weight: 700;
    font-size: 2rem;
    color: #111;
    margin-bottom: 15px;
}

.about-section .section-head .bar {
    width: 60px;
    height: 4px;
    background-color: #e6007e;
    border-radius: 3px;
    margin: 10px 0 20px;
}

.about-section .about-text {
    color: #555;
    font-size: 16px;
}

.about-thumb-section img {
    border-radius: 10px;
}

/* ---------- IMAGE FULL WIDTH SECTION ---------- */
.flex img {
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
}

/* ---------- WE OFFER / GRID SECTION ---------- */
.we-offer-area {
    background-color: #f9f9f9;
    padding: 80px 0;
    padding-bottom: 15px;
}

.site-heading h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.site-heading p {
    color: #666;
    margin-bottom: 40px;
}

.our-offer-items .item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.our-offer-items .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.our-offer-items .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.our-offer-items .item h4 {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 10px;
}

.our-offer-items .item p {
    font-size: 15px;
    color: #555;
}

/* ---------- VIDEO / CTA SECTION ---------- */
.video-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://picsum.photos/id/1005/1920/800") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.video-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.video-section p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 30px;
}

.video-section .btn-video a {
    display: inline-block;
    background-color: #e6007e;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.video-section .btn-video a:hover {
    background-color: #c0006d;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
    .breadcumb-section-finetech h1 {
        font-size: 2rem;
    }

    .about-section {
        text-align: center;
    }

    .about-content-container {
        padding-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .site-heading h2 {
        font-size: 1.6rem;
    }

    .our-offer-items .item img {
        height: 180px;
    }
}