body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    font-size: 1em; /* Reduced font size */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 0 0px; /* Reduced padding */
    z-index: 1000;
    height: 80px; /* Reduced height */
}

header h1 {
    margin: 0;
    font-size: 1.5em; /* Reduced font size */
    color: #ff6f61;
    padding: 0;
    align-items: center;
}

header h1 img {
    width: 150px; /* Reduced width */
    height: auto;
    align-items: center;
    display: block;
    max-width: 100%;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
        border-bottom: 1px solid #ddd;
    }

    nav ul li a {
        padding: 10px; /* Reduced padding */
        display: block;
    }
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    display: inline;
    margin-right: 20px; /* Reduced margin */
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1em; /* Reduced font size */
}
nav ul li a:hover {
    color: #FF7043;
}
.mobile-nav li a:hover {
    color: #c1c1c1;
}

main {
    padding: 20px; /* Reduced padding */
    margin-top: 100px; /* Reduced margin-top */
}

main h1, main h3, main h4 {
    padding: 5px;
    margin-top: 0;
    padding-left: 50px;
}

main h1 {
    font-size: 2em; /* Reduced font size */
}

main h3 {
    font-size: 1.8em; /* Reduced font size */
}

main h4 {
    font-weight: 650;
    color: #F1B281;
    font-size: 1.5em; /* Reduced font size */
}

footer {
    background-color: #ffffff;
    padding: 20px; /* Reduced padding */
    text-align: center;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
    color: #999;
    font-size: 1em; /* Reduced font size */
}

.home-section {
    background-image: url('home-back.png');
    background-size: cover;
    background-position: center;
    min-height: 700px; /* Reduced height */
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding-left: 20px; /* Reduced padding */
    margin-bottom: 20px; /* Reduced spacing below section */
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.home-section h2 {
    color: white;
    margin-left: 50px;
    font-weight: normal;
    font-size: 2em; /* Reduced font size */
    z-index: 2;
}

.about-section {
    margin-top: 10px;
    padding-top: 40px; /* Adjusted padding-top */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-section img {
    margin-top: 0;
    padding-left: 0;
    width: 40%;
    height: auto;
}

.about-text {
    width: 40%;
    padding-left: 10px; /* Adjusted padding-left */
    font-size: 1em; /* Reduced font size */
}

.about-text h1 {
    font-size: 1.8em; /* Reduced font size */
}

.about-text p {
    font-size: 1em; /* Reduced font size */
}

button.primary {
    background-color: #FF7043;
    color: white;
    border: none;
    padding: 1rem 2rem; /* Reduced padding */
    font-size: 1em; /* Reduced font size */
    cursor: pointer;
    font-weight: bold;
}

button.secondary {
    background-color: white;
    color: #333;
    border: 2px solid #333;
    padding: 1rem 2rem; /* Reduced padding */
    font-size: 1em; /* Reduced font size */
    cursor: pointer;
    font-weight: bold;
}

/* Add styles for the mobile navigation */
.mobile-nav-toggle {
    display: none;
    background-color: #FF6E4E;
    color: #fff;
    border: none;
    padding: 15px; /* Reduced padding */
    font-size: 15px; /* Reduced font size */
    cursor: pointer;
    position: absolute;
    right: 50px; /* Adjusted value to move the button to the left */
    top: 15px;
}

.mobile-nav-toggle span {
    display: block;
    width: 15px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 4px;
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-toggle span:first-child {
    transform: translateY(-4px);
}

.mobile-nav-toggle span:last-child {
    transform: translateY(4px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FF6E4E;
    padding: 10px;
    width: 100%;
    z-index: 1;
}

.mobile-nav li {
    margin-bottom: 10px;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em; /* Reduced font size */
}

/* Add animation effect when toggling the mobile navigation */
.mobile-nav-toggle.active span {
    background-color: #c1c1c1;
    transform: translateY(0);
}

.mobile-nav-toggle.active span:first-child {
    transform: translateY(4px);
}

.mobile-nav-toggle.active span:last-child {
    transform: translateY(-4px);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-toggle:hover {
    background-color: #de5435;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
   .desktop-nav {
        display: none;
    }
   .mobile-nav-toggle {
        display: block;
    }
}

.logo {
    transition: transform 0.3s ease-in-out; /* Add a transition effect */
}

.logo:hover {
    transform: translateY(-3px); /* Move the logo up on hover */
}

.logo:active {
    transform: translateY(3px); /* Move the logo down on click */
}

.get-in-touch {    
    color: #FF7043; /* Change the text color to black */
    text-decoration: none;
}

.get-in-touch:hover {
    text-decoration: underline; /* Keep the underline */
}

.about-section {
    padding-top: 35px; /* Adjusted padding-top */
}

.services-section h1 {
    padding-top: 40px; /* Reduced padding-top */
}

.float-right {
    float: right;
    margin-left: 55px; /* add some space between the heading and the paragraph */
}

/* Add a smooth scrolling effect when clicking the "Get in Touch" button */
.get-in-touch a {
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
  }
  
  .get-in-touch a:hover {
    transform: translateY(-3px);
    text-decoration: underline;
  }
  
  .get-in-touch a:active {
    transform: translateY(3px);
  }
  
  /* Add a smooth scrolling effect to the anchor link */
  .get-in-touch a[href*="#"]:not([href="#"]) {
    scroll-behavior: smooth;
  }
  
  .services-section-content {
    position: relative;
    padding-top: 100px;
  }
  
  .services-section-content h4 {
    position: relative;
    bottom: 100%;
    left: 0;
    width: 100%;
    text-align: none;
    margin-bottom: 0px;
    margin-top: 0px;
  }
  
  .services-section h4 {
    padding: 20; /* Remove any padding from the heading */
    padding-top: 200px;
  }
  
  .services-section > :first-child {
    margin-top: -50px;
  }
  .service-button img:first-child {
    height: 200px; /* adjust the height to your desired value */
    object-fit: cover;
    overflow: hidden;
  }
  
  .button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Added gap between buttons */
    margin-top: 20px; /* Adjust spacing from top */
}

.button-container a {
    text-decoration: none;
  }


.service-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 250px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-button img {
    width: 250px; /* Adjusted size */
    height: 150px;
    margin-bottom: 15px;
}

.service-button span {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.service-button:hover span {
    font-weight: 600;
    font-size: 18px;
    color: #FF6E4E;
    margin-bottom: 10px;
}


.service-button p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.service-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.service-button:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* CSS */
#contactForm {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
  }
  
  #contactForm label {
    display: block;
    margin-bottom: 5px;
  }
  
  #contactForm input[type="text"],
  #contactForm input[type="email"],
  #contactForm input[type="tel"],
  #contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  #contactForm button[type="submit"] {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  #contactForm button[type="submit"]:hover {
    background-color: #45a049;
  }
  /* CSS */
.contact-container {
    display: flex;
  }
  
  #contactForm {
    max-width: 400px;
    margin-right: 330px;
    margin-top: 100px;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
  }

  @media (max-width: 768px) {
    #hoursSection {
        margin-right: -100%;
    }
  }
  
  #hoursSection {
    flex: 1;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding-right: 0px;
  }

  #hoursSection h4 {
    color: #000;
    font-size: 125%;
  }
  .contact-info {
    margin-bottom: 20px;
    margin-right: 70px;
}

.contact-info p {
    margin: 5px 0;
}

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

.support-section {
    display: flex;
    align-items: flex-start;
    margin: 2rem 0;
}

.support-image {
    flex: 1;
    padding: 1rem;
}

.support-image img {
    max-width: 30%;
    height: auto;
}

.support-content {
    flex: 2;
    padding-left: 475px;
    margin-top: -350px;
}

h4 {
    color: #f08645; /* Customize the color as per your design */
    font-weight: bold;
    margin-bottom: 1rem;
}

p {
    margin-top: 0;
}

/* Optional: Add responsiveness */
/* Add this to your CSS file */

/* For screens with a maximum width of 768px (e.g., mobile devices) */
@media (max-width: 768px) {
    .support-section {
      flex-direction: column; /* Stack the image and content vertically */
    }
  
    .support-image {
      width: 100%; /* Make the image full-width */
      margin-bottom: 20px; /* Add some space between the image and content */
    }

    .support-image img {
        max-width: 100%; /* Make the image scale to its parent container */
        height: auto; /* Maintain the image's aspect ratio */
      }
  
    .support-content {
        padding-left: 10%;/* Remove the left padding */
      margin-top: 0; /* Remove the top margin */
    }
  }
.sched-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #FF6E4E; /* Customize the button color as per your design */
    color: white;
    text-decoration: none;
    margin-top: 1rem;
    border-radius: 5px;
}
.sched-button:hover {
    background: #de5435;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.service-button:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 380px;
}
label {
    display: block;
    margin: 15px 0 5px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
input[type="submit"] {
    background: #FF6E4E;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 324px;
    height: 30px;
}
input[type="submit"]:hover {
    background: #de5435;
}

.contact-section-content {
padding-top: 90px;
display: flex;
flex-wrap: wrap;
}

.info-section {
flex-basis: 50%; /* adjust the width of the info section */
padding-left: 20px;
}
@media (max-width: 767px) {
.contact-details__email svg, .contact-details__address svg {
    width: 1rem;
    height: 1rem;
    margin-right: 8px;
    }
}
.contact-details__email svg, .contact-details__address svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.contact-details__email, .contact-details__address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.contact-details__email {
    display: block;
    margin-top: 10px;
}
.contact-details__row {
    margin-bottom: 20px;
}

.h3-contact-details__title {
    font-size: 1.25rem;
    font-style: normal;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0px;
    text-transform: none;
}

.services-footer {
    background-color: #FF6E4E;
    margin-top: 150px;
    padding: 150px;
    padding-left: 20%;
}

@media (max-width: 767px) {
.lets-talk {
    font-size: 2rem;
    font-style: normal;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0px;
    text-transform: none;
    }
}

@media (max-width: 991px) {
.lets-talk {
    font-size: 3.25rem;
    font-style: normal;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0px;
    text-transform: none;
    }
}

.lets-talk {
    font-size: 3.875rem;
    font-style: normal;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0px;
    text-transform: none;
    margin-bottom: 10px;
    color: #fff;
}

@media (max-width: 767px) {
.footer2_subtitle {
    font-size: 1.25rem;
    font-style: normal;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0px;
    text-transform: none;
    }
}

@media (max-width: 991px) {
.footer2_subtitle {
    font-size: 1.25rem;
    font-style: normal;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0px;
    text-transform: none;
    }
}

.footer2_subtitle {
    font-size: 1.5rem;
    font-style: normal;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0px;
    text-transform: none;
    margin-bottom: 10px;
    color: #fff;
}
.get-in-touch-footer2 {
    color: #fff;
    text-decoration: none;
}

.footer2-button {
    align-items: center;
background-color: rgba(0, 0, 0, 0);
border-bottom-color: rgb(255, 255, 255);
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-style: solid;
border-bottom-width: 2px;
border-image-outset: 0;
border-image-repeat: stretch;
border-image-slice: 100%;
border-image-source: none;
border-image-width: 1;
border-left-color: rgb(255, 255, 255);
border-left-style: solid;
border-left-width: 2px;
border-right-color: rgb(255, 255, 255);
border-right-style: solid;
border-right-width: 2px;
border-top-color: rgb(255, 255, 255);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-top-style: solid;
border-top-width: 2px;
box-sizing: border-box;
color: rgb(255, 255, 255);
cursor: pointer;
display: inline-flex;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 600;
height: 50px;
justify-content: center;
letter-spacing: 1px;
line-height: 17.5px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
min-height: 50px;
padding-bottom: 10px;
padding-left: 30px;
padding-right: 30px;
padding-top: 10px;
text-align: center;
text-decoration-color: rgb(255, 255, 255);
text-decoration-line: none;
text-decoration-style: solid;
text-decoration-thickness: auto;
text-size-adjust: 100%;
text-transform: uppercase;
text-wrap: nowrap;
touch-action: manipulation;

}

.footer2-button:hover {
    background-color: #000;
    border-color: #000;
    transition: all .15s ease-in-out;
}

.footer1 {
    padding-top: 100px;
    background-color: #000;
}

.footer1 div nav ul li a {
    color: #fff;
    text-align: left;
    text-size-adjust: 100%;
    text-transform: none;
}

.footer1 nav {
    margin-top: 20px;
    margin-bottom: 10%;
    margin-right: 35%;
    vertical-align: middle;
}

.footer1 nav ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration: underline 2px;
}

.footer1 p {
    color: #fff;
}

.admin-support {
    margin-top: -10px;
}

.sched-section {
    display: flex;
    align-items: flex-start;
    margin: 2rem 0;
}

.sched-image {
    flex: 1;
    padding: 1rem;
}

.sched-image img {
    width: 354px;
    height: 460px;
    object-fit: cover;
    margin-top: 150px;
    margin-left: 5%;
}

.sched-content {
    flex: 2;
    padding-left: 475px;
    margin-top: -340px;
}

@media (max-width: 768px) {
    .support-section {
      flex-direction: column; /* Stack the image and content vertically */
    }
  
    .sched-image {
      width: 100%; /* Make the image full-width */
      margin-bottom: 20px; /* Add some space between the image and content */
    }

    .sched-image img {
        max-width: 100%; /* Make the image scale to its parent container */
        height: auto; /* Maintain the image's aspect ratio */
      }
  
    .sched-content {
      padding-left: 10%; /* Remove the left padding */
      padding-top: 100%; /* Remove the top margin */
    }
  }

  @media (max-width: 768px) {
    .about-section {
      flex-direction: column; /* Stack the image and content vertically */
    }
  


    .about-section img {
        max-width: 100%; /* Make the image scale to its parent container */
        height: auto; /* Maintain the image's aspect ratio */
        width: auto;
      }
  
    .about-text {
      margin-top: 40px; /* Remove the top margin */
      width: auto;
      margin-bottom: 20px;
    }

    .about-text h1 {
        padding-left: 0px;
    }

    .float-right {
        margin-left: 0px;
    }
  }

  