

.navbar {
    box-shadow: 0 4px 24px rgba(22, 213, 255, 0.10), 0 1.5px 6px rgba(52, 58, 64, 0.04);
    padding: 0.75rem 2rem;
    background: linear-gradient(90deg, #16D5FF 0%, #F2F8FE 100%);
    border-radius: 0 0 1.5rem 1.5rem;
    transition: box-shadow 0.3s;
}

.navbar-brand h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #16D5FF 40%, #343a40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
    background: #16D5FF;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.navbar-toggler:hover {
    background: #0bb7e6;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' viewBox='0 0 24 24'%3e%3cline x1='3' y1='6' x2='21' y2='6'/%3e%3cline x1='3' y1='12' x2='21' y2='12'/%3e%3cline x1='3' y1='18' x2='21' y2='18'/%3e%3c/svg%3e");
    width: 32px;
    height: 32px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.25s;
    color: #343a40;
    font-size: 1.08rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background: linear-gradient(90deg, #16D5FF 0%, #F2F8FE 100%);
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(22, 213, 255, 0.10);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    content: '';
    display: block;
    width: 30%;
    height: 3px;
    background: #16D5FF;
    border-radius: 2px;
    margin: 0.2rem auto 0 auto;
    transition: width 0.2s;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1.5rem rgba(22, 213, 255, 0.12);
    border-radius: 1rem;
    background: #fff;
    margin-top: 0.5rem;
    min-width: 180px;
    animation: dropdownFade 0.25s;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #343a40;
    border-radius: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #16D5FF;
    color: #fff;
}

.offcanvas-navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 290px;
    height: 100vh;
    background: linear-gradient(120deg, #fff 70%, #e6faff 100%);
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.77, 0, .18, 1);
    box-shadow: 0 0.5rem 2rem rgba(22, 213, 255, 0.13);
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem 0 0 1.5rem;
}

.offcanvas-navbar.show {
    transform: translateX(0);
}

.offcanvas-navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #e3eaf1;
    background: linear-gradient(90deg, #16D5FF 0%, #F2F8FE 100%);
    border-radius: 1.5rem 0 0 0;
}

.offcanvas-title {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #16D5FF;
    letter-spacing: 1px;
}

.offcanvas-title img {
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(22, 213, 255, 0.15);
    margin-right: 0.5rem;
}

.btn-close {
    background: #fff;
    border-radius: 50%;
    border: 2px solid #16D5FF;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background 0.2s;
}

.btn-close:hover {
    background: #16D5FF;
}

.btn-close:after {
    content: '\00d7';
    font-size: 1.5rem;
    color: #16D5FF;
    font-weight: bold;
    line-height: 1;
}

.btn-close:hover:after {
    color: #fff;
}

.offcanvas-navbar-body {
    flex: 1 1 auto;
    padding: 1.5rem 0 1rem 0;
    overflow-y: auto;
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 213, 255, 0.13);
    z-index: 1049;
    display: none;
    transition: background 0.2s;
}

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

/* Always show toggler on all screens */
.navbar-toggler {
    display: block !important;
}

/* Hide normal nav on all screens, use offcanvas always */
.navbar-collapse {
    display: none !important;
}

/* Make nav links vertical in offcanvas */
.offcanvas-navbar .navbar-nav {
    flex-direction: column;
    padding-left: 0;
    gap: 0.25rem;
}

.offcanvas-navbar .nav-link {
    padding: 0.85rem 1.5rem;
    font-size: 1.08rem;
    color: #343a40;
    border-radius: 0.75rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.offcanvas-navbar .nav-link.active,
.offcanvas-navbar .nav-link:hover,
.offcanvas-navbar .nav-link:focus {
    background: linear-gradient(90deg, #16D5FF 0%, #F2F8FE 100%);
    color: #fff !important;
}

.offcanvas-navbar .dropdown-menu {
    background: #f2f8fe;
    box-shadow: 0 0.5rem 1.5rem rgba(22, 213, 255, 0.10);
    border-radius: 0.75rem;
}

.offcanvas-navbar .dropdown-item {
    color: #343a40;
    font-weight: 500;
}

.offcanvas-navbar .dropdown-item:hover,
.offcanvas-navbar .dropdown-item:focus {
    background: #16D5FF;
    color: #fff;
}

/* Custom scrollbar for offcanvas */
.offcanvas-navbar-body::-webkit-scrollbar {
    width: 7px;
    background: #e6faff;
    border-radius: 4px;
}

.offcanvas-navbar-body::-webkit-scrollbar-thumb {
    background: #16D5FF;
    border-radius: 4px;
}

/* Responsive: make offcanvas wider on large screens */
@media (min-width: 992px) {
    .offcanvas-navbar {
        width: 340px;
    }
}




.faq-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: #dc3545;
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.city-highlight {
    color: #dc3545;
    font-weight: 600;
}

.img-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}



.service-area-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.city-list {
    border-right: 2px solid #e9ecef;
    height: 100%;
}

.city-item {
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.city-item:hover,
.city-item.active {
    background-color: rgba(13, 110, 253, 0.1);
    border-left: 3px solid #dc3545;
}

.city-item.active {
    font-weight: 600;
    color: #dc3545;
}

.service-description {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .city-list {
        border-right: none;
        border-bottom: 2px solid #e9ecef;
        margin-bottom: 20px;
    }
}





.service-area-section {
    background-color:white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.city-list {
    border-right: 2px solid #e9ecef;
    height: 100%;
}

.city-list-container {
    /* Remove scroller */
    max-height: none !important;
    overflow-y: visible !important;
}

.city-row {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.city-item {
    flex: 1 1 0;
    padding: 12px 10px;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    border-left: 3px solid transparent;
    margin-bottom: 0;
    text-align: left;
    background: none;
    font-size: 0.97rem;
}

.city-item:hover,
.city-item.active {
    background-color: rgba(13, 110, 253, 0.1);
    border-left: 3px solid #dc3545;
}

.city-item.active {
    font-weight: 600;
    color: #dc3545;
}

.service-description {
    padding: 20px;
    background-color: #0bb7e6;
    border-radius: 8px;
}

.service-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .city-list {
        border-right: none;
        border-bottom: 2px solid #e9ecef;
        margin-bottom: 20px;
    }

    .city-row {
        flex-direction: column;
        gap: 0;
    }
}




.services-section {
    background-color:white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.nav-pills .nav-link {
    color: #495057;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.nav-pills .nav-link.active {
    background-color: rgba(13, 110, 253, 0.1);
    color: #dc3545;
    font-weight: 600;
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
}

.service-tab-content {
    padding: 25px;
    background-color: #0bb7e6;
    border-radius: 8px;
    min-height: 500px;
}

.service-card {
    background: #0bb7e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    transition: transform 0.3s;
}

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

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

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

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

.service-content {
    padding: 20px;
}

.city-highlight {
    color: #dc3545;
    font-weight: 600;
}

.service-icon {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 15px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #dc3545;
}

.badge-service {
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}



.contact-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info {
    padding: 40px 30px;
    height: 100%;
}

.contact-info h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: #dc3545;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #dc3545;
}

.contact-detail {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
    color: #dc3545;
}

.contact-text h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #dc3545;
}

.description-content {
    padding: 40px 30px;
    background-color: #f8f9fa;
    height: 100%;
}

.description-content h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: #dc3545;
}

.description-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #dc3545;
}

.btn-primary {
    background-color: #dc3545;
    border-color: #dc3545;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.business-hours {
    background-color: rgba(13, 110, 253, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

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

.hours-list li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(13, 110, 253, 0.2);
}

.hours-list li:last-child {
    border-bottom: none;
}

.service-highlight {
    background-color: rgba(13, 110, 253, 0.05);
    border-left: 4px solid #dc3545;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.service-highlight h6 {
    color: #dc3545;
    font-weight: 600;
}
