  :root {
    --primary-color: #013299;
    --secondary-color: #009c00;
    --dark-green: #155724;
    --black: #272727;
    --light-blue: #d1ecf1;
  }
  
  body {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
  }
  .navbar {
    margin-bottom: 20px;
  }
  .navbar-brand img {
    max-height: 40px;
    width: auto;
  }
  .nav-link {
    color: var(--black);
    transition: color 0.3s ease, background-color 0.3s ease, border-bottom 0.3s ease;
    position: relative;
  }
  .nav-link:hover {
    color: var(--secondary-color);
    background-color: var(--light-blue);
    border-bottom: 2px solid var(--secondary-color);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  .nav-link:hover::after {
    width: 100%;
  }

  #welcome {
    background-color: var(--light-blue);
    color: var(--black);
    text-align: center;
    padding: 50px 20px;
  }
  #welcome h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  #welcome p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  #hero {
    height: 100vh;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    position: relative;
  }
  
  #hero .container {
    z-index: 1;
  }
  
  #hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adds a dark overlay to improve text readability */
    z-index: 0;
  }
  
  #hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  #hero h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  
  #hero .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }

  #services-overview {
    background-color: #f9f9f9;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .service-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  #services-overview h2 {
    color: var(--primary-color);
  }
  
  #services-overview p {
    font-size: 1.1em;
    line-height: 1.6;
  }
  
  .service-box {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .service-box:hover {
    transform: translateY(-10px);
  }
  
  .service-box .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  #testimonials {
    background-color: #f9f9f9;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .testimonial-box {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-text {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Use green for the testimonial text */
  }
  
  .testimonial-author {
    font-weight: bold;
    color: var(--dark-green); /* Use dark green for the testimonial author */
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: var(--secondary-color); /* Use green for the carousel controls */
  }

  #blog {
    background-color: #f9f9f9;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .blog-box {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  
  .blog-box h3 {
    margin-bottom: 20px;
    color: var(--primary-color); /* Use primary color for headings */
  }
  
  .blog-box p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--black); /* Use black for text */
  }
  
  .blog-box .btn-primary {
    background-color: var(--secondary-color); /* Use green for buttons */
    border-color: var(--secondary-color);
  }

  #cta {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
  }
  
  .cta-title {
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  .cta-text {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  .btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
  }

  #team {
    background-color: #f9f9f9;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .team-member {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  
  .team-member img {
    max-width: 150px;
    border: 4px solid var(--primary-color);
  }
  
  .team-member h4 {
    margin-top: 15px;
    color: var(--primary-color);
  }
  
  .team-member p.text-muted {
    color: var(--secondary-color);
  }

  #quick-links {
    background-color: #f9f9f9;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .quick-link-box {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
  }
  
  .quick-link-box:hover {
    transform: translateY(-10px);
  }
  
  .quick-link i {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .quick-link h4 {
    color: var(--secondary-color);
  }

  #footer {
    background-color: var(--dark-green);
    color: white;
  }
  
  #footer h4 {
    margin-bottom: 20px;
  }
  
  #footer a {
    color: white;
    text-decoration: none;
  }
  
  #footer a:hover {
    color: var(--primary-color);
  }
  
  #footer .list-unstyled {
    padding-left: 0;
  }
  
  #footer .list-unstyled li {
    margin-bottom: 10px;
  }
  
  #footer .text-white {
    margin-bottom: 10px;
  }
  
  #footer .fab {
    font-size: 1.5em;
  }
    
  #contact .contact-section {
    padding: 20px 0;
  }


  #contact a.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  #contact a.btn-info {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    color: var(--dark-green);
  }
  
  #contact a.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
  }
  
  #contact-form .form-control {
    border: 1px solid var(--primary-color);
  }
  
  #contact-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  #contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
  }

  #service h1, h2, h3 {
    margin-bottom: 20px;
    bottom: 80%;
    /* transform: translateX(-50%); */
    /* color: var(--primary-color); */
}

#service  {
  height: 90vh;
  background: url('https://crscpa.com/wp-content/uploads/2023/08/bookkeeping-and-accounting-services-image.jpg') no-repeat 90% center; 
  background-size: cover;
  height: 100vh;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}
#hero1{
  height: 90vh;
  background: url('https://th.bing.com/th/id/OIP.wrIMCKgy0UYK49JT1XBh9AHaEM?rs=1&pid=ImgDetMain') no-repeat 90% center; 
  background-size: cover;
  height: 100vh;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;

}

/*#service {
  background: url('https://th.bing.com/th/id/R.107b468fb977e0d5e6b04bd2cd9fa8f1?rik=D8g7P1h2mjAf%2fw&pid=ImgRaw&r=0') no-repeat center center;
  background-size: cover;
  height: 100vh;  Full height for better visual impact
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
} */
#services h2{
  color: var(--primary-color);
}

#services h3{
  color: var(--secondary-color);
}


#service .service-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

#service .service-intro-content {
  position: relative;
  z-index: 2;
}

#service .service-intro-title {
  font-size: 3em;
  margin-bottom: 20px;
}

#service .service-intro-subtitle {
  font-size: 1.5em;
}

#benefits {
  background: var(--background-color);
  padding: 50px 0;
}

#benefits h2 {
  color: var(--primary-color);
}

#benefits h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

#benefits ul {
  color: var(--text-color);
  list-style-type: disc;
  padding-left: 20px;
}

#benefits ul li {
  margin-bottom: 10px;
}

/* Custom Styles */
#cta {
  background: var(--background-color);
  padding: 50px 0;
  text-align: center;
}

#cta h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

#cta p {
  color: var(--text-color);
  margin-bottom: 30px;
}

#cta .btn {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin: 5px;
}

#cta .btn-primary {
  background: var(--primary-color);
}

#cta .btn-secondary {
  background: var(--secondary-color);
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-button img {
  width: 50%;
  height: 50%;
}

@media (min-width: 768px) {
  .whatsapp-button {
      display: none;
  }
}

.green{
  color: var(--secondary-color);
}

#hero1 {
  height: 100vh;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  position: relative;
}

#hero1 .container {
  z-index: 1;
}

#hero1:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adds a dark overlay to improve text readability */
  z-index: 0;
}

#hero1 h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

#PAYE h1{
  color: var(--primary-color)
}

#PAYE h3{
  color: var(--secondary-color);
}

#thanks{
  background-color: var(--light-blue);
}

#thanks h3{
  color: var(--primary-color);
}

