@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary-pink: #FF4B91;
    --primary-cyan: #06B6D4;
    --dark-text: #1F2937;
    --light-text: #6B7280;
    --bg-pink: #FDECF4;
    --bg-cyan: #E0F7FA;
    --white: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--bg-pink) 0%, var(--bg-cyan) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Master Page Layout Helper */
form#form1 {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
    width: 100%;
}

/* Navigation */
.navbar {
    padding: 20px 5%;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-pink) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
   width:300px;
   position:absolute;
   top:-90px;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    transition: color 0.3s;
    margin-left: 20px;
}

.nav-link:hover {
    color: var(--primary-pink) !important;
}

/* Hero Section Styles */
.hero {
        min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: -160px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-pink);
}

.hero p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 35px;
}

.hero-image {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-custom-primary {
    background-color: var(--primary-pink);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 10px 20px rgba(255, 75, 145, 0.3);
}

.btn-custom-primary:hover {
    background-color: #ff3380;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 75, 145, 0.4);
}

.btn-custom-white {
    background-color: white;
    color: var(--primary-pink);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.btn-custom-white:hover {
    transform: translateY(-3px);
    color: var(--primary-pink);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.section-tag {
    color: var(--primary-cyan);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.feature-card {
    padding: 50px 30px;
    background: #fbfdff;
    border-radius: 35px;
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, var(--primary-pink), #ff75a8);
    border-radius: 50px;
    color: white;
    text-align: center;
    margin-bottom: 100px;
}

/* Footer */
footer {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
    margin-top: auto;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.footer-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
}

.navbar-toggler-icon {
    width: 2.5em !important;
    height: 2.5em !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-brand img {
        width: 100px;
        position: absolute;
        top: 0px;
    }

    .hero-image {
        margin-top: 40px;
    }


}

/* Mobile Font Optimization */
@media (max-width: 576px) {
    .navbar-brand img {
        width: 40px;
        position: absolute;
        top: -90px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.35rem;
    }
    .h3 {
        font-size: 1.1rem;
    }
}

/* Deskop Typography Helpers */
.section-title {
    font-size: 2.5rem;
}