@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Header */
header {
    width: 100%;
    background: white;
    padding: 4px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 130px;
}

.logo-subtitle {
  display: block; 
  text-align: center; 
  font-size: 11.7px;
  font-weight: 500; 
  color: #555;
  letter-spacing: 0.5px; 
}


nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 15.5px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #2aea90;
}


.call-btn {
    background-color: #2aea90;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16.2px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.call-btn:hover {
    background-color: #17ae68; /* Lighter red-orange on hover */
    border: 1.4px solid black;
}

.hamburger {
    font-size: 34px;
    display: none;
    cursor: pointer;
    color: black;
    border-radius: 7px;
    
}

/* Mobile Menu Styling */
.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.95); /* Semi-transparent white */
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100vh; /* Full-screen menu */
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999; /* Ensure it's above all other elements */
    overflow-y: auto; /* Allow scrolling inside the menu */
    transition: color 0.3s ease-in-out;
    margin-top: 50px;
}

.mobile-menu ul li a:hover {
    color: #2aea90;
}

.mobile-menu ul {
    list-style: none;
    padding-top: 30px;
}

.mobile-menu ul li {
    padding: 15px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
}



/* Hero Section */
.hero {
    background-image: url('../img/s3.webp'), url('../img/s3.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 60px; /* Prevent overlap with sticky navbar */
    transition: opacity 0.3s ease-in-out;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 54px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 35px;

}

.hero p {
    font-size: 19px;
    font-weight: bold;
}

.hero h2 {
  margin-top: 20px;
  font-size: 26px;
  color: white;
}


.h-btn {
  display: block; /* Makes the button a block element */
    margin: 20px auto; /* Centers the button horizontally */
    padding: 12px 20px;
    background-color: #2aea90;
    color: white;
    margin-top: 30px;
    border: none;
    font-size: 20px;
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.h-btn:hover {
  background-color: #17ae68; /* Darker shade on hover for better interaction feedback */
  border: 1.2px solid black;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .call-btn {
        display: none;
        font-size: 7px;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero{
      height: 520px;
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero h2 {
      font-size: 1.56em;
  

  }

    .hero p {
        font-size: 1.1em;
    }

    .h-btn{
      font-size: 17px;
    }
}



/* About Us Section */
.about-us {
    padding: 50px 20px;
    background-color: #f7f7f7;
    text-align: center;
  }
  
  .about-us h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .about-us p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 800px;
  }
  
  .about-us .about-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 20px;
    background-color: #2aea90;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .about-us .about-btn:hover {
    background-color: #17ae68;
    color: white;
    border: 1.1px solid black;
  }

  @media (max-width: 768px) {
    .about-us h1 {
      font-size: 2.5rem;
    }
  
    .about-us p {
      font-size: 1.24rem;
      width: 100%;
    }
  
    .about-us .about-btn {
      font-size: 1rem;
    }
  }

  

/* Proof of Services Section */
.proof-of-services {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .proof-of-services h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
  }
  
  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
  }
  
  .card {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .card video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .card-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #2aea90;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .card-btn:hover {
    background-color: #17ae68;
    color: white;
    border: 1.1px solid black;
  }
  
  /* Icon Card */
  .icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2aea90;
  }

  
  @media (max-width: 768px) {
    .proof-of-services h2 {
      font-size: 1.5rem;
    }
  
    .card h3 {
      font-size: 1.5rem;
    }
  
    .card p {
      font-size: 1.24rem;
    }
  
    .card-btn {
      font-size: 1rem;
    }

    .icon-card p{
      font-size: 1.24em;
      font-weight: 400;
    }
  }



 /* SERVICES SECTION */

.services h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: center;
}
.subtitle {
    font-size: 1.4em;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}
.service-card {
    background: #f0efefcf;
    padding: 20px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card i {
    font-size: 2em;
    color: #2aea90;
    margin-bottom: 10px;
}
.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.service-card p {
    color: #555;
    font-size: 1.1em;
}
.cta {
    font-size: 2em;
    margin-top: 40px;
    font-weight: bold;
    color: black;
    text-align: center;
}
.cta strong {
    color: #2aea90;
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 2fr));
    }

    .service-card{
      padding: 10px;
      margin-left: 15px;
      margin-right: 15px;
    }

    .service-card i{
      font-size: 1.8em;
    }

    .service-card h3{
      font-size: 1.7em;
    }

    .service-card p{
      font-size: 1.25em;
    }

    .services h2{
      font-size: 2.3em;
    }

    .subtitle{
      font-size: 1.2em;
    }

    .cta{
      font-size: 22.5px;
    }
}


/* Service Area near me Section */
.section {
  background-color: #f0efefcf;
  color: #222;
  padding: 60px 20px;
  width: 100%;

}

.section h2 {
  font-size: 2em;
  margin-bottom: 20px;

}
.content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.column {
  flex: 1;
  min-width: 300px;
  text-align: left;
  padding: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.column p{
  font-size: 17.5px;
}

.image-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .content-container {
      flex-direction: column;
  }

  .column p{
    font-size: 1.25em;
  }

  .column h3{
    font-size: 1.35em;
  }

  .section h2{
    font-size: 2em;
  }

  .image-container h3{
    font-size: 1.35em;
  }

  .image-container p{
    font-size: 1.25em;
  }
}
  


/* Working With Us Section */
.working-with-us {
    padding: 50px 20px;
    background: linear-gradient(to left, white, rgba(190, 188, 188, 0.4)) 120%, url('../img/s2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensures responsiveness */
  }
  
  .image-container {
    position: relative;
    max-width: 400px;
    width: 100%;
  }
  
  .before-image,
  .after-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .after-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
  }
  
  .image-container:hover .after-image {
    opacity: 1; /* Show the 'after' image on hover */
  }
  
  .content {
    max-width: 500px;
    width: 100%;
    text-align: left;
  }
  
  .content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .content ul {
    list-style: none;
    padding: 0;
  }
  
  .content ul li {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 15px;
    padding-left: 25px;
    font-weight: bold;
    position: relative;
  }
  
  .content ul li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    color: #f9a825;
    font-size: 1.2rem;
    line-height: 1;
  }
  
  @media (max-width: 768px) {
    .content-container {
      flex-direction: column; /* Stack image and content */
    }
  
    .content {
      text-align: center;
    }
  
    .content h2 {
      font-size: 1.6rem;
    }
  
    .content ul li {
      font-size: 1.3rem;
    }
  }




  /* Contact Us Section */
.contact-us-section {
    padding: 50px 20px;
    background-color: white;
    position: relative;
    text-align: center;
  }
  
  .contact-us-wrapper {
    max-width: 650px;
    margin: 0 auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
  }
  
  .contact-header {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 10px;
  }
  
  .contact-description {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 540;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  
  .form-group {
    text-align: left;
    color: white;
  }
  
  .form-group label {
    font-size: 6rem;
    color: white;
    margin-bottom: 5px;
    display: inline-block;
    font-weight: bold;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #f9a825;
    background: #fff;
    box-shadow: 0 0 5px rgba(249, 168, 37, 0.3);
  }
  
  textarea {
    resize: none;
  }
  
  .submit-button {
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background-color: #2aea90;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .submit-button:hover {
    transform: translateY(-3px);
    background-color: #17ae68;
    border: 1.1px solid black;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-header {
      font-size: 2.4rem;
    }
  
    .contact-description {
      font-size: 1.2rem;
    }
  
    .form-group input,
    .form-group textarea {
      font-size: 1.3rem;
    }

    .form-group label {
      font-size: 1.5em;
    }
  
    .submit-button {
      font-size: 1rem;
    }
  }



.footer-section {
    background-color: black;
    color: white;
    padding: 60px 20px;
    width: 100%;
}
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    color: white;
}
.footer-column {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding: 20px;
    color: white;
}
.footer-column h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: white;
}

.logo-subtitlee {
  display: block; /* Ensures it appears beneath the logo */
  text-align: center; /* Centers it under the logo */
  font-size: 14px; /* Adjust size for readability */
  font-weight: 500; /* Slightly bold for emphasis */
  color: white; /* A subtle, professional color */
  margin-top: 5px; /* Adds spacing between logo and subtitle */
  letter-spacing: 0.5px; /* Slightly spaced-out letters for clarity */
  margin-right: 214.5px;
  margin-bottom: 20px;
}

.footer-column p, .footer-column a {
    font-size: 1em;
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    color: white;
}
.footer-column a:hover {
    color: #2aea90;
}
.footer-logo img {
    width: 120px;
}
.copyright {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    width: 100%;
}
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .logo-subtitlee{
      text-align: center;
      margin-right: 268px;
      font-size: 13px;
    }
}



.dopyright {
  background-color: white;
  color: black;
  text-align: center;
  padding: 3px;
  font-size: 1.2em;
  width: 100%;
  border: 1.2px solid #f9f9f9
}

.cta {
  font-size: 1.85em;
  margin-top: 40px;
  font-weight: bold;
  color: black;
  text-align: center;
}
.cta strong {
  color: #2aea90;
}
@media (max-width: 768px) {
  .dopyright{
    font-size: 0.9em;
  }
}

/* Bero Section */
.bero-section {
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('../img/s3.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 90px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px; /* Small section as requested */

  }
  
  .bero-content {
    max-width: 900px;
    margin-top: 100px;
  }
  
  .bero-content h1 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 10px;
  }
  
  .bero-content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .bero-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #2aea90;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .bero-button:hover {
    background-color: #17ae68;
    border: 1.4px solid black;
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .bero-section {
      height: auto;
      padding: 10px 10px;
    }
  
    .bero-content h1 {
      font-size: 1.9rem;
    }
  
    .bero-content p {
      font-size: 1.13rem;
    }
  
    .bero-button {
      font-size: 1.1rem;
      padding: 10px 15px;
    }
  }
  


  #testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  #testimonials h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: black;
  }
  
  .testimonial-slider {
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: 0 auto 20px;
    overflow: hidden;
  }
  
  .testimonial {
    display: none;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial.active {
    display: block;
  }
  
  .testimonial p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #555;
  }
  
  .testimonial h3 {
    font-size: 1em;
    color: #333;
  }
  
  .controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .control-btn {
    padding: 10px 20px;
    font-size: 1em;
    background: #2aea90;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .control-btn:hover {
    background: #17ae68;
    border: 1.1px solid black;
  }
  





  #About-us {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
    color: #333;
  }
  
  .About-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  #About-us h2 {
    font-size: 2.3em;
    color: black;
    margin-bottom: 20px;
  }
  
  #About-us p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
  }
  
  .About-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .highlight {
    flex: 1 1 30%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  .highlight h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
  }
  
  .highlight p {
    font-size: 1em;
    color: #666;
  }
  
  
  .About-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1em;
    background: #2aea90;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .About-btn:hover {
    background: #17ae68;
    border: 1.1px solid black;
  }
  
  /* Small Screens (Phones) */
@media (max-width: 480px) {
    #About-us h2 {
      font-size: 2.4em;
    }
  
    #About-us p {
      font-size: 1.25em;
      margin-bottom: 20px;
    }
  
    .About-highlights{
      font-size: 0.5em;
    }

    .highlight {
      padding: 40px;
    }
  
    .highlight h3 {
      font-size: 1.5em;
    }
  
    .highlight p {
      font-size: 10em;
    }
  
    .About-btn {
      font-size: 1.35em;
      padding: 8px 15px;
      font-weight: 501;
    }
  }



 /* Pricing Section */
#pricing {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
    color: #333;
  }
  
  .pricing-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  #pricing h1 {
    font-size: 2.5em;
    color: black;
    margin-bottom: 20px;
  }
  
  #pricing p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555;
  }
  
  .pricing-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  /* Pricing Card */
  .pricing-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: left;
    position: relative;
    flex: 1 1 300px; /* Allows flexible sizing */
    max-width: 350px;
  }
  
  .pricing-card h2 {
    font-size: 1.8em;
    color: black;
    margin-bottom: 15px;
  }
  
  .pricing-card p {
    font-size: 1em;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  
  .pricing-card ul li {
    font-size: 0.9em;
    margin-bottom: 10px;
  }
  
  .pricing-card ul li strong {
    color: #333;
  }
  
  .price {
    font-size: 1.2em;
    font-weight: bold;
    color: black;
    margin: 20px 0;
  }
  
  .pricing-btn {
    display: block;
    padding: 10px 20px;
    text-align: center;
    font-size: 1em;
    color: #fff;
    background: #2aea90;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .pricing-btn:hover {
    background: #17ae68;
    border: 1.1px solid black;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #pricing h1 {
      font-size: 3em;
    }
  
    .pricing-card {
      width: 100%; /* Make cards take full width on small screens */
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    #pricing h1 {
      font-size: 2.4em;
    }
  
    #pricing p {
      font-size: 1.24em;
      font-weight: 430;
    }

    .pricing-container h1{
      font-size: 2.4em;
    }
  
    .pricing-card {
      padding: 15px;
    }

    .pricing-card ul li{
      font-size: 1.23em;
    }

    .pricing-btn {
      padding: 8px 15px;
      font-size: 1.35em;
      font-weight: 501;
    }
  }
  


/* Contact Section */
#contact-us {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .contact-container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  #contact-us h1 {
    font-size: 2.7em;
    color: black;
    margin-bottom: 10px;
  }
  
  #contact-us p {
    font-size: 1.25em;
    color: #555;
    margin-bottom: 40px;
  }
  
  /* Contact Content - Two Column Layout */
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .contact-info-box,
  .contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  /* Contact Info Box */
  .contact-info-box h2 {
    font-size: 1.5em;
    color: black;
    margin-top: 15px;
  }
  
  .contact-info-box p {
    font-size: 1.1em;
    color: #555;
  }
  
  .contact-info-box ul {
    list-style: none;
    padding: 0;
  }
  
  .contact-info-box ul li {
    font-size: 1.1em;
    margin-bottom: 8px;
  }
  
  /* Contact Form Box */
  .contact-form-box h2 {
    font-size: 1.5em;
    color: black;
    margin-bottom: 15px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-size: 1em;
    color: #333;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #00796b;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 121, 107, 0.3);
  }
  
  .submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 1.2em;
    color: #fff;
    background: #2aea90;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .submit-btn:hover {
    background: #17ae68;
    border: 1.4px solid black;
  }

  /* Responsive Design */
  
  /* Medium Screens (Tablets) */
  @media (max-width: 900px) {
    .contact-content {
      grid-template-columns: 1fr;
    }
  
    .contact-info-box,
    .contact-form-box {
      text-align: center;
    }

    .contact-info-box ul {
      display: inline-block;
      text-align: left;
    }
  }
  
  /* Small Screens (Phones) */
  @media (max-width: 480px) {
    #contact-us h1 {
      font-size: 2.2em;
    }
  
    #contact-us p {
      font-size: 1.23em;
    }

    .contact-info-box{
      font-size: 1.05em;
    }

    .contact-info-box,
    .contact-form-box {
      padding: 20px;
    }
  
    .form-group label {
      font-size: 0.9em;
    }
  
    .form-group input,
    .form-group textarea {
      padding: 10px;
      font-size: 0.9em;
    }
  
    .submit-btn {
      font-size: 1.4em;
      padding: 8px 15px;
      font-weight: 501;
    }
  }



  /* Map Section */
  .contact-map {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .contact-map-title {
    font-size: 2rem;
    color: #1b1f3b;
    margin-bottom: 1rem;
  }
  


.privacy-policy-container {
    width: 80%;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.privacy-policy-container.h1, h2 {
    color: black;
}

p {
    margin: 12px 0;
}

.p-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.p-control-btn {
  margin-top: 15px;
  padding: 10px 23px;
  font-size: 1em;
  background: #2aea90;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.p-control-btn:hover {
  background: #17ae68;
  border: 1.1px solid black;
}

@media (max-width: 768px) {
    .privacy-policy-container {
        width: 95%;
        padding: 10px;
    }


    .privacy-policy-container h1{
      font-size: 27.5px;
    }

    .p-control-btn{
      font-size: 1.2em;
    }
}




.faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}

.faq {
  flex: 1 1 300px; /* This allows the FAQ section to take up space but not less than 300px */
  margin-right: 20px;
}

.faq h2 {
  color: #333;
  font-size: 37px;
}

.faq p {
  color: #666;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.faq ul {
  list-style-type: none;
  padding: 0;
}

.faq ul li {
  background: #f7f7f7;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}

.faq ul li p {
  margin: 5px 0 0 0; /* Reduces space to make it more compact */
}

.faq-images {
margin-top: 70px;
  flex: 1 1 50px; /* This allows the image section to also not be less than 300px */
}

.faq-images img {
  width: 80%;
  margin-bottom: 20px; /* Adds space between the two images */
  border-radius: 5px; /* Optional: Adds rounded corners to your images */
}


.educational-content {
  max-width: 10000px; /* Adjust width to match the FAQs column width */
  margin: 40px 20px; /* Aligns top and adds right margin for spacing */
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.educational-content .note {
  font-weight: bold;
  font-size: 18px;
  color: black; /* Gives a distinct color to the note for emphasis */
  margin-bottom: 20px;
}

.educational-content .enote{
  color: #666;
  font-size: 17.5px;
}

.e-btn {
  display: block; /* Makes the button a block element */
    margin: 20px auto; /* Centers the button horizontally */
    padding: 12px 30px;
    background-color: #2aea90;
    color: white;
    border: none;
    font-size: 17.5px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.e-btn:hover {
  background-color: #17ae68; /* Darker shade on hover for better interaction feedback */
  border: 1.2px solid black;
}


@media (max-width: 600px) {
  .faq-container {
      flex-direction: column;
  }


  .faq h2{
    font-size: 28px;
  }

  .faq, .faq-images {
      flex: 1 1 100%;
      margin-right: 0;
  }

  .e-btn{
    font-size: 1.2em;
  }
}




.service-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.service-list {
  width: 40%;
}

.service-list h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-list ul {
  list-style: none;
  padding: 0;
}

.service-list li {
  margin-bottom: 8px;
}

.service-list a {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
}

.service-text {
  width: 55%;
  font-size: 1.1rem;
  font-weight: 450;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-list h3{
    font-size: 2.2em;
    margin-bottom: 20px;
  }

  .service-area {
      flex-direction: column;
      text-align: center;
  }

  .service-text{
    font-size: 1.1em;
    text-align: left;
    margin-right: 5em;
    font-weight: 450;
    
  }

  .service-list ul {
    font-size: 1.3em;
  }

  .service-list,
  .service-text {
      width: 100%;
     
  }
}



#responseMessage {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
}

.response-success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.response-error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.response-success,
.response-error {
  opacity: 1;
}



#serviceResponseMessage {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
}

.response-success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.response-error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.response-success,
.response-error {
  opacity: 1;
}



#contactResponseMessage {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
}

.response-success {
  color: #17ae68;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.response-error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.response-success,
.response-error {
  opacity: 1;
}




/* ✅ Remove underline from all links */
a, .profile-link {
  text-decoration: none;
  color: inherit; /* Keeps the text color consistent */
}


.icon {
  width: 40px;
  height: 40px;
  color: whitesmoke; /* Tailwind's emerald-500 */
  margin-bottom: 10px;
  background-color: #0b0b0b;
  border-radius: 8px;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .icon {
  width: 40px;
  height: 40px;
  color: whitesmoke; /* You can change this to match your brand */
  margin-bottom: 15px;
}


.emoji-icon {
  width: 100px;
  height: 75px;
  margin-bottom: 10px;
}


.contact-info-box {
  padding: 2rem;
}

.contact-section {
  margin-bottom: 2rem;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 30px;
  height: 30px;
  color: #2aea90;
}




