/* =========================
   HERO SECTION STYLING
========================= */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-section p {
    max-width: 520px;
}

.hero-section .btn {
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero-section .btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
}

.hero-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.hero-section .btn-outline-light:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #0f172a;
}

/* Floating glow effect */
.hero-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
    top: -150px;
    right: -150px;
    filter: blur(40px);
}

/* =========================
   TRUST BAR
========================= */
.bg-light {
    background: #f8fafc !important;
}

.bg-light span {
    font-weight: 500;
    color: #475569;
}

/* =========================
   SERVICE CARDS
========================= */
section.py-5 .border {
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease;
    background: #ffffff;
}

section.py-5 .border:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #3b82f6 !important;
}

section.py-5 h5 {
    font-weight: 600;
    color: #0f172a;
}

/* =========================
   FINAL CTA SECTION
========================= */
section.py-5.text-white {
    position: relative;
}

section.py-5.text-white::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(59,130,246,0.15), transparent 60%);
}

section.py-5.text-white h2 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

section.py-5.text-white .btn {
    transition: all 0.3s ease;
}

section.py-5.text-white .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(59,130,246,0.3);
}

/* =========================
   GENERAL POLISH
========================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}