/* General Styles */
body {
    font-family: coop, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
h1 {
    color: white;
}
 h2, h3 {
    color: black;
}

a {
    text-decoration: none;
    color: white;
}


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
      font-family: 'coop2', Arial, sans-serif;
    overflow-x: hidden;
}
@font-face {
    font-family: 'coop';
    src: url('CooperHewitt-Heavy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
        }
        @font-face {
    font-family: 'coop2';
    src: url('CooperHewitt-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
        }
/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 40px 80px; /* Default padding for larger screens (desktop) */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

/* Navbar Shrinks on Scroll */
.navbar.shrink {
    padding: 40px 80px; /* Keep same padding on scroll for desktop */
    background: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Mobile-Specific Styles */
@media screen and (max-width: 1112px) {
    .navbar {
        padding: 50px 100px; /* Adjust padding for mobile */
    }

    /* Enable scrolling on mobile and customize scrollbar */
    .mobile-nav {
        display: block;
        height: 100vh; /* Full viewport height */
        overflow-y: auto; /* Enable vertical scrolling */
    }

    /* Custom Scrollbar for Mobile */
    .mobile-nav::-webkit-scrollbar {
        width: 8px; /* Set scrollbar width */
    }

    .mobile-nav::-webkit-scrollbar-thumb {
        background-color: #27ae60; /* Set thumb color */
        border-radius: 10px;
    }

    .mobile-nav::-webkit-scrollbar-track {
        background: #f1f1f1; /* Set track color */
        border-radius: 10px;
    }
}

/* Desktop-Specific Styles */
@media screen and (min-width: 1112px) {
    .navbar {
        padding: 40px 80px; /* Larger padding for desktop */
    }

    /* You can add any other desktop-specific adjustments here */
}

/* Change text color to white when shrunk */
.navbar.shrink .nav-links ul li a {
    color: #fff;
}

.navbar .logo img {
    height: 50px;
    transition: height 0.3s ease-in-out;
}

.navbar.shrink .logo img {
    height: 40px;
}

/* Navigation Links */
.nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links ul li {
    position: relative;
}

.nav-links ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Underline Animation */
.nav-links ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #27ae60;
    transition: width 0.3s ease;
}

/* Hover Effect */
.nav-links ul li a:hover {
    color: #27ae60;
}

.nav-links ul li a:hover::after {
    width: 100%; /* Expands the underline to full width */
}

/* Dropdown Menu Arrow */
.nav-links ul li .dropdown {
    position: relative;
    display: inline-block;
}

.nav-links ul li .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 20px; /* Extra space to prevent overlap with the arrow */
}

.nav-links ul li .dropdown-toggle .dropdown-icon {
    margin-left: 8px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-links ul li .dropdown:hover .dropdown-icon {
    transform: rotate(180deg); /* Arrow rotation on hover */
}

/* Dropdown Menu (before scroll) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Below the parent menu item */
    left: 50%; /* Center the dropdown under the parent */
    transform: translateX(-50%);
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* More prominent shadow */
    padding: 10px 0; /* Space around dropdown items */
    border-radius: 8px; /* Rounded corners */
    list-style: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease, opacity 0.3s ease;
    min-width: 200px;
    text-align: left; /* Align dropdown items to the left */
}

/* Dropdown Menu (after scroll) */
.navbar.shrink .dropdown-menu {
    background: black;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Dropdown Items */
.dropdown-menu li {
    padding: 8px 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 500;
}

/* Change dropdown text color when scrolled */
.navbar.shrink .dropdown-menu li a {
    color: white;
}

.dropdown-menu li:hover a {
    color: black; /* Highlight text */
}

/* Dropdown Icon */
.dropdown > a::after {
    content: "▼";
    margin-left: 5px;
    font-size: 12px;
    color: #333;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg); /* Arrow flips on hover */
}

/* CTA Button */
.ccta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #27ae60;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ccta-button:hover {
    background: #006400;
}

/* Container Styling */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Responsive Styles */
/* Mobile-specific styles */
/* Mobile-specific styles */
.hamburger-menu {
    display: none; /* Hide by default */
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    position: absolute; /* For precise positioning */
    top: 32.5px; /* Adjust vertical spacing */
    left: 25px; /* Move farther to the left */
    z-index: 15; /* Ensure the hamburger icon is above other elements */
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: #27ae60;
    border-radius: 5px;
}

/* Phone Icon - Visible only on mobile */
/* Mobile Phone Icon Container */
.phone-icon-container {
    position: absolute;
    top: 12.5px;
    right: 15px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* Adjust as needed */
    height: 60px; /* Adjust as needed */
}

/* Image within the phone icon */
.phone-icon-container img {
    width: 100%; /* Make sure the image fills the container */
    height: 100%; /* Make sure the image fills the container */
    object-fit: contain; /* Ensure the image keeps its aspect ratio */
}



/* Mobile-specific Media Queries */
@media screen and (max-width: 1112px) {
    /* Logo positioning */
    .navbar .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Hide navigation links on mobile */
    .nav-links {
        display: none;
    }

    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
    }

    /* Hide CTA button on mobile */
    .ccta-button {
        display: none;
    }

    /* Show mobile menu when hamburger is clicked */
    .mobile-nav.active {
        display: block;
    }

    /* Show Phone Icon container on mobile */
    .phone-icon-container {
        display: block; /* Show phone icon container on mobile */
    }
}


/* Desktop Styles */
@media screen and (min-width: 1112px) {
    .phone-icon {
        display: none; /* Hide phone icon on desktop */
    }

    /* Ensure the navigation links show on desktop */
    .nav-links {
        display: flex;
    }

    .hamburger-menu {
        display: none; /* Hide hamburger menu on desktop */
    }

    .ccta-button {
        display: inline-block; /* Show CTA button on desktop */
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-nav.active {
    display: block;
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #27ae60;
}

/* Mobile Navigation List */
.mobile-nav ul {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 1rem;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between text and dropdown icon */
    padding: 10px;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.mobile-nav ul li a:hover {
    background: #27ae60;
    color: #fff;
    border-radius: 5px;
}

/* Dropdown Menu */
/* Mobile Navigation Dropdown */
.mobile-nav ul li .servicesDropdown {
    display: none; /* Initially hidden */
    list-style: none;
    padding-left: 1.5rem; /* Indent items for a cleaner look */
    margin-top: 0.5rem; /* Add space between parent and dropdown */
    background: fff;
    border-left: 2px solid #27ae60; /* Highlight the dropdown area */
    transition: max-height 0.3s ease, opacity 0.3s ease; /* Smooth open/close animation */
    overflow: hidden; /* Prevent content overflow */
    max-height: 0; /* Collapsed by default */
    opacity: 0; /* Fully transparent by default */
}

.mobile-nav ul li .servicesDropdown.open {
    display: block; /* Show dropdown menu */
    max-height: 500px; /* Limit dropdown expansion */
    opacity: 1; /* Fully visible */
}

.mobile-nav ul li .dropdown-toggle {
    font-size: 1rem;
    cursor: pointer; /* Indicate it's clickable */
    display: flex;
    justify-content: space-between; /* Align text and icon */
    align-items: center;
    padding: 10px;
    color: #000; /* Default color */
    transition: background 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.mobile-nav ul li .dropdown-toggle:hover {
    background: #27ae60; /* Highlight background on hover */
    color: #fff; /* Change text color on hover */
}

.mobile-nav ul li .dropdown-toggle .dropdown-icon {
    font-size: 1rem;
    margin-left: 10px;
    transition: transform 0.3s ease; /* Rotate animation for the icon */
}

.mobile-nav ul li .dropdown-toggle.open .dropdown-icon {
    transform: rotate(90deg); /* Rotate icon when dropdown is open */
}
/* Hero Section */
.hero {
  position: relative; /* Allows for child elements to be positioned absolutely */
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  margin-top: 50px;
  margin-left:px;
  width: 105%;
  height: 100%;
  object-fit: cover;

}

.hero::before {
  content: ''; /* Creates the overlay */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay, adjust opacity as needed */
  z-index: 1; /* Ensures overlay is above the image, but below the text */
}

.hero-text {
  position: absolute; /* Allows text to overlay the image */
  top: 60%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjusts to center perfectly */
  text-align: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Makes text stand out on the image */
  z-index: 2; /* Ensures text is above the overlay */
}

.hero-text h1 {
  font-family: 'coop', sans-serif;
  font-size: 4rem;
  margin: 0;
}
@media (max-width: 768px){
    .hero-text h1{
        font-size: 3rem;
    }
}

/* === SERVICE INTRODUCTION === */
.service-intro {
  background: white;
  padding: 40px 5%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Reveal animation */
.service-intro.show {
  opacity: 1;
  transform: translateY(0);
}

/* FLEXBOX LAYOUT */
.service-intro .container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* === TEXT SECTION === */
.intro-text {
  padding-top: 20px;
  flex: 1;
  max-width: 50%;
  text-align: left;

}

.service-intro h2 {
  font-family: 'coop', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-intro p {
  font-family: 'coop2', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #444;
}

/* === IMAGE SECTION === */
.intro-images {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Main Image */
.main-img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Show when in view */
.main-img.show {
  opacity: 1;
  transform: translateX(0);
}

/* Small Images */
.sub-images {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out , transform 0.7s ease-out ; 
}

/* Show when in view */
.sub-images.show {
  opacity: 1;
  transform: translateX(0);
}

.sub-img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .service-intro .container {
    flex-direction: column;
    text-align: center;
  }

  .intro-text, .intro-images {
    max-width: 100%;
  }

  .sub-images {
    justify-content: center;
  }

  .service-intro h2 {
    font-size: 2.5rem;
    max-width: 100%;
  }

  .service-intro p {
    font-size: 1.2rem;
    max-width: 90%;
    margin: 0 auto;
  }

  .sub-img {
    width: 125px;
    height: 125px;
  }
}

@media (max-width: 768px) {
  .service-intro .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 2; /* Ensure content is above the background */

  }

  .service-intro {
    padding: 50px 5%;
  }

  .service-intro h2 {
    font-size: 2.2rem;
    text-align: center;
    max-width: 100%;
  }

  .service-intro p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 95%;
  }

  .sub-images {
    justify-content: center;
    gap: 10px;
  }

  .sub-img {
    width: 125px;
    height: 125px;
  }
}

@media (max-width: 480px) {

.intro-text{
   

}
  .service-intro h2 {
    font-size: 2rem;
  }

  .service-intro p {
    font-size: 1rem;
  }

  .sub-img {
    width: 85px;
    height: 85px;

  }
  .intro-images{
    padding: 5px;
  }

}


/* === SECTION TITLE STYLING === */
.section-title1 {
     font-family: 'coop', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;

    color: #222;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

/* === TITLE ANIMATION === */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === BENEFITS SECTION === */
.service-benefits {
    background: #white;
    padding: 40px 0;
}

/* === FLEX CONTAINER === */
.service-benefits .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === GRID FOR EVEN CARD ALIGNMENT === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 1400px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
}

/* === BENEFIT CARD DESIGN === */
.benefit-card {
    background: #27ae60;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

/* === CARD APPEAR ON SCROLL === */
.benefit-card.show {
    opacity: 1;
    transform: scale(1);
}

/* === HOVER EFFECTS === */
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: #006400;
}

/* === HEADINGS & TEXT === */
.benefit-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: black;
}

.benefit-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* === CUSTOMIZED BULLET POINTS === */
.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card ul li {
    font-size: 1.1rem;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.benefit-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: black;
    font-weight: bold;
    font-size: 1.3rem;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .service-benefits .container {
       padding: 20px;
    }
    .section-title1 {
        font-size: 2rem;
        margin-bottom: 30px;
        margin-top: 0px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        width: 100%;
        text-align: left;
    }
    .benefit-card {
  
    padding: 20px;
   
}
}

/* Reviews Section */
.reviews-section {
    width: 100%;
    padding: 40px 20px;
    background-color: black;
    box-sizing: border-box;
    text-align: center;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Reviews Section */
.reviews-section {
    text-align: center;
    padding: 60px 20px;
    background: black;
     overflow-x: hidden;
}

/* Reviews Heading */
.reviews-heading {
    font-size: 3rem;
    font-family: 'coop', Arial, sans-serif; 
    font-weight: bold;
    margin-bottom: 40px;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.reviews-heading.scroll-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px;
}

/* Review Carousel */
.review-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;  /* Enables horizontal scrolling */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    transition: transform 0.1s ease-in-out;
}

/* Hide scrollbar on mobile */
.review-carousel::-webkit-scrollbar {
    display: none;
}


/* Individual Review Box */
.review-box {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    flex: 0 0 30%;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Review Text */
.review-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Review Info */
.review-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Reviewer Name */
.review-name {
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

/* Stars */
.review-stars {
    display: flex;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffbb33;
}

.star {
    margin: 0 2px;
}

/* CTA Container */
.cta-container {
    margin-top: 40px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #27ae60;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(50px);
}

.cta-button.scroll-animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-button:hover {
    background-color: #218c54;
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .review-box {
        flex: 0 0 45%;
    }
}

@media screen and (max-width: 768px) {
    .reviews-heading {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .review-box {
        flex: 0 0 100%;
        padding: 20px;
        margin: 10px 0;
    }

    .review-text {
        font-size: 1rem;
    }

    .review-name {
        font-size: 1rem;
    }

    .review-stars {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .reviews-heading {
        font-size: 2rem;
    }

    .review-box {
        padding: 15px;
    }

    .review-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    /* Hide arrows on mobile */
@media screen and (max-width: 768px) {
    .carousel-arrow {
        display: none;
    }
}
}
/* PROCESS SECTION */
.service-process {
  background: white;
  padding: 65px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* TITLE */


/* Section Title Animation */
.section-title3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #222;
    position: relative;
    z-index: 1;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: popIn 1s ease-out forwards;
}

/* Cool Pop-Up Animation */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Process Steps Container */
.process-steps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Step Card Styling */
.step-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 50px 40px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    width: 50%;
    min-width: 250px;
    opacity: 0;
    transform: scale(0.9);
}

/* Step Number Animation */
.service-process h2{
     font-family: 'coop', sans-serif;
}
.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    background: #4CAF50;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    transform: scale(0.5);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

/* When scrolled into view, steps pop */
.step-card.show {
    opacity: 1;
    transform: scale(1);
}

.step-card.show .step-number {
    opacity: 1;
    transform: scale(1.2);
}

/* Hover Effects */
.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: #F1F1F1;
}

.step-card:hover .step-number {
    background: #2C8C34;
}

/* Step Content */
.step-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.step-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-process .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-title3 {
        font-size: 2rem;
        margin-bottom: 30px;
        width: 100%;  /* Ensures full width */
        text-align: center !important; /* Force center alignment */
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-card {
        width: 95%;
        text-align: center;
        padding: 30px;
    }

    .step-number {
        margin: 0 auto 15px;
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .step-content h3 {
        font-size: 1.8rem;
    }

    .step-content p {
        font-size: 1rem;
    }
}


/* === FAQ SECTION STYLING === */
.service-faqs {
    padding: 65px 35px;
    background: white;
    text-align: center;
}

/* === SECTION TITLE === */
.service-faqs h2 {
     font-family: 'coop', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* === FADE IN ANIMATION === */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === FAQ LIST CONTAINER === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

/* === INDIVIDUAL FAQ ITEM === */
.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* === HOVER EFFECT === */
.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* === FAQ QUESTION BUTTON === */
.faq-question {
    width: 100%;
    padding: 20px 25px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #1abc9c;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

/* === HOVER EFFECT === */
.faq-question:hover {
    color: #16a085;
}

/* === EXPAND ICON === */
.faq-icon {
    font-size: 1.6rem;
    color: #1abc9c;
    transition: transform 0.3s ease-in-out;
}

/* === ANSWER SECTION (INITIALLY HIDDEN) === */
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
}

/* === FAQ ANSWER TEXT === */
.faq-answer p {
    font-size: 1.2rem;
    color: #555;
    margin: 15px 0;
}

/* === FAQ LIST ITEMS === */
.faq-answer ul {
    list-style: none;
    padding-left: 0;
    color: #444;
}

.faq-answer ul li {
    padding: 8px 0;
    font-size: 1.1rem;
}

/* === WHEN ACTIVE (SHOWS ANSWER) === */
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
    opacity: 1;
}

/* === ROTATE ICON WHEN ACTIVE === */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
      .service-faqs .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;

    }
    .service-faqs h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1.4rem;
        padding: 20px;
    }

    .faq-answer p {
        font-size: 1.1rem;
    }

    .faq-answer ul li {
        font-size: 1rem;
    }
}

/* === CALL TO ACTION SECTION === */
.service-cta {
  background: #27ae60; 
  color: #fff;
  padding: 90px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Reveal animation */
.service-cta.show {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle Overlay */
.service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('background-texture.png'); /* Add subtle depth */
  opacity: 0.05;
  z-index: 0;
}

/* CTA Container */
.service-cta .cta-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* === TEXT CONTENT === */
.service-cta .cta-text {
  flex: 1;
  min-width: 350px;
  text-align: left;
}

.service-cta h2 {
      font-family: 'coop', sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-cta p {
  font-size: 1.2rem;
  max-width: 500px;
  line-height: 1.6;
}

/* === FORM STYLING === */
.service-cta .cta-form {
  flex: 1;
  min-width: 380px;
  background: rgba(255, 255, 255, 0.98);
  padding: 45px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out 0.3s, transform 0.7s ease-out 0.3s;
}

/* Reveal animation */
.service-cta .cta-form.show {
  opacity: 1;
  transform: translateX(0);
}

/* Form Layout */
.service-cta form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-cta input,
.service-cta textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  margin: 10px 0px;
  background: #f9f9f9;
  transition: border 0.3s ease-in-out;
}

.service-cta input:focus,
.service-cta textarea:focus {
  border-color: #2c8c34;
  outline: none;
}

/* CTA Button */
.service-cta .btn {
  background: black;
  color: #fff;
  padding: 14px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease-in-out, transform 0.2s;
}

.service-cta .btn:hover {
  background: black;
  transform: scale(1.05);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .service-cta .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .service-cta .cta-text {
    text-align: center;
  }

  .service-cta .cta-form {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .service-cta {
    padding: 70px 20px;
  }

  .service-cta h2 {
    font-size: 2.4rem;
  }

  .service-cta p {
    font-size: 1.1rem;
  }

  .service-cta .btn {
    font-size: 1.1rem;
    padding: 12px;
  }
}





/* CARD STYLES */
.card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
/* Footer Styling */
.footer {
    background-color: black;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Logo Section */
.footer-logo img {
    max-width: 150px;
    margin: 0 auto;
}

/* Contact Section */
.footer-contact h4,
.footer-social h4,
.footer-counties h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #27ae60;
}

.footer-contact a {
    color: #27ae60;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}
/* Social Icons */
.footer-social .social-icon {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-social .social-img {
    width: 30px;
    height: 30px;
   
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icon:hover .social-img {
    filter: brightness(0) saturate(100%) hue-rotate(90deg); /* greenish hover effect */
    transform: scale(1.1);
}


/* Counties Served */
.footer-counties p {
    font-size: 16px;
}

/* CTA Button */
.footer-cta .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #27ae60;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.footer-cta .cta-button:hover {
    background: #27ae60;
}

/* Bottom Section */
.footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
    border-top: 1px solid #555;
    padding-top: 20px;
}

.footer-bottom a {
    color: #27ae60;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact,
    .footer-social,
    .footer-counties,
    .footer-cta {
        margin-bottom: 20px;
    }
}


/* GSAP Animation Hook */
[data-animation] {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .benefits-grid, .process-steps, .testimonials-slider {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}