  /* Global Styles */
        :root {
            --primary-blue: #0099cc;
            --light-blue: #00bcd4;
            --white: #ffffff;
            --light-gray: #f2f2f2;
            --sand-beige: #f5e7d0;
            --cta-orange: #ff7f50;
            --dark-gray: #333333;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4 {
            margin-bottom: 20px;
            color: var(--primary-blue);
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
        }

        h2 {
            font-size: 2rem;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--cta-orange);
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--cta-orange);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .btn:hover {
            background-color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: var(--primary-blue);
        }

        .btn-secondary:hover {
            background-color: var(--light-blue);
        }

        .text-center {
            text-align: center;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .animate {
            animation: fadeIn 1s ease-out forwards;
        }

        .pulse:hover {
            animation: pulse 1.5s infinite;
        }

        /* Header & Navigation */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: var(--light-blue);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-blue);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-blue);
            cursor: pointer;
        }
        /* Dropdown Navigation Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 220px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
    border-left: 3px solid var(--primary-blue);
    padding-left: 20px;
}




        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/banner.jpeg') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
            margin-top: 0;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--white);
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

/* About Section Styles */
.about {
    padding: 80px 0;
    position: relative;
}

.about .container {
    display: flex;
    flex-direction: column;
}

.about-image {
    order: 1;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.about-image.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-image img {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    order: 2;
}

.about-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.about-text.animate {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
}

/* Desktop View */
@media (min-width: 992px) {
    .about .container {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .about-image {
        order: 2;
        flex: 1;
        margin-bottom: 0;
    }

    .about-content {
        order: 1;
        flex: 1;
    }

    .about-image img {
        max-width: 100%;
    }
}

/* Animation Adjustments for Desktop */
@media (min-width: 992px) {
    .about-image {
        transform: translateX(20px);
    }
    
    .about-image.animate {
        transform: translateX(0);
    }
    
    .about-text {
        transform: translateX(-20px);
    }
    
    .about-text.animate {
        transform: translateX(0);
    }
}
        /* Features Section */
        .features {
            padding: 60px 0;
        }

        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-item {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        /* Services Section */
        .services {
            background-color: var(--light-gray);
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .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.1);
        }

        .service-content {
            padding: 20px;
        }

        .other-services {
            margin-top: 50px;
        }

        .other-services-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .other-service-item {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 80px 0;
        }

        .portfolio-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .filter-btn {
            padding: 8px 20px;
            background-color: var(--white);
            border: 1px solid var(--primary-blue);
            color: var(--primary-blue);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active, .filter-btn:hover {
            background-color: var(--primary-blue);
            color: var(--white);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .portfolio-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: var(--white);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--light-gray);
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: var(--light-blue);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-content {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
        }

        .stars {
            color: var(--cta-orange);
            margin-bottom: 5px;
        }

        .testimonials-carousel {
            display: none;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 50px;
        }

        .contact-form {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #25D366;
            color: var(--white);
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
        }

        .whatsapp-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* FAQ Section */
        .faq {
            background-color: var(--light-gray);
            padding: 80px 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .faq-item {
            background-color: var(--white);
            margin-bottom: 15px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            background-color: var(--primary-blue);
            color: var(--white);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: var(--light-blue);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-logo i {
            color: var(--light-blue);
            margin-right: 10px;
        }

        .footer-about p {
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--primary-blue);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--light-blue);
        }

        .footer-contact .contact-method {
            color: #ccc;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
            font-size: 0.9rem;
        }

        /* Mobile Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            section {
                padding: 60px 0;
            }

            .about-content {
                flex-direction: column;
            }

            .about-image {
                margin-top: 30px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                transition: left 0.3s ease;
                box-shadow: var(--shadow);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .testimonials-container {
                display: none;
            }

            .testimonials-carousel {
                display: block;
                margin-top: 50px;
            }

            .testimonial-card {
                margin: 0 15px;
            }

            .carousel-dots {
                display: flex;
                justify-content: center;
                margin-top: 20px;
            }

            .dot {
                width: 12px;
                height: 12px;
                background-color: #ccc;
                border-radius: 50%;
                margin: 0 5px;
                cursor: pointer;
            }

            .dot.active {
                background-color: var(--primary-blue);
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .btn {
                padding: 10px 20px;
            }

            section {
                padding: 40px 0;
            }
        }

        /* Update Service Cards with Icons */
    .service-icon {
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--light-gray);
        color: var(--primary-blue);
        font-size: 3.5rem;
        transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
        background-color: var(--primary-blue);
        color: var(--white);
        transform: scale(1.1);
    }

    /* Remove the old service-image styles */
    .service-image {
        display: none;
    }

    /* CTA Button Styles */
.btn-cta {
    background-color: var(--cta-orange);
    color: var(--white);
    font-size: 1.1rem;
    padding: 15px 35px;
    margin: 40px auto 0;
    display: table;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border: 2px solid var(--cta-orange);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--cta-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 127, 80, 0.3);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Adjust spacing for sections with CTAs */
section {
    padding-bottom: 60px;
}
.logo img{
    width: 75px;
    height: 75px;
    border-radius: 100%;
}

/* Monthly Maintenance Section */
.maintenance {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-weight: 500;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.maintenance-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 153, 204, 0.1);
}

.maintenance-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 153, 204, 0.1);
    border-color: rgba(0, 153, 204, 0.3);
}

.maintenance-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.maintenance-item:hover .maintenance-icon {
    color: var(--cta-orange);
    transform: scale(1.1);
}

.maintenance-item h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Service View More Button */
.service-view-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 20px;
}

.service-view-more::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.service-view-more:hover {
    color: var(--cta-orange);
}

.service-view-more:hover::after {
    transform: translate(5px, -50%);
}

/* Back to Home Button */
.back-to-home {
    display: inline-block;
    margin: 30px 0;
    padding: 10px 20px;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background-color: var(--cta-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
    .dropdown-menu {
        transition: 
            max-height 0.3s ease-out,
            opacity 0.2s ease-out,
            padding 0.3s ease-out;
    }
    
    /* Make sure links are easily tappable on mobile */
    .dropdown-menu a {
        padding: 12px 15px;
    }
}






