 /* --- General Styles & Variables --- */
:root {
    --primary-color: #e88b8b;
    --secondary-color: #77c6c0;
    --dark-color: #4a4a4a;
    --light-color: #fdfaf6; /* Warmer off-white */
    --text-color: #6c6c6c;
    --font-family: 'Poppins', sans-serif;
    --heading-font: 'Lora', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

   
    .coming-soon::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.45);
    }

    .coming-soon-content {
      position: relative;
      z-index: 1;
      color: white;
      max-width: 650px;
    }
.coming-soon-content h2 {
     
      color: white;

    }

    .coming-soon h2 {
      font-size: 3rem;
      margin-bottom: 15px;
      color: #fff;
    }

    .coming-soon p {
      font-size: 1.2rem;
      line-height: 1.6;
    }
 



.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    color: var(--dark-color);
    font-family: var(--heading-font);
    font-weight: 600;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

/* --- Header & Navigation --- */
header {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

    .nav-contact-item a {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-contact-item a span {
        color: var(--dark-color);
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .nav-contact-item i {
        color: #25D366; /* WhatsApp Green */
        font-size: 1.3rem;
        transition: color 0.3s ease;
    }
    
    .nav-contact-item a:hover span, .nav-contact-item a:hover i {
        color: var(--secondary-color); /* Match other nav link hover */
    }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #d97a7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-cta {
    background: var(--secondary-color);
}

.nav-cta:hover {
    background: #63b1ab;
}

/* --- Hero Section --- */
#hero {
    /* Placeholder image from Unsplash - replace with your own! */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('pregnant-woman-holding-baby-bump (1).jpg');
    background-size: cover;
    background-position: center 30%;
    text-align: center;
    padding: 120px 0;
    color: #fff;
}

#blog {
    /* Placeholder image from Unsplash - replace with your own! */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('image_bolg.jpg');
    background-size: cover;
    background-position: center 30%;
    text-align: center;
    padding: 120px 0;
    color: #fff;
}
 .coming-soon {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background: url('image_bolg.jpg') no-repeat center/cover;
      color: white;
      position: relative;
    }
 #tips {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
     
   background: url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
    
        color: white;
      position: relative;
    }

#hero h1, #hero p {
    color: #fff;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

.cta-prompt {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
}

.newsletter-form input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 1rem;
    outline: none;
    color: var(--text-color);
}

/* --- Features Section --- */
#features {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* --- About Section --- */
#about {
    background: var(--light-color);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-content h2 {
    text-align: left;
}

/* --- Contact Section --- */
#contact {
    background: #fff; /* Use white to contrast with the about section */
    text-align: center;
}

#contact p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    font-family: var(--font-family);
    font-size: 1rem;
    background: var(--light-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 5px;
    border-left: 5px solid var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author span {
    font-weight: 600;
    color: var(--dark-color);
}

/* --- Final CTA Section --- */
.cta-final {
    background: var(--primary-color);
    text-align: center;
    color: #fff;
}

.cta-final h2, .cta-final p {
    color: #fff;
}

.cta-final .cta-button {
    background: #fff;
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-final .cta-button:hover {
    background: var(--light-color);
    color: #c76c6c;
}

/* --- Footer --- */
footer {
    background: #3a3a3a; /* Slightly lighter dark color */
    color: #ccc;
    padding: 30px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer .social-links a {
    color: #ccc;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer .social-links a:hover {
    color: var(--primary-color);
}

footer p {
    margin: 0;
    color: #aaa;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .nav-contact-item a {
        display: inline-flex; /* Center the flex container itself */
    }

    .menu-toggle {
        display: block;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 10px;
    }

    .features-grid,
    .testimonials-grid,
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-image {
        margin-bottom: 20px;
    }

    /* Footer responsive rules are handled by flexbox direction */
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }


  /* Reuse your existing about styles */
  .btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: #e78a96;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  .btn:hover {
    background: #d56b7a;
  }
  .btn-group a {
    margin-right: 10px;
  }
    /* Form Container */
    .form-container {
      flex: 1;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    iframe {
      width: 100%;
      max-width: 800px;
      height: 90vh;
      border: none;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
