@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body {
    font-family: "Josefin Sans", sans-serif;
    background-color: aliceblue;
    color: #333;
    line-height: 1.6;

}


.maintenance-package-card {
  color: #1a1a1a; /* Set default text color */
}

.maintenance-package-card .price {
  color:green
}

.maintenance-package-card .frequency {
  color: #666; /* Slightly lighter gray for subtext */
}

.maintenance-package-card .detail-link {
  color: #007bff; /* Link color (blue) */
  text-decoration: none;
}

.maintenance-package-card .detail-link:hover {
  text-decoration: underline;
}

header {
    background-color: #027706;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    
}
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0.8rem 1.2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #027706;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-img {
    height: 60px;
    width: auto;
    vertical-align: middle;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links {
    display: flex;
    gap: 1.2rem;
}
.nav-link a {
    color: white;
    font-size: 0.70rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.nav-link a:hover {
    color: #e1ffe2;
    background-color: rgba(255, 255, 255, 0.15);
}
.nav-btn {
    display: flex;
    gap: 0.8rem;
}
.btn {
    display: inline-block;
    padding: 0.55rem 1.3rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.70rem;
}
.sign-in {
    color: #fff;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.cta {
    background-color: #fff;
    color: #027706;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.cta:hover {
    background-color: #e1ffe2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}
.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #027706;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav .nav-links {
    flex-direction: column;
    margin-top: 60px;
}
.mobile-nav .nav-link a {
    font-size: 1rem;
    padding: 1rem;
    display: block;
}
.mobile-nav .nav-btn {
    flex-direction: column;
    margin-top: auto;
    padding-bottom: 20px;
}
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    z-index: 998;
}
.mobile-nav.active + .mobile-nav-overlay {
    display: block;
}
.no-scroll {
    overflow: hidden;
}
.hamburger.active .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active .line:nth-child(2) {
    opacity: 0;
}
.hamburger.active .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 768px) {
    .nav-right {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .nav-link a {
        font-size: 1rem !important;
    }
    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem !important;
        border-radius: 4px !important;
    }
}

.maintenance-packages {
    padding: 4rem 0;
    background-color: aliceblue;
}

.maintenance-packages-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #027706;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
  padding: 20px;
}

.maintenance-package-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1.5rem;
    max-width: 1500px;
    margin: 0 auto;
}

.maintenance-package-card {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.maintenance-package-card:hover {
    transform: translateY(-5px);
}

.package-title {
    color: #027706;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.package-description {
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    color: #027706;
    font-size: 2rem;
    font-weight: 700;
}

.frequency {
    color: #999;
    font-size: 0.9rem;
}

.package-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.package-details i {
    color: #027706;
    font-size: 1.2rem;
}

.detail-link {
    color: #333;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.detail-link:hover {
    color: #027706;
}

.btn-container button {
    width: 100%;
    background: #027706;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta button{
    background: #027706;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta button:hover {
    background: #015a04;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.btn-container button:hover {
    background: #015a04;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .maintenance-package-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .package-description {
        min-height: auto;
    }
}

.hero {
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/*  if I need to add image again
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('Cover Photo.png');
  filter: blur(px);
*/
.hero-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    color: #027706;;
    position: relative;
    z-index: 1;
}

/* Keep all other styles from previous hero section */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Button styles remain the same */
.hero-content .get-instant-quote-hero,
.hero-content .services-btn-hero {
    display: inline-flex;
    margin: 0 0.75rem;
}

.hero-content button {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.get-instant-quote-hero button {
    background-color: white;
    color: #027706;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.services-btn-hero button {
    background-color: white;
    color: #027706;;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.get-instant-quote-hero button:hover {
    background-color: #e1ffe2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.services-btn-hero button:hover {
    background-color: #e1ffe2;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-content .get-instant-quote-hero,
    .hero-content .services-btn-hero {
        display: flex;
        margin: 0.5rem 1rem;
    }

    .hero-content button {
        width: 100%;
        justify-content: center;
    }
}
.reviews-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.reviews-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.reviews-container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.reviews-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.review-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    scroll-snap-align: start;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #027706;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: block !important; /* Force buttons to always show */

}

.scroll-btn:hover {
    background: #015a04;
    transform: translateY(-50%) scale(1.1);
}

.left-scroll {
    left: 0;
}

.right-scroll {
    right: 0;
}

.rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
    }

    .scroll-btn {
        width: 35px;
        height: 35px;
    }
}

.about-section {
    padding: 4rem 0;
    background-color: white;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #027706;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card i {
    font-size: 2.5rem;
    color: #027706;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: #666;
    font-size: 0.9rem;
}

.about-description {
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.8;
}

.about-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.phone-cta {
    background: #027706;
    color: white;
    border: 2px solid transparent;
}

.book-cta {
    background: white;
    color: #027706;
    border: 2px solid #027706;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.phone-cta:hover {
    background: #015a04;
}

.book-cta:hover {
    background: #f0fff0;
}

@media (max-width: 768px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

.services-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: #027706;
    font-size: 2.5rem;
    margin-bottom: 0.5+rem;
    text-transform: uppercase;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
  padding: 20px;
}
.section-subtitle i {
    color: #666;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header i {
    font-size: 1.8rem;
    color: #027706;
}

.price-main {
    font-size: 2rem;
    color: #027706;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-details {
    color: #666;
    margin-bottom: 1.5rem;
}

.price-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-cta {
    width: 100%;
    background: #027706;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #015a04;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

.address-search-section {
    padding: 4rem 0;
    background-color: aliceblue;
    text-align: center;
  }

  .address-search-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .address-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #027706;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
  }

  .address-input:focus {
    border-color: #015a04;
  }
  .site-footer {
    background-color: #027706;
    padding-top: 60px;
    color: #fff;
    padding: rem 0 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  }

  .site-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: start;
    max-width: 1200px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo {
    font-size: 1.8rem;
    gap: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
  }

  .footer-logo:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #e1ffe2;
  }

  .footer-nav {
    text-align:auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .footer-nav li {
    position: relative;
    transition: transform 0.3s ease;
  }

  .footer-nav li:hover {
    transform: translateX(5px);
  }

  .footer-nav li a {
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0;
    position: relative;
    font-weight: 500;
  }

  .footer-nav li a:hover {
    color: #e1ffe2;
  }

  .footer-nav li a:before {
    opacity: 0;
    margin-right: 5px;
    transform: translateX(-10px);
    display: inline-block;
    transition: all 0.3s ease;
  }

  .footer-nav li a:hover:before {
    opacity: 1;
    transform: translateX(0);
  }

  .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  }

  .footer-services, .footer-contact {
    text-align: left;
  }

  .footer-services h3, .footer-contact h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }

  .footer-services h3:after, .footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e1ffe2;
  }

  .service-links, .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .service-links li a, .contact-info li {
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    opacity: 0.9;
  }

  .service-links li a:hover {
    color: #e1ffe2;
    opacity: 1;
  }

  .contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .contact-info li i {
    font-size: 1.1rem;
    color: #e1ffe2;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
 

  .social-link {
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    background-color: #e1ffe2;
    transform: translateY(-3px);
  }

  .social-link i {
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }

  .social-link:hover i {
    color: #027706;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding-top: 1.5rem;
    padding-bottom:20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
  }

  /* Back to top button */
  .back-to-top {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background-color: #e1ffe2;
    color: #027706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
  }

  .back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) {
    .site-footer .container {
      grid-template-columns: 1fr;
      text-align: cnter;
      gap: 2.5rem;
    }

    .footer-content, .footer-services, .footer-contact {
      align-items: center;
      text-align: center;
    }

    .footer-logo:after, .footer-services h3:after, .footer-contact h3:after {
      left: 50%;
      transform: translateX(-50%);
    }

    .footer-nav li:hover {
      transform: none;
    }

    .contact-info li {
      justify-content: center;
    }

    .back-to-top {
      right: 20px;
      bottom: 20px;
    }
  }

    .contact-info {
      color: white;           
      text-decoration: none;
    }

  .contact-section {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
  }

  .contact-section .container {
    max-width: 800px;
    margin: 0 auto;
  }

  .contact-section .section-title {
    font-size: 2.5rem;
    color: #027706;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .contact-section .section-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #027706;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #015a04;
  }

  .contact-form textarea {
    min-height: 150px;
    resize: vertical;
  }
/* Portfolio Section Grid (2 columns x 7 rows) */
.portfolio-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 0 1.5rem;
}

/* Each portfolio item is styled with a background image set via CSS */
.portfolio-item {
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Responsive portfolio grid for mobile devices */
@media (max-width: 768px) {
  .portfolio-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .portfolio-item {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .portfolio-items {
    grid-template-columns: 1fr;
  }

  .portfolio-item {
    height: 250px;
  }
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

/* Overlay content for each portfolio item */
.portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  text-align: center;
}

.portfolio-title {
  font-size: 1.5rem;
  color: #027706;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size:25px;
}

.portfolio-description {
  color: #666;
  font-size: 0.9rem;
}

.portfolio-section .section-description {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}


/* Background image URLs set via nth-child selectors */
.portfolio-item:nth-child(1) {
  background-image: url("Before (77).png");
}
.portfolio-item:nth-child(2) {
  background-image: url("Before (46).png");
}
.portfolio-item:nth-child(3) {
  background-image: url("Before (55).png");
}
.portfolio-item:nth-child(4) {
  background-image: url("Before (67).png");
}
.portfolio-item:nth-child(5) {
  background-image: url("Before (57).png");
}
.portfolio-item:nth-child(6) {
  background-image: url("Before (64).png");
}
.portfolio-item:nth-child(7) {
  background-image: url("Before (82).png");
}
.portfolio-item:nth-child(8) {
  background-image: url("Before (74).png");
}
.portfolio-item:nth-child(9) {
  background-image: url("Before (48).png");
}
.portfolio-item:nth-child(10) {
  background-image: url("Before (52).png");
}
.portfolio-item:nth-child(11) {
  background-image: url("Before (75).png");
}
.portfolio-item:nth-child(12) {
  background-image: url("Before (44).png");
}
.portfolio-item:nth-child(13) {
  background-image: url("Before (65).png");
}
.portfolio-item:nth-child(14) {
  background-image: url("Before (70).png");
}
.portfolio-item:nth-child(15) {
  background-image: url("Before (73).png");
}
.portfolio-item:nth-child(16) {
  background-image: url("Before (79).png");
}
.portfolio-item:nth-child(17) {
  background-image: url("Before (49).png");
}
.portfolio-item:nth-child(18) {
  background-image: url("Before (55).png");
}
.portfolio-item:nth-child(19) {
  background-image: url("Before (71).png");
}
.portfolio-item:nth-child(20) {
  background-image: url("Before (76).png");
}


  /* Blog Section Styles */
  .blog-section {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
  }

  .blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .blog-section .section-title {
    font-size: 2.5rem;
    color: #027706;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .blog-section .section-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  /* Grid layout for blog articles */
  .blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
  }

  /* Individual blog article card */
  .blog-article {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: left;
  }

  .blog-article:hover {
    transform: translateY(-5px);
  }

  .blog-article h3 {
    font-size: 1.5rem;
    color: #027706;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }

  .blog-article p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }

  /* Blog article button style */
  .blog-article a.btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 25px;
  }

/* FAQ Section Styles */
.faq-section {
  padding: 5rem 0;
  background-color: aliceblue;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background-color: white;
}

.faq-question {
  padding: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f9ff;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #027706;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.2rem 1.2rem;
  max-height: 1000px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Calculator Section Styles */
.calculator-section {
  padding: 4rem 0;
  background-color: aliceblue;
}

.calculator-container {
  display: flex;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.calculator-form, .calculation-result {
  flex: 1;
}

.calc-row {
  margin-bottom: 1.5rem;
}

.calc-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.calc-row input[type="number"],
.calc-row select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #027706;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.calc-row input[type="number"]:focus,
.calc-row select:focus {
  border-color: #015a04;
  outline: none;
}

.service-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.service-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #027706;
}

.calculation-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-left: 1px solid #eee;
}

.calculation-result h3 {
  font-size: 1.5rem;
  color: #027706;
  margin-bottom: 1rem;
}

.cost-display {
  font-size: 3rem;
  font-weight: 700;
  color: #027706;
  margin-bottom: 1rem;
}

.estimate-note {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

#calculate-btn {
  width: 100%;
  padding: 1rem;
  background-color: #027706;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

#calculate-btn:hover {
  background-color: #015a04;
}

@media (max-width: 768px) {
  .calculator-container {
    flex-direction: column;
  }

  .calculation-result {
    border-left: none;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }

  .service-checkboxes {
    grid-template-columns: 1fr;
  }
}

/* Global Section Background Override */
.about-section,
.contact-section,
.portfolio-section,
.blog-section,
.services-section,
.reviews-section,
.faq-section {
  background-color: aliceblue !important;
}

.calculator-section .section-description {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.calculator-section .section-title {
    text-align: center;
}