
        :root {
            --primary-color: #00c853;
            --primary: #00c853;
            --primary-dark: #00b248;
            --secondary-color: #6c63ff;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --gradient-1: linear-gradient(135deg, #00c853 0%, #00b248 100%);
            --gradient-2: linear-gradient(135deg, #6c63ff 0%, #4a44c8 100%);
            --shadow-sm: 0 4px 6px rgba(0, 200, 83, 0.1);
            --shadow-md: 0 8px 25px rgba(0, 200, 83, 0.15);
            --shadow-lg: 0 20px 40px rgba(0, 200, 83, 0.2);
            --border-radius: 16px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            color: #333;
            overflow-x: hidden;
            background: #ffffff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
        }

        p {
            line-height: 1.6;
            color: #666;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            position: relative;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title h2 span {
            color: var(--dark-color);
            -webkit-text-fill-color: var(--dark-color);
        }

        .section-title p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Custom Shapes */
        .custom-shape-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .blob {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
            z-index: -1;
        }

        .blob-1 {
            background: var(--primary-color);
            top: -250px;
            right: -250px;
        }

        .blob-2 {
            background: var(--secondary-color);
            bottom: -250px;
            left: -250px;
        }

        /* Header */
        .navbar {
            padding: 20px 0;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            font-weight: 600;
            margin: 0 10px;
            color: var(--dark-color) !important;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }

        .btn-primary {
            background: var(--gradient-1);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: var(--gradient-2);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        /* Beat generic .section-padding — fixed-top nav was covering the h1 on mobile */
        .hero-section.section-padding {
            padding: 150px 0 100px;
        }

        .hero-content h1 {
            font-size: clamp(1.75rem, 5vw + 0.5rem, 4.5rem);
            margin-bottom: 30px;
            color: var(--dark-color);
            overflow-wrap: break-word;
            hyphens: auto;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: #666;
        }

        .hero-image {
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .hero-image .main-img {
            border-radius: var(--border-radius);
            transform: rotateY(-10deg) rotateX(5deg);
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }

        .hero-image .main-img:hover {
            transform: rotateY(0) rotateX(0);
        }

        /* Features */
        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-card i {
            font-size: 3rem;
            margin-bottom: 20px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Services */
        .services-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
        }

        .service-item {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            text-align: center;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .service-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .service-item:hover::after {
            transform: scaleX(1);
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        /* Process */
        .process-step {
            position: relative;
            text-align: center;
            padding: 30px;
        }

        .process-step .number {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 60px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--gradient-1);
            z-index: 1;
        }

        .process-step:last-child::before {
            display: none;
        }

        /* Blog */
        .blog-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .blog-img {
            height: 250px;
            overflow: hidden;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 30px;
        }

        .blog-date {
            display: inline-block;
            background: var(--gradient-1);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* CTA */
        .cta-section {
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .footer-links h5 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Floating Action Buttons */
        .floating-buttons {
            position: fixed;
            right: calc(1rem + env(safe-area-inset-right, 0px));
            bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
            z-index: 1000;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 15px;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            text-decoration: none;
        }

        .floating-btn.whatsapp {
            background: #25D366;
        }

        .floating-btn.phone {
            background: var(--primary-color);
        }

        .floating-btn:hover {
            transform: translateY(-5px) scale(1.1);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .section-title h2 {
                font-size: 2.8rem;
            }
            
            .process-step::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-section,
            .hero-section.section-padding {
                min-height: auto;
                padding: 8.5rem 0 3.5rem;
            }

            .hero-content h1 {
                font-size: clamp(1.85rem, 6vw + 0.25rem, 2.8rem);
            }

            .navbar {
                padding: 14px 0;
            }
            
            .section-padding {
                padding: 70px 0;
            }
            
            .cta-content h2 {
                font-size: 2.5rem;
            }

            .cta-section .col-lg-4 {
                text-align: center !important;
            }
        }

        @media (max-width: 576px) {
            .hero-section,
            .hero-section.section-padding {
                padding: 9.5rem 0 3rem;
            }

            .hero-content h1 {
                font-size: clamp(1.65rem, 7.5vw, 2.1rem);
                line-height: 1.25;
                margin-bottom: 1.25rem;
            }

            .navbar {
                padding: 10px 0;
            }

            .navbar-brand {
                font-size: 1.35rem;
                white-space: nowrap;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-content p {
                font-size: 1.05rem;
            }

            .hero-image .main-img {
                transform: none;
            }

            .hero-content .btn-lg {
                flex: 1 1 100%;
                width: 100%;
            }

            .section-padding {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .cta-section .btn {
                display: block;
                width: 100%;
                margin-right: 0 !important;
                margin-bottom: 0.75rem;
            }

            .subpage-hero-content .btn-lg {
                display: block;
                width: 100%;
            }

            .subpage-hero-content .btn-lg.me-3 {
                margin-right: 0 !important;
                margin-bottom: 0.75rem;
            }
        }

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Particle Background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }

        /* Stats Counter */
        .stat-card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .stat-text {
            color: #666;
            font-size: 1.1rem;
            margin-top: 10px;
        }
		.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-view-all:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-view-all i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}
    
/* Subpage Hero Section */
.subpage-hero-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.subpage-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
}

.subpage-hero-content {
    padding-right: 2rem;
}
.subpage-hero-content div{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.subpage-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subpage-hero-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #666;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #999;
}

.subpage-hero-image {
    position: relative;
}

.subpage-hero-image img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.subpage-hero-image img:hover {
    transform: translateY(-5px);
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 992px) {
    .subpage-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .subpage-hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .subpage-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .subpage-hero-content p {
        font-size: 1.1rem;
    }
    
    .service-item {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .subpage-hero-content h1 {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--bs-primary);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control-lg {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.form-control-lg:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Map Container */
.map-container {
    height: 450px;
    position: relative;
}

.map-container iframe {
    height: 100%;
    width: 100%;
}

/* Business Hours */
.contact-hours {
    border-left: 4px solid var(--bs-primary);
}

/* Accordion */
.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background-color: white;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

.accordion-button:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.accordion-body {
    padding: 1.25rem;
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-form-wrapper,
    .map-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 2rem;
    }
    
    .form-control-lg {
        padding: 0.625rem 0.875rem;
    }
}

@media (max-width: 576px) {
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon i {
        font-size: 1.75rem;
    }
}


/* Area List Styling */
.area-list {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--bs-primary);
}

.area-list ul li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

/* Map Wrapper */
.map-wrapper {
    height: 400px;
    position: relative;
}

.map-wrapper iframe {
    height: 100%;
    width: 100%;
}

/* Location Specific Styling */
.location-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
}

/* Responsive Design */
@media (max-width: 992px) {
    .area-list {
        margin-bottom: 2rem;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.75rem;
    }
    
    .area-list {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .map-wrapper {
        height: 300px;
    }
    
    .area-list ul li {
        font-size: 1rem;
    }
}

/* Contact page photo upload */
.photo-upload-dropzone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 9.5rem;
    border: 2px dashed #c8cdd3;
    border-radius: 0.35rem;
    padding: 2rem 1.25rem 2.5rem;
    text-align: center;
    background: #fff;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.photo-upload-dropzone:hover,
.photo-upload-dropzone:focus-within,
.photo-upload-dropzone.is-dragover {
    border-color: #9aa3ad;
    background: #fafbfc;
}

.photo-upload-dropzone-content {
    pointer-events: none;
}

.photo-upload-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #212529;
}

.photo-upload-or {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    color: #212529;
}

.photo-upload-browse {
    pointer-events: auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 400;
    color: #212529;
    text-decoration: underline;
    cursor: pointer;
}

.photo-upload-browse:hover,
.photo-upload-browse:focus {
    color: var(--bs-primary);
}

.photo-upload-count {
    position: absolute;
    right: 0.85rem;
    bottom: 0.65rem;
    font-size: 0.8rem;
    color: #6c757d;
}

.photo-upload-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.photo-upload-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.photo-upload-preview {
    width: 88px;
    text-align: center;
}

.photo-upload-preview img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    display: block;
}

.photo-upload-preview-name {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: #6c757d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Blog article prose */
.blog-post-content {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.blog-post-content .lead {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.blog-post-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--dark-color);
}

.blog-post-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    color: var(--dark-color);
}

.blog-post-content p {
    margin-bottom: 1rem;
}

.blog-post-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.blog-post-meta {
    font-size: 0.95rem;
}

.blog-content h4 {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

@media (max-width: 576px) {
    .city-hub-cta .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
    }

    .blog-post-content h2 {
        font-size: 1.45rem;
    }

    .blog-post-content h3 {
        font-size: 1.2rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem !important;
    }

    .floating-buttons {
        right: calc(1rem + env(safe-area-inset-right, 0px));
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .floating-btn {
        width: 52px;
        height: 52px;
    }
}