/* =========================================
   INSURANCE & RISK MANAGEMENT LANDING
   Trimerous Technology
   (Enterprise / Consulting Style)
========================================= */

/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111827;
}

/* =========================
   HERO / CTA SECTION BASE
========================= */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* MAIN TITLE */
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* SUBTITLE */
.cta-subtitle {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

/* =========================
   HERO IMAGE
========================= */
.cta-section img {
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
}

/* =========================
   TRUST STRIP (corporate feel)
========================= */
.cta-section .fw-bold {
    font-size: 15px;
    color: #ffffff;
}

.cta-section .row.text-center {
    margin-top: 20px;
}

/* =========================
   GLASS CARD (enterprise upgrade)
========================= */
.glass-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* subtle highlight line */
.glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    opacity: 0.8;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: #cbd5e1;
}

/* CARD TEXT */
.glass-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.glass-card p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

#orginc {
    color: #a5a7ac !important ;
}

/* =========================
   BUTTON SYSTEM (corporate style)
========================= */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #0d6efd;
    border: none;
    font-weight: 500;
}

.btn-primary:hover {
    background: #0b5ed7;
}

/* DARK BUTTON */
.btn-dark {
    background: #0f172a;
    border: none;
}

.btn-dark:hover {
    background: #000000;
}

/* SUCCESS BUTTON */
.btn-success {
    background: #16a34a;
    border: none;
    font-weight: 500;
}

.btn-success:hover {
    background: #15803d;
}

/* =========================
   PROCESS SECTION
========================= */
.cta-section h4 {
    font-size: 28px;
    font-weight: 700;
    color: #0d6efd;
}

.cta-section .row p {
    font-size: 14px;
    color: #ffffff;
}

/* =========================
   FINAL CTA BLOCK
========================= */
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

/* =========================
   SOCIAL ICONS
========================= */
.list-inline-item .fa-stack {
    transition: all 0.3s ease;
}

.list-inline-item .fa-stack:hover {
    transform: scale(1.12);
    color: #0d6efd;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .cta-title {
        font-size: 28px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .glass-card {
        padding: 20px;
    }

    .cta-section h2 {
        font-size: 24px;
    }
}