:root {
    --primary-blue: #0b5ed7;
    --dark-blue: #084298;
    --whatsapp-green: #25D366;
    --text-dark: #222222;
    --text-muted: #555555;
    --bg-light: #f4f7fa;
    --bg-blue-light: #ebf2fd;
    --bg-card-img: #eef2f6;
    --white: #ffffff;
    --border-color: #e5e9f0;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

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

.hidden-mobile {
    display: inherit;
}

.show-mobile-only {
    display: none;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #111;
}

p {
    color: var(--text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.btn-pill {
    border-radius: 50px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
}

.btn-outline {
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    margin-bottom: 10px;
}

.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 190px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}

.footer-logo-image {
    width: 190px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    color: var(--text-dark);
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

@media (min-width: 769px) {
    .nav-links a.active {
        border-bottom: 2px solid var(--primary-blue);
        padding-bottom: 5px;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-right: 10px;
}

.nav-location i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.language-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: 0.3s;
}

.language-label-en {
    color: var(--primary-blue);
}

.language-toggle {
    position: relative;
    width: 48px;
    height: 25px;
    padding: 0;
    border: 1.5px solid var(--primary-blue);
    border-radius: 50px;
    background: var(--white);
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}

.language-toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--primary-blue);
    transition: transform 0.3s ease;
}

.language-switcher.hindi .language-toggle {
    background: var(--primary-blue);
}

.language-switcher.hindi .language-toggle-slider {
    background: var(--white);
    transform: translateX(23px);
}

.language-switcher.hindi .language-label-en {
    color: var(--text-muted);
}

.language-switcher.hindi .language-label-hi {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--dark-blue);
    cursor: pointer;
    padding: 5px;
}

.hero {
    position: relative;
    background: url('hero.png') no-repeat center right;
    background-size: cover;
    padding: 80px 0;
    display: flex;
    align-items: center;
    min-height: 550px;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.78);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.badge-pill {
    display: inline-block;
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: max-content;
    background: rgba(255, 255, 255, 0.7);
}

.hero h2 {
    font-size: 2.6rem;
    line-height: 1.15;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.hero .desc {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-buttons a {
    padding: 9px 17px;
    min-width: 115px;
    height: 42px;
    font-size: 0.85rem;
}

.hero-buttons a i {
    font-size: 14px;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.hero-trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.badge i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.services {
    padding: 60px 0;
    background: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    overflow: visible;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.card-img-bg {
    background: var(--bg-card-img);
    border-radius: 16px 16px 0 0;
    padding: 20px;
    height: 170px;
    text-align: center;
}

.card-img-bg img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.card-icon {
    position: absolute;
    top: 150px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-blue);
    font-size: 1.2rem;
}

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

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex: 1;
    color: #666;
}

.learn-more {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.features-bar {
    background: var(--dark-blue);
    padding: 60px 0;
    color: var(--white);
}

.features-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.features-title {
    width: 25%;
}

.features-title h2 {
    font-size: 2.2rem;
    color: var(--white);
}

.features-title p {
    color: #d0e1ff;
}

.features-list {
    width: 75%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.feature-item {
    text-align: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.icon-circle i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.feature-item p {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
}

.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}

.step {
    flex: 1;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-num-circle {
    width: 28px;
    height: 28px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 20%;
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--dark-blue);
}

.step-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.step-text p {
    font-size: 0.85rem;
}

.step-arrow {
    color: #ccc;
    font-size: 1.2rem;
    margin-top: 35px;
}

.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-height: 350px;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.about-content {
    flex: 1.5;
}

.tagline {
    font-weight: 500;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat h3 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.help-box {
    flex: 0.8;
    background: var(--bg-card-img);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.help-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.bottom-widgets {
    padding: 60px 0;
    background: var(--white);
    scroll-margin-top: 85px;
}

.widgets-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.widget h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.widget > p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.map-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    min-height: 280px;
    height: 280px;
    background: var(--bg-card-img);
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

.location-actions .address-text {
    font-size: 0.85rem;
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.location-actions .address-text i {
    color: var(--primary-blue);
    margin-top: 3px;
    flex-shrink: 0;
}

.location-actions {
    display: flex;
    flex-direction: column;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--primary-blue);
}

.footer {
    background: var(--bg-light);
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
    scroll-margin-top: 85px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-single-desc {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.footer-contact p a:hover {
    color: var(--primary-blue);
}

.footer-contact i {
    color: var(--primary-blue);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-modal.active {
    display: flex;
}

.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.service-modal-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.service-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
}

.service-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.service-modal-box h2 {
    color: var(--dark-blue);
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 25px 0;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.service-list-item i {
    color: var(--primary-blue);
}

.service-modal-actions {
    display: flex;
    gap: 10px;
}

.service-modal-actions .btn {
    flex: 1;
}

.mobile-action-bar {
    display: none;
}

@media (max-width: 1024px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-container {
        flex-direction: column;
        text-align: center;
    }

    .features-title {
        width: 100%;
        margin-bottom: 20px;
    }

    .features-list {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .about-container {
        flex-direction: column;
    }

    .widgets-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    body {
        padding-bottom: 80px;
    }

    .hidden-mobile {
        display: none !important;
    }

    .show-mobile-only {
        display: block;
    }

    html {
        scroll-padding-top: 75px;
    }

    .navbar {
        height: 75px;
    }

    .logo-image {
        width: 165px;
        max-height: 55px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 5px 20px 15px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .nav-links.active-menu a {
        padding: 12px 0;
        display: block;
        border-bottom: none !important;
    }

    .nav-links.active-menu a.active {
        color: var(--primary-blue);
        font-weight: 700;
        padding-bottom: 12px;
    }

    .nav-actions .btn {
        display: none;
    }

    .language-switcher {
        gap: 5px;
    }

    .language-label {
        font-size: 0.65rem;
    }

    .language-toggle {
        width: 43px;
        height: 23px;
    }

    .language-toggle-slider {
        width: 15px;
        height: 15px;
        top: 2.5px;
        left: 2.5px;
    }

    .language-switcher.hindi .language-toggle-slider {
        transform: translateX(20px);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 40px 0;
        background: url('hero.png') no-repeat center center;
        background-size: cover;
        min-height: auto;
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        width: 100%;
        padding: 25px;
        background: rgba(255, 255, 255, 0.78);
    }

    .hero h2 {
        font-size: 1.8rem !important;
        margin-bottom: 10px;
    }

    .hero .desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
        font-weight: 500;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 25px;
    }

    .hero-buttons a {
        flex: 1;
        min-width: 105px;
        height: 40px;
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .hero-buttons a i {
        font-size: 13px;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 8px;
    }

    .hero-trust-badges .badge {
        font-size: 0.8rem;
        gap: 6px;
    }

    .services {
        padding: 50px 0;
    }

    .section-header {
        align-items: center;
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card-img-bg {
        height: 120px;
        padding: 10px;
    }

    .card-icon {
        top: 105px;
        left: 10px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .card-content {
        padding: 25px 10px 10px;
    }

    .card-content h3 {
        font-size: 0.85rem;
    }

    .learn-more {
        font-size: 0.75rem;
    }

    .features-bar {
        padding: 40px 0;
    }

    .features-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        width: 100%;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .icon-circle i {
        font-size: 1.3rem;
        color: var(--dark-blue);
    }

    .feature-item p {
        font-size: 0.7rem;
        font-weight: 600;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .steps-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .step-num-circle {
        left: 40%;
    }

    .about {
        padding: 60px 0;
    }

    .about-container {
        gap: 25px;
    }

    .about-image {
        min-height: auto;
    }

    .stats {
        gap: 12px;
    }

    .stat {
        flex: 1;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.7rem;
    }

    .help-box {
        width: 100%;
    }

    .bottom-widgets {
        padding: 50px 0;
        scroll-margin-top: 75px;
    }

    .widgets-container {
        grid-template-columns: 1fr;
    }

    .map-box {
        height: 240px;
        min-height: 240px;
    }

    .map-box iframe {
        height: 240px;
        min-height: 240px;
    }

    .area-tags {
        gap: 8px;
    }

    .tag {
        font-size: 0.75rem;
        padding: 6px 11px;
    }

    .footer {
        scroll-margin-top: 75px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-logo-image {
        width: 170px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .mobile-action-bar {
        display: block;
        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        z-index: 999;
    }

    .mobile-action-inner {
        display: flex;
        background: var(--white);
        border-radius: 50px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        padding: 5px;
        justify-content: space-between;
        gap: 6px;
        border: 1px solid var(--border-color);
    }

    .m-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 8px 0;
        border-radius: 40px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .m-btn-blue {
        background: var(--primary-blue);
        color: white;
    }

    .m-btn-green {
        background: var(--whatsapp-green);
        color: white;
    }

    .service-modal {
        padding: 15px;
    }

    .service-modal-box {
        padding: 25px 18px 20px;
        border-radius: 18px;
        max-height: 88vh;
    }

    .service-modal-box h2 {
        font-size: 1.4rem;
        padding-right: 35px;
    }

    .service-list {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 20px 0;
    }

    .service-modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 400px) {

    .logo-image {
        width: 150px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero h2 {
        font-size: 1.6rem !important;
    }

    .services-grid {
        gap: 10px;
    }

    .card-content h3 {
        font-size: 0.8rem;
    }

    .features-list {
        gap: 5px;
    }

    .feature-item p {
        font-size: 0.62rem;
    }

    .language-label {
        font-size: 0.6rem;
    }

    .language-toggle {
        width: 40px;
        height: 22px;
    }

    .language-toggle-slider {
        width: 14px;
        height: 14px;
        top: 2.5px;
        left: 2.5px;
    }

    .language-switcher.hindi .language-toggle-slider {
        transform: translateX(18px);
    }
}

* {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

html,
body {
    -webkit-touch-callout: none !important;
}

img {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    pointer-events: none !important;
}

input,
textarea {
    user-select: text !important;
    -webkit-user-select: text !important;
}

a,
button,
.btn,
.learn-more,
.service-details-btn,
.mobile-menu-btn,
.m-btn,
.language-toggle {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    outline: none !important;
}

a:focus,
a:active,
a:focus-visible,
button:focus,
button:active,
button:focus-visible,
.btn:focus,
.btn:active,
.btn:focus-visible,
.learn-more:focus,
.learn-more:active,
.learn-more:focus-visible,
.service-details-btn:focus,
.service-details-btn:active,
.service-details-btn:focus-visible,
.mobile-menu-btn:focus,
.mobile-menu-btn:active,
.mobile-menu-btn:focus-visible,
.m-btn:focus,
.m-btn:active,
.m-btn:focus-visible,
.language-toggle:focus,
.language-toggle:active,
.language-toggle:focus-visible {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    box-shadow: none !important;
}