/********** Template CSS **********/

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


.boxcenter {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.support-container {
    width: 100%;
    max-width: 800px;
}

.support-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    padding: 40px;
    border-left: 8px solid #25D366;
    transition: 0.4s;
    position: relative;
}

.support-box:hover {
    transform: translateY(-6px);
}

.title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    line-height: 1.2;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.whatsapp-info {
    background: rgba(37, 211, 102, 0.08);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    text-align: center;
}

.whatsapp-icon {
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-text {
    font-size: 22px;
    font-weight: 600;
    color: #075E54;
}

.contact-item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 2px solid #25D366;
}

.contact-number {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    word-break: break-word;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    vertical-align: middle;
}


.business-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
}

.contact-link {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.contact-link:hover {
    transform: scale(1.03);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.response-time {
    margin-top: 30px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    padding: 18px;
    text-align: center;
    border: 2px dashed rgba(255, 193, 7, 0.3);
}

.response-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.highlight {
    color: #25D366;
}

.small-note {
    font-size: 13px;
    color: #777;
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

.note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* MOBILE OPTIMIZATION */
@media(max-width:768px) {

    .support-box {
        padding: 25px;
        border-left: 5px solid #25D366;
    }

    .title {
        font-size: 26px;
    }

    .subtitle {
        font-size: 16px;
    }

    .whatsapp-text {
        font-size: 20px;
    }

    .whatsapp-icon {
        margin-right: 10px;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .contact-number {
        font-size: 18px;
    }

    .contact-link {
        font-size: 16px;
        padding: 14px;
    }

    .response-text {
        font-size: 14px;
    }
}

@media(max-width:480px) {

    body {
        padding: 10px;
    }

    .support-box {
        padding: 20px;
    }

    .title {
        font-size: 22px;
    }

    .subtitle {
        font-size: 15px;
    }

    .whatsapp-title {
        flex-direction: column;
        gap: 10px;
    }

    .whatsapp-icon {
        margin-right: 0;
    }

    .contact-number {
        font-size: 16px;
    }

}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 3px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 15px 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--bs-secondary);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .sticky-top {
        background: var(--bs-primary);
    }

    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    position: relative;
    margin-top: -100px;
    padding-top: 150px;
    overflow: hidden;
    background: rgba(216, 19, 36, 0.9);
}

.hero-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/hero-header-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: animateUpDown 8s ease infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: 0px;
        left: 0px;
    }
    25% { 
        top: -15px;
        left: 15px;
    }
    50% { 
        top: 0px;
        left: 30px;
    }
    75% { 
        top: 15px;
        left: 15px;
    }
    100% { 
        top: 0px;
        left: 0px;
    }
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 45px 3px 3px 3px;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 45px 0;
}

.service-list a.btn-light:hover {
    color: var(--bs-white) !important;
    background: var(--bs-primary);
}

.service-list a.btn-light i {
    color: var(--bs-primary);
    transition: .5s;
}

.service-list a.btn-light:hover i {
    color: var(--bs-secondary);
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-white);
    letter-spacing: 1px;
    box-shadow: none;
}


.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255, 255, 255, .5);
}

.footer .copyright a:hover {
    color: var(--bs-white);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/* Force all headings in the bg-primary sections to be centered */
.bg-primary h1, 
.bg-primary h2, 
.bg-primary h3, 
.bg-primary h4 {
    text-align: center !important;
    width: 100%;
    display: block;
}

/* Make sure the span inside is also centered */
.bg-primary h1 span {
    display: inline-block;
    margin: 0 auto;
}