
            .navbar-brand h1 {
                font-weight: 700;
                font-size: 2.5rem;
            }

            .btn-search {
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .navbar-nav .nav-link {
                font-weight: 500;
                padding: 0.5rem 1rem;
                margin: 0 0.2rem;
            }

            .navbar-nav .nav-link:hover,
            .navbar-nav .nav-link.active {
                color: #8b5cf6 !important;
                background-color: rgba(13, 110, 253, 0.1);
                border-radius: 0.375rem;
            }

            .dropdown-menu {
                border: none;
                box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            }

            .dropdown-item:hover {
                background-color: #8b5cf6;
                color: white;
            }

            /* Always show toggler button on all screen sizes */
            .navbar-toggler {
                display: block !important;
                z-index: 1201;
            }

            /* Offcanvas-style navbar for all screen sizes */
            .navbar-offcanvas {
                position: fixed;
                top: 0;
                left: -320px;
                width: 300px;
                height: 100vh;
                background: #fff;
                box-shadow: 2px 0 16px rgba(0, 0, 0, 0.08);
                z-index: 1200;
                display: flex;
                flex-direction: column;
                transition: left 0.35s cubic-bezier(.77, 0, .18, 1);
                padding: 2rem 1.5rem 1.5rem 1.5rem;
            }

            .navbar-offcanvas.show {
                left: 0;
            }

            .navbar-offcanvas .navbar-nav {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }

            .navbar-offcanvas .nav-link {
                width: 100%;
                text-align: left;
                margin: 0.25rem 0;
                font-size: 1.1rem;
            }

            .navbar-offcanvas .d-flex {
                margin-top: 2rem;
                width: 100%;
                justify-content: flex-start;
            }

            .navbar-offcanvas .btn-search {
                margin-right: 1rem;
            }

            .navbar-offcanvas .dropdown-menu {
                position: static !important;
                float: none;
                box-shadow: none;
                background: #f8f9fa;
                margin: 0.5rem 0 0.5rem 1rem;
                width: calc(100% - 1rem);
            }

            .navbar-offcanvas .dropdown-item {
                font-size: 1rem;
            }

            .navbar-offcanvas .close-offcanvas {
                position: absolute;
                top: 1rem;
                right: 1rem;
                background: none;
                border: none;
                font-size: 2rem;
                color: #333;
                z-index: 1202;
            }

            /* Overlay for offcanvas */
            .offcanvas-backdrop {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: rgba(0, 0, 0, 0.3);
                z-index: 1199;
                display: none;
            }

            .offcanvas-backdrop.show {
                display: block;
            }

            @media (min-width: 1200px) {
                .navbar-offcanvas {
                    left: -320px;
                }
            }



            
    :root {
        --primary: #8b5cf6;
        --secondary: #6c757d;
        --light: #f8f9fa;
        --dark: #212529;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
    }

    .about {
        background-color: var(--light);
        padding: 5rem 0;
    }

    .text-primary {
        color: var(--primary) !important;
        font-weight: 600;
    }

    .display-4 {
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1.5rem;
    }

    .video {
        position: relative;
    }

    .video img {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

    .video img:first-child {
        width: 100%;
        height: auto;
    }

    .video img:last-child {
        width: 60%;
        position: absolute;
        bottom: -20px;
        right: -20px;
        border: 5px solid white;
    }

    .accordion-button {
        font-weight: 600;
        padding: 1.25rem;
        border: none;
        box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
        background-color: var(--primary);
        color: white;
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238b5cf6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-body {
        padding: 1.25rem;
        background-color: white;
        border-left: 3px solid var(--primary);
    }

    .btn-primary {
        background-color: var(--primary);
        border-color: var(--primary);
        padding: 0.75rem 2rem;
        font-weight: 600;
        transition: all 0.3s;
    }

    .btn-primary:hover {
        background-color: #10b981;
        border-color: #0a58ca;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .fa-3x {
        font-size: 2.5rem;
    }

    @media (max-width: 992px) {
        .flex-row-reverse {
            flex-direction: column-reverse !important;
        }

        .video img:last-child {
            width: 50%;
            bottom: -15px;
            right: -15px;
        }
    }

    @media (max-width: 768px) {
        .video img:last-child {
            width: 45%;
            bottom: -10px;
            right: -10px;
        }

        .display-4 {
            font-size: 2.5rem;
        }
    }




    
 
        .service-areas {
            padding: 5rem 0;
            background: linear-gradient(to bottom, #ffffff, #f0f8ff);
        }

        .text-primary {
            color: var(--primary) !important;
            font-weight: 600;
        }

        .display-4 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            padding: 1.5rem;
            border-left: 4px solid var(--primary);
        }

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

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .cities-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .city-item {
            background: white;
            padding: 0.75rem 1rem;
            border-radius: 6px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
            border-left: 3px solid var(--primary);
        }

        .city-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
            background-color: #f0f7ff;
        }

        .feature-box {
            background: linear-gradient(135deg, var(--primary), #10b981);
            color: white;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
            box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background-color: #10b981;
            border-color: #0a58ca;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .coverage-badge {
            background-color: var(--primary);
            color: white;
            padding: 0.35rem 0.75rem;
            border-radius: 50rem;
            font-size: 0.875rem;
            font-weight: 600;
        }

        @media (max-width: 992px) {
            .cities-list {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .display-4 {
                font-size: 2.5rem;
            }

            .cities-list {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
        }




        

    .service-areas {
        padding: 5rem 0;
        background: linear-gradient(to bottom, #ffffff, #f0f8ff);
    }

    .text-primary {
        color: var(--primary) !important;
        font-weight: 600;
    }

    .display-4 {
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1.5rem;
    }

    .service-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
        padding: 1.5rem;
        border-left: 4px solid var(--primary);
    }

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

    .service-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .cities-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }

    .city-item {
        background: white;
        padding: 0.75rem 1rem;
        border-radius: 6px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease;
        border-left: 3px solid var(--primary);
    }

    .city-item:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
        background-color: #f0f7ff;
    }

    .feature-box {
        background: linear-gradient(135deg, var(--primary), #10b981);
        color: white;
        border-radius: 12px;
        padding: 2rem;
        margin-top: 2rem;
        box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
    }

    .btn-primary {
        background-color: var(--primary);
        border-color: var(--primary);
        padding: 0.75rem 2rem;
        font-weight: 600;
        transition: all 0.3s;
    }

    .btn-primary:hover {
        background-color: #10b981;
        border-color: #0a58ca;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .coverage-badge {
        background-color: var(--primary);
        color: white;
        padding: 0.35rem 0.75rem;
        border-radius: 50rem;
        font-size: 0.875rem;
        font-weight: 600;
    }

    @media (max-width: 992px) {
        .cities-list {
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .display-4 {
            font-size: 2.5rem;
        }

        .cities-list {
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        }
    }



    


    :root {
        --primary: #8b5cf6;
        --secondary: #6c757d;
        --light: #f8f9fa;
        --dark: #212529;

    }



    .how-we-work-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90vw;
        height: 180px;
        background: radial-gradient(circle at 50% 0%, #8b5cf6 0%, transparent 70%);
        opacity: 0.12;
        z-index: 0;
    }

    .how-we-work-header {
        text-align: center;
        margin-bottom: 3.5rem;
        position: relative;
        z-index: 1;
    }

    .how-we-work-primary-text {
        color: var(--primary);
        font-weight: 600;
        letter-spacing: 2px;
        text-shadow: 0 2px 8px #e0e7ff;
    }

    .how-we-work-title {
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 1.2rem;
        font-size: 2.8rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .how-we-work-process {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.5rem;
        position: relative;
        z-index: 1;
    }

    .how-we-work-step {
        background: white;
        border-radius: 18px;
        box-shadow: 0 8px 32px rgba(139, 92, 246, 0.10), 0 1.5px 8px rgba(0, 0, 0, 0.04);
        padding: 2.5rem 2rem 2rem 2rem;
        width: 320px;
        min-height: 420px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.25s, box-shadow 0.25s;
        border-top: 6px solid var(--primary);
    }

    .how-we-work-step:hover {
        transform: translateY(-8px) scale(1.03) rotate(-1deg);
        box-shadow: 0 16px 40px rgba(139, 92, 246, 0.18), 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .how-we-work-step-number {
        position: absolute;
        top: -32px;
        left: 50%;
        transform: translateX(-50%);
        width: 64px;
        height: 64px;
        background: var(--primary);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 800;
        box-shadow: 0 4px 16px rgba(139, 92, 246, 0.18);
        border: 4px solid #fff;
        z-index: 2;
    }

    .how-we-work-icon {
        font-size: 2.7rem;
        color: var(--primary);
        margin-bottom: 1.2rem;
        margin-top: 1.5rem;
        background: #f3f0ff;
        border-radius: 50%;
        padding: 0.7rem 0.9rem;
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.10);
    }

    .how-we-work-step-title {
        font-weight: 700;
        margin-bottom: 0.7rem;
        color: var(--dark);
        font-size: 1.35rem;
        text-align: center;
    }

    .how-we-work-step-description {
        color: #555;
        line-height: 1.7;
        text-align: center;
        font-size: 1.05rem;
    }

    .how-we-work-cta {
        background: var(--gradient);
        color: white;
        border-radius: 20px;
        padding: 3.5rem 2rem 3rem 2rem;
        text-align: center;
        margin: 4rem auto 0 auto;
        box-shadow: 0 12px 32px rgba(139, 92, 246, 0.13);
        max-width: 700px;
        position: relative;
        z-index: 2;
    }

    .how-we-work-cta h2 {
        font-weight: 800;
        font-size: 2.1rem;
        margin-bottom: 1.1rem;
        letter-spacing: 1px;
    }

    .how-we-work-btn {
        background: #fff;
        color: var(--primary);
        border: none;
        padding: 0.9rem 2.5rem;
        font-weight: 700;
        border-radius: 50px;
        font-size: 1.15rem;
        box-shadow: 0 2px 12px rgba(139, 92, 246, 0.10);
        transition: all 0.3s;
        margin-top: 1.5rem;
        letter-spacing: 1px;
    }

    .how-we-work-btn:hover {
        background: var(--accent);
        color: #fff;
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 8px 24px rgba(251, 191, 36, 0.18);
    }

    @media (max-width: 1200px) {
        .how-we-work-process {
            gap: 1.5rem;
        }

        .how-we-work-step {
            width: 300px;
            min-height: 400px;
        }
    }

    @media (max-width: 992px) {
        .how-we-work-process {
            flex-wrap: wrap;
            gap: 1.2rem;
        }

        .how-we-work-step {
            width: 90vw;
            min-width: 0;
            max-width: 420px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .how-we-work-title {
            font-size: 2rem;
        }

        .how-we-work-step {
            padding: 2rem 1rem 1.5rem 1rem;
            min-height: 340px;
        }

        .how-we-work-step-number {
            width: 48px;
            height: 48px;
            font-size: 1.2rem;
            top: -24px;
        }

        .how-we-work-cta {
            padding: 2.2rem 1rem 2rem 1rem;
        }
    }




:root {
    --primary: #8b5cf6;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

.additional-services-section {
    padding: 5rem 0;
    background-color: white;
}

.additional-services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.additional-services-primary-text {
    color: var(--primary) !important;
    font-weight: 600;
}

.additional-services-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.additional-services-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    padding: 2.5rem;
    border-top: 5px solid var(--primary);
    margin-bottom: 2rem;
}

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

.additional-services-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
}

.additional-services-card-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 1.75rem;
}

.additional-services-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.additional-services-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
}

.additional-services-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.additional-services-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0.65rem;
}

.additional-services-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.additional-services-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.additional-services-btn:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.additional-services-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.additional-services-btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .additional-services-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .additional-services-title {
        font-size: 2.5rem;
    }

    .additional-services-card {
        padding: 1.5rem;
    }

    .additional-services-icon {
        font-size: 3rem;
    }
}




.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 20px;
}

.contact-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

.contact-info {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #8b5cf6;
}

.section-title {
    color: #212529;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 50px;
}
