﻿body {
    font-family: var(--font-family);
    background: var(--body-bg);
    color: var(--body-text);
}

.theme-header {
    padding: 18px 0;
    background: var(--section-bg);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.theme-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.theme-brand {
    font-size: 24px;
    font-weight: 800;
}

.theme-tagline {
    opacity: .75;
}

.theme-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.theme-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0,0,0,.72), rgba(0,0,0,.38) );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 760px;
}

    .hero-content h1 {
        font-size: 72px;
        line-height: 1.05;
        font-weight: 900;
        margin-bottom: 24px;
    }

    .hero-content p {
        font-size: 20px;
        line-height: 1.8;
        opacity: .95;
    }

.theme-service-card {
    background: var(--section-bg);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .25s;
}

    .theme-service-card:hover {
        transform: translateY(-6px);
    }

.theme-service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.theme-btn-primary {
    background: var(--primary);
    border: none;
    color: #fff;
    border-radius: var(--radius);
    padding: 14px 28px;
    font-weight: 700;
}

    .theme-btn-primary:hover {
        opacity: .92;
    }

.theme-footer {
    background: var(--secondary);
    color: #fff;
    padding: 28px 0;
}

.card {
    border-radius: var(--radius) !important;
}

.btn {
    border-radius: var(--radius) !important;
}

.form-control,
.form-select {
    border-radius: var(--radius) !important;
}

@media(max-width:991px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 17px;
    }
}
