/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header styles */
header {
    background-color: #f8a5c2;;
    color: #ffffff;
    padding: 10px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero section styles */
.hero {
    background-image: url('/img/front.jpg'); /* Update this with the correct image URL */
    background-size: cover; /* Ensures the background image covers the section */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    min-height: 400px; /* Ensures the hero section has some height */
}

/* Hero text styles */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adds a shadow for better readability */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Adds a shadow for better readability */
}

/* Call-to-action button styles */
.cta-button {
    background-color: #eb6a95;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #c2185b;
}

/* Services section styles */

.services {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .service-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }




.services {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}


.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.phone-number {
    color: white;
    text-decoration: none;  /* Removes underline */
    -webkit-text-fill-color: white;  /* For iOS */
  }

  .light-text li {
    color: #888;
  }
  
  /* Basic styling */
.popup {
    display: none; 
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
  }
  
  .popup-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 700px;
  }
  
  #closePopup {
    position: absolute;
    top: -20px;
    right: -20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
  }
  
