* {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    list-style: none;
    word-wrap: break-word;
    box-sizing: border-box;
}
/* header css */
.main-header {
    width: 100%;
    background: #010204;
    /* background: linear-gradient(90deg, #010e1f 0%, #010e1f 100%); */
    padding: 1px 35px;
    position: sticky;
    top: 0;
    z-index: 999;
}
.main-header .active .nav-link {
    color: #5b8d01 !important;
}
.main-header .nav-link {
    color: white !important;
}
.main-header .nav-link:hover {
    color: #5b8d01 !important;
}
header .btn-box {
    display: inline-block;
}

header .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #a8e600;
    color: #010204;
    padding: 12px 19px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(168, 230, 0, 0.35);
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        sans-serif;
}

header .whatsapp-btn .whatsapp-icon {
    font-size: 1.6rem;
    color: #010204;
    transition: transform 0.3s ease;
}

header .whatsapp-btn:hover {
    background: #a8e600;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(168, 230, 0, 0.45);
}
header .whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.1);
    color: #010204;
}
header .whatsapp-btn:hover i {
    transform: scale(1.1);
}

header .whatsapp-btn:active {
    transform: translateY(0px);
    box-shadow: 0 6px 12px rgba(168, 230, 0, 0.45);
}

/* Animated pulse effect */
header .animated-btn {
    position: relative;
    overflow: hidden;
}

header .animated-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

header .animated-btn:hover::after {
    opacity: 1;
}
.hero-section {
    position: relative;
    /* height: 100vh; */
    background: url("../images/hero-img.jpeg") center center/cover no-repeat;
    overflow: hidden;
    min-height: 500px;
}

/* Left dark panel with smooth fade */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.95) 45%,
        rgba(0, 0, 0, 0.85) 60%,
        rgba(0, 0, 0, 0.55) 75%,
        rgba(0, 0, 0, 0.15) 90%,
        rgba(0, 0, 0, 0) 100%
    );
}

.hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

.hero-section .hero-content {
    color: #fff;
    max-width: 600px;
}

.hero-section .hero-content h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
}

.hero-section .hero-content .green {
    color: #a8e600;
}

.hero-section .hero-subtitle {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-section .hero-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.hero-section .hero-tagline span {
    width: 70px;
    height: 2px;
    background: #0d6efd; /* blue line */
}

.hero-section .hero-tagline h4 {
    color: #0d6efd;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.hero-section .hero-text {
    color: #fff;
    font-size: 23px;
    line-height: 1.4;
    margin: 0;
    max-width: 600px;
}
.hero-section .hero-features {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-section .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-section .feature-item i {
    width: 42px;
    height: 42px;
    border: 2px solid #9be000;
    border-radius: 50%;
    color: #9be000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-section .feature-item h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.hero-section .feature-item span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.hero-section .divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.4);
}

/* Buttons */

.hero-section .hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-section .call-btn,
.hero-section .whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    padding: 6px 15px;
    border-radius: 6px;
    min-width: 220px;
    transition: 0.3s;
}

.hero-section .call-btn {
    background: linear-gradient(to bottom, #8fd400, #6aa600);
}

.hero-section .whatsapp-btn {
    background: linear-gradient(to bottom, #1f7bff, #005be4);
}

.hero-section .call-btn i,
.hero-section .whatsapp-btn i {
    font-size: 28px;
}

.hero-section .call-btn strong,
.hero-section .whatsapp-btn strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.hero-section .call-btn span,
.hero-section .whatsapp-btn span {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}
/* hero-section css end */
/* about-section css start */

.about-section {
    position: relative;
    /* height: 100vh; */
    background: url("../images/aboutbg.jpeg") center center/cover no-repeat !important;
    overflow: hidden !important;
    min-height: 500px !important;
    min-height: 600px !important;
}

.about-section .hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 65px;
}

.about-section .hero-content .green {
    color: #a8e600;
}
.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.95) 45%,
        rgba(0, 0, 0, 0.85) 60%,
        rgba(0, 0, 0, 0.55) 75%,
        rgba(0, 0, 0, 0.15) 90%,
        rgba(0, 0, 0, 0) 100%
    );
}

.about-section .hero-subtitle {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-section .hero-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.about-section .hero-tagline span {
    width: 70px;
    height: 2px;
    background: #0d6efd; /* blue line */
}

.about-section .hero-tagline h4 {
    color: #0d6efd;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.about-section .hero-text {
    color: #fff;
    font-size: 23px;
    line-height: 1.4;
    margin: 20px 0;
    max-width: 600px;
}
.about-section .hero-features {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.about-section .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section .feature-item i {
    width: 42px;
    height: 42px;
    border: 2px solid #9be000;
    border-radius: 50%;
    color: #9be000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.about-section .feature-item h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.about-section .feature-item span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.about-section .divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.4);
}
/* Buttons */

.about-section .hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.about-section .call-btn,
.about-section .whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    padding: 6px 15px;
    border-radius: 6px;
    min-width: 220px;
    transition: 0.3s;
}

.about-section .call-btn {
    background: linear-gradient(to bottom, #8fd400, #6aa600);
}

.about-section .whatsapp-btn {
    background: linear-gradient(to bottom, #1f7bff, #005be4);
}

.about-section .call-btn i,
.about-section .whatsapp-btn i {
    font-size: 28px;
}

.about-section .call-btn strong,
.about-section .whatsapp-btn strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.about-section .call-btn span,
.about-section .whatsapp-btn span {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}
/* mission-section */

/*===================================
        MISSION SECTION
===================================*/

.mission-section {
    background: #050608;
}

.mission-section .mission-card {
    background: #060b12;
    border: 1px solid rgba(32, 116, 255, 0.45);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

/*========================
      TOP CONTENT
=========================*/

.mission-section .mission-top {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 28px;
}

.mission-section .mission-icon {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 50%;
    border: 5px solid #95d600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(149, 214, 0, 0.35);
}

.mission-section .mission-icon i {
    font-size: 70px;
    color: #95d600;
}

.mission-section .mission-content h2 {
    color: #fff;
    font-size: 42px;
    font-style: italic;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.mission-section .mission-content h2 span {
    color: #95d600;
}

.mission-section .mission-content p {
    color: #fff;
    font-size: 24px;
    line-height: 1.55;
    margin: 0;
}

.mission-section .mission-content p span {
    color: #95d600;
    font-weight: 700;
}

/*=====================
      IMAGE
======================*/

.mission-section .mission-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/*====================
      BOTTOM BAR
=====================*/

.mission-section .mission-bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 25px;
    background: #07111b;
    border-top: 1px solid rgba(149, 214, 0, 0.3);
}

.mission-section .bottom-icon {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    border: 2px solid #2d7cff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-section .bottom-icon i {
    color: #2d7cff;
    font-size: 38px;
}

.mission-section .mission-bottom h4 {
    color: #fff;
    font-size: 34px;
    font-style: italic;
    font-weight: 900;
    margin: 0;
}

.mission-section .mission-bottom h4::first-letter {
    color: #95d600;
}

.mission-section .mission-bottom p {
    color: #fff;
    font-size: 22px;
    margin: 4px 0 0;
}

/*====================
      HOVER
=====================*/

.mission-section .mission-card:hover {
    border-color: #95d600;
    box-shadow: 0 0 30px rgba(149, 214, 0, 0.25);
    transform: translateY(-5px);
    transition: 0.35s;
}
/*======================================
        WHY CHOOSE SECTION
======================================*/

.mission-section .whyus-card,
.mission-section .promise-card {
    background: #060b12;
    border: 1px solid rgba(32, 116, 255, 0.45);
    border-radius: 18px;
    padding: 28px;
    overflow: hidden;
    transition: 0.35s;
}

.mission-section .whyus-card:hover,
.mission-section .promise-card:hover {
    border-color: #95d600;
    box-shadow: 0 0 20px rgba(149, 214, 0, 0.25);
}

.mission-section .whyus-card h2 {
    color: #fff;
    font-size: 31px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 22px;
}

.mission-section .whyus-card h2 span {
    color: #95d600;
}

.mission-section .whyus-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-section .whyus-card li {
    color: #fff;
    font-size: 17px !important;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.mission-section .whyus-card li i {
    color: #95d600;
    font-size: 24px;
    margin-right: 10px;
}

.mission-section .phone-img {
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

/*======================================
            PROMISE
======================================*/

.mission-section .promise-card h3 {
    color: #fff;
    font-size: 38px;
    font-style: italic;
    font-weight: 900;
}

.mission-section .promise-card h3 span {
    color: #95d600;
}

.mission-section .promise-card p {
    color: #fff;
    font-size: 21px;
    line-height: 1.6;
}

.mission-section .promise-card p span {
    color: #95d600;
    font-weight: 700;
}

.mission-section .promise-icon {
    font-size: 95px;
    color: #2d7cff;
}

.mission-section .warranty-circle {
    width: 170px;
    height: 170px;
    margin: auto;
    border-radius: 50%;
    border: 4px solid #2d7cff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(45, 124, 255, 0.4);
}

.mission-section .warranty-circle h4 {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.mission-section .warranty-circle h2 {
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    margin: 6px 0;
}

.mission-section .warranty-circle i {
    color: #95d600;
    font-size: 38px;
}
.mission-section .firstcol {
    justify-content: center;
    display: flex;
    align-items: center;
}
/* Floating */

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/*======================================
        Responsive
======================================*/

@media (max-width: 991px) {
    .mission-section .whyus-card,
    .mission-section .promise-card {
        text-align: center;
    }

    .mission-section .whyus-card li {
        font-size: 18px;
    }
    .mission-section .onez {
        z-index: 1;
    }
    .mission-section .twoz {
        z-index: 2;
    }
    .mission-section .whyus-card h2 {
        font-size: 32px;
    }

    .mission-section .promise-card h3 {
        font-size: 30px;
        margin-top: 20px;
    }

    .mission-section .promise-card p {
        font-size: 17px;
    }

    .mission-section .warranty-circle {
        margin-top: 25px;
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 576px) {
    .mission-section .whyus-card li {
        justify-content: flex-start;
        text-align: left;
        font-size: 16px;
    }

    .mission-section .promise-icon {
        font-size: 70px;
    }
}
/*====================
     RESPONSIVE
=====================*/

@media (max-width: 991px) {
    .mission-section .mission-top {
        flex-direction: column;
        text-align: center;
    }

    .mission-section .mission-icon {
        width: 95px;
        height: 95px;
        min-width: 95px;
    }

    .mission-section .mission-icon i {
        font-size: 55px;
    }

    .mission-section .mission-content h2 {
        font-size: 34px;
    }

    .mission-section .mission-content p {
        font-size: 18px;
    }

    .mission-section .mission-image img {
        height: 320px;
    }

    .mission-section .mission-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .mission-section .mission-bottom {
        flex-direction: column;
    }

    .mission-section .mission-bottom h4 {
        font-size: 26px;
    }

    .mission-section .mission-bottom p {
        font-size: 17px;
    }
}
/* contact-section css start */
.contact-section {
    position: relative;
    /* height: 100vh; */
    background: url("../images/contact.png") center center/cover no-repeat;
    overflow: hidden;
    background-position: right center;
    min-height: 500px;
}
.contact-section .hero-content {
    color: #fff;
    max-width: 600px;
}

.contact-section .hero-content h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
}

.contact-section .hero-content .green {
    color: #a8e600;
}
.contact-section .location {
    color: #a8e600;
}
.contact-section .hero-content .green {
    color: #a8e600;
}

.contact-section .hero-subtitle {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-section .hero-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.contact-section .hero-tagline span {
    width: 70px;
    height: 2px;
    background: #0d6efd; /* blue line */
}

.contact-section .hero-tagline h4 {
    color: #0d6efd;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.contact-section .hero-text {
    color: #fff;
    font-size: 23px;
    line-height: 1.4;
    margin: 0;
    max-width: 600px;
}
.contact-section .divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.4);
}

.contact-section .hero-features {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    margin-top: 550px;
}

.contact-section .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section .feature-item i {
    width: 42px;
    height: 42px;
    border: 2px solid #9be000;
    border-radius: 50%;
    color: #9be000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-section .feature-item h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.contact-section .feature-item span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}
/*=========================
      BOOKING CARD
=========================*/

.contact-section .booking-card {
    background: #060b12;
    border: 1px solid rgba(149, 214, 0, 0.25);
    border-radius: 18px;
    padding: 35px 24px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.35);
}

.contact-section .booking-card h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 5px;
}

.contact-section .booking-card h2 span {
    color: #95d600;
}

.contact-section .booking-card p {
    color: #d5d5d5;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Inputs */

.contact-section .booking-input {
    position: relative;
    margin-bottom: 16px;
}

.contact-section .booking-input i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 22px;
    cursor: pointer; /* Clickable */
    z-index: 2;
}

.contact-section .booking-input input,
.contact-section .booking-input select,
.contact-section .booking-input textarea {
    width: 100%;
    background: #05090f;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: #fff;
    padding: 11px 18px 11px 55px;
    outline: none;
    transition: 0.3s;
}

.contact-section .booking-input textarea {
    resize: none;
}

.contact-section .booking-input.textarea i {
    top: 22px;
    transform: none;
}

.contact-section .booking-input input:focus,
.contact-section .booking-input select:focus,
.contact-section .booking-input textarea:focus {
    border-color: #95d600;
    box-shadow: 0 0 12px rgba(149, 214, 0, 0.25);
}

.contact-section .booking-input input::placeholder,
.contact-section .booking-input textarea::placeholder {
    color: #d0d0d0;
}

.contact-section .booking-input select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Hide default arrow */

.contact-section .booking-input select::-ms-expand {
    display: none;
}

/* Custom Arrow */

.contact-section .booking-input.select-box::after {
    content: "\ea4a";
    font-family: "boxicons";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
    pointer-events: none;
}

/* Don't show arrow on textarea */

.contact-section .booking-input.textarea::after {
    display: none;
}

/* Button */

.contact-section .book-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: linear-gradient(#9dde00, #78b900);
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    padding: 5px;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: 0.35s;
}

.contact-section .book-btn i {
    font-size: 34px;
}

.contact-section .book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(149, 214, 0, 0.35);
}

/* Bottom */

.contact-section .secure-text {
    margin-top: 18px;
    text-align: center;
    color: #cfcfcf;
    font-size: 15px;
}

.contact-section .secure-text i {
    color: #0d6efd;
    margin-right: 6px;
}
/*=============================
      SERVICE STRIP
==============================*/
.service-strip-section {
    background: #050608;
}

.service-strip-section .service-strip-box {
    background: #070b12;
    border: 1px solid rgba(149, 214, 0, 0.25);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

.service-strip-section .strip-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 14px;
    min-height: 105px;
    transition: 0.35s;
}

/* Half divider */
.service-strip-section .divider-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background: rgba(255, 255, 255, 0.18);
}

/* Icon */

.service-strip-section .strip-icon {
    width: 60px;
    min-width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 46px;
    color: #95d600;
}

.service-strip-section .strip-icon.blue {
    color: #2f7cff;
}

/* Text */

.service-strip-section .strip-content h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.service-strip-section .strip-content p {
    color: #d3d3d3;
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
}

/* Hover */

.service-strip-section .strip-item:hover .strip-icon {
    transform: scale(1.08);
    transition: 0.3s;
}

/* services-section css */
.services-section {
    background: #010204;
}
.we-repair {
    background: #010204;
}

.we-repair .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.we-repair .title-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.we-repair .title-lines span {
    display: block;
    width: 50px;
    height: 2px;
    background: #0d6efd;
}

.we-repair .title-lines span:nth-child(2) {
    width: 55px;
    margin-left: auto;
    margin-right: auto;
}

.we-repair .title-lines span:nth-child(3) {
    width: 60px;
}

.we-repair .section-title span {
    width: 60px;
    height: 3px;
    background: #0d6efd;
}

.we-repair .section-title h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    font-style: italic;
}

.we-repair .section-title h2 span {
    color: #95d600;
    background: none;
    width: auto;
    height: auto;
}

/* Heading */

.services-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.services-section .title-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.services-section .title-lines span {
    display: block;
    width: 50px;
    height: 2px;
    background: #0d6efd;
}

.services-section .title-lines span:nth-child(2) {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.services-section .title-lines span:nth-child(3) {
    width: 60px;
}

.services-section .section-title span {
    width: 100px;
    height: 3px;
    background: #0d6efd;
}

.services-section .section-title h2 {
    color: #fff;
    font-size: 33px;
    font-weight: 800;
    margin: 0;
    font-style: italic;
}

.services-section .section-title h2 span {
    color: #95d600;
    background: none;
    width: auto;
    height: auto;
}

/* Cards */

.services-section .service-card {
    background: #0b0f14;
    border: 1px solid rgba(149, 214, 0, 0.5);
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}
.services-section .service-card:hover {
    transform: translateY(-8px);
    border-color: #95d600;
    background: linear-gradient(
        180deg,
        rgba(149, 214, 0, 0.08) 0%,
        rgba(149, 214, 0, 0.02) 100%
    );
    box-shadow: 0 0 20px rgba(149, 214, 0, 0.25);
}

.services-section .service-card:hover i {
    color: #95d600;
    transform: scale(1.1);
}

.services-section .service-card:hover h4 {
    color: #95d600;
}

.services-section .service-card i {
    transition: all 0.4s ease;
    font-size: 48px;
    margin-bottom: 17px;
    color: white;
}

.services-section .service-card h4 {
    transition: all 0.4s ease;
    font-size: 20px;
    margin-bottom: 12px;
    color: white;
}
.services-section .service-card p {
    color: #d5d5d5;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
/* two-cards css start */
.why-work-section {
    background: #050608;
}

/* Cards */

.why-work-section .why-card,
.why-work-section .work-card {
    background: #0b0f14;
    border: 1px solid rgba(149, 214, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
    height: 380px;
    transition: 0.4s;
}

.why-work-section .why-card:hover,
.why-work-section .work-card:hover {
    border-color: #95d600;
    box-shadow: 0 0 18px rgba(149, 214, 0, 0.25);
}

/* Headings */

.why-work-section .why-card h2,
.why-work-section .work-card h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 25px;
}

.why-work-section .why-card h2 span,
.why-work-section .work-card h2 span {
    color: #95d600;
}

/* Left Card */

.why-work-section .why-content {
    padding: 30px;
}

.why-work-section .why-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-work-section .why-content li {
    color: #fff;
    margin-bottom: 13px;
    font-size: 18px;
}

.why-work-section .why-content li i {
    color: #95d600;
    margin-right: 10px;
}

.why-work-section .why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Card */

.why-work-section .work-card {
    padding: 30px;
}

.why-work-section .steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.why-work-section .step {
    text-align: center;
    flex: 1;
}

.why-work-section .circle {
    width: 80px;
    height: 80px;
    border: 2px solid #95d600;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-work-section .circle i {
    font-size: 34px;
    color: #fff;
}

.why-work-section .number {
    display: block;
    color: #95d600;
    font-size: 34px;
    font-weight: 700;
    margin: 12px 0;
}

.why-work-section .step h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.why-work-section .step p {
    color: #cfcfcf;
    font-size: 14px;
    margin-top: 8px;
}

.why-work-section .arrow {
    color: #888;
    font-size: 28px;
    margin-top: 28px;
}
/* why-work-section end */
/* servies css start */
/*=============================
      BRANDS SECTION
==============================*/

.brands-section {
    background: #050608;
}

/* Heading */

.brands-section .brands-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.brands-section .title-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brands-section .title-lines span {
    width: 55px;
    height: 2px;
    background: #0d6efd;
}

.brands-section .title-lines span:nth-child(2) {
    width: 35px;
    margin: auto;
}

.brands-section h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    font-style: italic;
}

.brands-section h2 span {
    color: #95d600;
}

/* Brand */

.brands-section .brand-box {
    transition: 0.3s;
}

.brands-section .brand-box:hover {
    transform: translateY(-8px);
}

.brands-section .brand-box i {
    font-size: 55px;
    color: #fff;
    margin-bottom: 10px;
}

.brands-section .brand-box h5 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

/* Individual Brands */

.brands-section .samsung h4 {
    color: #bdbdbd;
    font-size: 28px;
    font-weight: 700;
}

.brands-section .google {
    color: #4285f4;
}

.brands-section .oneplus {
    color: #ff0000;
    font-size: 30px;
}

.brands-section .mi {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ff6900;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}

.brands-section .huawei {
    color: #e60012;
}
.brands-section .googletext {
    display: flex;
}

.brands-section .oppo {
    color: #077238;
    font-size: 40px;
    text-transform: lowercase;
}

.brands-section .vivo {
    color: #2d7fff;
    font-size: 40px;
    text-transform: lowercase;
}
.white-logo {
    height: 68px;
    width: 172px;
}
.hero-section .padd-left {
    padding-left: 37px;
}
/* Hover */
/*
.brands-section .brand-box:hover i,
.brands-section .brand-box:hover h4,
.brands-section .brand-box:hover h5,
.brands-section .brand-box:hover .mi {
  filter: drop-shadow(0 0 8px rgba(149, 214, 0, 0.6));
} */
.testimonial-section {
    background: #050608;
}

/* Parent Box */

.testimonial-wrapper {
    position: relative;
    border: 1px solid rgba(149, 214, 0, 0.35);
    border-radius: 10px;
    padding: 40px 15px 15px;
    background: #080c10;
}
.testimonial-section .title-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-section .title-lines span {
    display: block;
    width: 60px;
    height: 2px;
    background: #0d6efd;
}

.testimonial-section .title-lines span:nth-child(2) {
    width: 55px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-section .title-lines span:nth-child(3) {
    width: 60px;
}

.testimonial-section .section-title span {
    width: 60px;
    height: 3px;
    background: #0d6efd;
}

/* Heading */

.testimonial-heading {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0d0d0e;
    padding: 0 20px;
}

.testimonial-heading h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    font-style: italic;
    margin: 0;
    white-space: nowrap;
}

.testimonial-heading h2 span {
    color: #95d600;
}

.title-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.title-lines span {
    width: 45px;
    height: 2px;
    background: #0d6efd;
}

.title-lines span:nth-child(2) {
    width: 28px;
    margin: auto;
}

/* Review Cards */

.review-box {
    border: 1px solid rgba(149, 214, 0, 0.25);
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    transition: 0.3s;
}

.review-box:hover {
    border-color: #95d600;
    background: rgba(149, 214, 0, 0.05);
}

.review-box .stars {
    margin-bottom: 8px;
}

.review-box .stars i {
    color: #b8ff00;
    font-size: 15px;
}

.review-box p {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 10px;
}

.review-box h5 {
    color: #d8d8d8;
    font-size: 15px;
    margin: 0;
}

/* footer and last section */ /*==========================
      FOOTER CONTACT
===========================*/

.footer-contact {
    background: #050608;
    margin-top: -6px;
}
.footer-contact .whychoose {
    color: #95d600;
}

.footer-contact .footer-card {
    background: #0b1014;
    border: 1px solid rgba(149, 214, 0, 0.45);
    border-radius: 10px;
    overflow: hidden;
}

.footer-contact .footer-item {
    padding: 13px 19px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-contact .custom {
    min-height: 90px !important;
}

.footer-contact .border-start {
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.footer-contact .logo-box img {
    max-width: 180px;
}

.footer-contact .logo-box p {
    color: #d6d6d6;
    font-size: 15px;
    margin-bottom: 15px;
}

.footer-contact .social-icons {
    display: flex;
    gap: 12px;
}

.footer-contact .social-icons a {
    color: #fff;
    font-size: 22px;
    transition: 0.3s;
}

.footer-contact .social-icons a:hover {
    color: #95d600;
}

.footer-contact .info-box {
    gap: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact .info-box i {
    color: #95d600;
    font-size: 28px;
    width: 35px;
}
.footer-contact .info-box .call {
    font-size: 38px !important;
}
.footer-contact .email {
    margin-left: 5px !important;
}

.footer-contact .info-box h5 {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.footer-contact .info-box p {
    color: #d6d6d6;
    margin: 2px 0;
}

.footer-contact .info-box small {
    color: #d6d6d6;
}

.footer-contact .whatsapp-icon {
    color: #28d146;
    font-size: 58px;
    margin-bottom: 10px;
}

.footer-contact .content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}
.footer-contact h6 {
    color: #fff;
    margin: 0;
    font-size: 18px;
}

.footer-contact span {
    color: #95d600;
    font-size: 13px;
    font-weight: 600;
}

.footer-contact .qr-code {
    width: 90px;
    border-radius: 6px;
    background: #fff;
    padding: 4px;
}

.footer-contact .copyright {
    color: #9a9a9a;
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
}
/*==================================
      REPAIR SERVICES CARD
===================================*/

.repair-services-section {
    background: #050608;
}

.repair-services-section .repair-card {
    background: #070b12;
    border: 1px solid rgba(149, 214, 0, 0.25);
    border-radius: 18px;
    padding: 16px 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
    height: 100%;
}

.repair-services-section .repair-card h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.repair-services-section .repair-card h2 span {
    color: #95d600;
}

.repair-services-section .title-line {
    width: 70px;
    height: 3px;
    background: #1d7cff;
    margin-bottom: 15px;
}

.repair-services-section .service-list {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
}

.repair-services-section .service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px 19px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s;
}

.repair-services-section .service-item:last-child {
    border-bottom: none;
}

.repair-services-section .service-item:hover {
    background: #0d1420;
}

.repair-services-section .service-icon {
    width: 56px;
    min-width: 56px;
    text-align: center;
}

.repair-services-section .service-icon i {
    font-size: 44px;
    color: #fff;
}

.repair-services-section .service-icon.green i {
    color: #95d600;
}

.repair-services-section .service-icon.blue i {
    color: #1f7dff;
}

.repair-services-section .service-content {
    flex: 1;
}

.repair-services-section .service-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.repair-services-section .service-content p {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.repair-services-section .service-arrow i {
    color: #fff;
    font-size: 34px;
    transition: 0.3s;
}

.repair-services-section .service-item:hover .service-arrow i {
    color: #95d600;
    transform: translateX(5px);
}

.repair-services-section .view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 320px;
    padding: 12px 34px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(149, 214, 0, 0.25);
    border-radius: 12px;
    font-size: 22px;
    font-weight: 800;
    transition: 0.35s;
}

.repair-services-section .view-btn i {
    font-size: 28px;
}

.repair-services-section .view-btn:hover {
    background: #95d600;
    color: #000;
}
/*===========================
      HOW IT WORKS CARD
===========================*/

.work-process-section .work-process-card {
    background: #050b12;
    border: 1px solid rgba(149, 214, 0, 0.25);
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    transition: 0.35s;
}

.work-process-section .work-process-card:hover {
    border-color: #95d600;
    box-shadow: 0 0 20px rgba(149, 214, 0, 0.18);
}

/* Heading */

.work-process-section .work-process-card h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 35px;
    position: relative;
}

.work-process-section .work-process-card h2 span {
    color: #95d600;
}

.work-process-section .work-process-card h2::after {
    content: "";
    width: 45px;
    height: 3px;
    background: #2d7cff;
    position: absolute;
    left: 0;
    bottom: -10px;
}

/* List */

.work-process-section .process-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Item */

.work-process-section .process-item {
    display: flex;
    align-items: center;
    position: relative;
}

/* Vertical Line */

.work-process-section .process-item:not(.last)::after {
    content: "";
    position: absolute;
    left: 34px;
    top: 88px;
    width: 2px;
    height: 66px;
    background: #2d7cff;
}

/* Circle */

.work-process-section .process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 22px;
    flex-shrink: 0;
}

.work-process-section .process-icon.green {
    border: 3px solid #95d600;
}

.work-process-section .process-icon.blue {
    border: 3px solid #2d7cff;
}

.work-process-section .process-icon i {
    color: #fff;
    font-size: 34px;
}

/* Right Content */

.work-process-section .process-content {
    display: flex;
    align-items: flex-start;
    margin-top: 21px;
}

.work-process-section .step-number {
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    margin-right: 18px;
}

.work-process-section .step-number.green {
    color: #95d600;
}

.work-process-section .step-number.blue {
    color: #2d7cff;
}

.work-process-section .process-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.work-process-section .process-content p {
    color: #d4d4d4;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}
/*=================================
       HELP CONTACT SECTION
==================================*/

.help-contact-section {
    background: #050608;
}

.help-contact-section .help-contact-box {
    background: #060b12;
    border: 1px solid rgba(149, 214, 0, 0.25);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

/* Heading */

.help-contact-section .help-title {
    padding: 20px 30px;
}

.help-contact-section .help-title h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    margin: 0;
    text-transform: uppercase;
}

.help-contact-section .help-title span {
    color: #95d600;
    position: relative;
}

/* Items */

.help-contact-section .help-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 25px;
    height: 100%;
    position: relative;
    transition: 0.35s;
}

/* Half Divider */

.help-contact-section .help-border::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    width: 1px;
    height: 64%;
    background: rgba(255, 255, 255, 0.18);
}

/* Icons */

.help-contact-section .help-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #95d600;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #95d600;
    font-size: 34px;
    flex-shrink: 0;
    transition: 0.35s;
}

.help-contact-section .help-icon.whatsapp {
    color: #95d600;
    border-color: #95d600;
}

.help-contact-section .help-item:hover .help-icon {
    transform: scale(1.08) rotate(8deg);
}

/* Text */

.help-contact-section .help-text h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.help-contact-section .help-text p {
    color: #d2d2d2;
    font-size: 18px;
    margin: 0;
}
/*==================================
        COUNTER SECTION
==================================*/

.counter-section {
    background: #050608;
}

.counter-section .counter-wrapper {
    background: #060b12;
    border: 1px solid rgba(32, 116, 255, 0.45);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}
.services-section .service-card .para {
    line-height: 23px !important;
}
.services-section .service-card .icons-c {
    font-size: 60px !important;
}
.services-section .service-card .threesame {
    color: #95d600;
    font-size: 60px;
}
.services-section .service-card .twosame {
    color: #1689ff;
    font-size: 60px;
}
.counter-section .counter-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 13px 30px;
    height: 100%;
    transition: 0.35s;
}

/* Half Vertical Border */

.counter-section .counter-border::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background: rgba(255, 255, 255, 0.18);
}

/* Hover */

.counter-section .counter-box:hover {
    background: rgba(149, 214, 0, 0.05);
}

/* Icons */

.counter-section .counter-icon {
    flex-shrink: 0;
}

.counter-section .counter-icon i {
    font-size: 58px;
}

.counter-section .counter-icon.green {
    color: #95d600;
}

.counter-section .counter-icon.blue {
    color: #1689ff;
}

/* Text */

.counter-section .counter-text h2 {
    color: #1689ff;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    font-style: italic;
}

.counter-section .counter-text h2 span {
    color: #95d600;
}

.counter-section .counter-text p {
    color: #fff;
    font-size: 22px;
    line-height: 1.3;
    margin: 0;
}
.onecall {
    position: relative;
    /* height: 100vh; */
    background: url("../images/bg.jpg") center center/cover no-repeat;
    overflow: hidden;
    min-height: 200px;
    padding: 20px 20px;
}
.onecall .hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}
.onecall .onecall-h {
    color: #8fd400;
}

.onecall .call-btn,
.onecall .whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    padding: 6px 15px;
    border-radius: 6px;
    min-width: 220px;
    transition: 0.3s;
}

.onecall .call-btn {
    background: linear-gradient(to bottom, #8fd400, #6aa600);
}

.onecall .whatsapp-btn {
    background: linear-gradient(to bottom, #1f7bff, #005be4);
}

.onecall .call-btn i,
.onecall .whatsapp-btn i {
    font-size: 28px;
}

.onecall .call-btn strong,
.onecall .whatsapp-btn strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.onecall .call-btn span,
.onecall .whatsapp-btn span {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}
/* Responsive */

@media (max-width: 991px) {
    .counter-section .counter-border::before {
        display: none;
    }

    .counter-section .counter-box {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .counter-section .counter-icon i {
        font-size: 46px;
    }

    .counter-section .counter-text h2 {
        font-size: 38px;
    }

    .counter-section .counter-text p {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .counter-section .counter-box {
        padding: 22px 18px;
    }
    .about-section .hero-content h1 {
        font-size: 50px;
    }
    .footer-contact .content-center {
        gap: 11px;
    }
    .onecall .hero-buttons {
        display: block;
    }
    .onecall .call-btn {
        margin-bottom: 10px;
    }
    .counter-section .counter-text h2 {
        font-size: 32px;
    }

    .counter-section .counter-text p {
        font-size: 17px;
    }
}
/*=========================
      Responsive
=========================*/

@media (max-width: 991px) {
    .help-contact-section .help-border::before {
        display: none;
    }

    .help-contact-section .help-item {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .help-contact-section .help-title {
        text-align: center;
        padding: 25px;
    }

    .help-contact-section .help-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .help-contact-section .help-item {
        padding: 18px;
    }
    .hero-section .divider {
        display: none;
    }
    .help-contact-section .help-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .help-contact-section .help-text h4 {
        font-size: 18px;
    }

    .help-contact-section .help-text p {
        font-size: 14px;
    }

    .help-contact-section .help-title h2 {
        font-size: 24px;
    }
}
/* Responsive */

@media (max-width: 991px) {
    .work-process-section .work-process-card {
        margin-top: 25px;
    }

    .work-process-section .work-process-card h2 {
        font-size: 38px;
    }

    .work-process-section .process-content h4 {
        font-size: 22px;
    }

    .work-process-section .process-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .work-process-section .work-process-card {
        padding: 22px 9px;
    }

    .work-process-section .work-process-card h2 {
        font-size: 30px;
    }

    .work-process-section .process-icon {
        width: 58px;
        height: 58px;
        margin-right: 15px;
    }

    .work-process-section .process-icon i {
        font-size: 28px;
    }

    .work-process-section .step-number {
        font-size: 34px;
        margin-right: 12px;
    }

    .work-process-section .process-content h4 {
        font-size: 18px;
    }

    .work-process-section .process-content p {
        font-size: 14px;
    }

    .work-process-section .process-item:not(.last)::after {
        left: 28px;
        top: 60px;
        height: 46px;
    }
}
@media (max-width: 991px) {
    .repair-services-section .repair-card {
        padding: 22px;
    }

    .repair-services-section .repair-card h2 {
        font-size: 34px;
    }

    .repair-services-section .service-content h4 {
        font-size: 22px;
    }

    .repair-services-section .service-content p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .repair-services-section .repair-card {
        padding: 18px;
    }

    .repair-services-section .service-item {
        gap: 12px;
        padding: 15px;
    }

    .repair-services-section .service-icon i {
        font-size: 34px;
    }

    .repair-services-section .service-content h4 {
        font-size: 18px;
    }

    .repair-services-section .service-content p {
        font-size: 13px;
    }

    .repair-services-section .view-btn {
        min-width: 100%;
        font-size: 18px;
        padding: 14px;
    }

    .repair-services-section .repair-card h2 {
        font-size: 28px;
    }
}
/* Responsive */

@media (max-width: 992px) {
    .why-work-section .why-content {
        padding: 25px;
    }
    .contact-section .hero-features {
        margin-top: 20px;
        justify-content: space-between;
        gap: 8px;
    } .contact-section .divider { display: none;}
    .why-work-section .why-card,
    .why-work-section .work-card {
        height: auto;
    }
    .brands-section .googletext {
        display: inline-table;
    }
    .why-work-section .why-image img {
        height: 250px;
    }
    .work-process-section .process-item:not(.last)::after {
        content: "";
        position: absolute;
        left: 34px;
        top: 85px;
        width: 2px;
        height: 59px;
        background: #2d7cff;
    }
    .why-work-section .steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .why-work-section .arrow {
        display: none;
    }

    .why-work-section .step {
        flex: 0 0 45%;
    }
    .service-strip-section .divider-line::before {
        display: none;
    }

    .service-strip-section .strip-item {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .service-strip-section .strip-content h4 {
        font-size: 19px;
    }

    .service-strip-section .strip-content p {
        font-size: 15px;
    }

    .service-strip-section .strip-icon {
        font-size: 38px;
        min-width: 52px;
    }
}
@media (max-width: 576px) {
    .contact-section .booking-card h2 {
        font-size: 34px;
    }
    .work-process-section .process-item:not(.last)::after {
        display: none;
    }
    .contact-section .booking-card p {
        font-size: 15px;
    }
    .contact-section .hero-subtitle {
        font-size: 16px;
    }
    .contact-section .hero-content h1 {
        font-size: 44px;
        letter-spacing: 2px;
    }
    .contact-section .hero-text {
        color: #fff;
        font-size: 17px;
    }
    .contact-section .booking-card h2 {
        font-size: 30px;
    }
    .contact-section .book-btn {
        font-size: 22px;
        padding: 14px;
    }
    .service-strip-section .strip-item {
        padding: 18px;
        gap: 14px;
    }

    .service-strip-section .strip-content h4 {
        font-size: 17px;
    }

    .service-strip-section .strip-content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .testimonial-section h2 {
        font-size: 28px;
    }
    .mission-section .warranty-circle h4 {
        font-size: 13px;
    }
    .mission-section .warranty-circle h2 {
        font-size: 20px;
    }
    .mission-section .onez {
        z-index: 1 !important;
        position: relative;
    }
    .mission-section .twoz {
        z-index: 2 !important;
        position: relative;
    }
    .testimonial-section .testimonial-card {
        padding: 20px;
    }

    .testimonial-section .testimonial-card p {
        font-size: 16px;
    }
    .brands-section h2 {
        font-size: 28px;
    }
    .footer-contact .border-start {
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-left: none !important;
    }
    .footer-contact .logo-box {
        border-top: none !important;
        border-left: none !important;
    }
    .brands-section .brand-box i {
        font-size: 42px;
    }

    .brands-section .samsung h4,
    .brands-section .oppo,
    .brands-section .vivo {
        font-size: 28px;
    }
    .hero-section .hero-subtitle {
        font-size: 18px;
    }
    .hero-section .padd-left {
        padding-left: 17px;
    }
    .footer-contact .content-center {
        justify-content: start !important;
    }
    .hero-section .hero-tagline h4 {
        font-size: 22px;
    }

    .hero-section .hero-tagline span {
        width: 40px;
    }

    .hero-section .hero-text {
        font-size: 15px;
    }
    .hero-section .hero-features {
        gap: 13px;
        justify-content: space-between;
    }
    .why-work-section .why-content {
        height: 100%;
    }
    .why-work-section .work-card {
        height: 100%;
    }
}
@media (max-width: 576px) {
    .hero-section .hero-tagline h4 {
        font-size: 20px;
    }
    .footer-contact .content-center {
        justify-content: start !important;
    }
    .hero-section .hero-subtitle {
        font-size: 21px;
    }
    .we-repair .section-title h2 {
        font-size: 25px;
    }
    .hero-section .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .hero-section .call-btn,
    .hero-section .whatsapp-btn {
        min-width: 100%;
        justify-content: center;
    }
    .testimonial-section h2 {
        font-size: 13px;
    }
    .testimonial-section .title-lines span {
        width: 37px;
    }
    .testimonial-section .title-lines span:nth-child(2) {
        width: 29px;
    }
    .testimonial-section .title-lines span:nth-child(3) {
        width: 37px;
    }
    .testimonial-heading {
        position: absolute;
        top: -6px;
    }

    .testimonial-heading {
        gap: 10px;
    }
    .brands-section .title-lines span {
        width: 42px;
    }
    .services-section .section-title h2 {
        font-size: 24px;
    }
    .services-section .section-title span {
        width: 50px;
    }
    .services-section .title-lines span:nth-child(2) {
        width: 40px;
    }
    .services-section .title-lines span:nth-child(3) {
        width: 50px;
    }
    .services-section .section-title {
        gap: 12px;
    }
    .services-section .section-title {
        flex-wrap: wrap;
        margin-top: 20px;
    }
    .main-header {
        padding: 0px 16px;
    }
    .why-work-section .step {
        flex: 0 0 100%;
    }

    .why-work-section .why-card h2,
    .why-work-section .work-card h2 {
        font-size: 26px;
        text-align: center;
    }

    .why-work-section .why-content li {
        font-size: 16px;
    }
}
