* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f9;
    color: #333;
    line-height: 1.6;
}


/* NAVBAR */
nav {
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    flex-wrap: wrap;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 12px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    text-decoration: underline;
}


/* FOOTER */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 15px;
    margin-top: 30px;
}

.footer-links {
    margin-top: 8px;
}

.footer-links a {
    color: #0d6efd;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* TABLET */
@media (max-width: 768px) {
    header h1 {
        font-size: 24px;
    }

    .box {
        margin: 15px;
        padding: 20px;
    }

    .cta a {
        font-size: 18px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 8px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    header h1 {
        font-size: 22px;
    }

    .cta a {
        font-size: 16px;
    }
}

/* GLASS HERO */
.wm-glass-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, #0d6efd, #6ea8fe);
    padding: 60px 15px;
}

/* WRAP */
.wm-glass-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.wm-glass-left {
    color: #fff;
}

.wm-tag {
    display: inline-block;
    background: rgba(255,255,255,.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.wm-glass-left h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
}

.wm-glass-left p {
    font-size: 16px;
    max-width: 500px;
    opacity: .95;
}

/* ACTIONS */
.wm-actions {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.wm-glass-call {
    background: #fff;
    color: #0d6efd;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    transition: .3s ease;
}

.wm-glass-call:hover {
    transform: translateY(-3px);
}

.wm-note {
    font-size: 13px;
    opacity: .9;
}

/* RIGHT GLASS CARD */
.wm-glass-right {
    position: relative;
}

.wm-glass-card {
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,.25);
    border-radius: 22px;
    padding: 35px 30px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,.2);
    animation: floatUp 3s ease-in-out infinite;
}

.wm-glass-card h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.wm-glass-card ul {
    list-style: none;
    padding-left: 0;
}

.wm-glass-card li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* FLOATING BADGE */
.wm-float-badge {
    position: absolute;
    bottom: -18px;
    right: 30px;
    background: #fff;
    color: #0d6efd;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 13px;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
    animation: bounce 2.5s infinite;
}

/* ANIMATIONS */
@keyframes floatUp {
    0%,100% {transform: translateY(0);}
    50% {transform: translateY(-12px);}
}

@keyframes bounce {
    0%,100% {transform: translateY(0);}
    50% {transform: translateY(-8px);}
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .wm-glass-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wm-actions {
        justify-content: center;
        flex-direction: column;
    }

    .wm-glass-left h1 {
        font-size: 30px;
    }

    .wm-float-badge {
        position: static;
        margin-top: 20px;
    }
}

/* LIVE SERVICE SECTION */
.service-live {
    background: #ffffff;
    padding: 70px 15px;
}

.live-wrapper {
    max-width: 950px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border-radius: 24px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f7faff, #eef3ff);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

/* LEFT STATUS */
.live-status {
    position: relative;
}

.live-dot {
    width: 14px;
    height: 14px;
    background: #28a745;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.5s infinite;
    margin-bottom: 10px;
}

.live-status h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.live-status p {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}

.live-time {
    background: #ffffff;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* RIGHT */
.live-confidence h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.confidence-item {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 14px;
    margin-bottom: 10px;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* CALL */
.live-call {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 28px;
    background: #0d6efd;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* DOT ANIMATION */
@keyframes pulseDot {
    0% {box-shadow: 0 0 0 0 rgba(40,167,69,.6);}
    70% {box-shadow: 0 0 0 14px rgba(40,167,69,0);}
    100% {box-shadow: 0 0 0 0 rgba(40,167,69,0);}
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .live-wrapper {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        text-align: center;
    }
}
/* PROBLEM SELECTOR SECTION */
.problem-selector {
    padding: 80px 15px;
    background: #f6f9ff;
}

.ps-title {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: #0d6efd;
}

.ps-subtitle {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin: 10px 0 40px;
}

/* GRID */
.ps-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.ps-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.ps-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* ICON */
.ps-icon {
    font-size: 38px;
    display: block;
    margin-bottom: 12px;
}

/* TEXT */
.ps-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.ps-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* HIGHLIGHT CARD */
.ps-highlight {
    background: linear-gradient(135deg, #0d6efd, #6ea8fe);
    color: #ffffff;
}

.ps-highlight p {
    color: #f1f1f1;
}

/* CALL BUTTON */
.ps-call {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 24px;
    background: #ffffff;
    color: #0d6efd;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ps-grid {
        grid-template-columns: 1fr;
    }

    .ps-title {
        font-size: 26px;
    }
}
/* SMART CARE SECTION */
.smartcare-section {
    padding: 80px 15px;
    background: #f4f7ff;
}

/* WRAP */
.smartcare-wrap {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 35px;
    align-items: center;
}

/* LEFT */
.smartcare-left h2 {
    font-size: 32px;
    font-weight: 900;
    color: #0d6efd;
    margin-bottom: 10px;
}

.smartcare-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

/* STEPS */
.smart-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.step {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.step span {
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0d6efd;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step p {
    font-size: 14px;
    color: #444;
}

/* RIGHT */
.priority-box {
    background: linear-gradient(135deg, #0d6efd, #6ea8fe);
    border-radius: 24px;
    padding: 35px 28px;
    color: #ffffff;
    box-shadow: 0 25px 45px rgba(13,110,253,0.4);
}

.priority-box h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.priority-box p {
    font-size: 14px;
    opacity: .95;
    margin-bottom: 18px;
}

.priority-info {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* CALL */
.priority-call {
    display: inline-block;
    background: #ffffff;
    color: #0d6efd;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .smartcare-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .smart-steps {
        grid-template-columns: 1fr;
    }

    .priority-box {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .smartcare-left h2 {
        font-size: 26px;
    }
}
/* STATS SECTION */
.stats-section {
    padding: 80px 15px;
    background: linear-gradient(135deg, #f7faff, #eef3ff);
    text-align: center;
}

.stats-title {
    font-size: 32px;
    font-weight: 900;
    color: #0d6efd;
}

.stats-subtitle {
    font-size: 15px;
    color: #555;
    margin: 10px 0 45px;
}

/* GRID */
.stats-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* BOX */
.stat-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
}

/* NUMBER */
.stat-box h3 {
    font-size: 42px;
    font-weight: 900;
    color: #0d6efd;
    margin-bottom: 8px;
}

/* LABEL */
.stat-box p {
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-title {
        font-size: 26px;
    }
}
