/* TABLE OF CONTENT */
/* ---------------
1. General
2. Navbar
3. Hero
4. Section4
5. Section5
6. Section6
7. Section7
8. Section8
9. Section9
10. Section10
11. Section11
12. Footer
---------------- */

/* ===============
GENERAL
================ */
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap);

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
}

:root {
    /* Backgrounds (bg) */
    --bg-pri: linear-gradient(180deg, #0A2E5C 0%, #1561C2 232.81%);
    --bg-gry: #EAF4FF;
    --bg-wht: #FFFFFF;
    --bg-blk: #000000;

    /* Colors (c) */
    --c-pri:  #0A2E5C;
    --c-sec:  #147BDB;
    --c-txt:  #1F2937; /* txt = text */
    --c-stxt: #6B7280; /* lt = light */
    --c-br:   #E5E7EB; /* pl = primary light */
    --c-wht:   #F9FAFB; /* hd = headline */
    --c-suc:  #16A34A;
    --c-wrn:  #D97706;
    --c-err:  #DC2626;

    /* Fonts (f) */
    --f-pri:  'Montserrat';
    --f-txt:  'Poppins';
    --f-stxt:  'Inter';
    --f-htxt: 'Manrope';
}

/* Text Colors (t-) */
.t-pri  { color: var(--c-pri) !important; }
.t-sec  { color: var(--c-sec) !important; }
.t-txt  { color: var(--c-txt) !important; }
.t-stxt   { color: var(--c-stxt) !important; }
.t-br   { color: var(--c-br) !important; }
.t-wht  { color: var(--c-wht) !important; }
.t-suc   { color: var(--c-suc) !important; }
.t-wrn   { color: var(--c-wrn) !important; }
.t-err   { color: var(--c-err) !important; }

/* Background Colors (bg-) */
.bg-pri { background: var(--bg-pri) !important; }
.bg-gry { background: var(--bg-gry) !important; }
.bg-wht { background: var(--bg-wht) !important; }
.bg-blk { background: var(--bg-blk) !important; }

/* Font Families (f-) */
.f-pri  { font-family: var(--f-pri); }
.f-txt  { font-family: var(--f-txt); }
.f-stxt  { font-family: var(--f-stxt); }
.f-htxt { font-family: var(--f-htxt); }

body, html {
    font-size: 10px; /* Base 10px: 1rem = 10px */
    font-weight: 400;
    font-family: var(--f-txt);
    scroll-behavior: smooth;
    line-height: 3.0rem;
    letter-spacing: 2%;
    background-color: var(--bg-pri);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p { margin: 0; }

h1 {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 4.0rem;
    letter-spacing: 2%;
    text-transform: capitalize;
    color: var(--bg-blk);
    margin: 2.5rem 0; 
}

h2 {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 3.2rem;
    letter-spacing: 2%;
    text-transform: capitalize;
    color: var(--bg-blk);
}

h3 {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: 4.0rem;
    line-height: 4.8rem;
    letter-spacing: 2%;
    text-transform: capitalize;
    color: var(--bg-blk);
}

h4 {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 4.0rem;
    letter-spacing: 2%;
    text-transform: capitalize;
    color: var(--bg-blk);
}

h5 {
    font-family: var(--f-pri);
    font-weight: 700;
    font-style: Bold;
    font-size: 2.4rem;
    line-height: 3.2rem;
    letter-spacing: 2%;
    text-transform: capitalize;
    color: var(--bg-blk);
}

h6 {
    font-family: var(--f-pri);
    font-weight: 700;
    font-style: Bold;
    font-size: 1.8rem;
    line-height: 2.4rem;
    letter-spacing: 2%;
    text-transform: capitalize;
    color: var(--bg-blk);
}

p {
    font-family: var(--f-txt);
    font-weight: 400;
    font-style: Regular;
    font-size: 2.4rem;
    line-height: 3.0rem;
    letter-spacing: 2%;
    text-transform: capitalize;
    color: var(--bg-blk);
}

h1 span, h2 span, h3 span {
    color: var(--c-sec);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a.active,
a:focus,
a:hover,
button {
    text-decoration: none;
    outline: 0;
}

/* Buttons */
.btn {
    font-family: var(--f-pri);
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 2.4rem;
    letter-spacing: 2%;
    border-radius: 1.2rem;
    padding: 0.7rem 1.0rem;
    margin-bottom: 2.0rem;
}

.btn-pri {
    background: var(--c-sec);
    color: var(--c-wht);
    border: 2px solid var(--c-sec);
}

.btn-out {
    background: transparent;
    color: var(--c-wht);
    /* border: 2px solid linear-gradient(180deg, #E2EFFB 87.5%, #F0F7FD 93.75%, #F8FBFE 96.88%, #FBFDFE 98.44%, #FDFEFF 99.22%, #3F91C9 100%); */
    border: 2px solid var(--c-wht);
}

.btn-pri:hover {
    background: var(--c-sec);
    color: var(--c-wht);
    border: 2px solid var(--c-sec);
}

.btn-out:hover {
    background: transparent;
    color: var(--c-wht);
    border: 2px solid var(--c-wht);
}

button.active, button:hover {
    -webkit-transition: all 1000ms ease-in-out;
    -o-transition: all 1000ms ease-in-out;
    -moz-transition: all 1000ms ease-in-out;
    transition: all 1000ms ease-in-out;
}

.header-top, .header-main, section, .footer .row {
    padding-left: 1.0rem;
    padding-right: 1.0rem;
}

/* Section Tags */
.section-tag {
    font-family: var(--f-pri);
    font-size: 1.2rem;
    line-height: 2.0rem;
    border: 2px solid var(--c-sec);
    color: var(--c-sec);
    padding: 0.5rem 1.2rem;
    display: inline-block;
    text-transform: uppercase;
}

section {
    padding-top: 10.0rem;
    padding-bottom: 10.0rem;
}

.icon-list i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 1.30rem 0.4rem 1.2rem;
    margin-right: 1.0rem;
}

.text-justify {
    text-align: justify;
}

/* ===== HEADER ===== */
.header-top {
    background-color: var(--c-pri);
    min-height: 5.0rem;
    position: relative;
    z-index: 1001;
}

.header-main {
    background: linear-gradient(23.53deg, #EAF4FF -10.39%, #FFFFFF 83.23%);
    border-radius: 0 0 2.5rem 2.5rem;
    position: relative;
    z-index: 1000;
}

/* ===== NAVBAR ===== */
.header-main .nav-item {
    font-weight: 500;
    padding: 0.9rem 1.0rem;
    border-bottom: 0.2rem solid var(--c-wht);
}

.header-main .nav-item:hover {
    background: #0078CA1A;
    border-bottom: 0.2rem solid var(--c-sec);
}

/* ===== HOME HERO ===== */
.hero-home {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url('../img/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -7.0rem;
    padding-top: 17.0rem;
    z-index: 99;
}

/* ===== HOME ABOUT ===== */
.home-about-img .img1 {
    border-radius: 2.0rem 0 0 0;
}
.home-about-img .img2 {
    border-radius: 0 2.0rem 0 0;
}
.home-about-img .img3 {
    border-radius: 0 0 0 2.0rem;
}
.home-about-img .img4 {
    border-radius: 0 0 2.0rem 0;
}

.home-about-img .circle {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 85%;
    height: 85%;
    background: radial-gradient(
        circle,
        rgba(0, 123, 255, 0.8) 0%,
        rgba(0, 123, 255, 0.4) 0%,
        rgba(0, 123, 255, 0) 70%
    );
    z-index: 1;
}

.home-services {
    background: #EAF4FF;
}

.service-card .card {
    padding: 5.0rem 2.5rem;
    border: 1px solid #E5E7EB;
}

.service-card .card i::before {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.5rem;
    background: var(--bg-pri);
    color: var(--c-wht);
    border-radius: 1.0rem;
}

.service-card .card-title {
    color: var(--c-pri);
}

.service-card .card-text, .textus-p {
    line-height: 2.4rem;
}

.service-card .card:hover {
    background: var(--bg-pri);
    border: 1px solid #E5E7EB;
    color: var(--c-wht);
}

.service-card .card:hover i::before {
    background: var(--bg-wht);
    color: var(--c-pri);
}

.service-card .card:hover > .card-body .card-title, .service-card .card:hover > .card-body .card-text {
    color: var(--c-wht);
}

/* Work Progres */
.home-progress {
    background: #0078CA1A;
 }
.home-progress .wp-img img {
    border: 1px solid #E5E7EB;
    box-shadow: 0px 4px 4px 0px #004E8F40;
}

.wp-detail .card {
    padding: 3.0rem;
    border: 2px solid #E5E7EB;
    box-shadow: 0px 4px 4px 0px #004E8F40;
}

.wp-detail .card-nbr span {
    color: #6B7280;
    border: 2px solid #6B7280;
}

.wp-detail .card-text {
    line-height: 1.8rem;
}

/* Text Us */
.home-textus {
    background: #147BDB33;
}

.home-textus .card {
    background: #EAF4FF;
    box-shadow: 4px 4px 10px 0px #0078CA4D;
}

.home-textus .icon-list {
    font-weight: 500;
}

.home-textus .icon-list i {
    background: #147BDB33;
    color: #1F2937;
    border: 0.5px solid var(--c-sec);
    padding: 1.5rem 2.8rem;
}

.textus-icon {
    background: var(--c-sec);
}

.ht-card h3::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 35%;
    width: 30%;
    height: 0.2rem;
    border-bottom: 2px solid var(--c-sec);
}

/* Testimonial */
.home-testimonial {
    background: #EAF4FF;

}

.testimonial-card .card {
    background: transparent;
}

/* Suscribe */
.home-suscribe {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url('../img/bg_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== SERVICES / CONTACT / TEXTUS / DRIVE HERO ===== */
.hero-services, .hero-textus, .hero-contact, .hero-drive {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../img/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -7.0rem;
    padding-top: 20.0rem;
    z-index: 99;
}

section.hero-textus {
    position: relative;
    padding-top: 22rem !important;
    padding-bottom: 8.5rem !important;
    min-height: 54rem;
    background-position: center 40%;
}

@media (min-width: 768px) {
    section.hero-textus {
        padding-top: 23rem !important;
        min-height: 58rem;
    }
}

@media (min-width: 992px) {
    section.hero-textus {
        padding-top: 25rem !important;
        padding-bottom: 11rem !important;
        min-height: 62rem;
        background-position: center 42%;
    }
}

@media (min-width: 1200px) {
    section.hero-textus {
        min-height: 66rem;
        padding-bottom: 12rem !important;
    }
}

section.hero-textus > .container-md-fluid,
section.hero-textus > .container {
    position: relative;
    z-index: 2;
}

section.hero-textus h1.textus-hero-title {
    margin-top: 0 !important;
    margin-bottom: 1.75rem !important;
}

@media (min-width: 992px) {
    section.hero-textus h1.textus-hero-title {
        margin-bottom: 2rem !important;
    }
}

section.hero-textus .textus-hero-sub {
    margin-top: 0 !important;
    margin-bottom: 0.25rem !important;
}

.textus-hero-phone-row {
    row-gap: 1rem;
}

@media (max-width: 575.98px) {
    .textus-hero-phone-row {
        flex-direction: row;
        justify-content: center;
    }

    .textus-hero-nbr {
        font-size: 2rem !important;
    }
}

.textus-hero-cta-wrap {
    margin-top: 1.35rem;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .textus-hero-cta-wrap {
        margin-top: 1.75rem;
        margin-bottom: 2.25rem;
    }
}

.textus-hero-badge {
    font-family: var(--f-pri);
    font-weight: 600;
    font-size: clamp(1rem, 0.4vw + 0.95rem, 1.2rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff !important;
    border: 2px solid var(--c-sec);
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    line-height: 1.25;
    background: rgba(10, 46, 92, 0.15);
}

.textus-hero-title {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: clamp(3.4rem, 3.2vw + 1.8rem, 5.6rem) !important;
    line-height: 1.1;
    letter-spacing: 0.05em;
}

.textus-hero-sub {
    font-family: var(--f-txt);
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.98;
}

.textus-hero-phone-icon {
    padding: 0.35rem;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.textus-hero-nbr {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: clamp(2.2rem, 1.5vw + 1.6rem, 3.2rem);
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: var(--c-sec) !important;
}

.textus-hero-cta {
    border-radius: 8px;
    letter-spacing: 0.04em;
}

.textus-hero-compliance {
    font-family: var(--f-txt);
    font-size: clamp(1.35rem, 0.5vw + 1.1rem, 1.55rem);
    line-height: 1.6;
    opacity: 0.95;
    margin-top: 1rem !important;
}

.hero-drive-title {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: clamp(3.2rem, 3.2vw + 1.6rem, 5.6rem);
    line-height: 1.12;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.35em 0.65em;
}

.hero-drive-title .drive-hero-prefix {
    color: #ffffff !important;
}

.hero-drive-title .drive-hero-brand {
    color: var(--c-sec) !important;
}

.hero-drive-sub {
    font-family: var(--f-txt);
    font-weight: 400;
    font-size: clamp(1.5rem, 0.85vw + 1.05rem, 2.2rem);
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-transform: none;
}

/* ===== CONTACT PAGE ===== */
.contact-page-main {
    padding-top: 5.0rem;
    padding-bottom: 8.0rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
}

@media (min-width: 768px) {
    .contact-page-main {
        padding-top: 6.0rem;
        padding-bottom: 10.0rem;
        padding-left: 2.0rem;
        padding-right: 2.0rem;
    }
}

@media (min-width: 992px) {
    .contact-page-main {
        padding-left: 4.05rem;
        padding-right: 4.05rem;
    }
}

.contact-page-inner {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page-main .contact-page-title {
    text-transform: none;
    letter-spacing: 0.02em;
}

@media (min-width: 992px) {
    .contact-page-main .contact-page-title {
        font-size: 5.4rem;
        line-height: 6.0rem;
        margin-top: 2.0rem;
        margin-bottom: 3.0rem;
    }
}

.contact-info-list .contact-icon-box {
    width: 5.2rem;
    height: 5.2rem;
    border: 2px solid var(--c-sec);
    border-radius: 1.0rem;
    background: var(--bg-gry);
    font-size: 2.0rem;
}

.contact-form-card {
    border-color: #E5E7EB !important;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid #D1D5DB;
    font-family: var(--f-stxt);
    font-size: 1.6rem;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--c-sec);
    box-shadow: 0 0 0 0.2rem rgba(20, 123, 219, 0.15);
}

/* Contact — SMS notifications (match design) */
.contact-sms-heading {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: 0.06em;
    color: var(--c-pri);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
    .contact-sms-heading {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
}

.contact-sms-consent-box {
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 1.8rem 2rem;
    background: var(--bg-wht);
}

.contact-sms-checkbox {
    width: 1.85rem;
    height: 1.85rem;
    margin-top: 0.35rem;
    border: 1px solid #9CA3AF;
    border-radius: 4px;
    cursor: pointer;
}

.contact-sms-consent-label {
    font-family: var(--f-stxt);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2.2rem;
    letter-spacing: normal;
    text-transform: none;
    color: var(--c-stxt) !important;
}

@media (min-width: 768px) {
    .contact-sms-consent-label {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}

.contact-sms-notes {
    padding-left: 0;
}

.contact-sms-note-item {
    position: relative;
    padding-left: 2.2rem;
    font-family: var(--f-stxt);
    font-size: 1.5rem;
    line-height: 2.2rem;
    letter-spacing: normal;
    text-transform: none;
}

@media (min-width: 768px) {
    .contact-sms-note-item {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}

.contact-sms-note-item::before {
    content: '\2726';
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--c-sec);
    font-size: 1.4rem;
    line-height: 2.2rem;
}

.contact-submit-btn {
    border-radius: 8px;
}

/* ===== BREADCRUMBS (shared inner pages) ===== */
.page-breadcrumb-bar {
    background: #f4f8fc;
    border-bottom: 1px solid rgba(10, 46, 92, 0.08) !important;
}

.page-breadcrumb-inner {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.page-breadcrumb-bar .breadcrumb {
    font-family: var(--f-stxt);
    font-size: 1.4rem;
    line-height: 2rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .page-breadcrumb-bar .breadcrumb {
        font-size: 1.5rem;
    }
}

.page-breadcrumb-bar .breadcrumb-item a {
    color: var(--c-sec);
    font-weight: 500;
}

.page-breadcrumb-bar .breadcrumb-item a:hover {
    color: var(--c-pri);
    text-decoration: underline;
}

.page-breadcrumb-bar .breadcrumb-item.active {
    color: #0f172a;
    font-weight: 500;
}

.page-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(107, 114, 128, 0.9);
}

/* ===== CMS / LEGAL PAGES (Privacy, SMS Terms) — TinyMCE output ===== */
section.page-static-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background: #ffffff;
    color: var(--c-txt);
}

.page-static-inner {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.page-static-content {
    width: 100%;
    max-width: 92rem;
    font-family: var(--f-stxt), var(--f-txt), system-ui, sans-serif;
    font-size: 1.65rem;
    line-height: 1.7;
    letter-spacing: normal;
    text-transform: none;
    color: var(--c-txt);
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .page-static-content {
        font-size: 1.5rem;
        line-height: 1.65;
    }
}

.page-static-content > *:first-child {
    margin-top: 0 !important;
}

.page-static-content p {
    margin: 0 0 1.15em 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: normal;
    text-transform: none;
    font-weight: 400;
    font-style: normal;
    color: var(--c-txt);
}

.page-static-content p:last-child {
    margin-bottom: 0;
}

.page-static-content h1,
.page-static-content h2,
.page-static-content h3,
.page-static-content h4,
.page-static-content h5,
.page-static-content h6 {
    font-family: var(--f-pri), system-ui, sans-serif;
    color: var(--c-pri);
    letter-spacing: normal;
    text-transform: none;
    margin-top: 1.75em;
    margin-bottom: 0.45em;
    line-height: 1.25;
    font-weight: 700;
}

.page-static-content h2 {
    font-size: 2.4rem;
    margin-top: 1.85em;
}

.page-static-content h3 {
    font-size: 2rem;
}

.page-static-content h4 {
    font-size: 1.75rem;
    font-weight: 700;
}

.page-static-content h5 {
    font-size: 1.55rem;
    font-weight: 600;
}

.page-static-content h6 {
    font-size: 1.45rem;
    font-weight: 600;
}

.page-static-content a {
    color: var(--c-sec);
    text-decoration: underline;
}

.page-static-content a:hover {
    color: var(--c-pri);
}

.page-static-content strong,
.page-static-content b {
    font-weight: 600;
    color: #111827;
}

.page-static-content em,
.page-static-content i {
    font-style: italic;
}

.page-static-content ul,
.page-static-content ol {
    margin: 0 0 1.15em 0;
    padding-left: 1.75em;
    list-style-position: outside;
}

.page-static-content ul {
    list-style-type: disc;
}

.page-static-content ol {
    list-style-type: decimal;
}

.page-static-content li {
    margin: 0.35em 0;
    letter-spacing: normal;
    text-transform: none;
    color: inherit;
}

.page-static-content li > p {
    margin: 0.35em 0;
}

.page-static-content table {
    width: 100%;
    margin: 1.25em 0;
    border-collapse: collapse;
    font-size: 1.5rem;
    text-transform: none;
}

.page-static-content th,
.page-static-content td {
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
    letter-spacing: normal;
}

.page-static-content th {
    background: #f1f6fb;
    color: var(--c-pri);
    font-weight: 600;
}

.page-static-content blockquote {
    margin: 1.25em 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--c-sec);
    background: #f8fafc;
    color: var(--c-stxt);
}

.page-static-content hr {
    margin: 2em 0;
    border: 0;
    border-top: 1px solid var(--c-br);
}

.page-static-content img,
.page-static-content figure img {
    max-width: 100%;
    height: auto;
}

/* ===== DRIVE WITH US (screenshot layout) ===== */
/* Main two-column strip — very light blue */
.drive-main-light {
    background: #f0f7ff;
}

.drive-page-inner {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.drive-pill-badge {
    display: inline-block;
    font-family: var(--f-pri);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-sec);
    border: 1px solid var(--c-sec);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 0.45rem 1.35rem;
    line-height: 1.2;
}

.drive-section-title {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: clamp(2.6rem, 2vw + 1.35rem, 4.25rem);
    line-height: 1.22;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #1a202c !important;
    margin: 0;
}

.drive-accent-word {
    color: var(--c-sec);
}

.drive-lead {
    font-family: var(--f-stxt);
    font-size: 1.55rem;
    line-height: 1.65;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #6b7280;
    max-width: 50rem;
}

@media (min-width: 992px) {
    .drive-lead {
        font-size: 1.65rem;
    }
}

.drive-feature-tile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7rem;
    width: 100%;
    min-height: 4.6rem;
    height: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(20, 123, 219, 0.18);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.drive-feature-icon {
    font-size: 1.7rem;
    line-height: 1;
    flex-shrink: 0;
    color: initial;
}

.drive-feature-caption {
    font-family: var(--f-pri);
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.25;
    color: var(--c-sec) !important;
    text-transform: none;
    letter-spacing: 0.01em;
    word-break: break-word;
    min-width: 0;
    flex: 1 1 auto;
}

@media (min-width: 768px) {
    .drive-feature-caption {
        font-size: 1.25rem;
    }
}

@media (min-width: 992px) {
    .drive-feature-tile {
        padding: 0.7rem 1.05rem;
    }
    .drive-feature-caption {
        font-size: 1.3rem;
    }
}

.drive-sms-explainer {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(20, 123, 219, 0.28);
    /* Left + bottom “accent”: offset solid block jaise screenshot */
    box-shadow: -5px 5px 0 0 var(--c-sec);
    padding: 2.6rem 2.8rem;
    margin-left: 6px;
    margin-bottom: 10px;
}

@media (max-width: 575.98px) {
    .drive-sms-explainer {
        padding: 2rem 1.8rem;
        box-shadow: -3px 3px 0 0 var(--c-sec);
    }
}

.drive-sms-explainer-title {
    font-family: var(--f-pri);
    font-weight: 700;
    font-size: 1.65rem;
    line-height: 1.35;
    color: #111827 !important;
    letter-spacing: 0.01em;
    text-align: left;
    text-transform: none;
}

.drive-sms-explainer-body {
    font-family: var(--f-stxt);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.65;
    color: #6b7280 !important;
    letter-spacing: 0.005em;
    text-align: left;
}

.drive-sms-explainer-body strong {
    font-weight: 700;
    color: #374151 !important;
}

.drive-form-card-shell {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
}

@media (min-width: 768px) {
    .drive-form-card-shell {
        padding: 2.75rem 2.75rem;
    }
}

@media (min-width: 992px) {
    .drive-form-card-shell {
        padding: 3.25rem 3.25rem;
    }
}

.drive-form-heading {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: clamp(2rem, 1vw + 1.4rem, 2.65rem);
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--c-pri) !important;
}

.drive-application-form .drive-label {
    font-family: var(--f-pri);
    font-weight: 600;
    font-size: 1.42rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: #1f2937;
    text-transform: none;
    margin-bottom: 0.45rem;
}

.drive-application-form .drive-input {
    font-family: var(--f-stxt);
    font-size: 1.5rem;
    line-height: 1.45;
    padding: 0.95rem 1.15rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
}

.drive-application-form .drive-input:focus {
    border-color: var(--c-sec);
    box-shadow: 0 0 0 3px rgba(20, 123, 219, 0.12);
    outline: 0;
}

.drive-application-form .drive-textarea {
    min-height: 12rem;
    resize: vertical;
}

.drive-application-form .drive-submit-btn {
    border-radius: 8px;
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
    font-size: 1.45rem;
    letter-spacing: 0.07em;
    margin-bottom: 0;
}

.drive-footer-cta {
    min-height: 58rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 9rem;
    background-color: #070b12;
    background-image:
        linear-gradient(180deg, rgba(10, 46, 92, 0.62) 0%, rgba(5, 15, 35, 0.78) 100%),
        url('../img/bg_2.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    .drive-footer-cta {
        min-height: 68rem;
        padding: 10rem 0 11rem;
    }
}

@media (min-width: 1200px) {
    .drive-footer-cta {
        min-height: 72rem;
        padding: 11rem 0 12rem;
    }
}

.drive-footer-inner {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.drive-cta-heading {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: clamp(2.5rem, 2vw + 1.35rem, 4.5rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: none;
}

.drive-cta-accent {
    color: var(--c-sec);
}

.drive-cta-sub {
    font-family: var(--f-txt);
    font-weight: 400;
    font-size: clamp(1.45rem, 0.7vw + 1.05rem, 1.85rem);
    line-height: 1.55;
    letter-spacing: 0.02em;
    text-transform: none;
    opacity: 0.96;
    max-width: 54rem;
    margin-left: auto;
    margin-right: auto;
}

.drive-footer-cta .drive-cta-btn,
.drive-footer-cta .drive-cta-btn-outline {
    margin-bottom: 0;
    border-radius: 8px;
    min-width: 17rem;
}

.services-page {
    background: #EAF4FF;
}

.service-cards .card {
    border-left: 3px solid #147BDB;
    box-shadow: 0px 2px 10px 0px #0078CA40;
}

.service-cards .card i::before {
    position: absolute;
    top: 0;
    right: 40%;
    padding: 1.5rem;
    background: #EAF4FF;
    color: var(--c-sec);
    border-radius: 1.0rem;
}

.communication-page {
    background: #0A2E5C1A;
}

.communication-page .service-cards .card {
    border-left: 0;
    border-top: 6px solid #147BDB;
}

.service-suscribe {
    background: linear-gradient(rgba(4, 7, 10, 0.7), rgba(10, 15, 20, 0.9)), 
    url('../img/bg_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 99;
}

.btn-hero {
    font-family: Manrope;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 3.2rem;
    letter-spacing: 2%;
}

.textus-card .card {
    border: 1px solid #147BDB;
    padding: 2.0rem;
}

.textus-card li i {
    background-color: var(--c-sec);
    padding: 0.5rem 1.9rem 0.5rem 0.5rem;
    margin-right: 0.5rem;
}

.textus-card .text-icon i::before {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.2rem;
    background: var(--bg-gry);
    color: var(--c-sec);
    border-radius: 1.0rem;
}

/* ===== TEXT US PAGE (full layout — matches design) ===== */
.textus-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

section.textus-why-section {
    background: #f0f7ff;
    padding-top: 7rem;
    padding-bottom: 9rem;
}

.textus-outline-badge {
    font-family: var(--f-pri);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-sec);
    border: 2px solid var(--c-sec);
    padding: 0.55rem 1.35rem;
    border-radius: 4px;
    line-height: 1.25;
}

.textus-why-header {
    max-width: 920px;
}

.textus-megatitle {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: clamp(2.4rem, 2.2vw + 1.4rem, 4.2rem);
    line-height: 1.18;
    letter-spacing: 0.04em;
    color: #111827;
    margin: 0;
}

.textus-megatitle-accent {
    color: var(--c-sec) !important;
}

.textus-lead {
    font-family: var(--f-stxt);
    font-size: clamp(1.45rem, 0.5vw + 1.2rem, 1.85rem);
    line-height: 1.65;
    letter-spacing: 0.02em;
    max-width: 52rem;
}

.textus-lead-muted {
    color: #6b7280 !important;
    text-transform: none;
}

/* Intro: pehla sentence full width taake 1 line + <br> = 2 visible lines (wide viewports) */
.textus-lead.textus-lead-intro {
    display: block;
    max-width: 100% !important;
    line-height: 1.75;
    white-space: normal;
}

@media (min-width: 992px) {
    .textus-lead.textus-lead-intro {
        font-size: clamp(1.32rem, 0.55vw + 1.05rem, 1.52rem);
        letter-spacing: 0.012em;
    }
}

.textus-feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 2.75rem 2.85rem;
    border: 2px solid var(--c-sec);
    box-shadow: 0 4px 22px rgba(20, 123, 219, 0.1);
}

@media (min-width: 992px) {
    .textus-feature-card {
        padding: 3rem 3.1rem;
    }
}

.textus-card-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 12px;
    background: rgba(20, 123, 219, 0.12);
    color: var(--c-sec);
    font-size: 2rem;
    margin-bottom: 1.75rem;
}

.textus-card-title {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: 1.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.textus-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-family: var(--f-stxt);
    font-size: 1.45rem;
    line-height: 1.55;
    color: #374151;
    letter-spacing: 0.01em;
    margin-bottom: 1.05rem;
}

.textus-checklist li:last-child {
    margin-bottom: 0;
}

.textus-check-ico {
    flex-shrink: 0;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: var(--c-sec);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.textus-disclosure-panel {
    background: rgba(243, 249, 255, 0.98);
    border-radius: 14px;
    padding: 2.75rem 2.75rem 2.85rem;
    max-width: 100%;
    border: 1px solid rgba(20, 123, 219, 0.28);
    border-left: 8px solid var(--c-sec);
}

@media (min-width: 992px) {
    .textus-disclosure-panel {
        padding: 3.25rem 3.25rem 3.35rem;
        border-left-width: 10px;
    }
}

.textus-disclosure-heading {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: 1.85rem;
    color: var(--c-sec) !important;
    letter-spacing: 0.03em;
    line-height: 1.35;
}

.textus-disclosure-text,
.textus-disclosure-text-small {
    font-family: var(--f-stxt);
    font-size: 1.45rem;
    line-height: 1.7;
    color: #6b7280 !important;
    letter-spacing: 0.01em;
    text-transform: none;
}

.textus-disclosure-text-small {
    font-size: 1.35rem;
}

.textus-disclosure-bullets li {
    font-family: var(--f-stxt);
    font-size: 1.4rem;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 1rem;
    padding-left: 0;
    text-transform: none;
}

.textus-disclosure-footer {
    font-family: var(--f-stxt);
    font-size: 1.4rem;
    color: #4b5563;
    letter-spacing: 0.02em;
    text-transform: none;
}

.textus-link-accent {
    color: var(--c-sec) !important;
    font-weight: 600;
}

/* Examples — screenshot bg + taller section + soft blue glow on tiles */
section.textus-examples-section {
    background: #eaf4ff;
    padding-top: 9rem;
    padding-bottom: 10rem;
}

@media (min-width: 992px) {
    section.textus-examples-section {
        padding-top: 11rem;
        padding-bottom: 11rem;
    }
}

.textus-examples-pill {
    font-family: var(--f-pri);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-sec);
    border: 2px solid var(--c-sec);
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    line-height: 1.2;
}

.textus-examples-heading {
    font-family: var(--f-pri);
    font-weight: 800;
    font-size: clamp(2.2rem, 2vw + 1.35rem, 3.75rem);
    line-height: 1.28;
    letter-spacing: 0.04em;
    color: #111827 !important;
    margin: 0;
    margin-bottom: 1.75rem !important;
}

.textus-examples-accent {
    color: var(--c-sec) !important;
}

.textus-examples-lead {
    font-family: var(--f-stxt);
    font-size: 1.5rem;
    line-height: 1.78;
    color: #6b7280 !important;
    letter-spacing: 0.015em;
    max-width: 52rem;
    text-transform: none;
    margin-bottom: 4rem !important;
}

@media (min-width: 992px) {
    .textus-examples-lead {
        margin-bottom: 4.75rem !important;
    }
}

.textus-msg-col {
    margin-bottom: 0.5rem;
}

.textus-msg-label {
    font-family: var(--f-pri);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-sec);
    margin-bottom: 1.15rem !important;
}

.textus-msg-tile {
    border-radius: 18px;
    padding: 2.35rem 2.2rem;
    min-height: 12rem;
    box-shadow:
        0 18px 46px rgba(20, 123, 219, 0.16),
        0 6px 18px rgba(15, 23, 42, 0.06);
}

@media (min-width: 992px) {
    .textus-msg-tile {
        min-height: 14rem;
        padding: 2.6rem 2.4rem;
    }
}

.textus-msg-tile--mint {
    background: #e0f2f1;
}

.textus-msg-tile--cream {
    background: #f8f3e4;
}

.textus-msg-tile--lavender {
    background: #eee4f4;
}

.textus-msg-body {
    font-family: var(--f-stxt);
    font-style: normal;
    font-weight: 400;
    font-size: 1.45rem;
    line-height: 1.72;
    color: #374151 !important;
    text-transform: none;
}

/* ===========================
   Footer (matches design mock)
   =========================== */
.footer {
    background: #147BDB33;
    font-family: var(--f-txt);
}



.footer-inner {
    padding-left: clamp(16px, 3vw, 48px);
    padding-right: clamp(16px, 3vw, 48px);
}

.footer .footer-inner > .row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0;
    margin-right: 0;
}

/* Compliance row */
.footer-compliance-wrap {
  
    padding-top: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #b6ccdb;
}

.footer-compliance-card {
   
    padding: 18px 26px;
}

.footer-compliance-label {
    font-family: var(--f-pri);
    color: var(--c-pri);
    font-weight: 700;
    font-size: 15.5px;
    margin-right: 4px;
}

.footer-compliance-text {
    font-family: var(--f-txt);
    color: #1e3a5f;
    font-size: 17.5px;
    line-height: 1.6;
}

/* Main columns */
.footer-main-grid {
   
    padding-top: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #b6ccdb;
}

/* Wider logo/brand column; Navigation, Legal, Contact split remainder equally */
.footer-main-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.footer-main-row > .footer-cell {
    min-width: 0;
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .footer-main-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-cell {
        grid-column: 1 / -1;
    }

    .footer-cell-contact {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .footer-main-row {
        grid-template-columns: minmax(0, 1.28fr) repeat(3, minmax(0, 1fr));
        gap: clamp(24px, 3vw, 40px);
    }
}

.footer-cell {
    color: var(--c-pri);
}

.footer-title {
    font-family: var(--f-pri);
    color: var(--c-pri);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.2;
    margin: 0 0 18px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.footer-link {
    font-family: var(--f-txt);
    color: #1f2c44 !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
}

.footer-link:hover {
    color: var(--c-sec) !important;
    text-decoration: underline;
}

.footer-contact-list .footer-link i {
    font-size: 14px;
    width: 18px;
    margin-right: 8px;
    color: var(--c-pri);
}

.footer-logo-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
}

.footer-about {
    font-family: var(--f-txt);
    color: #1f2c44;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.45;
    max-width: 402px;
    margin-top: 20px;
}

/* Vertical dividers between columns on large screens */
@media (min-width: 992px) {
    .footer-main-grid .footer-main-row .footer-cell + .footer-cell {
        border-left: 1px solid #b6ccdb;
        padding-left: 28px;
    }
}

/* Bottom blue bar */
.footer-bottom-bar {
    background-color: #147bdb;
}

.footer-bottom-row {
    padding-top: 14px;
    padding-bottom: 14px;
}

.footer-bottom-copy {
    font-family: var(--f-txt);
    color: #ffffff !important;
    font-size: 15.5px;
    font-weight: 400;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 28px;
}

.footer-bottom-link {
    font-family: var(--f-txt);
    color: #ffffff !important;
    font-size: 13.5px;
    text-decoration: none;
}

.footer-bottom-link:hover {
    color: #e8f4ff !important;
    text-decoration: underline;
}

/* ==============
RESPONSIVE DESIGN
============== */

/* Base styles (Vertical Phones) < 576px */
.carousel-caption {
    bottom: 25%;
}

/* =====================
Small (Landscape Phones)
 ==================== */
@media (min-width: 576px) {
    
}

/* =============
Medium (Tablets)
============= */
@media (min-width: 768) {
    section {
        padding-top: 15.0rem;
        padding-bottom: 15.0rem;
    }

    .header-top, .header-main, section, .footer .row {
        padding-left: 2.0rem;
        padding-right: 2.0rem;
    }

    h1 {
        font-size: 4.8rem!important;
        line-height: 5.4rem;
        margin: 3.5rem 0; 
    }
    
    h2 {
        font-size: 4.0rem;
        line-height: 4.8rem;
        margin: 3.5rem 0; 
    }

    .home-progress h2 {
        font-size: 3.2rem;
    }

}

/* =====================
Large (Laptops/Desktops)
===================== */
@media (min-width: 992px) {
    h1 {
        font-size: 5.4rem!important;
        line-height: 6.4rem;
        margin: 3.5rem 0; 
    }
    
    h2 {
        font-size: 4.8rem;
        line-height: 5.4rem;
        margin: 3.5rem 0; 
    }

    .home-progress h2 {
        font-size: 3.2rem;
        line-height: 4.0rem;
    }

    .home-textus h2, .home-testimonial h2 {
        font-size: 5.4rem;
        line-height: 6.0rem;
    }

    .header-top, .header-main, section, .footer .row {
        padding-left: 4.05rem;
        padding-right: 4.05rem;
    }

    /* Section Tags */
    .section-tag {
        font-size: 2.0rem;
        line-height: 4.0rem;
        padding: 0.5rem 1.5rem;
    }
    
    .header-main {
        min-height: 8.0rem;
        padding-top: 0.75rem;
    }

    .hero-home {
        padding-top: 22.0rem;
    }

    /* Buttons */
    .btn {
        font-size: 1.6rem;
        line-height: 2.4rem;
        border-radius: 1.4rem;
        padding: 1.3rem 3.0rem;
    }

    .home-suscribe  {
        min-height: 60.0rem;
    }
    
    .hero-feature .col:not(:last-child) .feat-card::after {
        content: "";
        position: absolute;
        top: 10%;
        right: 5.0rem;
        width: 0.1rem;
        height: 80%;
        background: rgba(255,255,255,.3);
    }

}

/* =========================
Extra Large (Large Monitors)
========================= */
@media (min-width: 1200px) { /* 1200px */

}

/* =======================
XX-Large (4K / Ultra-wide)
======================= */
@media (min-width: 1400px) { /* 1400px */

}

/* =================
Design For Min & Max
================= */
@media (min-width: 768px) and (max-width: 1199.98px) { 
    
}

/* Floating SMS — 2s still, then sharp left–right shake; full loop 2.5s */
@keyframes fab-sms-lr-burst {
    0%, 80% {
        transform: translateX(0);
    }
    82% {
        transform: translateX(-20px);
    }
    83% {
        transform: translateX(-20px);
    }
    85% {
        transform: translateX(22px);
    }
    86% {
        transform: translateX(22px);
    }
    88% {
        transform: translateX(-16px);
    }
    89% {
        transform: translateX(-16px);
    }
    91% {
        transform: translateX(16px);
    }
    92% {
        transform: translateX(16px);
    }
    94%, 100% {
        transform: translateX(0);
    }
}

.fab-sms {
    position: fixed;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
    z-index: 1035;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    background: var(--c-sec);
    color: var(--c-wht) !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 28px rgba(20, 123, 219, 0.35);
    border: 2px solid var(--c-sec);
    transition: filter 0.2s ease, box-shadow 0.2s ease;
    animation: fab-sms-lr-burst 2.5s linear infinite;
    will-change: transform;
}
.fab-sms:hover {
    color: var(--c-wht) !important;
    animation-play-state: paused;
    transform: translateY(-4px);
    filter: brightness(1.06);
    box-shadow: 0 16px 40px rgba(20, 123, 219, 0.5);
}
.fab-sms:focus-visible {
    outline: 3px solid rgba(20, 123, 219, 0.55);
    outline-offset: 3px;
}
.fab-sms i {
    font-size: 1.45rem;
}
@media (prefers-reduced-motion: reduce) {
    .fab-sms {
        animation: none;
    }
    .fab-sms:hover {
        transform: translateY(-2px);
    }
}
@media (max-width: 575.98px) {
    .fab-sms .fab-sms-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    .fab-sms {
        padding: 1rem;
        border-radius: 50%;
        justify-content: center;
    }
    .fab-sms i {
        font-size: 1.65rem;
    }
}