:root {
    --primary-blue: #1E88E5;
    --primary-green: #8ec640;
}
body {
    font-family: 'Inter', sans-serif;
    padding-top: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.bg-primary-blue {
    background-color: var(--primary-blue);
}
.bg-primary-green {
    background-color: var(--primary-green);
}
.text-primary-blue {
    color: var(--primary-blue);
}
.text-primary-green {
    color: var(--primary-green);
}
.hover\:bg-primary-blue:hover {
    background-color: var(--primary-blue);
}
.hover\:bg-primary-green:hover {
    background-color: var(--primary-green);
}
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
}
.sticky-banner {
    position: sticky;
    top: 0;
    z-index: 50;
}
.sticky-nav {
    position: sticky;
    top: 47px; /* Height of banner */
    z-index: 40;
}

/* Mobile menu fixes */
@media (max-width: 768px) {
    .hidden {
        display: none;
    }
    .md\:hidden {
        display: block;
    }
    .md\:flex {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
}
.slide-up {
    opacity: 0;
    transform: translateY(50px);
}
.slide-down {
    opacity: 0;
    transform: translateY(-50px);
}
.slide-left {
    opacity: 0;
    transform: translateX(50px);
}
.slide-right {
    opacity: 0;
    transform: translateX(-50px);
}
.scale-up {
    opacity: 0;
    transform: scale(0.8);
}

/* Hero Swiper Specific Styles */
.heroSwiper {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

/* Fix for the swiper on mobile */
@media (max-width: 768px) {
    .heroSwiper {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .heroSwiper .swiper-slide img {
        width: 100%;
        height: auto;
        min-height: 220px;
    }
}

/* Testimonial Swiper Styles */
.testimonialSwiper {
    padding: 30px 0;
    position: relative;
    overflow: visible !important; /* Force visibility */
    z-index: 1; /* Ensure it's below sticky navigation */
}

/* Individual slide styling */
.testimonialSwiper .swiper-slide {
    opacity: 0.5 !important; 
    transition: all 0.4s ease;
    transform: scale(0.85);
    filter: blur(1px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    background-color: white;
}

/* Active slide styling */
.testimonialSwiper .swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1);
    filter: blur(0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: relative;
}

/* Active slide highlight effect */
.testimonialSwiper .swiper-slide-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
    z-index: 2;
    border-radius: 16px;
}

/* Hover effect on slides */
.testimonialSwiper .swiper-slide:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Profile image styling */
.testimonialSwiper .swiper-slide .w-12, 
.testimonialSwiper .swiper-slide .sm\:w-16 {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonialSwiper .swiper-slide:hover .w-12,
.testimonialSwiper .swiper-slide:hover .sm\:w-16 {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Pagination styling */
.testimonialSwiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    opacity: 1;
    bottom: 0 !important;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    opacity: 0.5;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background-color: #8EC640;
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Navigation button styling */
.testimonialSwiper .swiper-button-next:after,
.testimonialSwiper .swiper-button-prev:after {
    display: none;
}

.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.testimonialSwiper .swiper-button-next:hover,
.testimonialSwiper .swiper-button-prev:hover {
    background-color: #8EC640;
    transform: scale(1.1);
}

.testimonialSwiper .swiper-button-next:hover svg,
.testimonialSwiper .swiper-button-prev:hover svg {
    color: white !important;
}

/* Testimonial text styling */
.testimonialSwiper .swiper-slide p.text-gray-600 {
    position: relative;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonialSwiper .swiper-slide p.text-gray-600::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background-color: #f9f9f9;
}

/* Star animations */
.testimonialSwiper .swiper-slide svg {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.testimonialSwiper .swiper-slide:hover svg {
    transform: scale(1.2);
    animation: starPulse 1.5s infinite alternate;
}

@keyframes starPulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}

/* Sequential star animation */
.testimonialSwiper .swiper-slide-active svg:nth-child(1) {
    animation-delay: 0s;
}
.testimonialSwiper .swiper-slide-active svg:nth-child(2) {
    animation-delay: 0.1s;
}
.testimonialSwiper .swiper-slide-active svg:nth-child(3) {
    animation-delay: 0.2s;
}
.testimonialSwiper .swiper-slide-active svg:nth-child(4) {
    animation-delay: 0.3s;
}
.testimonialSwiper .swiper-slide-active svg:nth-child(5) {
    animation-delay: 0.4s;
}

/* Fix for mobile devices */
@media (max-width: 768px) {
    .testimonialSwiper {
        padding: 15px 0;
}

.testimonialSwiper .swiper-slide {
        transform: scale(0.95);
    }
    
    .testimonialSwiper .swiper-slide-active {
        transform: scale(1);
    }
    
    .testimonialSwiper .swiper-button-next,
    .testimonialSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
}

.wave-divider {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%233498db'/%3E%3C/svg%3E");
    background-size: cover;
    height: 80px;
    width: 100%;
}
.wave-divider-top {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%233498db'/%3E%3C/svg%3E");
    background-size: cover;
    height: 80px;
    width: 100%;
    transform: rotate(180deg);
}
.blob-shape {
    border-radius: 44% 56% 70% 30% / 45% 45% 55% 55%;
}
.arrow-icon {
    border-radius: 50%;
    background-color: #fff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background-color: #ffffff;
}
.call-button {
    position: absolute;
    bottom: -20px;
    left: -10px;
    background-color: #2b96d9;
    color: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 220px;
}
.phone-icon {
    background-color: #1e88c9;
    border-radius: 50%;
    padding: 8px;
    margin-right: 10px;
}
.feature-14 {
    color: #8ec640;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}
.feature-plus {
    color: #8ec640;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 8px;
    margin-left: 2px;
}
.feature-text {
    color: #2b96d9;
    font-weight: 500;
}
.about-section {
    padding-top: 80px;
}
.about-title {
    color: #8ec640;
    font-size: 1.125rem;
    font-weight: 500;
}
.about-heading {
    color: #333333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 40px;
}

/* Services Section Styles */
.services-section {
    background-color: #f3fce8;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before,
.services-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(142, 198, 64, 0.2);
    z-index: 1;
}

.services-section::before {
    top: -100px;
    left: -100px;
}

.services-section::after {
    bottom: -100px;
    right: -100px;
}

.services-container {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.services-heading {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.services-text {
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-icon-container {
    width: 60px;
    height: 60px;
    background-color: #2b96d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.service-icon {
    width: 30px;
    height: 30px;
    fill: white;
}

.service-name {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
}

.services-tagline {
    text-align: center;
    color: #333;
    font-weight: 600;
    margin: 30px 0;
    font-size: 18px;
    position: relative;
}

.services-tagline::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background-color: #8ec640;
}

.schedule-button {
    display: block;
    background-color: #2b96d9;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    margin: 40px auto 0;
    width: fit-content;
    transition: all 0.3s ease;
}

.schedule-button:hover {
    background-color: #1e88c9;
}

/* Why Choose Us Section Styles */
.choose-us-section {
    background-color: white;
    padding: 60px 0;
    position: relative;
}

.choose-us-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.choose-us-heading {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.choose-us-text {
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.reason-tag {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    display: inline-block;
}

.tag-green {
    background-color: #8ec640;
}

.tag-blue {
    background-color: #2b96d9;
}

.choose-us-summary {
    color: #555;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.wave-divider-bottom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%233498db'/%3E%3C/svg%3E");
    background-size: cover;
    height: 80px;
    width: 100%;
}

/* Pricing Section Styles */
.pricing-section {
    background-color: #b8dbf2;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-heading {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    width: 250px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
    background-color: #8ec640;
    color: white;
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle.green {
    border: 3px solid #8ec640;
}

.icon-circle.blue {
    background-color: #2b96d9;
}

.icon-circle svg {
    width: 50px;
    height: 50px;
    color: #333;
}

.featured .icon-circle svg {
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.service-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.featured .service-title,
.featured .service-subtitle {
    color: white;
}

.price-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #8ec640;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #8ec640;
}

.featured .price-text,
.featured .price-amount {
    color: white;
}

.view-prices-btn {
    display: block;
    background-color: #000;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    transition: all 0.3s ease;
}

.view-prices-btn:hover {
    background-color: #333;
}

/* Mobile App Section Styles */
.app-section {
    background-color: #f3f8fc;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23b8dbf2'/%3E%3C/svg%3E");
    background-size: cover;
    transform: rotate(180deg);
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.app-content {
    flex: 1;
    max-width: 500px;
    padding-right: 40px;
}

.app-tagline {
    color: #2b96d9;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.app-heading {
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.app-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #444;
}

.app-features li::before {
    content: '•';
    color: #8ec640;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.app-download {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.app-image {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.app-van-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .app-container {
        flex-direction: column;
    }
    
    .app-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .app-features li {
        text-align: left;
    }
    
    .app-download {
        justify-content: center;
    }
    
    .app-image {
        max-width: 100%;
    }
}

/* How it Works Section Styles */
.how-it-works-section {
    background-color: #f5f8fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.icon-container {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-icon {
    width: 40px;
    height: 40px;
}

.steps-text {
    color: #8ec640;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.how-it-works-heading {
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 60px;
}

/* Dotted connecting lines */
.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: calc(12.5% + 30px);
    width: calc(75% - 60px);
    height: 4px;
    background-image: linear-gradient(to right, #8ec640 50%, transparent 50%);
    background-position: 0 0;
    background-size: 16px 4px;
    background-repeat: repeat-x;
    z-index: 1;
}

.process-step {
    flex: 0 0 25%;
    text-align: center;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.step-icon-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: #8ec640;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 3;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 2px dashed #8ec640;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto 0;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: #2b96d9;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.step-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.schedule-pickup-container {
    text-align: center;
}

.schedule-pickup-btn {
    display: inline-block;
    background-color: #8ec640;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.schedule-pickup-btn:hover {
    background-color: #7ab32e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .process-step {
        flex: 0 0 100%;
    }
}

/* Recent Articles Section Styles */
.recent-articles-section {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.recent-articles-section .container {
    position: relative;
    z-index: 2;
}

.article-container {
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
}

.recent-articles-section h2 {
    position: relative;
    z-index: 3;
    font-weight: 700;
    color: #333;
}

.recent-articles-section h2 span {
    background-color: #8EC640;
    height: 3px;
    width: 80px;
    margin: 15px auto 0;
    display: block;
    border-radius: 2px;
}

.article-card {
    position: relative;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
    height: 100%;
    z-index: 4;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.article-card .relative {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.article-card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover img {
    transform: scale(1.05);
}

.article-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    transition: color 0.3s ease;
}

.article-card h3:hover {
    color: #8EC640;
}

.article-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-card a {
    display: inline-flex;
    align-items: center;
    color: #8EC640;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.article-card a:hover {
    text-decoration: underline;
}

.article-card a svg {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.article-card a:hover svg {
    transform: translateX(3px);
}

.recent-articles-section .text-center a {
    background-color: #8EC640;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(142, 198, 64, 0.2);
    transition: all 0.3s ease;
}

.recent-articles-section .text-center a:hover {
    background-color: #7ab32e;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(142, 198, 64, 0.3);
}

@media (max-width: 767px) {
    .recent-articles-section {
        padding: 60px 0;
    }
    
    .article-card h3 {
        font-size: 1.1rem;
    }
    
    .article-card p {
        font-size: 0.9rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials-heading {
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.star-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.rating-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    margin-left: 10px;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.client-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 -5px;
    border: 3px solid white;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar.active {
    transform: scale(1.1);
    border-color: #8ec640;
    z-index: 2;
}

.testimonial-content {
    padding-top: 30px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.client-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.client-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .avatar {
        width: 50px;
        height: 50px;
    }
}

/* Service Area Section Styles */
.service-area-section {
    padding: 60px 0;
    background-color: white;
    border-top: 1px solid #eee;
}

.service-area-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-area-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.service-area-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.view-locations-btn {
    background-color: #2b96d9;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.view-locations-btn:hover {
    background-color: #1e88c9;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.location-btn {
    display: block;
    text-align: center;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-green {
    background-color: rgba(142, 198, 64, 0.15);
}

.location-blue {
    background-color: rgba(43, 150, 217, 0.15);
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-area-header {
        align-items: flex-start;
        gap: 15px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
footer {
    background-color: #1a2963;
    color: #fff;
    position: relative;
    overflow: hidden;
}

footer h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid #8EC640;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

footer ul li span {
    color: #8EC640;
    margin-right: 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
}

footer ul li a {
    color: #fff;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #8EC640;
}

footer .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

footer .contact-icon {
    width: 2.25rem;
    height: 2.25rem;
    background-color: #8EC640;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

footer .contact-text p:first-child {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

footer .contact-text p:last-child {
    color: #fff;
    font-size: 0.875rem;
}

/* Newsletter Section */
footer .newsletter-section {
    background-color: #8EC640;
    padding: 1.5rem 0;
}

footer .newsletter-form {
    display: flex;
    width: 100%;
}

footer .newsletter-input {
    flex-grow: 1;
    height: 2.5rem;
    border: none;
    border-radius: 0.375rem 0 0 0.375rem;
    padding: 0 1rem;
    outline: none;
}

footer .newsletter-button {
    background-color: #1a2963;
    color: white;
    border: none;
    border-radius: 0 0.375rem 0.375rem 0;
    padding: 0 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

footer .newsletter-button:hover {
    background-color: #141f4b;
}

footer .social-links {
    display: flex;
    gap: 0.5rem;
}

footer .social-link {
    width: 2rem;
    height: 2rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

footer .social-link:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    footer .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    footer .newsletter-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    footer .newsletter-form {
        margin-bottom: 1rem;
    }
    
    footer .social-links {
        justify-content: flex-start;
    }
}

/* Sticky Navigation Styles */
.sticky {
    position: sticky;
    transition: all 0.3s ease;
}

/* Ensure content flows properly with sticky navigation */
body {
    padding-top: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Adjust z-index to ensure sticky elements appear above other content */
.z-50 {
    z-index: 50;
}
.z-40 {
    z-index: 40;
}

/* Add shadow to navigation when scrolled */
.sticky-shadow {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile adjustments for sticky navigation */
@media (max-width: 768px) {
    .sticky.top-9 {
        top: 36px; /* Adjust based on mobile banner height */
    }
}

/* Testimonial Swiper Styles - Add compatibility with sticky navigation */
.testimonialSwiper {
    padding: 30px 0;
    position: relative;
    overflow: visible !important; /* Force visibility */
    z-index: 1; /* Ensure it's below sticky navigation */
}

/* Navbar Menu Styling */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Menu Item Styling */
.navbar-menu a {
    position: relative;
    color: white;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Hover Effect with Underline */
.navbar-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #8EC640;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.navbar-menu a:hover {
    color: #8EC640;
    transform: translateY(-2px);
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Active State */
.navbar-menu a.active {
    color: #8EC640;
    font-weight: 600;
}

.navbar-menu a.active::after {
    width: 100%;
    background-color: #8EC640;
}

/* Login/Register Button */
.navbar-menu button {
    background-color: #8EC640;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 6px rgba(142, 198, 64, 0.25);
}

.navbar-menu button:hover {
    background-color: white;
    color: #8EC640;
    border-color: #8EC640;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(142, 198, 64, 0.3);
}

/* Mobile Menu Styling */
.mobile-menu {
    background-color: #3B82F6;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.mobile-menu a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu a:hover {
    color: #8EC640;
    padding-left: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu button {
    background-color: #8EC640;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu button:hover {
    background-color: white;
    color: #8EC640;
}

/* Navigation Dropdown Indicator */
.has-dropdown {
    position: relative;
    padding-right: 1.25rem;
}

.has-dropdown::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Logo Animation */
.logo-container {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.125rem;
    margin-right: 0.5rem;
}

.logo-grid > div {
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-grid > div:nth-child(1) {
    transform: rotate(-5deg) scale(1.1);
}

.logo-container:hover .logo-grid > div:nth-child(2) {
    transform: rotate(5deg) scale(1.1);
}

.logo-container:hover .logo-grid > div:nth-child(3) {
    transform: rotate(5deg) scale(1.1);
}

.logo-container:hover .logo-grid > div:nth-child(4) {
    transform: rotate(-5deg) scale(1.1);
}

/* Sticky Navigation Enhancement */
.sticky-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.recent-articles-section h2 {
    position: relative;
    z-index: 3;
    font-weight: 700;
    color: #333;
}

.recent-articles-section h2 span {
    background-color: #8EC640;
    height: 3px;
    width: 80px;
    margin: 15px auto 0;
    display: block;
    border-radius: 2px;
} 