* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #f56f34;
    --secondary-color: #4d4d4d;
    --orange: #f28903;
    --black: #000;
    --white: #fff;
    --transition: all 0.3s ease-in-out;
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

a {
    text-decoration: none !important;
}

li {
    list-style: none;
}

.button-whatsapp {
    position: fixed;
    background: rgb(21, 156, 21);
    bottom: 30px;
    right: 50px;
    padding: 12px 15px;
    border-radius: 70%;
    z-index: 99;
    transition: all ease 0.5s;
    animation: buzz 0.4s infinite alternate-reverse;
}

.button-whatsapp i {
    font-size: 40px;
    color: #fff;
    transition: all ease 0.5s;
}

/* ============keyframes============ */

@keyframes shake {
    0% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(5px);
    }
}

@keyframes changeText {
    0% {
        content: "Kuala Lumpur";
    }

    33% {
        content: "Selangor";
    }

    66% {
        content: "Johor Bahru";
    }

    100% {
        content: "Kuala Lumpur";
    }
}

@keyframes bounceexpand {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.050) translateY(-5px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

/* ================header============ */

header {
    width: 100%;
}

.top-header {
    background: var(--primary-color);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 5px 0;
    position: relative;
    z-index: 2;
}

.top-header-left {
    width: 60%;
}

.top-header-right {
    width: 40%;
}

.top-header-content {
    width: 100%;
    display: flex;
    margin-left: 60px;
    gap: 30px;
}

.top-header-content .top-info {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.top-info .top-info-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.top-info .top-info-detail p,
.top-info .top-info-detail p a {
    color: #fff;
    font-weight: 600;
}

.top-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 70px;
}

.top-header-right-content {
    display: flex;
    align-items: center;
}

.top-header-right-content p {
    color: #ffffff;
    font-weight: 700;
    animation: shake 0.5s infinite alternate-reverse;
}

.top-header-right-content p a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 80px;
}

.main-header-left {
    padding: 2px 0;
}

.main-header-left-logo {
    width: 130px;
}

.main-header-left-logo img {
    width: 100%;
}

.main-header-right {
    padding: 2px 0;
}

.main-header-right-menus ul {
    display: flex;
    gap: 60px;
}

.main-header-right-menus ul li a {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 550;
    transition: all 0.3s ease;
}

.main-header-right-menus ul li a:hover {
    color: var(--primary-color);
    text-decoration: overline underline var(--primary-color) solid 1px !important;
    text-underline-offset: 10px;
}

#menu-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

#menu-contact:hover {
    background: #f28903;
    text-decoration: none !important;
}

.main-header-hamburger {
    display: none;
}

.main-header-hamburger .bars {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.main-header-hamburger .bars span {
    display: block;
    width: 36px;
    background: #000;
    height: 3px;
}

/* =======================hero-banner=========== */

#hero-banner,
#inner-banner {
    width: 100%;
    height: 600px;
    background: url(../images/23134516.webp) no-repeat top center/cover;
    position: relative;
    display: flex;
    padding: 0 80px;
    align-items: center;
}

#hero-banner::before,
#inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 32, 32, 0.8);
}

.hero-banner-left,
.hero-banner-right {
    width: 50%;
}

.hero-banner-left-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-banner-left-content h3 {
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--primary-color);
    width: 38%;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
}

.hero-banner-left-content h1 {
    font-size: 3.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-banner-left-content h1 span {
    color: var(--orange);
}

.changing-location::after {
    content: "KL";
    animation: changeText 6s infinite;
    color: #ffab2d;
}

.hero-banner-left-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.hero-banner-left-list ul {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: #f59a31;
    padding: 10px 20px;
    border-radius: 15px;
    justify-content: space-around;
}

.hero-banner-left-list ul li {
    color: #ffffff;
    font-weight: 600;
    list-style: disc;
    font-size: 0.9rem;
}

.hero-banner-buttons {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.hero-banner-buttons a {
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.hero-banner-buttons a i {
    margin-left: 10px;
    background: #fff;
    color: var(--primary-color);
    padding: 5px 8px;
    border-radius: 50%;
}

.hero-banner-buttons a:nth-child(1) {
    background: transparent;
    border: 1px solid #fff;
}

.hero-banner-buttons a:nth-child(1):hover {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.hero-banner-buttons a:nth-child(2) {
    background: var(--primary-color);
    animation: bounceexpand 2s infinite alternate-reverse;
}

.hero-banner-buttons a:nth-child(2):hover {
    background: #f28903;
}

.all-btn a {
    border-radius: 5px;
    background: var(--primary-color);
    background: transparent;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-banner-right-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    width: 70%;
    float: right;
}

.form-title {
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.form-title h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-banner-right-form form {
    width: 100%;
    margin-top: 20px;
}

.hero-banner-right-form form input,
textarea,
select {
    width: 100%;
    padding: 13px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.hero-banner-right-form form textarea {
    height: 100px;
    resize: none;
}

.hero-banner-right-form form input[type="date"] {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6d6d6d;
}

.hero-banner-right-form form select,
option {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #545454;
}

.hero-banner-right-form form input::placeholder,
textarea::placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #a8a8a8;
}

.form-submit {
    text-align: center;
}

.form-submit button {
    width: 70%;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

/* ====================hero-cards============ */

#hero-info-card {
    width: 100%;
    margin: 20px 0;
}

.orange-bg {
    background-color: var(--primary-color);
    color: #fff;
}

.hero-info-box {
    width: 100%;
    height: 220px;
    padding: 20px;
    border-bottom: 2px solid #ccc;
    text-align: center;
}

.hero-info-icon i {
    font-size: 2.5rem;
    padding: 10px 0;
}

.hero-info-title h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-info-content p {
    font-size: 0.9rem;
}

/* =====================about============== */

#about {
    width: 100%;
    padding: 40px 0;
}

.about-content {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.about-title {
    padding: 10px 0;
}

.about-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.about-desc p {
    padding: 10px 0;
    font-size: 1rem;
    text-align: justify;
}

.about-btn {
    margin-top: 30px;
}

.about-btn a {
    background: var(--primary-color);
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 90%;
    height: 400px;
    object-fit: cover;
    float: right;
    border-radius: 10px;
}

/* ==================why-choose=========== */

#why-choose {
    width: 100%;
    padding: 40px 0;
}

.why-choose-wrapper {
    width: 100%;
    text-align: center;
    box-shadow: 1px 1px 10px 0px #ccc;
    padding-top: 30px;
    border-radius: 10px;
    background: rgba(235, 235, 235, 0.46);
}

.why-choose-title h2 {
    font-size: 2rem;
    font-weight: 600;
}

.why-choose-title h2 span {
    color: var(--primary-color);
    text-decoration: 2px dashed overline underline var(--primary-color);
    text-underline-offset: 10px;
}

.why-choose-img-cont {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.why-choose-image {
    width: 20%;
}

.why-choose-image img {
    width: 100%;
}

.why-choose-desc {
    width: 80%;
}

.why-choose-desc p {
    text-align: left;
    padding: 0 10px;
}

/* ==================service-sectors============= */

#service-sectors {
    width: 100%;
    padding: 40px 0;
    background-image: url(../images/bg-img.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#service-sectors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.896);
}

.service-sectors-heading {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.service-sectors-heading h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.service-sector-box {
    position: relative;
    width: 100%;
    padding: 10px;
    text-align: center;
    border: 1px solid #ff753a;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    z-index: 2;
}

.service-sector-icon {
    padding: 10px 0;
}

.service-sector-icon i {
    font-size: 2.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 12px;
    border-radius: 5px;
}

.service-sector-title {
    padding: 10px 0;
}

.service-sector-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-sector-detail p {
    font-size: 1rem;
}

.service-sector-button {
    margin-top: 30px;
}

.service-sector-button a {
    background: var(--primary-color);
}

.service-sector-button a:hover {
    background: #f28903;
}

/* =================comprehensive-services================ */

#comprehensive {
    width: 100%;
    padding: 40px 0;
}

.comprehensive-heading {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 30px;
}

.comprehensive-heading h2 {
    font-size: 2.5rem;
}

.comprehensive-heading p {
    font-size: 1rem;
    margin-top: 10px;
}

.comp-card-wrapper {
    text-align: center;
    margin-top: 10px;
}

.comprehensive-card {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 1px 1px 5px 0px #cccccc99;
    background: #f3f3f3c7;
    text-align: left;
}

.comprehensive-title {
    padding: 5px 0;
}

.comprehensive-title h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.comprehensivce-price {
    padding: 5px 0;
}

.comprehensivce-price p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.comprehensive-price p span {
    color: var(--primary-color);
}

.comprehensive-button {
    margin: 20px 0;
}

.comprehensive-button a {
    background: var(--primary-color);
}

.comprehensive-button a:hover {
    background: #f28903;
}

/* ======================cta============ */

#cta {
    width: 100%;
    padding: 40px 0;
    background: #f5f5f5;
}

.cta-title {
    text-align: center;
    padding: 10px 0;
}

.cta-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.cta-text {
    text-align: center;
    padding: 10px 0;
}

.cta-text p {
    font-size: 1.1rem;
}

.cta-btns {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}

.cta-btns a {
    background: var(--primary-color);
    animation: bounceexpand 2s infinite alternate-reverse;
    padding: 10px 20px;
}

.cta-btns a:nth-child(1) {
    background: #2c8a04;
}

.cta-btns a:hover {
    background: #f28903;
}

/* ==================residential page================ */

#residential-content,
#commercial-content {
    width: 100%;
    padding: 40px 0 20px 0;
}

.residential-content-box {
    padding: 20px 0;
}

.residential-content-title {
    font-size: 1.7rem;
    padding: 0 0 10px 0;
}

.residential-content-title h2 {
    color: var(--primary-color);
}

.residential-content-desc {
    padding: 10px 0;
}

.residential-content-desc p {
    text-align: justify;
}

.residential-content-image {
    width: 90%;
    margin: 5px auto;
    height: 400px;
}

.residential-content-image img {
    width: 100%;
    ;
    height: 100%;
    object-fit: cover;
}

/* ==========II content =========== */

#content {
    width: 100%;
}

.content-title {
    padding: 15px 0 30px 0;
    text-align: center;
}

.content-title h3 {
    color: var(--secondary-color);
    font-size: 1.9rem;
}

.content-title h3 span {
    color: var(--primary-color);
    text-decoration: underline 3px var(--primary-color);
    text-underline-offset: 10px;
}

.content-wrapper {
    padding: 20px 0;
}

.content-wrapper p {
    text-align: justify;
}

.content-box-image {
    width: 90%;
    float: left;
}

.content-box-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

#content-3 {
    width: 100%;
    padding: 0 0 40px 0;
}

.content-iii h3 {
    color: var(--primary-color);
    font-size: 1.9rem;
    padding: 20px 0;
}

/* =============breadcrumbs============ */

#breadcrumbs {
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#breadcrumbs::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #fb9015;
}

.breadcrumbs-title {
    text-align: center;
    padding: 10px 0;
}

.breadcrumbs-title h1 {
    color: var(--secondary-color);
    font-size: 2.9rem;
    font-weight: 700;
}

.breadcrumbs-title p {
    margin-top: 20px;
    padding: 2px 0 5px 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    /* background: radial-gradient(circle, rgba(2, 106, 171, 0.76) 0%, rgba(255, 255, 255, 0) 100%); */
    font-weight: 600;
}

.breadcrumbs-title p a {
    color: #fb9015;
}

/* =================privacy-policy================ */

#privacy-policy {
    width: 100%;
    padding: 40px 0;
}

.privacy-policy-content-wrapper {
    width: 100%;
    padding: 20px 0;
}

.privacy-policy-content-wrapper h3 {
    padding-bottom: 15px;
    color: var(--secondary-color);
}

.privacy-policy-content-wrapper p {
    padding-bottom: 20px;
}

.privacy-policy-content-wrapper p a {
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-policy-content-wrapper ul {
    padding-bottom: 20px;
}

.privacy-policy-content-wrapper ul li {
    list-style: disc;
    margin-left: 20px;
    padding-bottom: 10px;
}

/* ======================contact-page================= */

#contact-info {
    width: 100%;
    padding: 40px 0;
}

.contact-info-box {
    width: 100%;
    padding: 20px 40px;
}

.contact-detials-title {
    padding: 0 0 10px 0;
}

.contact-detials-title h2 {
    color: var(--primary-color);
    font-size: 2rem;
    padding-bottom: 10px;
}

.contact-details-list {
    padding: 10px 0;
    margin-top: 40px;
}

.contact-details-list span {
    padding-right: 15px;
}

.contact-details-list span i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-details-list p {
    padding: 0 0 10px 0;
}

.contact-social {
    margin-top: 60px;
}

.contact-social a {
    padding: 10px 15px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-form {
    width: 100%;
    box-shadow: 1px 1px 4px 1px #ccc;
    border-radius: 12px;
    padding: 30px 20px;
}

.contact-form-title {
    padding: 10px 0;
    text-align: center;
}

.contact-form-title h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    padding-bottom: 10px;
}

.contact-form form {
    width: 100%;
    margin-top: 5px;
}

.contact-form form .first-group,
.contact-form form .second-group {
    display: flex;
    width: 100%;
    gap: 20px;
}

.contact-form form .first-group input,
.contact-form form .second-group input,
.contact-form form .second-group select {
    width: 50%;
    padding: 13px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.contact-form form .first-group input::placeholder,
.contact-form form .second-group input::placeholder,
select {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #a8a8a8;
}

.contact-form form .message textarea {
    width: 100%;
    height: 150px;
}

.contact-form-btn {
    text-align: center;
    padding: 20px 0;
}

.contact-form-btn button {
    width: 70%;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    cursor: pointer;
}

.contact-form-btn button:hover {
    background: #f28903;
}

/* =====================faq-page========== */

#faqs {
    width: 80%;
    padding: 40px 0;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    padding: 30px 0;
}

.faq-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.accordion {
    width: 100%;
    margin: auto;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    background: #f4f4f4;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header.active {
    background: #ddd;
}

.accordion-header::after {
    content: '\25BC';
    transition: transform 0.3s;
}

.accordion-header.active::after {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 15px;
    background: #fff;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}

.accordion-content.active {
    display: block;
}

/* =====================service-pages=============== */

#service-content {
    width: 100%;
    padding: 40px 0;
}

.service-content-box {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.service-content-desc {
    text-align: center;
}

.service-content-box-image {
    width: 100%;
    margin: 5px auto;
}

.service-content-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================service-pricing========== */

#service-pricing {
    width: 100%;
    padding: 10px 0 40px 0;
    background: #d5d5d553;
}

.pricing-title {
    text-align: center;
    padding: 0 0 30px 0;
}

.pricing-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-price-box {
    width: 82%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    box-shadow: 1px 1px 5px 2px #ccc;
    min-height: 1350px;
    height: auto;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
}

.service-price-title h2 {
    padding: 10px 0;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 3px solid #ccc;
}

.service-price-title p {
    padding: 10px 0;
    text-align: left;
    font-size: 1.1rem;
}

.service-price-title p span {
    color: var(--primary-color);
    font-weight: 600;
    float: right;
}

.service-price-title h3 {
    padding: 10px 0;
    font-weight: 500;
    color: var(--secondary-color);
}

.pricing-button {
    text-align: center;
    padding: 20px 0;
    display: flex;
    align-items: end;
    justify-content: center;
}

.pricing-button a {
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-price-title ul li {
    padding: 10px 0;
    text-align: left;
    font-size: 1rem;
    color: #545454;
    list-style-type: disc;
    margin-left: 20px;
}


/* ===================new-service-content========== */

#new-service-content {
    width: 100%;
    padding: 20px 0;
}

.new-service-content-box {
    width: 100%;
}

.new-service-content-box-image {
    width: 100%;
    height: 455px;
    margin: 5px auto;
}

.new-service-content-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-service-content-desc {
    padding: 20px 0;
}

.new-service-content-desc p {
    text-align: justify;
}

.new-service-content-desc h3 {
    color: var(--primary-color);
    font-size: 2.1rem;
    margin-bottom: 20px;
}

.new-content-btn {
    justify-content: start;
}

.content-3-box {
    width: 100%;
    border: 1px solid var(--primary-color);
    box-shadow: 0px 0px 12px 0px #fff3e5;
    padding: 20px;
    margin-bottom: 20px;
    height: 190px;
}

.content-box-details {
    width: 100%;
}

.content-box-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ==================new-page-style========== */

#new-page-breadcrumbs {
    width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-page {
    background: url(../images/refrigerator-repair.webp) no-repeat left center/cover;
}

.chill-page {
    background: url(../images/chiller.webp) no-repeat left center/cover;
}

.kitchen-page {
    background: url(../images/kitchen-hob-cleaning.webp) no-repeat left center/cover;
}


#new-page-breadcrumbs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 32, 32, 0.76);
    z-index: 1;
}

.new-page-breadcrumbs-title {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.new-page-breadcrumbs-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.new-page-section {
    padding: 80px 0;
}

.new-page-section {
    padding: 80px 0;
}

.new-page-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.new-page-section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.new-page-section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.new-page-section-header p {
    font-size: 1rem;
    max-width: 700px;
    margin: 25px auto 0;
    color: var(--secondary-color);
}

.new-page-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.new-page-btn:hover {
    background-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 137, 3, 0.2);
}

#new-service-content {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.new-service-content-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.new-service-content-desc h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.new-service-content-desc h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.new-service-content-desc p {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.new-service-content-desc p b {
    color: var(--dark-gray);
}

.new-service-content-box-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
}

.new-service-content-box-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.new-service-content-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.new-service-content-box-image:hover img {
    transform: scale(1.03);
}

.new-page-cta-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.new-page-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.5px;
    gap: 8px;
}

.new-page-cta-btn:hover {
    background-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 137, 3, 0.2);
}

.new-page-cta-btn.whatsapp {
    background-color: #25D366;
}

.new-page-cta-btn.whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.new-page-cta-btn.call {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.new-page-cta-btn.call:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.new-page-benefit-list {
    margin: 20px 0;
}

.new-page-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: var(--transition);
}

.new-page-benefit-item:hover {
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.new-page-benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(245, 111, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 15px;
    transition: var(--transition);
}

.new-page-benefit-item:hover .new-page-benefit-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.new-page-benefit-content h4 {
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-weight: 600;
}

.new-page-benefit-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .new-page-col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .new-service-content-box {
        margin-bottom: 40px;
    }

    .new-service-content-box-image {
        height: 400px;
    }
}

@media (max-width: 576px) {
    #new-service-content {
        padding: 60px 0;
    }

    .new-service-content-desc h3 {
        font-size: 1.7rem;
    }

    .new-page-cta-btns {
        flex-direction: column;
    }

    .new-page-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Problems Section */
.new-page-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.new-page-problem-card {
    background: var(--white);
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.new-page-problem-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 111, 52, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.new-page-problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.new-page-problem-card h3 {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.new-page-problem-card p {
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

/* Features Section */
.new-page-features-section {
    background-color: var(--light-gray);
}

.new-page-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.new-page-feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.new-page-feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
}

.new-page-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.new-page-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: rgba(245, 111, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.new-page-feature-card:hover .new-page-feature-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.new-page-feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-weight: 600;
}

.new-page-feature-card p {
    color: var(--secondary-color);
}

/* Process Section */
.new-page-process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.new-page-process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--primary-color) 50%, transparent 100%);
    z-index: 1;
}

.new-page-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
}

.new-page-step-number {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.new-page-step:hover .new-page-step-number {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.new-page-step h3 {
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-weight: 600;
}

.new-page-step p {
    color: var(--secondary-color);
}

/* Service Types Section */
.new-page-service-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.new-page-service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.new-page-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.new-page-service-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--orange) 100%);
    color: var(--white);
    padding: 25px 20px;
    text-align: center;
}

.new-page-service-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.new-page-service-body {
    padding: 35px 30px;
}

/* Why Choose Us Section */
.new-page-why-choose-section {
    background-color: var(--light-gray);
}

.new-page-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.new-page-benefit-card {
    display: flex;
    align-items: flex-start;
    background: var(--white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.new-page-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.new-page-benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(245, 111, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 20px;
    transition: var(--transition);
}

.new-page-benefit-card:hover .new-page-benefit-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.new-page-benefit-content h3 {
    margin-bottom: 10px;
    color: var(--dark-gray);
    font-weight: 600;
}

.new-page-benefit-content p {
    color: var(--secondary-color);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .new-page-process-steps {
        flex-direction: column;
    }

    .new-page-process-steps:before {
        display: none;
    }

    .new-page-step {
        margin-bottom: 40px;
        display: flex;
        align-items: flex-start;
        text-align: left;
    }

    .new-page-step-number {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .new-page-section {
        padding: 60px 0;
    }

    .new-page-section-header h2 {
        font-size: 2rem;
    }

    .new-page-service-types {
        grid-template-columns: 1fr;
    }

    .new-page-benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .new-page-benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


/* ===========client slider========= */

.client-section {
    padding: 40px 0;
    background-color: #fff;
    overflow: hidden;
}


.client-header {
    text-align: center;
    margin-bottom: 3rem;
}

.client-header h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.client-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.client-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    align-items: center;
    gap: 2rem;
}

.client-slide {
    flex: 0 0 auto;
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.client-slide:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.client-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.client-slide img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.client-slide:hover .client-slide-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.client-slide-name {
    font-weight: 600;
    color: var(--black);
    text-align: center;
    font-size: 0.9rem;
}

.client-slider::before,
.client-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.client-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-100) 0%, transparent 100%);
}

.client-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-100) 0%, transparent 100%);
}

/* Tooltip styles */
.client-slide {
    position: relative;
}

.client-slide::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    z-index: 10;
}

.client-slide:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

@media (max-width: 768px) {
    .client-slide {
        width: 140px;
        height: 140px;
    }

    .client-slide-icon {
        width: 50px;
        height: 50px;
    }

    .client-header h2 {
        font-size: 1.8rem;
    }

    .client-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .client-slide {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }

    .client-slide-icon {
        width: 40px;
        height: 40px;
    }

    .client-slide-name {
        font-size: 0.8rem;
    }

    .read-more-btn {
        margin: 0 auto !important;
    }
}

/* ==================above-footer============ */

#above-footer {
    width: 100%;
    padding: 40px 0;
}

.above-footer-heading {
    text-align: center;
    padding: 10px 0;
}

.above-footer-heading h3 {
    font-size: 2.5rem;
    font-weight: 600;
}

.above-footer-heading p {
    font-size: 1.1rem;
    margin-top: 10px;
}

.location-title {
    padding: 10px 0;
    text-align: center;
}

.location-title h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 15px 0;
    color: var(--white);
    background: var(--primary-color);
}

.locations {
    margin: 10px 20px;
    border-right: 1px solid #ccc;
}

.locations ul li {
    padding: 7px 0 0 25px;
    position: relative;
    cursor: pointer;

}

.locations ul li::before {
    left: 0;
    position: absolute;
    content: '\27A4';
    color: var(--primary-color);
}

/* ==================footer================= */

footer {
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    padding: 40px 0 20px 0;
}

.footer-box {
    width: 100%;
    padding: 15px;
}

.footer-logo {
    width: 180px;
}

.footer-logo img {
    width: 100%;
}

.footer-desc {
    padding: 10px 0;
}

.footer-desc p {
    font-size: 1rem;
}

.footer-title {
    padding: 10px 0;
}

.footer-title h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-links ul li {
    padding: 5px 0;
}

.footer-links ul li a {
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #f59a31;
    margin-left: 5px;
}

.footer-contact {
    padding: 5px 0;
}

.f-contact-phone,
.f-contact-email,
.f-contact-address {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.f-icon i {
    font-size: 1.3rem;
    color: #f59a31;
}

.f-text p {
    font-size: 1rem;
}

.f-text p a {
    color: #fff;
}

.f-text p a:hover {
    color: #f59a31;
}

.footer-copy {
    border-top: 1px solid #ccc;
    /*background: #2424243d;*/
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.footer-copy-text {
    width: 40%;
}

.footer-copy-links {
    width: 60%;
}

.footer-copy-links ul {
    justify-content: flex-end;
    align-items: center;
    display: flex;
    gap: 30px;
}

.footer-copy-links ul li a {
    color: #fff;
    transition: all ease 0.5s;
}

.footer-copy-links ul li a:hover {
    color: var(--primary-color);
}


/*=======================media-query===============*/

@media screen and (max-width: 1200px) {
    .top-header-left {
        width: 70%;
    }

    .top-header-right {
        width: 30%;
    }

    .hero-banner-left-content h3 {
        width: 49%;
    }

    .hero-banner-left-content h1 {
        font-size: 2.5rem;
    }

    .hero-banner-left-list ul li {
        font-size: 0.8rem;
    }

    .hero-banner-right-form {
        width: 84%;
    }
}

@media screen and (max-width: 1024px) {

    .top-info .top-info-detail p,
    .top-info .top-info-detail p a {
        font-size: 0.8rem;
    }

    .top-header-right-content p a {
        font-size: 0.8rem;
    }

    .hero-banner-left-content h1 {
        font-size: 2rem;
    }

    .hero-banner-left-list ul li {
        font-size: 0.6em;
    }

    .hero-banner-left-content p {
        font-size: 0.9rem;
    }

    .main-header {
        padding: 10px 43px;
    }

    .main-header-right-menus ul {
        gap: 30px;
    }

    .hero-info-box {
        height: 276px;
    }

    .service-sector-title h3 {
        font-size: 1.2rem;
    }

    .footer-title h4 {
        font-size: 1.3rem;
    }

    .footer-box {
        padding: 0;
    }

    .f-text p a {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 768px) {
    .top-header-content {
        margin-left: 24px;
        gap: 9px;
    }

    .top-info .top-info-detail p,
    .top-info .top-info-detail p a {
        font-size: 0.7rem;
    }

    .top-header-right {
        margin-right: 15px;
    }

    .top-header-right-content p {
        font-size: 0.7rem;
    }

    #hero-banner,
    #inner-banner {
        padding: 30px 40px;
        flex-wrap: wrap;
        height: auto;
    }

    .hero-banner-left,
    .hero-banner-right {
        width: 100%;
    }

    .hero-banner-left-content {
        text-align: center;
    }

    .hero-banner-left-list ul li {
        font-size: 0.8rem;
    }

    .hero-banner-left-content h1 {
        font-size: 2.5rem;
    }

    .hero-banner-left-content h3 {
        width: 50%;
        margin: 0 auto;
    }

    .hero-banner-buttons {
        align-items: center;
        justify-content: center;
    }

    .hero-banner-right {
        padding-top: 40px;
        margin: 0 auto;
    }

    .hero-banner-right-form {
        margin: 0 auto;
        float: none;
    }

    .hero-info-box {
        height: 211px;
    }

    .about-image img {
        width: 100%;
        float: none;
    }

    .about-image {
        margin-top: 30px;
    }

    .why-choose-image {
        display: none;
    }

    .why-choose-desc {
        width: 90%;
        margin-top: 20px;
    }

    .why-choose-desc p {
        text-align: center;
        padding: 10px;
    }

    .service-sector-box {
        margin-top: 20px;
    }

    .main-header-hamburger {
        display: block;
    }

    .main-header-hamburger .bars span {
        transition: all ease 0.5s;
    }

    .main-header-hamburger.open .bars span:nth-child(1) {
        transform: rotate(45deg);
        margin-top: 5px;
    }

    .main-header-hamburger.open .bars span:nth-child(2) {
        opacity: 0;
    }

    .main-header-hamburger.open .bars span:nth-child(3) {
        transform: rotate(-45deg);
        margin-top: -25px;
    }

    .main-header-right-menus ul {
        display: flex;
        flex-direction: column;
        background: var(--secondary-color);
        width: 100%;
        position: absolute;
        top: 170px;
        left: 0;
        height: auto;
        text-align: center;
        padding: 20px;
        z-index: 999;
    }

    .main-header-right-menus ul li a {
        color: #fff;
    }

    .main-header-right {
        display: none;
    }

    .main-header-right.active {
        display: block;
    }

    .footer-copy {
        flex-wrap: wrap;
    }

    .footer-copy-text {
        width: 100%;
    }

    .footer-copy-links {
        width: 100%;
    }

    .footer-copy-links ul {
        padding-top: 15px;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 500px) {
    .top-header-left {
        display: none;
    }

    .top-header-right-content p,
    .top-header-right-content p a {
        font-size: 1rem;
    }

    .top-header-right {
        margin: 0 !important;
        width: 100%;
        justify-content: center;
    }

    .hero-banner-left-content h3 {
        width: 71%;
        margin: 0 auto 10px auto;
    }

    .hero-banner-left-content h1 {
        font-size: 1.9rem;
    }

    .hero-banner-left-content p {
        font-size: 1rem;
    }

    .hero-banner-left-list ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
        background: #f59a31;
        padding: 10px 20px;
        border-radius: 15px;
        justify-content: space-around;
    }

    .hero-banner-buttons a {
        transition: all 0.3s ease;
        font-size: 0.7rem;
    }

    .hero-banner-right-form {
        width: 100%;
    }

    .why-choose-title h2 {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .why-choose-desc p {
        text-align: center;
        padding: 10px;
        font-size: 0.9rem;
    }

    .comprehensive-heading h2 {
        font-size: 1.4rem;
    }

    .breadcrumbs-title h1 {
        font-size: 2.1rem;
    }

    .service-price-box {
        width: 95%;
        padding: 20px;
        margin-top: 15px;
    }

    .contact-info-box {
        width: 100%;
        padding: 20px;
    }

    .contact-form-title h3 {
        color: var(--secondary-color);
        font-size: 1.3rem;
        padding-bottom: 10px;
    }

    .footer-copy-links ul {
        gap: 10px;
    }

    .service-content-box {
        padding: 20px 10px;
    }

    #new-service-content {
        padding: 10px 0;
    }

    .new-page-benefit-item {
        gap: 20px;
    }

    .new-page-benefit-content p {
        text-align: left;
    }

    .new-page-benefit-card {
        align-items: center;
    }

    .new-page-step {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding-bottom: 40px;
        border-bottom: 1px solid #ccc;
    }

    .new-page-step h3 {
        width: 100%;
    }

    .new-page-step-number {
        width: 22%;
        margin-bottom: 20px;
    }

}