:root {
    --primary: #0b3d91;
    --secondary: #ffc107;
    --dark: #101828;
    --muted: #667085;
    --light-bg: #f5f8ff;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    line-height: 1.7;
}

a {
    text-decoration: none;
}

.top-bar {
    background: var(--primary);
    color: #fff;
}

.top-bar a {
    color: #fff;
}

.navbar .nav-link {
    font-weight: 600;
    color: #344054;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--primary);
}

.brand-mark {
    width: 150px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: #082b68;
    border-color: #082b68;
}

.btn-warning {
    background: var(--secondary);
    border-color: var(--secondary);
}

.hero-section {
    background:
        linear-gradient(rgba(11,61,145,0.88), rgba(11,61,145,0.88)),
        radial-gradient(circle at top right, rgba(255,193,7,.4), transparent 35%);
    color: #fff;
    padding: 95px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

.section-padding {
    padding: 80px 0;
}

.bg-soft {
    background: var(--light-bg);
}

.section-title {
    max-width: 780px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-title span {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .08em;
}

.service-card,
.industry-card,
.package-card,
.blog-card,
.feature-card,
.stat-card {
    border: 1px solid #e4e7ec;
    border-radius: 20px;
    background: #fff;
    padding: 28px;
    height: 100%;
    transition: .25s ease;
}

.service-card:hover,
.industry-card:hover,
.package-card:hover,
.blog-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(16, 24, 40, .10);
}

.icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #eaf1ff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 18px;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.check-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #12b76a;
    font-weight: 700;
}

.page-header {
    background: linear-gradient(135deg, var(--primary), #175cd3);
    color: white;
    padding: 70px 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), #06245a);
}

.footer a {
    color: rgba(255,255,255,.7);
}

.footer a:hover {
    color: #fff;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.05);
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 90px;
    width: 42px;
    height: 42px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: none;
    z-index: 999;
}

.form-control,
.form-select {
    padding: 12px 14px;
    border-radius: 12px;
}

.process-step {
    position: relative;
    padding-left: 70px;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.price-tag {
    font-size: 32px;
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 767px) {
    .hero-section {
        padding: 65px 0;
    }

    .section-padding {
        padding: 55px 0;
    }

    .display-4 {
        font-size: 2.2rem;
    }
}
.blog-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: contain;
    background: #f5f8ff;
    border-radius: 18px;
}

.blog-detail-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}