:root {
    --service-primary: #002e5f;
    --service-accent: #00bfff;
    --service-bg: #f4f7fb;
    --service-surface: #ffffff;
    --service-text: #334155;
    --service-border: #e2e8f0;
}

body {
    background: var(--service-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.service-hero {
    position: relative;
    padding: 18rem 2rem 11rem;
    background: linear-gradient(rgba(0, 46, 95, 0.9), rgba(0, 46, 95, 0.85)), url('../images/banner3.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 40%);
    pointer-events: none;
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

.service-hero h1 {
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    font-weight: 700;
    line-height: 1.24;
    margin-bottom: 2rem;
}

.hero-line {
    width: 110px;
    height: 4px;
    margin: 0 auto 2rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #6ce8ff, #00bfff);
}

.service-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.service-intro {
    background: var(--service-surface);
}

.intro-text {
    font-size: 1.75rem;
    line-height: 1.85;
    color: var(--service-text);
    margin-bottom: 1.8rem;
    text-align: center;
}

.service-grid-section {
    background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%) !important;
}

.service-grid-section .section-title .heading,
.engagement-section .section-title .heading {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    color: var(--service-primary);
    font-weight: 700;
    margin: 0;
}

.s-card {
    background: var(--service-surface);
    padding: 3rem 2.6rem;
    border-radius: 1.6rem;
    border: 1px solid var(--service-border);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
    box-shadow: 0 0.8rem 2rem rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.s-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.4rem 3rem rgba(0, 46, 95, 0.14);
    border-color: #bfdbfe;
}

.s-icon {
    width: 56px;
    height: 56px;
    border-radius: 1.2rem;
    display: grid;
    place-items: center;
    background: #e8f5ff;
    color: #005a95;
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
}

.s-card h3 {
    font-size: 2.2rem;
    color: var(--service-primary);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 1.2rem;
}

.s-card p {
    font-size: 1.5rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 2rem;
}

.s-link {
    margin-top: auto;
    color: #0f4a8a;
    font-size: 1.45rem;
    font-weight: 700;
    text-decoration: none;
}

.s-link i {
    margin-left: 0.6rem;
    transition: transform 0.2s ease;
}

.s-link:hover {
    color: #007fb3;
    text-decoration: none;
}

.s-link:hover i {
    transform: translateX(4px);
}

.engagement-section {
    background: #fff;
}

.eng-table {
    margin-bottom: 0;
    border: 1px solid var(--service-border);
    border-radius: 1.2rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1rem 2.4rem rgba(15, 23, 42, 0.06);
}

.eng-table th,
.eng-table td {
    vertical-align: middle;
    border-color: var(--service-border) !important;
    padding: 1.4rem 1.6rem;
    font-size: 1.45rem;
}

.eng-table thead th {
    background: #10335a;
    color: #fff;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.eng-table tbody tr:nth-child(even) {
    background: #f8fbff;
}

.service-cta-new {
    position: relative;
    background: linear-gradient(135deg, #00bfff 0%, #008ccf 100%);
    padding: 8rem 2rem;
    color: #fff;
    overflow: hidden;
}

.service-cta-new::before,
.service-cta-new::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.service-cta-new::before {
    width: 38rem;
    height: 38rem;
    top: -21rem;
    right: -10rem;
}

.service-cta-new::after {
    width: 22rem;
    height: 22rem;
    bottom: -11rem;
    left: -6rem;
}

.service-cta-new .container {
    position: relative;
    z-index: 1;
}

.service-cta-new h3 {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1.6rem;
    color: #fff;
}

.service-cta-new p {
    font-size: 1.8rem;
    max-width: 82rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.btn-cta-white {
    display: inline-block;
    padding: 1.4rem 3.6rem;
    background: #fff;
    color: var(--service-primary) !important;
    font-size: 1.7rem;
    font-weight: 700;
    border-radius: 999px;
    transition: all 0.25s ease;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.16);
}

.btn-cta-white:hover {
    background: var(--service-primary);
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: 0 1.4rem 2.8rem rgba(0, 0, 0, 0.22);
    text-decoration: none;
}

.footer {
    background: #002e5f;
    color: #fff;
}

.footer .footer-top {
    background: #002e5f;
    padding: 60px 0 30px;
    color: #fff;
}

.footer h4 {
    font-size: 1.8rem;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    padding: 0.7rem 0;
    font-size: 1.4rem;
}

.footer .footer-links ul li i {
    color: #00bfff;
    margin-right: 0.8rem;
}

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer .footer-links a:hover {
    color: #00bfff;
}

.footer .footer-contact p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer .footer-contact strong {
    color: #fff;
    margin-right: 0.4rem;
}

.footer .social-links {
    margin-top: 1.6rem;
    display: flex;
    gap: 0.9rem;
}

.footer .social-links a {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.2s ease;
}

.footer .social-links a:hover {
    background: #00bfff;
    transform: translateY(-2px);
    text-decoration: none;
}

.footer .footer-newsletter p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.footer .footer-newsletter form {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer .footer-newsletter input[type="email"] {
    flex: 1 1 180px;
    border: none;
    border-radius: 0.8rem;
    padding: 1rem 1.2rem;
    font-size: 1.35rem;
    outline: none;
}

.footer .footer-newsletter input[type="submit"] {
    border: none;
    border-radius: 0.8rem;
    padding: 1rem 1.6rem;
    background: #00bfff;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.footer .footer-newsletter input[type="submit"]:hover {
    background: #009dd1;
}

.footer .footer-bottom {
    background: #333;
    color: #fff;
}

.footer .footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 1.4rem;
}

@media (max-width: 991px) {
    .service-hero {
        padding: 16rem 2rem 9rem;
    }

    .service-hero p,
    .intro-text,
    .service-cta-new p {
        font-size: 1.6rem;
    }

    .s-card {
        text-align: center;
        align-items: center;
    }

    .s-card p {
        margin-bottom: 1.6rem;
    }

    .footer .footer-top {
        padding: 45px 0 20px;
    }

    .footer .footer-links,
    .footer .footer-contact,
    .footer .footer-newsletter {
        margin-bottom: 2.4rem;
    }
}

@media (max-width: 767px) {
    .service-hero h1 {
        line-height: 1.28;
    }

    .eng-table th,
    .eng-table td {
        padding: 1.2rem 1rem;
        font-size: 1.3rem;
    }

    .service-cta-new {
        padding: 6rem 1.6rem;
    }

    .btn-cta-white {
        width: 100%;
        max-width: 32rem;
    }
}