/* ===============================
   HEALTHCARE MARKETING LANDING
   Trimerous Technology
================================= */

/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
    background-color: #ffffff;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-section p {
    opacity: 0.95;
}

/* HERO IMAGE */
.hero-section img {
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

/* BUTTONS */
.btn {
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* TRUST STRIP */
.bg-light {
    background: #f8fafc !important;
}

.bg-light .fw-bold {
    font-size: 16px;
    color: #111827;
}

/* SERVICES CARDS */
.border.rounded {
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    transition: all 0.3s ease;
    background: #ffffff;
}

.border.rounded:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #0d6efd !important;
}

.border.rounded h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* PROCESS SECTION */
.bg-light h4 {
    font-size: 28px;
    font-weight: 700;
    color: #0d6efd;
}

.bg-light p {
    font-size: 15px;
    color: #4b5563;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
}

.cta-section p {
    font-size: 16px;
}

/* CTA BOXES */
.cta-section .border {
    border-radius: 18px !important;
    border: 1px solid #e5e7eb !important;
    background: #ffffff;
    transition: all 0.3s ease;
}

.cta-section .border:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

/* LIST STYLING */
ul {
    padding-left: 18px;
}

ul li {
    margin-bottom: 10px;
    color: #374151;
}

/* CTA BUTTON COLORS */
.btn-primary {
    background: #0d6efd;
    border: none;
}

.btn-success {
    background: #25d366;
    border: none;
}

.btn-dark {
    background: #111827;
    border: none;
}

/* SOCIAL ICONS */
.list-inline-item a {
    font-size: 18px;
    color: #111827;
    transition: all 0.3s ease;
}

.list-inline-item a:hover {
    color: #0d6efd;
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hero-section h1 {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .hero-section img {
        max-height: 280px;
    }

}