/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    background: #f5f7fb;
    font-family: Arial, Helvetica, sans-serif;
}

/* ABOUT SECTION WRAPPER */
section {
    background: #ffffff;
    border-radius: 18px;
    margin: 30px 15px;
    padding: 30px 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* HEADING */
section h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

/* UNDERLINE */
section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #6ea8fe);
    margin-top: 8px;
    border-radius: 4px;
}

/* TEXT */
section p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
    color: #444;
}

/* LIST */
section ul {
    padding-left: 0;
    margin-top: 10px;
}

section ul li {
    list-style: none;
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 14px;
}

/* TICK ICON */
section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0d6efd;
    font-weight: bold;
}

/* CALL BUTTON */
section .btn-primary {
    margin-top: 15px;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: bold;
    box-shadow: 0 10px 22px rgba(13,110,253,0.35);
    transition: all 0.3s ease;
}

section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(13,110,253,0.45);
}

/* RIGHT INFO CARD */
.bg-light {
    background: linear-gradient(135deg, #f8fbff, #eef3ff) !important;
    border-radius: 16px;
}

/* STATS BOX */
.border.rounded {
    background: #ffffff;
    border-radius: 14px !important;
    padding: 18px 10px;
    font-size: 14px;
    transition: 0.3s ease;
}

.border.rounded:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* FOOTER */
footer {
    background: #0d6efd;
    color: #ffffff;
    text-align: center;
    padding: 22px 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* =====================
   TABLET (≥768px)
===================== */
@media (min-width: 768px) {
    section {
        margin: 50px auto;
        padding: 45px 35px;
        max-width: 900px;
    }

    section h2 {
        font-size: 28px;
    }

    section p,
    section ul li {
        font-size: 15px;
    }
}

/* =====================
   DESKTOP (≥992px)
===================== */
@media (min-width: 992px) {
    section {
        max-width: 1100px;
        padding: 55px 45px;
    }

    section h2 {
        font-size: 32px;
    }

    section p {
        font-size: 16px;
    }

    section ul li {
        font-size: 15px;
    }
}
/* ==========================
   TRUST ABOUT SECTION
========================== */
.trust-about {
    background: #ffffff;
    padding: 60px 15px;
}

.trust-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.trust-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 10px;
}

.trust-header p {
    font-size: 15px;
    color: #555;
}

/* GRID */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* TRUST BOX */
.trust-box {
    background: #f8faff;
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    transition: 0.3s ease;
}

.trust-box span {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.trust-box h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #111;
}

.trust-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* HOVER */
.trust-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

/* ==========================
   RESPONSIVE
========================== */

/* Tablet */
@media (max-width: 991px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .trust-about {
        padding: 40px 15px;
    }

    .trust-header h2 {
        font-size: 24px;
    }

    .trust-header p {
        font-size: 14px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}
/* COUNT LIST SECTION */
.count-list-section {
    background: #f8faff;
    padding: 60px 15px;
}

.count-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #0d6efd;
}

/* LIST */
.count-list {
    max-width: 900px;
    margin: auto;
}

/* ITEM */
.count-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.count-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* NUMBER */
.count-number {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #6ea8fe);
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT */
.count-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.count-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 768px) {
    .count-title {
        font-size: 26px;
    }

    .count-item {
        padding: 20px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .count-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .count-number {
        margin-bottom: 10px;
    }
}
/* SERVICE COVERAGE SECTION */
.coverage-section {
    padding: 70px 15px;
    background: #f4f7fc;
}

.coverage-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.coverage-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 10px;
}

.coverage-header p {
    font-size: 15px;
    color: #555;
}

/* BOX */
.coverage-box {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* LEFT & RIGHT */
.coverage-left h4,
.coverage-right h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

.coverage-left p,
.coverage-right p {
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.6;
}

/* LIST */
.coverage-left ul {
    padding-left: 18px;
}

.coverage-left ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* TAGS */
.assurance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.assurance-tags span {
    background: #eef3ff;
    color: #0d6efd;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .coverage-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .coverage-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .coverage-section {
        padding: 50px 15px;
    }

    .coverage-header p {
        font-size: 14px;
    }
}
