/* Reset and Base Styles */
html {
    scroll-behavior: smooth; /* 👈 enables smooth scrolling */
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #95fcf3;
    color: #ffffff;
  }
  
  /* Logo Header */
  header {
    background-color: #ffffff;
    padding: 0px 0 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #ffffff33;
  }
  
  header .logo {
    width: auto;
    max-height: 200px;
    height: auto;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 20px;
  }
  
  header .logo {
    max-height: 100px; /* Adjust smaller to fit nicely with text */
  }
  
  .header-title {
    color: #000000; /* matches your site's theme */
    font-size: 2em;
    font-weight: bold;
    margin-left: 20px; /* Adds spacing between logo and text */
    flex: 1;
    text-align: right; /* Fills header neatly */
  }
  
  
  /* Sticky Navigation */
  nav {
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  nav li {
    margin: 0 15px;
  }
  
  nav a {
    display: block;
    color: #8cff00;
    text-decoration: none;
    padding: 15px 10px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  nav a:hover {
    background-color: #2e2e2e;
    border-radius: 5px;
  }
  
  /* Main Content */
  main {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    background-color: #000000;
    color: #333;
    border-radius: 8px;
  }
  
  /* Services Section */
  #services {
    padding: 40px 20px;
    text-align: center;
  }
  
  #services h2 {
    margin-bottom: 30px;
    color: #a8ff3e;
  }
  
  .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .service-card {
    background-color: #1a1a1a;
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    background-color: #2b2b2b;
  }
  
  .service-card h3 {
    margin-top: 0;
    color: #a8ff3e;
  }
  
  /* About and Contact Sections */
  section {
    margin-bottom: 40px;
  }
  
  section h2 {
    color: #a8ff3e;
  }
  
  /* Contact Form */
  #contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
  }
  

#contact-form label {
  margin-top: 15px;
  font-weight: bold;
  color: #ffffff;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-top: 5px;
  font-size: 1em;
}


#contact-form button {
  margin-top: 20px;
  padding: 12px;
  border: none;
  background-color: #a8ff3e;
  color: black;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

#contact-form button:hover {
  background-color: #c8ff6a;
}

#service-request {
    padding: 40px 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 700px;
    color: white;
  }
  
  #service-request h2 {
    text-align: center;
    color: #a8ff3e;
    margin-bottom: 10px;
  }
  
  #service-request-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }
  
  #service-request-form label {
    margin-top: 15px;
    font-weight: bold;
  }
  
  #service-request-form input,
  #service-request-form select,
  #service-request-form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 5px;
    font-size: 1em;
  }
  
  #service-request-form button {
    margin-top: 20px;
    padding: 12px;
    border: none;
    background-color: #a8ff3e;
    color: black;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  #service-request-form button:hover {
    background-color: #c8ff6a;
  }
  

/* Footer */
footer {
  background-color: #1a1a1a;
  color: rgb(44, 236, 51);
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

/* Contact Info */
.contact-info {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: white;
}

.contact-info a {
  color: #a8ff3e;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ✅ Mobile Optimization */
@media (max-width: 768px) {
  header .logo {
    max-height: 150px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav li {
    margin: 10px 0;
  }

  .service-list {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }

  main {
    padding: 10px;
  }

  #contact-form {
    width: 90%;
  }

  section {
    padding: 0 10px;
  }
}
.family-photo {
    display: block;
    max-width: 200px;
    margin: 20px auto;
    border-radius: 10px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgb(24, 3, 3);
  }
  .family-photo.float-right {
    float: right;
    margin: 0 0 20px 20px;
    max-width: 250px;
  }
  .gallery-row {
    overflow: hidden;
    margin-bottom: 40px;
    padding: 0 10px;
    text-align: left;
  }
  .gallery-row {
    color: white;
  }
  
  .gallery-row p {
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 12px;
    border-radius: 8px;
  }
  
  
  
  .gallery-photo {
    float: right;
    max-width: 250px;
    margin-left: 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  /* Make images stack on small screens */
  @media (max-width: 768px) {
    .gallery-photo {
      float: none;
      display: block;
      margin: 0 auto 20px;
    }
  
    .gallery-row {
      text-align: center;
      color: white;
    }
  }
  .gallery-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding: 0 10px;
  }
  
  .gallery-half {
    width: 180px; /* ⬅️ smaller so two fit easily */
    max-width: 100%;
    border-radius: 10px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  
  .gallery-text {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    color: white;
    font-size: 1.05em;
    text-align: center;
  }
  
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .gallery-split {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .gallery-half {
      width: 90%;
    }
  
    .gallery-text {
      padding: 10px 0;
    }
  }
  .call-now-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #a8ff3e;
    color: black;
    font-weight: bold;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
    transition: background 0.3s;
  }
  
  .call-now-btn:hover {
    background-color: #c8ff6a;
  }
  
  /* Show only on mobile */
  @media (max-width: 768px) {
    .call-now-btn {
      display: block;
    }
  }
  #about p {
    color: #ffffff;
  }
  /* Big green text with white outline under nav bar */
.welcome-banner {
    text-align: center;
    font-size: 4em; /* Adjust size to preference */
    font-weight: bold;
    color: #5c9614; /* green color */
    padding: 0px 0;
    text-shadow:
      -1px -1px 0 #72dc09,
      1px -1px 0 #ffffff,
      -1px 1px 0 #ffffff,
      1px 1px 0 #ffffff; /* white outline effect */
    background-color: #000; /* Matches your site's main theme */
  }
  
  /* Add green outline to header title text */
  .header-title {
    color: #00af00; /* your existing green color */
    font-size: 2em;
    font-weight: bold;
    margin-left: 20px;
    flex: 1;
    text-align: right;
    text-shadow:
      -1px -1px 0 #000000,
      1px -1px 0 #000000,
      -1px 1px 0 #000000,
      1px 1px 0 #000000; /* green outline effect */
  }
  