* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.top-strip {
    background-color: #f5f5f5;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-weight: bold;
    font-size: 0px;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.nav-item {
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.nav-link:hover, .nav-link:focus {
    color: #007bff;
}

.highlight .nav-link {
    color: #007bff;
    font-weight: 600;
}

/* Mobile Menu */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 10px;
    z-index: 10000;
    position: relative;
}

/* Hide close button by default */
.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    padding: 10px;
}

/* Show close button when menu is active */
.fullscreen-menu.active .close-menu {
    display: block;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    padding: 10px 0;
    display: block;
}

.highlight .nav-link {
    color: #007bff;
    font-weight: 600;
}

.phone {
    font-weight: bold;
    color: #333;
    margin-left: 20px;
    white-space: nowrap;
}

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

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.industry-name {
    color: #4a6cf7;
    position: relative;
    display: inline-block;
}

.industry-name::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(74, 108, 247, 0.2);
    z-index: -1;
}

.section-subtitle {
    display: block;
    font-size: 1.1rem;
    color: #4a6cf7;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
}

/* Services Layout */
.services-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Services List */
.services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.service-pill {
    display: block;
    padding: 20px 25px;
    background: #f8fafc;
    border-radius: 12px;
    color: #334155;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-pill::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #4a6cf7;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.service-pill:hover {
    transform: translateX(10px);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.service-pill:hover::before {
    transform: scaleY(1);
}

.more-text {
    margin: 20px 0;
    color: #64748b;
    font-size: 1rem;
}

.link-cta {
    color: #4a6cf7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.link-cta:hover {
    color: #3a5bd9;
    text-decoration: underline;
}

.link-cta::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.link-cta:hover::after {
    transform: translateX(3px);
}

.btn-quote {
    display: inline-block;
    padding: 15px 30px;
    background: #4a6cf7;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 10px;
}

.btn-quote:hover {
    background: #3a5bd9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
}

/* Services Figure */
.services-figure {
    position: relative;
    flex: 1;
    max-width: 600px;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.services-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.services-figure:hover .services-image {
    transform: scale(1.03);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.badge-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-small {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.3;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #4a6cf7 0%, #3a5bd9 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: white;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cta-btn.primary {
    background: #ffffff;
    color: #4a6cf7;
}

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

.cta-btn.phone {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.phone:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.cta-btn i {
    margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .services-list,
    .services-figure {
        max-width: 100%;
        width: 100%;
    }
    
    .services-figure {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-pill {
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .experience-badge {
        padding: 12px 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .badge-large {
        font-size: 1.5rem;
    }
    
    .badge-small {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-pill {
        padding: 16px 20px;
    }
    
    .btn-quote {
        width: 100%;
        padding: 14px 20px;
    }
    
    .experience-badge {
        padding: 10px 15px;
        bottom: 15px;
        right: 15px;
    }
    
    .badge-large {
        font-size: 1.3rem;
    }
    
    .badge-small {
        font-size: 0.75rem;
    }
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #4a6cf7;
    transition: all 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #f0f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #4a6cf7;
    font-size: 28px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #4a6cf7;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #4a6cf7;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #3a5bd9;
}

.read-more:hover span {
    transform: translateX(5px);
}

.cta-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.cta-content h3 {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-content p {
    color: #64748b;
    margin: 0;
    font-size: 1.1rem;
}

.cta-button {
    background: #4a6cf7;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.cta-button span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: #3a5bd9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
}

.cta-button:hover span {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

.service-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: #343a40;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.service-overlay {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.service-overlay p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0055ff;
    color: white;
    padding: 12px;
    border-radius: 8px;
    transform: rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 3;
}

.experience-badge span {
    display: block;
    line-height: 1.2;
    font-weight: 500;
}

.experience-badge span:first-child {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
        align-items: center;
    }
    
    .services-content {
        flex: 1;
        padding-right: 40px;
    }
    
    .services-visual {
        flex: 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .button-columns {
        gap: 24px;
    }
}

/* Service Carousel */
.service-carousel-section {
    padding: 60px 0;
    background-color: #fff;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    padding: 10px 60px; /* Add padding for arrows */
    width: 100%;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    min-width: 300px;
    height: 200px;
    background-color: #f5f5f5;
    border-radius: 8px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.carousel-item h3 {
    margin: 0;
    padding: 8px 12px;
    font-size: 1rem;
    color: #333;
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 30px;
    width: 40px;
    height: 60px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: #f0f0f0;
}

.carousel-btn.left {
    left: 10px;
}

.carousel-btn.right {
    right: 10px;
}

.carousel-item h3 {
    text-align: center;
    margin: 10px 0 0;
    color: #333;
    font-size: 1.2rem;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #f5f5f5;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .carousel-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .carousel-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 100%;
    }
    
    .carousel {
        padding: 20px 10px;
    }
    
    .carousel-wrapper {
        padding: 0 40px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Closing CTA Section */
.closing-cta {
    position: relative;
    background-color: #333;
    background-image: url('images/cta-bulldozer.jpg');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position-y: 70%;
    padding: 80px 20px;
    margin: 50px 0;
    border-radius: 20px;
    color: white;
    text-align: center;
    overflow: hidden;
    width: 90%;
    left: 5%;
    right: 5%;
}

.closing-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.closing-cta .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.closing-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.closing-cta h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.closing-cta .subtext {
    font-size: 1.25rem;
    color: #f0f0f0;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Make sure all CTA buttons are green */
.cta-button,
.quote-btn,
.pricing-btn,
.submit-btn {
    background-color: #4CAF50 !important;
    color: white !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.cta-button:hover,
.quote-btn:hover,
.pricing-btn:hover,
.submit-btn:hover {
    background-color: #45a049 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Navbar buttons should remain unchanged */
.navbar .cta-button,
.navbar .quote-btn,
.navbar .pricing-btn,
.navbar .submit-btn {
    background-color: initial !important;
    color: initial !important;
}

.closing-cta .cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    margin-top: 20px;
    cursor: pointer;
    text-decoration: none;
    background-color: #4CAF50 !important;
    color: white !important;
    border: none;
}

.closing-cta .cta-button:hover {
    background-color: #45a049 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .closing-cta {
        padding: 60px 15px;
        margin: 30px 0;
    }
    
    .closing-cta h2 {
        font-size: 2.2rem;
    }
    
    .closing-cta .subtext {
        font-size: 1.1rem;
    }
    
    .closing-cta .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .closing-cta h2 {
        font-size: 1.8rem;
    }
    
    .closing-cta .subtext {
        font-size: 1rem;
    }
}

/* Benefits Section */
.benefits-section {
    background-color: #f3f3f3;
    padding: 80px 0;
    margin: 50px auto;
    max-width: 100%;
}

.benefits-section .section-title {
    margin-bottom: 50px;
    position: relative;
    font-size: 2.5rem;
    color: #333;
}

.benefits-section .highlight {
    color: #4CAF50;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-item {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: #e9e9e9;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #4CAF50;
    transition: background-color 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background-color: #4CAF50;
    color: white;
}

.benefit-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Footer */
.main-footer {
    background-color: #e0e0e0;
    padding: 20px 0;
    color: #333;
    font-size: 1rem;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
}

.footer-text {
    color: #333;
    text-decoration: none;
}

.privacy-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    text-decoration: underline;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-item {
        justify-content: center;
        width: 100%;
    }
}

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

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
        margin: 30px auto;
    }
    
    .benefits-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .benefit-item {
        padding: 25px 20px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background-image: url('images/wide-bulldozer.png');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position-y: 60%;
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.cta-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }
    
    .cta-text {
        text-align: center;
        padding-right: 0;
        margin-bottom: 25px;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
    }
}

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

.rating-container {
    text-align: center;
    margin: 30px 0 50px;
}

.rating {
    display: inline-block;
    text-align: center;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stars {
    margin: 10px 0;
}

.star {
    color: #FFA41C;
    font-size: 1.8rem;
    margin: 0 2px;
}

.google-logo {
    margin: 15px auto 0;
    display: block;
    max-width: 100%;
    text-align: center;
}

.google-logo img {
    width: auto;
    height: 20px;  /* Significantly reduced from 30px */
    display: inline-block;
    max-width: 100%;
    margin: 5px 0;  /* Added small vertical margin */
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: #FFA41C;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
    margin: 0;
    font-size: 1.1rem;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .testimonial-card {
        flex: 1;
        max-width: 350px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .testimonial-text {
        flex-grow: 1;
    }
}

/* Pricing Section Buttons */
.pricing-btn {
    text-decoration: none !important;
    display: inline-block;
}

.pricing-btn:hover {
    text-decoration: none !important;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0 60px;
    background-color: #f9f9f9;
    text-align: center;
}


.optional-text {
    font-style: italic;
    font-weight: normal;
    color: #6c757d;
    font-size: 0.8em;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0 60px; /* Added bottom margin for spacing before the note */
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin: 15px 0 5px;
    text-align: center;
    width: 100%;
}

.per-unit {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
    margin-left: 4px;
}

.card-title {
    font-size: 1.5rem;
    color: #333;
    margin: 10px 0 5px;
    width: 100%;
    text-align: center;
}

.card-desc {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 25px;
    width: auto;
    display: table;
    text-align: left;
    max-width: 90%;
}

.card-features li {
    padding: 6px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
    white-space: nowrap;
}

.card-features li:before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
    margin-right: 8px;
}

.pricing-btn {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 220px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
}

.pricing-btn:hover {
    background: #5a6268;
}

/* Pricing Note Styling */
.pricing-note {
    text-align: center;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 25px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.pricing-note p {
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-cards {
        margin-bottom: 40px; /* Slightly less space on mobile */
    }
    
    .pricing-note {
        margin: 0 15px;
        padding: 20px 15px;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .pricing-cards {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 25px;
    }
    
    .pricing-card {
        flex: 1;
        max-width: 350px;
    }
}

/* Mobile Styles */
/* Fullscreen Mobile Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
}

.fullscreen-menu.active {
    display: block;
    opacity: 1;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    padding: 10px;
}

.mobile-nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-list li {
    margin: 20px 0;
}

.mobile-nav-link {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}

.mobile-nav-link.highlight {
    color: #007bff;
    font-weight: 600;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: #007bff;
}

@media (max-width: 767px) {
    .services-section {
        padding: 40px 0;
    }
    
    .button-columns {
        flex-direction: column;
        gap: 12px;
    }
    
    .button-column {
        gap: 12px;
    }
    
    .quote-btn {
        max-width: 100%;
    }
    .hamburger {
        display: block;
    }
    
    /* Hide hamburger when menu is active */
    .hamburger[aria-expanded="true"] {
        display: none;
    }
    
    .fullscreen-menu {
        display: none;
    }
    
    .fullscreen-menu.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 10px 0;
    }

    .nav-links.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        margin: 0;
        text-align: center;
    }

    .nav-link {
        padding: 12px 20px;
    }

    .phone {
        display: none;
    }
}

.phone {
    font-weight: bold;
    color: #333;
}

.highlight {
    color: #007bff !important;
}

/* Responsive styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 120px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .phone {
        display: none;
    }
}

/* Hero Section */
.hero {
    width: 100%;
    background-color: #666;
    padding: 60px 0;
    background-image: url('images/bulldozer-hero.jpg');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode:soft-light;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 0 5%;
}

.hero-content {
    flex: 1;
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-text {
    flex: 1;
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subheading {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.subheading span {
    color: #4CAF50;
    font-weight: bold;
}

.benefits {
    list-style: none;
    margin-bottom: 40px;
}

.benefits li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.check {
    color: #4CAF50;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.3rem;
}

.rating {
    margin-top: auto;
}

.google-logo {
    height: 24px;
    margin-bottom: 10px;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.rating-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Quote Form */
.quote-form {
    flex: 0 0 42%;
    background: white;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    align-self: flex-start;
    margin: 20px 0;
}

.quote-form h2 {
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #45a049;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-container {
        max-width: 900px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 0;
    }
    
    .quote-form {
        width: 100%;
        max-width: 600px;
        margin: 20px auto 0;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .benefits {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .rating {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        position: relative;
    }

    .logo {
        font-size: 20px;
    }

    .hamburger {
        display: inline-block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 80px 30px 30px;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }

    .phone {
        margin-right: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .subheading {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .quote-form {
        padding: 25px 20px;
        margin: 20px 0 0;
    }
    
    .benefits li {
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

/* Thank You Page Styles */
.thank-you-banner {
    background-color: #494848; /* Dark background to match hero section */
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.thank-you-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-banner .subheading {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.before-after-section {
    padding: 60px 0;
    text-align: center;
}

.before-after-section h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 600;
}

.before-after-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.before-after-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    margin-bottom: 30px;
}

.image-container {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-container .label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.back-home-section {
    text-align: center;
    padding: 60px 0;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50; /* Green accent color from hero section */
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.back-home-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.back-home-btn:hover {
    background-color: #3d8b40; /* Slightly darker green for hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25, 118, 210, 0.4);
}


/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url('images/gallery/test.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
    margin-bottom: 60px;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-hero .subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.all-services {
    padding: 60px 0;
}

.service-category {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    text-align: center;
    padding: 30px 0 15px;
    background-color: #f8f9fa;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 15px;
    color: #333;
}

.service-card p {
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0 20px 30px;
    margin-top: auto;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.service-features li:before {
    content: '✓';
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-category {
        grid-template-columns: 1fr;
    }
    
    .services-hero {
        padding: 80px 15px;
    }
    
    .services-hero h1 {
        font-size: 2.2rem;
    }
}

/* Gallery specific styles */
.gallery-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.gallery-title {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.gallery-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-category {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.gallery-caption h3 {
    margin: 5px 0 0;
    font-size: 1.1rem;
}

/* Service Carousel Styles */
.service-carousel-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.services-grid-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
    text-align: center;
}

.service-content h3 {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.carousel-track-container {
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    padding: 10px 0;
    width: max-content;
    will-change: transform;
}

.carousel-item {
    flex: 0 0 auto;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin: 0 0 10px;
    color: #333;
    font-size: 1.25rem;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.service-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-link span {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #0056b3;
}

.service-link:hover span {
    transform: translateX(5px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    color: #333;
}

.carousel-btn:hover {
    background: #007bff;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
    background: #f5f5f5;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-item {
        width: calc(50vw - 60px);
    }
    
    .carousel-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        width: calc(100vw - 80px);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .service-carousel-section {
        padding: 40px 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 20px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-title h1 {
        font-size: 2rem;
    }
}

 /* About Us specific styles */
 .about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/gallery/test6.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-section {
    padding: 80px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #007bff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.team-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* ==========================================================================
   #SERVICE CARDS
   ========================================================================== */

.all-services {
    padding: 80px 0;
    background-color: #f9fafb;
}

.service-category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
}

.service-card h3 {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.service-card p {
    color: #4b5563;
    margin: 0 0 20px 0;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding: 8px 0 8px 30px;
    color: #4b5563;
    line-height: 1.5;
    border-bottom: 1px solid #f3f4f6;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a6cf7;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .service-category {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .service-category {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px;
    }
}

/* ==========================================================================
   #FOOTER STYLES
   ========================================================================== */

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 8px 0;
}

.footer-icon {
    color: #4a6cf7;
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.privacy-link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.privacy-link:hover {
    color: #4a6cf7;
    text-decoration: underline;
}

/* Responsive Footer */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }
    
    .footer-item {
        padding: 0;
    }
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    color: #333;
    margin-bottom: 5px;
}

.team-info p {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
}