@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
body {
      margin: 0;
      padding: 0;
      font-family: "Merriweather", serif;
    }

    /* TOP BAR */
    .top-bar {
      width: 100%;
      min-height: 12vh;
      background-color: #f4f4f4;
      display: flex;
      align-items: center;
    }

    .top-bar-text {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
    }

    .phone-number {
      color: #6b8e23;
      font-weight: 800;
      transition: 0.3s;
    }

    .phone-number:hover {
      color: #556b2f;
      text-decoration: none;
      transform: scale(1.05);
    }

    /* NAVBAR */
  .custom-navbar {
    width: 100%;
    background-color: #6b8e23;
    padding: 15px 0;
  }

  .navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff !important;
  }

  /* NAV LINKS */
  .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 25px;
    position: relative;
    transition: 0.3s;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 3px;
    background-color: #fff;
    transition: width 0.3s;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-link:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(255,255,255,0.6);
  }

  /* TOGGLER FIX */
  .navbar-toggler {
    border: 2px solid #fff;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  /* MOBILE CENTER */
  @media (max-width: 991px) {
    .nav-link {
      margin: 12px 0;
      text-align: center;
    }
  }
  .hero-section {
    position: relative;
    width: 100%;
    height: 75vh;
    background-image: url('/img/heroimg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  /* Overlay */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
  }

  /* Content */
  .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
  }

  .hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 520px;
  }

  /* CTA Button */
  .hero-btn {
    background-color: #6b8e23;
    color: #fff;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.5);
  }

  .hero-btn:hover {
    background-color: #556b2f;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(107, 142, 35, 0.7);
    text-decoration: none;
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
    .hero-content h1 {
      font-size: 2.4rem;
    }

    .hero-content p {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 576px) {
    .hero-section {
      height: auto;
      padding: 80px 0;
    }

    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-content p {
      font-size: 1rem;
    }
  }
  .services-section {
    padding: 80px 0;
    background-color: #f8f9f4;
  }

  .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Service Card */
  .service-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
  }

  /* Accent line */
  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background-color: #6b8e23;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
  }

  .service-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
  }

  .service-card p {
    font-size: 0.95rem;
    color: #666;
  }

  /* Hover Effects */
  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(107, 142, 35, 0.25);
  }

  .service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2.1rem;
    }
  }
  .about-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f9faf6, #eef2e3);
  }

  /* Image Styling */
  .about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
  }

  .about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }

  .about-image:hover img {
    transform: scale(1.08);
  }

  /* Content */
  .about-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2e2e2e;
  }

  .about-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6b8e23;
    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  /* Button */
  .about-btn {
    margin-top: 15px;
    background-color: #6b8e23;
    color: #fff;
    padding: 14px 34px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(107, 142, 35, 0.5);
  }

  .about-btn:hover {
    background-color: #556b2f;
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 40px rgba(107, 142, 35, 0.7);
    text-decoration: none;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .about-content h2 {
      font-size: 2.2rem;
    }
  }

  @media (max-width: 576px) {
    .about-section {
      padding: 60px 0;
    }

    .about-content h2 {
      font-size: 1.9rem;
    }
  }
  .cta-section {
    padding: 80px 0;
    background-color: #f6f8f1;
    display: flex;
    justify-content: center;
  }

  .cta-box {
    width: 80%;
    height: 30vh;
    background: linear-gradient(135deg, #6b8e23, #556b2f);
    border-radius: 25px;
    padding: 30px 40px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(107, 142, 35, 0.5);
    display: flex;
    align-items: center;
  }

  .cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .cta-content p {
    font-size: 1.05rem;
    max-width: 550px;
    opacity: 0.95;
  }

  /* CTA Button */
  .cta-btn {
    background-color: #fff;
    color: #6b8e23;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  .cta-btn:hover {
    background-color: #f1f3ec;
    color: #556b2f;
    transform: translateY(-3px) scale(1.05);
    text-decoration: none;
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
    .cta-box {
      flex-direction: column;
      height: auto;
      text-align: center;
    }

    .cta-content {
      margin-bottom: 20px;
    }
  }

  @media (max-width: 576px) {
    .cta-content h3 {
      font-size: 1.8rem;
    }

    .cta-btn {
      width: 100%;
      padding: 14px 0;
    }
  }
  .contact-section {
    padding: 80px 0;
    background-color: #f8f9f4;
  }

  /* Contact Boxes */
  .contact-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  .contact-box h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #6b8e23;
  }

  .contact-box p a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }

  .contact-box p a:hover {
    color: #556b2f;
  }

  .contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107,142,35,0.2);
  }

  /* Form */
  .contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(107,142,35,0.15);
  }

  .contact-form .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
  }

  .contact-form .form-control:focus {
    border-color: #6b8e23;
    box-shadow: 0 0 5px rgba(107,142,35,0.3);
  }

  .contact-btn {
    background-color: #6b8e23;
    color: #fff;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
  }

  .contact-btn:hover {
    background-color: #556b2f;
    transform: translateY(-3px) scale(1.05);
    text-decoration: none;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .contact-box {
      margin-bottom: 20px;
    }
  }
  .footer-section {
    background-color: #2e2e2e;
    color: #fff;
    padding: 60px 0 30px;
    font-family: "Merriweather", serif;
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .footer-left p {
    font-size: 0.95rem;
    color: #ccc;
  }

  .footer-links {
    list-style: none;
    padding: 0;
  }

  .footer-links li {
    display: inline-block;
    margin: 0 15px;
  }

  .footer-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .footer-links li a:hover {
    color: #6b8e23;
    text-decoration: underline;
  }

  .footer-section h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
  }

  .footer-section p, .footer-section a {
    color: #ccc;
    font-size: 0.95rem;
  }

  .footer-section a:hover {
    color: #6b8e23;
  }

  .footer-copy {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 20px;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .footer-links li {
      display: block;
      margin: 10px 0;
    }

    .text-center {
      text-align: center !important;
    }

    .footer-left, .footer-links, .col-lg-4 {
      text-align: center !important;
    }
  }

  @media (max-width: 576px) {
    .footer-section {
      padding: 40px 15px 20px;
    }
  }