h2,
h3,
h5 {
    color: #339933;
}

.hero-section {
    background: url('../images/office.png') no-repeat center center;
    background-size: cover;
    height: 500px;
    position: relative;
    color: white;
}

.hero-section .overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-section h1 {
    position: relative;
    z-index: 1;
}

.section-title {
    margin-bottom: 30px;
    text-align: center;
}

.logo {
    height: 70px;
    width: auto;
}

.card-body p {
    margin-bottom: 15px;
}

/* Apply a light green background color to the services section */
#services {
    background-color: #ccffcc;
}

#services .card {
    background-color: white;
    border: none;
}

#services .card-title {
    color: #339933;
}

#services p {
    color: #333;
}

#contact {
    background-color: #ccffcc;
}

/* Service card styling */
.service-card {
    height: 100%;
    /* Ensures all cards are the same height */
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card img {
    height: 200px;
    /* Ensures all images have the same height */
    object-fit: cover;
    /* Keeps the aspect ratio of the images */
}

.card-body {
    flex: 1;
    /* Ensures content fills the remaining space of the card */
}

#backToTopBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed position */
    bottom: 20px;
    /* Position at the bottom of the page */
    right: 30px;
    /* Position 30px from the right */
    z-index: 99;
    /* Ensure it stays on top of other content */
    font-size: 18px;
    /* Increase the font size */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: #339933;
    /* Green background */
    color: white;
    /* White text */
    cursor: pointer;
    /* Pointer cursor on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 10px;
    /* Rounded corners */
}
#backToTopBtn i {
      font-size: 18px; /* Adjust the icon size */
  }

#backToTopBtn:hover {
    background-color: #555;
    /* Darker background on hover */
}

/* Add a media query to handle smaller screens */
@media (max-width: 768px) {
      #backToTopBtn {
          right: 10px; /* Reduce right margin on smaller screens */
          bottom: 10px; /* Reduce bottom margin */
          padding: 10px; /* Smaller padding on mobile */
      }
  }