
/* =========================== */
/* 1. HERO SECTION             */
/* =========================== */

.hero-bg {
    background-color: #F4F2FA; /* aqua haze */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg .container-fluid,
.hero-bg .row {
    height: 100%;
}

.hero-bg .col-lg-6 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: var(--size-one);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-image {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
    .hero-bg .col-lg-6 {
        padding-top: 2rem;
        padding-bottom: 2rem;
        height: auto;
    }
    .service-card {
        max-width: 90%;
        margin: 0 auto 2rem;
    }
}

/* =========================== */
/* 2. BLOG SECTION             */
/* =========================== */

/* =========================== */
/* 3. FREEBIES SECTION         */
/* =========================== */

/* =========================== */
/* 4. WHAT I OFFER             */
/* =========================== */

/* =========================== */
/* 5. GET TO KNOW ME           */
/* =========================== */

/* =========================== */
/* 6. GET IN TOUCH             */
/* =========================== */

/* =========================== */
/* 7. NEWSLETTER SIGN UP       */
/* =========================== */


#newsletterModal .modal-content {
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Subtle shadow */
}