:root {
    --primary: #df2026;
    --dark: #0b0e11;
    --dark-light: #11151a;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
}


/* =========================
   TOP BAR
========================= */

.top-bar {
    height: 52px;
    background: #0b0e11;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-inner {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content:right;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-contact span {
    color: #d6d6d6;
    font-size: 14px;
}

.top-contact i {
    color: var(--primary);
    margin-right: 7px;
}

.top-mail {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.top-mail:hover {
    background: #fff;
    color: var(--primary);
}


/* =========================
   MAIN HEADER
========================= */

.main-header {
    height: 72px;
    background: #0b0e11;
    position: relative;
    z-index: 100;
}

.main-header .navbar {
    height: 72px;
}

.navbar-brand {
    padding: 0;
    margin-right: 60px;
}

.navbar-brand img {
    width:260px;
    height: auto;
    display: block;
}

.main-header .navbar-nav {
    gap: 38px;
}

.main-header .nav-link {
    position: relative;
    padding: 27px 0 !important;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.main-header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: #fff;
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after {
    width: 100%;
}


/* Search */

.search-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Mobile Button */

.navbar-toggler {
    border: 0;
    color: #fff;
    font-size: 28px;
    box-shadow: none !important;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    min-height: 530px;
    overflow: hidden;
    background: #03090e;
}


/* Background Slider */

.hero-slider,
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0;
    transform: scale(1.04);
    transition:
        opacity 1.2s ease,
        transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}


/* Dark Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(3, 9, 14, 0.98) 0%,
        rgba(3, 9, 14, 0.88) 28%,
        rgba(3, 9, 14, 0.30) 58%,
        rgba(3, 9, 14, 0.08) 100%
    );
}


/* Content */

.hero-section .container {
    position: relative;
    min-height: 530px;
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-54%);
}

.hero-subtitle {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero-content h1 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    margin: 0 0 26px;
    color: #e5e5e5;
    font-size: 16px;
    line-height: 1.65;
}

.hero-btn {
    width: 165px;
    height: 48px;
    padding: 0 18px;
    border-radius: 4px;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #fff;
    color: var(--primary);
}


/* Slider Dots */

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #aaa;
    cursor: pointer;
}

.hero-dots button.active {
    background: var(--primary);
}


/* Mobile Responsive */

@media (max-width: 767px) {

    .hero-section,
    .hero-section .container {
        min-height: 500px;
    }

    .hero-slide {
        background-position: center center;
    }

    .hero-overlay {
        background: rgba(3, 9, 14, 0.72);
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding-top: 95px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* =========================
   FEATURES SECTION
========================= */

.features-section {
    position: relative;
    z-index: 10;
    background: #0d1115;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card {
    min-height: 125px;
    padding: 28px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.features-section .col-lg-3:last-child .feature-card {
    border-right: 0;
}

.feature-card:hover {
    background: #13181d;
}

.feature-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(223, 32, 38, 0.1);
    border: 1px solid rgba(223, 32, 38, 0.35);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.feature-card h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.feature-card p {
    margin: 0;
    color: #8d949b;
    font-size: 12px;
    line-height: 1.5;
}


/* Tablet */

@media (max-width: 991px) {

    .feature-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .features-section .col-md-6:nth-child(2) .feature-card,
    .features-section .col-md-6:nth-child(4) .feature-card {
        border-right: 0;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .feature-card {
        min-height: auto;
        padding: 22px 15px;
        border-right: 0;
    }

    .features-section .col-md-6:last-child .feature-card {
        border-bottom: 0;
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.about-image-wrap {
    position: relative;
    padding-left: 18px;
}

.about-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 8px;
}

.about-dots {
    position: absolute;
    top: -18px;
    left: 0;
    width: 105px;
    height: 135px;
    z-index: 1;

    background-image: radial-gradient(
        var(--primary) 2px,
        transparent 2px
    );

    background-size: 12px 12px;
}


/* Content */

.about-content {
    padding-left: 10px;
}

.section-subtitle {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.about-content h2 {
    margin: 0;
    color: #111;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
}

.title-line {
    display: block;
    width: 42px;
    height: 2px;
    margin: 18px 0 25px;
    background: var(--primary);
}

.about-content p {
    margin: 0 0 14px;
    color: #444;
    font-size: 14px;
    line-height: 1.7;
}


/* Button */

.about-btn {
    min-width: 190px;
    height: 43px;
    margin-top: 8px;
    padding: 0 17px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: var(--primary);
    color: #fff;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .about-section {
        padding: 60px 0;
    }

    .about-image-wrap {
        margin-bottom: 45px;
    }

    .about-image {
        height: auto;
        max-height: 500px;
    }

    .about-content {
        padding-left: 0;
    }
}


@media (max-width: 575px) {

    .about-section {
        padding: 50px 0;
    }

    .about-image-wrap {
        padding-left: 10px;
        margin-bottom: 35px;
    }

    .about-image {
        height: 320px;
    }

    .about-content h2 {
        font-size: 31px;
    }

    .about-content p {
        font-size: 13px;
    }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
    padding: 75px 0 85px;
    background: #f7f7f7;
}

.section-heading {
    margin-bottom: 45px;
}

.section-heading .section-subtitle {
    margin-bottom: 6px;
}

.section-heading h2 {
    margin: 0;
    color: #111;
    font-size: 40px;
    font-weight: 700;
}

.section-heading .title-line {
    margin: 18px auto 0;
}


/* Service Card */

.service-card {
    height: 100%;
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}


/* Image */

.service-image {
    height: 205px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}


/* Icon */

.service-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    margin: -29px auto 0;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}


/* Content */

.service-content {
    min-height: 200px;
    padding: 25px 17px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    min-height: 48px;
    margin: 0 0 13px;
    color: #171717;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.service-content p {
    margin: 0 0 25px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.service-content a {
    margin-top: auto;
    color: var(--primary);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
}

.service-content a i {
    margin-left: 8px;
    transition: 0.3s;
}

.service-content a:hover i {
    margin-left: 13px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {

    .service-image {
        height: 230px;
    }

    .service-content {
        min-height: 250px;
    }
}


@media (max-width: 767px) {

    .services-section {
        padding: 55px 0 60px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 33px;
    }

    .service-image {
        height: 260px;
    }

    .service-content {
        min-height: 230px;
    }
}

/* =========================
   STATS SECTION
========================= */

.stats-section {
    position: relative;
    padding: 48px 0;
    background:
        linear-gradient(rgba(5, 8, 10, 0.92), rgba(5, 8, 10, 0.92)),
        url("../images/stats-bg.jpg") center / cover no-repeat;
}

.stat-item {
    position: relative;
    text-align: center;
    color: #fff;
}

.stat-item::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 0;
    width: 1px;
    height: 105px;
    background: rgba(255, 255, 255, 0.15);
}

.stats-section .col-lg-3:last-child .stat-item::after {
    display: none;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.stat-item h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
}

.stat-item p {
    margin: 0;
    color: #ddd;
    font-size: 13px;
}


/* Responsive */

@media (max-width: 991px) {

    .stat-item {
        padding: 25px 10px;
    }

    .stats-section .col-6:nth-child(2) .stat-item::after,
    .stats-section .col-6:nth-child(4) .stat-item::after {
        display: none;
    }
}

@media (max-width: 575px) {

    .stats-section {
        padding: 25px 0;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 11px;
    }
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
    position: relative;
    padding: 38px 0;
    background:
        linear-gradient(
            90deg,
            #c51e22 0%,
            #a90f14 100%
        );
    overflow: hidden;
}

.cta-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    background: url("../images/cta-bg.png") right center / cover no-repeat;
    opacity: 0.15;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}

.cta-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

.cta-btn {
    min-width: 190px;
    height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 4px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary);
}


/* Responsive */

@media (max-width: 767px) {

    .cta-section {
        padding: 35px 0;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content h2 {
        font-size: 23px;
        line-height: 1.35;
    }
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #0b0e11;
    color: #fff;
}

.footer-main {
    padding: 55px 0 45px;
    background:
        linear-gradient(
            rgba(11, 14, 17, 0.96),
            rgba(11, 14, 17, 0.96)
        ),
        url("../images/footer-bg.jpg") center / cover no-repeat;
}


/* Common Heading */

.site-footer h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}


/* About */

.footer-logo {
    width: 170px;
    height: auto;
    margin-bottom: 20px;
}

.footer-about p {
    max-width: 280px;
    margin: 0 0 20px;
    color: #a7abb0;
    font-size: 12px;
    line-height: 1.8;
}


/* Social Icons */

.footer-social {
    display: flex;
    gap: 9px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1a1e22;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
}


/* Quick Links */

.footer-links {
    max-width: 220px;
    margin: 0 auto;
}

.footer-links ul,
.footer-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a7abb0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.footer-links a i {
    font-size: 9px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}


/* Contact */

.footer-contact li {
    margin-bottom: 18px;
    color: #a7abb0;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font-size: 12px;
    line-height: 1.7;
}

.footer-contact a {
    color: #a7abb0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: var(--primary);
}

.contact-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(223, 32, 38, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


/* Footer Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #090c0f;
}

.footer-bottom-inner {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
    color: #8e9398;
    font-size: 11px;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .footer-links {
        margin: 0;
    }
}


@media (max-width: 767px) {

    .footer-main {
        padding: 45px 0 35px;
    }

    .footer-bottom-inner {
        min-height: auto;
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* =========================
   INNER PAGE BANNER
========================= */

.inner-banner {
    position: relative;
    padding: 75px 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 9, 13, 0.98),
            rgba(5, 9, 13, 0.78)
        ),
        url("../images/about-banner.jpg") center / cover no-repeat;
}

.inner-banner-content span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.inner-banner-content h1 {
    margin: 8px 0 14px;
    color: #fff;
    font-size: 46px;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
}

.breadcrumb a,
.breadcrumb span {
    color: #c5c5c5;
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 0;
}

.breadcrumb i {
    color: var(--primary);
    font-size: 9px;
}


/* =========================
   ABOUT PAGE
========================= */

.about-page-section {
    padding: 85px 0;
    background: #fff;
}

.about-page-image {
    position: relative;
    padding: 18px 0 0 18px;
}

.about-page-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.about-page-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 140px;
    background-image: radial-gradient(
        var(--primary) 2px,
        transparent 2px
    );
    background-size: 12px 12px;
}

.experience-box {
    position: absolute;
    right: -20px;
    bottom: 35px;
    z-index: 3;
    min-width: 180px;
    padding: 20px 22px;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.experience-box strong {
    font-size: 35px;
    line-height: 1;
}

.experience-box span {
    font-size: 12px;
    line-height: 1.5;
}


/* Content */

.about-page-content {
    padding-top: 25px;
}

.about-page-content h2 {
    margin: 6px 0 0;
    color: #151515;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.about-page-content h2 span {
    color: var(--primary);
}

.about-page-content p {
    margin: 0 0 17px;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.about-page-content .intro-text {
    color: #222;
    font-size: 16px;
    font-weight: 500;
}


/* =========================
   KEY AREAS
========================= */

.key-areas {
    padding-top: 90px;
}

.key-areas-heading {
    max-width: 650px;
    margin: 0 auto 42px;
    text-align: center;
}

.key-areas-heading h2 {
    margin: 6px 0 10px;
    color: #151515;
    font-size: 38px;
    font-weight: 700;
}

.key-areas-heading p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.key-card {
    height: 100%;
    padding: 30px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fafafa;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.35s ease;
}

.key-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: rgba(223, 32, 38, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.key-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.key-card h3 {
    margin: 3px 0 10px;
    color: #171717;
    font-size: 20px;
    font-weight: 700;
}

.key-card p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}


/* Privacy */

.privacy-note {
    margin-top: 50px;
    padding: 25px 30px;
    border-left: 4px solid var(--primary);
    background: #0d1115;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.privacy-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.privacy-note p {
    margin: 0;
    color: #d5d5d5;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .about-page-section {
        padding: 60px 0;
    }

    .about-page-image {
        margin-bottom: 50px;
    }

    .experience-box {
        right: 20px;
    }

    .about-page-content {
        padding-top: 0;
    }
}


@media (max-width: 575px) {

    .inner-banner {
        padding: 55px 0;
    }

    .inner-banner-content h1 {
        font-size: 36px;
    }

    .about-page-image {
        padding-left: 10px;
    }

    .about-page-image img {
        height: 350px;
    }

    .experience-box {
        right: 10px;
        bottom: 20px;
        min-width: auto;
    }

    .about-page-content h2 {
        font-size: 32px;
    }

    .key-areas {
        padding-top: 60px;
    }

    .key-areas-heading h2 {
        font-size: 31px;
    }

    .key-card {
        padding: 24px 20px;
        flex-direction: column;
    }

    .privacy-note {
        padding: 22px;
        align-items: flex-start;
    }
}

/* =========================
   SERVICE DETAIL PAGE
========================= */

.service-detail-section {
    padding: 80px 0;
    background: #fff;
}


/* Intro */

.service-intro {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.service-intro h2 {
    margin: 7px 0 0;
    color: #151515;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.service-intro h2 span {
    color: var(--primary);
}

.service-intro .title-line {
    margin: 20px auto 25px;
}

.lead-text {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}


/* Testing Program */

.testing-program {
    padding: 60px;
    background: #f7f7f7;
    border-radius: 10px;
}

.program-content h3 {
    margin: 7px 0 18px;
    color: #171717;
    font-size: 31px;
    font-weight: 700;
}

.program-content > p {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.check-list {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    margin-bottom: 17px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: #555;
    font-size: 13px;
    line-height: 1.7;
}

.check-list i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--primary);
    font-size: 16px;
}

.service-detail-image {
    height: 420px;
    overflow: hidden;
    border-radius: 8px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Why Choose Us */

.service-reasons {
    padding-top: 85px;
}

.reasons-intro {
    max-width: 700px;
    margin: -20px auto 35px;
    color: #666;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
}

.reason-card {
    height: 100%;
    padding: 28px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fafafa;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: 0.35s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: rgba(223, 32, 38, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.reason-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.reason-card h3 {
    margin: 2px 0 9px;
    color: #171717;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.reason-card p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}


/* Closing */

.service-closing {
    margin-top: 55px;
    padding: 30px 35px;
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    background: #0d1115;
    display: flex;
    align-items: center;
    gap: 22px;
}

.service-closing-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.service-closing h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 21px;
}

.service-closing p {
    margin: 0 0 5px;
    color: #b8bdc2;
    font-size: 13px;
}

.service-closing strong {
    color: #fff;
    font-size: 13px;
}


/* Responsive */

@media (max-width: 991px) {

    .testing-program {
        padding: 40px;
    }

    .service-detail-image {
        height: 400px;
        margin-top: 30px;
    }
}


@media (max-width: 575px) {

    .service-detail-section {
        padding: 55px 0;
    }

    .service-intro {
        margin-bottom: 45px;
    }

    .service-intro h2 {
        font-size: 32px;
    }

    .testing-program {
        padding: 25px 20px;
    }

    .program-content h3 {
        font-size: 25px;
    }

    .service-detail-image {
        height: 280px;
    }

    .service-reasons {
        padding-top: 60px;
    }

    .reason-card {
        padding: 23px 20px;
        flex-direction: column;
    }

    .service-closing {
        padding: 25px 22px;
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================
   SERVICE AREA PAGE
========================= */

.service-area-section {
    padding: 80px 0 90px;
    background: #f7f7f7;
}


/* Intro */

.service-area-intro {
    max-width: 780px;
    margin: 0 auto 50px;
}

.service-area-intro h2 {
    margin: 7px 0 0;
    color: #151515;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.service-area-intro h2 span {
    color: var(--primary);
}

.service-area-intro .title-line {
    margin: 20px auto 25px;
}

.service-area-intro p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}


/* Map Card */

.coverage-map {
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}


/* Map Heading */

.map-heading {
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-heading-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.map-heading h3 {
    margin: 0 0 4px;
    color: #171717;
    font-size: 19px;
    font-weight: 700;
}

.map-heading p {
    margin: 0;
    color: #777;
    font-size: 12px;
}


/* Responsive Map */

.map-frame {
    width: 100%;
    height: 550px;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Map Bottom */

.map-footer {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.map-footer p {
    margin: 0;
    color: #555;
    font-size: 13px;
}

.area-contact-btn {
    flex: 0 0 auto;
    min-width: 150px;
    height: 42px;
    padding: 0 16px;
    border-radius: 4px;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s ease;
}

.area-contact-btn:hover {
    background: #0d1115;
    color: #fff;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767px) {

    .service-area-section {
        padding: 55px 0 60px;
    }

    .service-area-intro {
        margin-bottom: 35px;
    }

    .service-area-intro h2 {
        font-size: 32px;
    }

    .service-area-intro p {
        font-size: 14px;
    }

    .map-frame {
        height: 400px;
    }

    .map-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 575px) {

    .map-frame {
        height: 350px;
    }

    .map-heading {
        padding: 18px;
    }

    .map-footer {
        padding: 20px 18px;
    }
}

/* =========================
   FAQ PAGE
========================= */

.faq-section {
    padding: 80px 0 90px;
    background: #f7f7f7;
}

.faq-heading {
    max-width: 700px;
    margin: 0 auto 45px;
}

.faq-heading h2 {
    margin: 7px 0 0;
    color: #151515;
    font-size: 42px;
    font-weight: 700;
}

.faq-heading .title-line {
    margin: 20px auto;
}

.faq-heading p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.faq-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.faq-wrapper .accordion-item {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    border-radius: 7px;
    background: #fff;
}

.faq-wrapper .accordion-button {
    padding: 21px 24px;
    color: #1a1a1a;
    background: #fff;
    box-shadow: none;
    font-size: 15px;
    font-weight: 700;
}

.faq-wrapper .accordion-button:not(.collapsed) {
    color: #fff;
    background: var(--primary);
}

.faq-wrapper .accordion-button::after {
    background-size: 15px;
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-wrapper .accordion-body {
    padding: 22px 24px;
    color: #5b5b5b;
    font-size: 14px;
    line-height: 1.8;
}

.faq-wrapper .accordion-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 575px) {

    .faq-section {
        padding: 55px 0 60px;
    }

    .faq-heading h2 {
        font-size: 32px;
    }

    .faq-wrapper .accordion-button {
        padding: 18px;
        font-size: 14px;
        line-height: 1.5;
    }

    .faq-wrapper .accordion-body {
        padding: 18px;
        font-size: 13px;
    }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-section {
    padding: 85px 0 90px;
    background: #f7f7f7;
}


/* Contact Info */

.contact-info {
    padding: 25px 15px 0 0;
}

.contact-info h2 {
    margin: 7px 0 0;
    color: #151515;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-info h2 span {
    color: var(--primary);
}

.contact-intro {
    max-width: 450px;
    margin: 0 0 32px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.contact-info-item {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 17px;
}

.contact-info-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.contact-info-item span {
    display: block;
    margin-bottom: 3px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.contact-info-item a,
.contact-info-item p {
    margin: 0;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--primary);
}


/* Contact Form */

.contact-form-wrap {
    padding: 42px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-heading span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.contact-form-heading h3 {
    margin: 6px 0 0;
    color: #171717;
    font-size: 28px;
    font-weight: 700;
}

.form-group label {
    margin-bottom: 8px;
    color: #333;
    font-size: 12px;
    font-weight: 600;
}

.input-wrap {
    position: relative;
}

.input-wrap > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 15px;
}

.contact-form-wrap .form-control {
    height: 52px;
    padding: 0 15px 0 45px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #fafafa;
    color: #222;
    font-size: 13px;
    box-shadow: none;
}

.contact-form-wrap .form-control:focus {
    border-color: var(--primary);
    background: #fff;
}

.textarea-wrap > i {
    top: 18px;
    transform: none;
}

.contact-form-wrap textarea.form-control {
    height: 150px;
    padding-top: 15px;
    resize: vertical;
}

.contact-submit-btn {
    min-width: 180px;
    height: 48px;
    padding: 0 19px;
    border: 0;
    border-radius: 4px;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s ease;
}

.contact-submit-btn:hover {
    background: #0d1115;
}


/* Responsive */

@media (max-width: 991px) {

    .contact-info {
        padding-right: 0;
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {

    .contact-section {
        padding: 55px 0 60px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .contact-form-heading h3 {
        font-size: 25px;
    }

    .contact-submit-btn {
        width: 100%;
    }
}