.img-fluid {
    transition: .8s ease;
}

.img-fluid:hover {
    transform: translateY(-30px)
}
/* --- GLOBAL SETTINGS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, .logo {
    font-family: 'Merriweather', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

/* --- NAVIGATION --- */
.main-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #e91e63;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #e91e63;
}

/* Hide Checkbox & Hamburger by default (PC) */
#menu-toggle-checkbox, .menu-toggle {
    display: none;
}

/* Buttons */
.btn {
    padding: 12px 25px;
    background: #e91e63;
    color: #fff !important;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e91e63;
    color: #e91e63 !important;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }

/* --- GRID LAYOUTS (Desktop) --- */
.steps-grid, .profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card, .profile-card, .testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.profile-card { padding: 0; overflow: hidden; }
.profile-card img { width: 100%; height: 250px; object-fit: cover; }
.profile-card-body { padding: 20px; }

/* --- FOOTER --- */
.site-footer { background: #222; color: #fff; padding: 50px 0 20px; }
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.footer-section a { color: #bbb; text-decoration: none; }
.social-icons a { font-size: 20px; margin-right: 15px; color: #fff; }

/* ======================================================
   MOBILE RESPONSIVENESS (Media Query)
   ====================================================== */

@media (max-width: 768px) {
    /* Navbar Mobile Logic */
    .menu-toggle {
        display: block; /* Show hamburger icon */
        cursor: pointer;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%; /* Hidden by default */
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        justify-content: center;
        transition: 0.5s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links li {
        margin: 20px 0;
    }

    /* Checkbox Trick to open menu */
    #menu-toggle-checkbox:checked ~ .nav-links {
        left: 0;
    }

    /* Hamburger Animation (Optional) */
    .bar {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 5px;
    }

    /* Hero Text Adjustments */
    .hero h1 { font-size: 2.5rem; }
    
    /* Grid Adjustments */
    .steps-grid, .profiles-grid, .footer-container {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
}
#box1 {
    height: 350px;  
    width: 350px;
    border: 0px solid black;
    border-radius: 50%;
    box-shadow: 5px 5px 20px rgb(125, 100, 62);
    background-color: rgb(247, 228, 205);
    transition: .8s ease;
}

#abc {
    height: 400px;
    width: 500px;
    border: 1px solid black;
}

/* --- Color Palette (Add this to your main CSS or :root) --- */
:root {
    --primary-pink: #E57399;
    --darker-pink: #D85C83;
    --lightest-pink: #FFF0F5;
    --form-bg: rgba(249, 212, 219, 0.95);
    /* Using this for the footer */
    --border-pink: #FFDDE1;
    --text-dark: #444;
    --text-light: #665;
}

/* --- Font Imports (Ensure these are in your main CSS) --- */
/*
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;700&family=Lato:wght@300;400;700&display=swap');
*/
/* --- Proper Footer Design --- */
.site-footer {
    /* Ensure body font-family is set, e.g., font-family: 'Lato', sans-serif; */
    background-color: var(--form-bg);
    color: var(--text-light);
    padding: 45px 0 0;
    font-size: 15px;
    line-height: 24px;
    border-top: 1px solid rgba(216, 92, 131, 0.1);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.footer-container {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Section 1: Logo & About */
.footer-section.about {
    flex-basis: 100%;
    /* Full width on small screens */
    margin-bottom: 20px;
}

.footer-logo {
    font-family: 'Merriweather', serif;
    /* Specify logo font */
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--darker-pink);
    text-decoration: none;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-section.about p {
    margin: 0;
    max-width: 380px;
}

/* Sections 2 & 3: Link Lists */
.footer-section.links {
    flex-basis: 45%;
    /* Two columns on small screens */
}

.footer-section h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 50px;
    background-color: var(--primary-pink);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--primary-pink);
    text-decoration: underline;
}

/* Section 4: Social Media */
.footer-section.social {
    flex-basis: 100%;
    /* Full width on small screens */
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 12px;
    padding: 0;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--primary-pink);
    border: 1px solid var(--border-pink);
    border-radius: 50%;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-pink);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary-pink);
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(216, 92, 131, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

/* --- Responsive Design --- */
@media (min-width: 768px) {
    .footer-section.about {
        flex-basis: 40%;
    }

    .footer-section.links {
        flex-basis: 25%;
    }

    .footer-section.social {
        flex-basis: 100%;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .footer-section.about {
        flex-basis: 40%;
        margin-bottom: 0;
    }

    .footer-section.links {
        flex-basis: 20%;
        margin-bottom: 0;
    }

    .footer-section.social {
        flex-basis: 15%;
        margin-bottom: 0;
        text-align: left;
    }
}

        /* --- Color Palette (Light Pink Theme) --- */
        :root {
            --primary-pink: #E57399;
            /* A soft, clear pink */
            --darker-pink: #D85C83;
            /* For headings and accents */
            --lightest-pink: #FFF0F5;
            /* Lavender Blush for backgrounds */
            --border-pink: #FFDDE1;
            /* Light pink for subtle borders */
            --text-dark: #444;
            --text-light: #665;
            --white: #ffffff;
            --overlay-dark: rgba(40, 20, 30, 0.5);
            /* A slightly pink-tinted dark overlay */
        }

        /* --- Base Styles --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: var(--white);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow-x: hidden;
            /* Prevent horizontal scroll */
        }

        main {
            flex-grow: 1;
            /* Ensures main content pushes footer down */
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Merriweather', serif;
            color: var(--darker-pink);
            margin-bottom: 0.75em;
            line-height: 1.3;
        }

        p {
            margin-bottom: 1.25em;
            color: var(--text-light);
        }

        a {
            color: var(--primary-pink);
            text-decoration: none;
        }

        /* --- Utility Classes --- */
        .container {
            width: 90%;
            max-width: 1140px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-pink);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-align: center;
        }

        .btn:hover {
            background-color: var(--darker-pink);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--darker-pink);
            border: 2px solid var(--darker-pink);
        }

        .btn-outline:hover {
            background-color: var(--darker-pink);
            color: var(--white);
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            text-align: center;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 50px auto;
        }

        /* --- Header / Navigation Bar --- */
        .main-header {
            background-color: rgba(255, 255, 255, 0.98);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-pink);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
            max-width: 1140px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Merriweather', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--darker-pink);
            text-decoration: none;
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-pink);
        }

        .nav-links .btn {
            padding: 8px 20px;
        }

        /* Hamburger menu for mobile */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle .bar {
            width: 25px;
            height: 3px;
            background-color: var(--darker-pink);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ADDED: Hide the checkbox */
        #menu-toggle-checkbox {
            display: none;
        }

        /* --- Hero Section --- */
        .hero {
            background-image: url('../images/wp4075826.jpg');
            background-size: cover;
            background-position: center 30%;
            color: var(--white);
            padding: 120px 0;
            position: relative;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay-dark);
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- How It Works Section --- */
        .how-it-works {
            background-color: var(--lightest-pink);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .step-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            border: 1px solid var(--border-pink);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .step-card .icon {
            font-size: 3rem;
            color: var(--primary-pink);
            margin-bottom: 20px;
        }

        .step-card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        /* --- Featured Profiles Section --- */
        .featured-profiles {
            background-color: var(--white);
        }

        .profiles-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .profile-card {
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-pink);
        }

        .profile-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .profile-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .profile-card-body {
            padding: 20px;
        }

        .profile-card h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .profile-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
            color: var(--text-light);
        }

        /* --- Testimonials Section --- */
        .testimonials {
            background-color: var(--lightest-pink);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 1px solid var(--border-pink);
        }

        .testimonial-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--border-pink);
        }

        .testimonial-card p {
            font-style: italic;
            font-size: 1.05rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .testimonial-card .author {
            font-weight: 700;
            color: var(--darker-pink);
            font-size: 1.1rem;
            font-family: 'Merriweather', serif;
        }

        /* --- Call to Action (CTA) Section --- */
        .cta {
            background-image: url('https://images.unsplash.com/photo-1515934751635-c81c6bc9a2d8?q=80&w=2070&auto-format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 100px 0;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay-dark);
        }

        .cta .container {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 2.8rem;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- Footer (from previous design) --- */
        .site-footer {
            background-color: rgba(255, 245, 247, 0.95);
            color: var(--text-light);
            padding: 45px 0 0;
            font-size: 15px;
            line-height: 24px;
            border-top: 1px solid var(--border-pink);
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
        }

        .footer-container {
            width: 90%;
            max-width: 1140px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-section {
            padding: 0 15px;
            margin-bottom: 30px;
        }

        .footer-section.about {
            flex-basis: 100%;
            margin-bottom: 20px;
        }

        .footer-logo {
            font-family: 'Merriweather', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--darker-pink);
            text-decoration: none;
            line-height: 1;
            margin-bottom: 15px;
            display: inline-block;
        }

        .footer-section.about p {
            margin: 0;
            max-width: 380px;
        }

        .footer-section.links {
            flex-basis: 45%;
        }

        .footer-section h4 {
            color: var(--text-dark);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            height: 2px;
            width: 50px;
            background-color: var(--primary-pink);
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul a:hover {
            color: var(--primary-pink);
            text-decoration: underline;
        }

        .footer-section.social {
            flex-basis: 100%;
            text-align: left;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            padding: 0;
        }

        .social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: white;
            color: var(--primary-pink);
            border: 1px solid var(--border-pink);
            border-radius: 50%;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--primary-pink);
            color: white;
            transform: translateY(-2px);
            border-color: var(--primary-pink);
        }

        .footer-bottom {
            padding: 20px 0;
            margin-top: 30px;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.5);
            border-top: 1px solid var(--border-pink);
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.9rem;
            color: #777;
        }

        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .profiles-grid {
                grid-template-columns: 1fr 1fr;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .footer-section.about,
            .footer-section.links,
            .footer-section.social {
                flex-basis: 45%;
                text-align: left;
            }

            .footer-section.social {
                flex-basis: 100%;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 69px;
                /* Height of header */
                left: 0;
                right: 0;
                background-color: var(--white);
                flex-direction: column;
                align-items: stretch;
                padding: 10px 0;
                gap: 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
                border-top: 1px solid var(--border-pink);

                /* Hide by default */
                transform: translateY(-10px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            /* REPLACED .nav-links.active */
            #menu-toggle-checkbox:checked~.nav-links {
                display: flex;
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 12px 20px;
                text-align: center;
                width: 100%;
            }

            .nav-links .btn {
                margin: 10px 20px;
            }

            .nav-links li:last-child {
                border-top: 1px solid var(--border-pink);
                padding-top: 10px;
            }

            .menu-toggle {
                display: flex;
            }

            /* REPLACED .menu-toggle.active ... */
            #menu-toggle-checkbox:checked~.menu-toggle .bar:nth-child(1) {
                transform: rotate(45deg) translate(5px, 6px);
            }

            #menu-toggle-checkbox:checked~.menu-toggle .bar:nth-child(2) {
                opacity: 0;
            }

            #menu-toggle-checkbox:checked~.menu-toggle .bar:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -6px);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .profiles-grid {
                grid-template-columns: 1fr;
            }

            .footer-section.about,
            .footer-section.links,
            .footer-section.social {
                flex-basis: 100%;
                text-align: center;
            }

            .footer-logo {
                margin-left: auto;
                margin-right: auto;
            }

            .footer-section h4 {
                text-align: center;
            }

            .footer-section h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-section ul {
                align-items: center;
            }

            .social-icons {
                justify-content: center;
            }
        }

        @media (min-width: 993px) {
            .footer-section.about {
                flex-basis: 40%;
                margin-bottom: 0;
            }

            .footer-section.links {
                flex-basis: 20%;
                margin-bottom: 0;
            }

            .footer-section.social {
                flex-basis: 15%;
                margin-bottom: 0;
                text-align: left;
            }
        }
   