
/* =====================================================
   HERO RESET
===================================================== */

.balaji-hero {
    width: 100%;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fcfb 55%,
            #eef9f7 100%
        );

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


.balaji-hero-container {
    max-width: 1280px;

    min-height: 610px;

    margin: auto;

    padding: 70px 20px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 55px;

    position: relative;

    z-index: 2;
}



/* =====================================================
   DECORATIVE BACKGROUND
===================================================== */

.balaji-hero-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.shape-one {
    width: 430px;
    height: 430px;

    right: -170px;
    top: -190px;

    background: #E8F7F5;

    opacity: .8;
}


.shape-two {
    width: 240px;
    height: 240px;

    left: -120px;
    bottom: -120px;

    border: 35px solid #f3f9f8;

    background: transparent;
}



/* =====================================================
   LEFT CONTENT
===================================================== */

.balaji-hero-content {
    max-width: 620px;
}


.balaji-hero-badge {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 13px;

    margin-bottom: 20px;

    border-radius: 30px;

    background: #E8F7F5;

    border: 1px solid #d4eeea;

    color: #0F766E;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .3px;
}


.badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #F4B942;

    box-shadow:
        0 0 0 4px rgba(244,185,66,.12);
}



/* =====================================================
   HEADING
===================================================== */

.balaji-hero h1 {
    margin: 0;

    color: #0B2533;

    font-size: 50px;

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1.3px;
}


.balaji-hero h1 span {
    display: block;

    color: #0F766E;
}


.balaji-hero-text {
    max-width: 570px;

    margin: 20px 0 27px;

    color: #64747a;

    font-size: 15px;

    line-height: 1.8;
}



/* =====================================================
   BUTTONS
===================================================== */

.balaji-hero-buttons {
    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;
}


.balaji-primary-btn {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 0 19px;

    border-radius: 8px;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #0F766E,
            #0B2533
        );

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 9px 22px rgba(15,118,110,.18);

    transition: .3s ease;
}


.balaji-primary-btn span {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background: #F4B942;

    color: #0B2533;

    font-size: 11px;
}


.balaji-primary-btn:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(15,118,110,.25);
}



/* CALL BUTTON */

.balaji-call-btn {
    min-height: 50px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 5px 15px 5px 6px;

    border-radius: 8px;

    background: #ffffff;

    border: 1px solid #e1eeee;

    text-decoration: none;

    box-shadow:
        0 5px 18px rgba(11,37,51,.05);

    transition: .3s ease;
}


.balaji-call-btn > span {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #E8F7F5;

    color: #0F766E;

    font-size: 13px;
}


.balaji-call-btn div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.balaji-call-btn small {
    color: #849095;

    font-size: 9px;

    font-weight: 600;
}


.balaji-call-btn strong {
    color: #0B2533;

    font-size: 12px;
}


.balaji-call-btn:hover {
    border-color: #0F766E;

    transform: translateY(-2px);
}



/* =====================================================
   TRUST POINTS
===================================================== */

.balaji-trust-points {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 34px;
}


.balaji-trust-item {
    display: flex;

    align-items: center;

    gap: 9px;
}


.trust-icon {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #ffffff;

    border: 1px solid #e2efed;

    color: #0F766E;

    font-size: 13px;
}


.balaji-trust-item div:last-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.balaji-trust-item strong {
    color: #263238;

    font-size: 11px;
}


.balaji-trust-item small {
    color: #8a979b;

    font-size: 9px;
}


.balaji-trust-line {
    width: 1px;

    height: 32px;

    background: #dfeae8;
}



/* =====================================================
   RIGHT VISUAL
===================================================== */

.balaji-hero-visual {
    min-height: 480px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


.balaji-image-card {
    width: 510px;
    height: 420px;

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: #dcecea;

    box-shadow:
        0 22px 50px rgba(11,37,51,.13);
}


.balaji-image-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s ease;
}


.balaji-image-card:hover img {
    transform: scale(1.04);
}


.image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(11,37,51,.65),
            transparent 55%
        );
}



/* =====================================================
   EXPERIENCE CARD
===================================================== */

.balaji-experience {
    position: absolute;

    top: 22px;
    left: 22px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 9px 13px 9px 9px;

    background: rgba(255,255,255,.96);

    border-radius: 10px;

    box-shadow:
        0 8px 25px rgba(11,37,51,.14);
}


.experience-icon {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #F4B942;

    color: #0B2533;

    font-size: 14px;
}


.balaji-experience div:last-child {
    display: flex;

    flex-direction: column;

    gap: 1px;
}


.balaji-experience strong {
    color: #0B2533;

    font-size: 16px;

    line-height: 1;
}


.balaji-experience span {
    color: #718084;

    font-size: 9px;

    font-weight: 600;
}



/* =====================================================
   SERVICE CARD
===================================================== */

.balaji-service-card {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 11px 13px;

    border-radius: 11px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 9px 28px rgba(11,37,51,.15);
}


.service-card-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #E8F7F5;

    color: #0F766E;

    font-size: 15px;
}


.balaji-service-card div:nth-child(2) {
    display: flex;

    flex-direction: column;

    gap: 3px;

    flex: 1;
}


.balaji-service-card strong {
    color: #0B2533;

    font-size: 12px;
}


.balaji-service-card small {
    color: #7c898d;

    font-size: 9px;
}


.service-arrow {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #F4B942;

    color: #0B2533;

    font-size: 10px;
}



/* =====================================================
   FLOATING CARD
===================================================== */

.balaji-floating-card {
    position: absolute;

    right: -8px;
    top: 75px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 14px 10px 10px;

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(11,37,51,.12);

    z-index: 5;

    animation:
        balajiFloat 3s ease-in-out infinite;
}


.floating-check {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #E8F7F5;

    color: #0F766E;

    font-size: 12px;
}


.balaji-floating-card div:last-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.balaji-floating-card strong {
    color: #0B2533;

    font-size: 11px;
}


.balaji-floating-card small {
    color: #879397;

    font-size: 9px;
}


@keyframes balajiFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}



/* =====================================================
   CIRCLE DECORATION
===================================================== */

.balaji-circle-decoration {
    width: 110px;
    height: 110px;

    position: absolute;

    right: -18px;
    bottom: 15px;

    border-radius: 50%;

    border: 18px solid #E8F7F5;

    z-index: -1;
}



/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1100px) {

    .balaji-hero-container {
        gap: 30px;
    }


    .balaji-hero h1 {
        font-size: 43px;
    }


    .balaji-image-card {
        width: 450px;
        height: 390px;
    }


    .balaji-floating-card {
        right: -3px;
    }

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .balaji-hero-container {
        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 55px;
        padding-bottom: 60px;
    }


    .balaji-hero-content {
        max-width: 700px;

        margin: auto;
    }


    .balaji-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }


    .balaji-hero-text {
        margin-left: auto;
        margin-right: auto;
    }


    .balaji-hero-buttons {
        justify-content: center;
    }


    .balaji-trust-points {
        justify-content: center;
    }


    .balaji-hero-visual {
        min-height: 450px;

        margin-top: 10px;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .balaji-hero-container {
        padding:
            42px 15px
            50px;
    }


    .balaji-hero h1 {
        font-size: 34px;

        letter-spacing: -.7px;
    }


    .balaji-hero-text {
        font-size: 13px;

        line-height: 1.7;

        margin-top: 16px;
    }


    .balaji-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .balaji-primary-btn,
    .balaji-call-btn {
        width: 100%;

        justify-content: center;
    }


    .balaji-trust-points {
        gap: 12px;

        margin-top: 25px;
    }


    .balaji-trust-item {
        gap: 6px;
    }


    .balaji-trust-line {
        height: 25px;
    }


    .balaji-hero-visual {
        min-height: 350px;
    }


    .balaji-image-card {
        width: 100%;
        height: 330px;

        border-radius: 18px;
    }


    .balaji-floating-card {
        right: 2px;
        top: 30px;

        padding: 8px 10px 8px 8px;
    }


    .floating-check {
        width: 30px;
        height: 30px;
    }


    .balaji-service-card {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }


    .balaji-experience {
        top: 13px;
        left: 13px;
    }


    .balaji-circle-decoration {
        display: none;
    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .balaji-hero h1 {
        font-size: 30px;
    }


    .balaji-hero-badge {
        font-size: 10px;
    }


    .balaji-trust-points {
        gap: 8px;
    }


    .balaji-trust-item strong {
        font-size: 9px;
    }


    .balaji-trust-item small {
        font-size: 8px;
    }


    .balaji-image-card {
        height: 300px;
    }

}

.balaji-about-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

/* IMAGE */

.balaji-about-image {
    position: relative;
    padding: 15px 30px 30px 0;
}

.balaji-about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: 0 18px 40px rgba(11, 37, 51, 0.14);
}

/* EXPERIENCE */

.balaji-experience-card {
    position: absolute;
    left: -5px;
    bottom: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0B2533;
    color: #fff;
    padding: 16px 20px;
    border-radius: 13px;
    box-shadow: 0 12px 30px rgba(11, 37, 51, 0.25);
}

.experience-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4B942;
    color: #0B2533;
    border-radius: 9px;
    font-size: 19px;
}

.balaji-experience-card h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.balaji-experience-card p {
    margin: 2px 0 0;
    font-size: 11px;
    color: #d8e3e7;
}


/* CONTENT */

.balaji-about-content {
    padding-left: 20px;
}

.balaji-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 50px;
    background: #E8F7F5;
    color: #0F766E;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 15px;
}

.balaji-about-content h2 {
    color: #0B2533;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
}

.balaji-about-content h2 span {
    display: block;
    color: #0F766E;
}

.balaji-about-content p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}


/* FEATURES */

.balaji-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 23px 0;
}

.balaji-feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.feature-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    background: #E8F7F5;
    color: #0F766E;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balaji-feature h5 {
    margin: 0 0 3px;
    font-size: 13px;
    color: #0B2533;
    font-weight: 700;
}

.balaji-feature p {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
}


/* BUTTON */

.balaji-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    background: #0F766E;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.balaji-primary-btn:hover {
    background: #0B2533;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .balaji-about-section {
        padding: 65px 0;
    }

    .balaji-about-image {
        padding-right: 15px;
    }

    .balaji-about-image img {
        height: 420px;
    }

    .balaji-about-content {
        padding-left: 5px;
    }

    .balaji-about-content h2 {
        font-size: 32px;
    }

    .balaji-about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .balaji-about-section {
        padding: 50px 0;
    }

    .balaji-about-image {
        padding: 10px 10px 30px 0;
        margin-bottom: 25px;
    }

    .balaji-about-image img {
        height: 330px;
        border-radius: 18px;
    }

    .balaji-experience-card {
        left: 0;
        bottom: 5px;
    }

    .balaji-about-content {
        padding-left: 0;
    }

    .balaji-about-content h2 {
        font-size: 29px;
    }

    .balaji-about-features {
        grid-template-columns: 1fr 1fr;
    }

    .balaji-primary-btn {
        width: 100%;
        justify-content: center;
    }
}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .balaji-about-content h2 {
        font-size: 26px;
    }

    .balaji-about-content p {
        font-size: 13px;
    }

    .balaji-about-features {
        grid-template-columns: 1fr;
    }

    .balaji-about-image img {
        height: 280px;
    }
}.balaji-why-section {
    position: relative;
    padding: 85px 0;
    background: #F7FCFB;
    overflow: hidden;
}


/* Background Shapes */

.balaji-why-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: #E8F7F5;
    border-radius: 50%;
    top: -160px;
    right: -100px;
    opacity: 0.8;
}

.balaji-why-section::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    background: #FFF4D6;
    border-radius: 50%;
    bottom: -120px;
    left: -90px;
    opacity: 0.7;
}

.balaji-why-section .container {
    position: relative;
    z-index: 2;
}


/* =========================
   HEADING
========================= */

.balaji-why-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.balaji-why-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border-radius: 50px;
    background: #E8F7F5;
    color: #0F766E;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.balaji-why-heading h2 {
    margin: 0 0 13px;
    color: #0B2533;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.balaji-why-heading h2 span {
    color: #0F766E;
}

.balaji-why-heading p {
    margin: 0;
    color: #64748B;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   WHY CARDS
========================= */

.balaji-why-left {
    padding-right: 20px;
}

.balaji-why-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: #ffffff;
    border: 1px solid #E5EFED;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.balaji-why-card:last-child {
    margin-bottom: 0;
}

.balaji-why-card:hover {
    transform: translateX(6px);
    border-color: #0F766E;
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.10);
}


/* ICON */

.balaji-why-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    background: #E8F7F5;
    color: #0F766E;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s ease;
}

.balaji-why-card:hover .balaji-why-icon {
    background: #0F766E;
    color: #ffffff;
}

.balaji-why-card h4 {
    margin: 0 0 5px;
    color: #0B2533;
    font-size: 16px;
    font-weight: 750;
}

.balaji-why-card p {
    margin: 0;
    color: #718096;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================
   RIGHT IMAGE
========================= */

.balaji-why-visual {
    position: relative;
    padding: 15px 0 30px 25px;
}

.balaji-why-image {
    position: relative;
}

.balaji-why-image img {
    width: 100%;
    height: 455px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 45px rgba(11, 37, 51, 0.15);
}


/* Image Border */

.balaji-why-image::after {
    content: "";
    position: absolute;
    width: 95%;
    height: 92%;
    right: -12px;
    bottom: -15px;
    border: 3px solid #0F766E;
    border-radius: 24px;
    z-index: -1;
    opacity: 0.15;
}


/* =========================
   FLOATING CARD
========================= */

.balaji-stat-card {
    position: absolute;
    left: 0;
    top: 45px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #0B2533;
    color: #ffffff;
    padding: 14px 17px;
    border-radius: 13px;
    box-shadow: 0 12px 30px rgba(11, 37, 51, 0.22);
}

.balaji-stat-icon {
    width: 42px;
    height: 42px;
    background: #F4B942;
    color: #0B2533;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balaji-stat-card strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
}

.balaji-stat-card span {
    display: block;
    color: #D5E1E4;
    font-size: 10px;
    margin-top: 2px;
}


/* =========================
   TRUST CARD
========================= */

.balaji-rating-card {
    position: absolute;
    right: -5px;
    bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 13px 16px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(11, 37, 51, 0.14);
}

.balaji-rating-icon {
    width: 40px;
    height: 40px;
    background: #FFF4D6;
    color: #D89B12;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balaji-rating-card strong {
    display: block;
    color: #0B2533;
    font-size: 13px;
}

.balaji-rating-card span {
    display: block;
    color: #8995A3;
    font-size: 10px;
    margin-top: 2px;
}


/* =========================
   BOTTOM BOXES
========================= */

.balaji-why-bottom {
    margin-top: 45px;
}

.balaji-mini-box {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 15px;
    background: #ffffff;
    border: 1px solid #E6EFED;
    border-radius: 12px;
    transition: 0.3s ease;
}

.balaji-mini-box:hover {
    transform: translateY(-4px);
    border-color: #0F766E;
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.09);
}

.balaji-mini-box > i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F7F5;
    color: #0F766E;
    border-radius: 8px;
    font-size: 16px;
}

.balaji-mini-box strong {
    display: block;
    color: #0B2533;
    font-size: 12px;
    font-weight: 750;
}

.balaji-mini-box span {
    display: block;
    color: #8995A3;
    font-size: 10px;
    margin-top: 3px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .balaji-why-section {
        padding: 65px 0;
    }

    .balaji-why-heading h2 {
        font-size: 34px;
    }

    .balaji-why-left {
        padding-right: 5px;
    }

    .balaji-why-visual {
        padding-left: 10px;
    }

    .balaji-why-image img {
        height: 400px;
    }

    .balaji-mini-box {
        padding: 14px 12px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .balaji-why-section {
        padding: 55px 0;
    }

    .balaji-why-heading {
        margin-bottom: 35px;
    }

    .balaji-why-heading h2 {
        font-size: 29px;
    }

    .balaji-why-heading p {
        font-size: 13px;
    }

    .balaji-why-card {
        padding: 16px;
    }

    .balaji-why-card h4 {
        font-size: 14px;
    }

    .balaji-why-card p {
        font-size: 11px;
    }

    .balaji-why-visual {
        padding: 30px 8px 35px 0;
        margin-top: 15px;
    }

    .balaji-why-image img {
        height: 330px;
        border-radius: 18px;
    }

    .balaji-stat-card {
        left: 0;
        top: 50px;
    }

    .balaji-rating-card {
        right: 0;
        bottom: 5px;
    }

    .balaji-why-bottom {
        margin-top: 30px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .balaji-why-heading h2 {
        font-size: 26px;
    }

    .balaji-why-card {
        gap: 11px;
    }

    .balaji-why-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 17px;
    }

    .balaji-why-image img {
        height: 280px;
    }

    .balaji-stat-card {
        transform: scale(0.9);
        transform-origin: left top;
    }

    .balaji-rating-card {
        transform: scale(0.9);
        transform-origin: right bottom;
    }

}
.balaji-services {
    position: relative;
    padding: 90px 0;
    background: #f7fbfa;
    overflow: hidden;
}


/* Background Decoration */

.balaji-services::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #e8f7f5;
    top: -220px;
    right: -150px;
    opacity: .8;
}

.balaji-services::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: #fff5d9;
    bottom: -170px;
    left: -130px;
    opacity: .7;
}

.balaji-services .container {
    position: relative;
    z-index: 2;
}


/* ==========================================
   HEADING
========================================== */

.balaji-services-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 48px;
}

.balaji-heading-left {
    max-width: 650px;
}

.balaji-small-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 50px;
    background: #e8f7f5;
    color: #0f766e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .6px;
    margin-bottom: 14px;
}

.balaji-heading-left h2 {
    margin: 0;
    color: #0b2533;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 800;
}

.balaji-heading-left h2 span {
    display: block;
    color: #0f766e;
}

.balaji-heading-right {
    max-width: 390px;
}

.balaji-heading-right p {
    margin: 0;
    color: #718096;
    font-size: 14px;
    line-height: 1.8;
}


/* ==========================================
   SERVICE BOX
========================================== */

.balaji-service-box {
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e4efed;
    box-shadow: 0 8px 25px rgba(11, 37, 51, .06);
    transition: all .4s ease;
}

.balaji-service-box:hover {
    transform: translateY(-9px);
    border-color: #0f766e;
    box-shadow: 0 20px 45px rgba(15, 118, 110, .14);
}


/* ==========================================
   IMAGE
========================================== */

.balaji-service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.balaji-service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 37, 51, .55),
        transparent 65%
    );
}

.balaji-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.balaji-service-box:hover .balaji-service-img img {
    transform: scale(1.08);
}


/* Number */

.balaji-service-no {
    position: absolute;
    z-index: 3;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: #0b2533;
    font-size: 13px;
    font-weight: 800;
}


/* Service Icon */

.balaji-service-icon {
    position: absolute;
    z-index: 4;
    bottom: -24px;
    left: 22px;
    width: 58px;
    height: 58px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f766e;
    color: #ffffff;
    font-size: 23px;
    border: 5px solid #ffffff;
    box-shadow: 0 7px 20px rgba(15,118,110,.22);
    transition: .35s ease;
}

.balaji-service-box:hover .balaji-service-icon {
    background: #f4b942;
    color: #0b2533;
    transform: rotate(-6deg);
}


/* ==========================================
   CONTENT
========================================== */

.balaji-service-content {
    padding: 42px 24px 25px;
}

.balaji-service-content h3 {
    margin: 0 0 10px;
    color: #0b2533;
    font-size: 19px;
    font-weight: 800;
}

.balaji-service-content p {
    margin: 0 0 18px;
    color: #718096;
    font-size: 12px;
    line-height: 1.75;
}

.balaji-service-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0f766e;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: .3s ease;
}

.balaji-service-content a i {
    transition: .3s ease;
}

.balaji-service-content a:hover {
    color: #0b2533;
}

.balaji-service-content a:hover i {
    transform: translateX(5px);
}


/* ==========================================
   BOTTOM CTA
========================================== */

.balaji-services-bottom {
    margin-top: 50px;
    padding: 22px 25px;
    border-radius: 18px;
    background: #0b2533;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 18px 40px rgba(11,37,51,.16);
}

.balaji-bottom-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #f4b942;
    color: #0b2533;
    font-size: 20px;
}

.balaji-bottom-text {
    flex: 1;
}

.balaji-bottom-text span {
    color: #f4b942;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.balaji-bottom-text h3 {
    margin: 3px 0 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.balaji-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 21px;
    background: #f4b942;
    color: #0b2533;
    text-decoration: none;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 800;
    transition: .3s ease;
    white-space: nowrap;
}

.balaji-service-btn:hover {
    background: #ffffff;
    color: #0b2533;
    transform: translateY(-2px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .balaji-services {
        padding: 70px 0;
    }

    .balaji-services-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .balaji-heading-right {
        max-width: 650px;
    }

    .balaji-heading-left h2 {
        font-size: 35px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .balaji-services {
        padding: 55px 0;
    }

    .balaji-services-heading {
        margin-bottom: 35px;
    }

    .balaji-heading-left h2 {
        font-size: 29px;
    }

    .balaji-heading-right p {
        font-size: 13px;
    }

    .balaji-service-img {
        height: 210px;
    }

    .balaji-services-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 18px;
    }

    .balaji-service-btn {
        width: 100%;
        justify-content: center;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .balaji-heading-left h2 {
        font-size: 26px;
    }

    .balaji-service-img {
        height: 195px;
    }

    .balaji-service-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .balaji-bottom-text h3 {
        font-size: 15px;
    }

}
.balaji-work-process {
    position: relative;
    padding: 90px 0;
    background: #F7FBFA;
    overflow: hidden;
}

/* Decorative Background */
.balaji-work-process::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.06);
    top: -150px;
    left: -150px;
}

.balaji-work-process::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(244, 185, 66, 0.08);
    right: -120px;
    bottom: -120px;
}

.balaji-work-process .container {
    position: relative;
    z-index: 2;
}


/* Heading */
.balaji-process-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.balaji-process-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 17px;
    border-radius: 50px;
    background: #E8F7F5;
    color: #0F766E;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.balaji-process-heading h2 {
    color: #0B2533;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 15px;
}

.balaji-process-heading h2 span {
    color: #0F766E;
}

.balaji-process-heading p {
    color: #64748B;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}


/* Process Row */
.balaji-process-row {
    position: relative;
}


/* Connecting Line */
.balaji-process-row::before {
    content: "";
    position: absolute;
    top: 63px;
    left: 12%;
    right: 12%;
    height: 2px;
    border-top: 2px dashed rgba(15, 118, 110, 0.25);
    z-index: 0;
}


/* Card */
.balaji-process-card {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 38px 25px 28px;
    background: #ffffff;
    border: 1px solid #E2EFED;
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 10px 35px rgba(11, 37, 51, 0.06);
}

.balaji-process-card:hover {
    transform: translateY(-10px);
    border-color: #0F766E;
    box-shadow: 0 18px 45px rgba(15, 118, 110, 0.14);
}


/* Number */
.balaji-process-number {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 12px;
    font-weight: 800;
    color: #0F766E;
    letter-spacing: 1px;
}


/* Icon */
.balaji-process-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F7F5;
    color: #0F766E;
    border-radius: 18px;
    font-size: 28px;
    transition: all 0.35s ease;
}

.balaji-process-card:hover .balaji-process-icon {
    background: #0F766E;
    color: #ffffff;
    transform: rotate(-5deg);
}


/* Card Heading */
.balaji-process-card h3 {
    color: #0B2533;
    font-size: 20px;
    font-weight: 750;
    margin-bottom: 12px;
}


/* Card Text */
.balaji-process-card p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}


/* Arrow */
.balaji-process-arrow {
    width: 34px;
    height: 34px;
    margin: 22px auto 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7FBFA;
    color: #0F766E;
    font-size: 13px;
    transition: all 0.3s ease;
}

.balaji-process-card:hover .balaji-process-arrow {
    background: #F4B942;
    color: #0B2533;
}


/* CTA */
.balaji-process-cta {
    margin-top: 55px;
    padding: 22px 25px;
    background: #0B2533;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.balaji-cta-content {
    display: flex;
    align-items: center;
    gap: 17px;
}

.balaji-cta-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 14px;
    background: #0F766E;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.balaji-cta-content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
}

.balaji-cta-content p {
    color: #B9C9CF;
    font-size: 14px;
    margin: 0;
}


/* Button */
.balaji-process-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 8px;
    background: #F4B942;
    color: #0B2533;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.balaji-process-btn:hover {
    background: #ffffff;
    color: #0F766E;
    transform: translateY(-2px);
}


/* ================================
   TABLET
================================ */
@media (max-width: 991px) {

    .balaji-work-process {
        padding: 75px 0;
    }

    .balaji-process-heading h2 {
        font-size: 36px;
    }

    .balaji-process-row::before {
        display: none;
    }

    .balaji-process-card {
        padding: 35px 22px 25px;
    }

}


/* ================================
   MOBILE
================================ */
@media (max-width: 767px) {

    .balaji-work-process {
        padding: 60px 0;
    }

    .balaji-process-heading {
        margin-bottom: 35px;
    }

    .balaji-process-heading h2 {
        font-size: 29px;
    }

    .balaji-process-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .balaji-process-card {
        padding: 35px 22px 25px;
    }

    .balaji-process-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }

    .balaji-cta-content {
        align-items: flex-start;
    }

    .balaji-process-btn {
        width: 100%;
        justify-content: center;
    }

}


/* Small Mobile */
@media (max-width: 480px) {

    .balaji-process-heading h2 {
        font-size: 26px;
    }

    .balaji-process-icon {
        width: 65px;
        height: 65px;
        font-size: 25px;
    }

    .balaji-process-card h3 {
        font-size: 19px;
    }

}
.balaji-areas-section {
    padding: 70px 0;
    background: #F7FBFA;
}

.balaji-areas-heading {
    max-width: 700px;
    margin: 0 auto 40px;
}

.balaji-areas-heading span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    background: #E8F7F5;
    color: #0F766E;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
    margin-bottom: 12px;
}

.balaji-areas-heading h2 {
    color: #0B2533;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.balaji-areas-heading h2 strong {
    color: #0F766E;
}

.balaji-areas-heading p {
    color: #64748B;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* Area Item */
.balaji-area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 17px;
    background: #ffffff;
    border: 1px solid #E2EFED;
    border-radius: 8px;
    color: #0B2533;
    font-size: 14px;
    font-weight: 600;
    transition: all .25s ease;
}

.balaji-area-item i {
    color: #0F766E;
    font-size: 14px;
}

.balaji-area-item:hover {
    border-color: #0F766E;
    color: #0F766E;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(15, 118, 110, .08);
}


/* Tablet */
@media (max-width: 991px) {

    .balaji-areas-section {
        padding: 60px 0;
    }

    .balaji-areas-heading h2 {
        font-size: 32px;
    }

}


/* Mobile */
@media (max-width: 767px) {

    .balaji-areas-section {
        padding: 50px 0;
    }

    .balaji-areas-heading {
        margin-bottom: 30px;
    }

    .balaji-areas-heading h2 {
        font-size: 28px;
    }

    .balaji-areas-heading p {
        font-size: 14px;
    }

    .balaji-area-item {
        padding: 13px 12px;
        font-size: 13px;
    }

}

.balaji-mission-vision {
    padding: 75px 0;
    background: #F7FBFA;
}


/* Heading */
.balaji-mv-heading {
    max-width: 700px;
    margin: 0 auto 42px;
}

.balaji-mv-heading span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    border-radius: 30px;
    background: #E8F7F5;
    color: #0F766E;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
    margin-bottom: 12px;
}

.balaji-mv-heading h2 {
    color: #0B2533;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.balaji-mv-heading h2 strong {
    color: #0F766E;
}

.balaji-mv-heading p {
    color: #64748B;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* Main Card */
.balaji-mv-card {
    position: relative;
    height: 100%;
    display: flex;
    gap: 22px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #E2EFED;
    border-radius: 15px;
    overflow: hidden;
    transition: all .3s ease;
}

.balaji-mv-card::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(15, 118, 110, .05);
    right: -35px;
    bottom: -35px;
}

.balaji-mv-card:hover {
    border-color: #0F766E;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(11, 37, 51, .08);
}


/* Vision Card */
.balaji-vision-card {
    border-top: 3px solid #F4B942;
}


/* Icon */
.balaji-mv-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F7F5;
    color: #0F766E;
    font-size: 24px;
    transition: .3s ease;
}

.balaji-mv-card:hover .balaji-mv-icon {
    background: #0F766E;
    color: #ffffff;
}


/* Content */
.balaji-mv-content {
    position: relative;
    z-index: 2;
}

.balaji-mv-content > span {
    color: #F4B942;
    font-size: 12px;
    font-weight: 800;
}

.balaji-mv-content h3 {
    color: #0B2533;
    font-size: 24px;
    font-weight: 750;
    margin: 3px 0 12px;
}

.balaji-mv-content p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* Points */
.balaji-mv-points {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.balaji-mv-points div {
    color: #0B2533;
    font-size: 13px;
    font-weight: 600;
}

.balaji-mv-points i {
    color: #0F766E;
    margin-right: 5px;
}


/* Mobile */
@media (max-width: 767px) {

    .balaji-mission-vision {
        padding: 55px 0;
    }

    .balaji-mv-heading {
        margin-bottom: 30px;
    }

    .balaji-mv-heading h2 {
        font-size: 28px;
    }

    .balaji-mv-heading p {
        font-size: 14px;
    }

    .balaji-mv-card {
        padding: 25px 20px;
        gap: 16px;
    }

    .balaji-mv-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 20px;
    }

    .balaji-mv-content h3 {
        font-size: 21px;
    }

    .balaji-mv-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .balaji-mv-points {
        display: block;
    }

    .balaji-mv-points div {
        margin-top: 8px;
    }

}


/* Small Mobile */
@media (max-width: 480px) {

    .balaji-mv-card {
        display: block;
    }

    .balaji-mv-icon {
        margin-bottom: 18px;
    }

}
.balaji-breadcrumb {
    position: relative;
    padding: 65px 0;
    background:
        linear-gradient(
            135deg,
            #E8F7F5 0%,
            #F7FBFA 55%,
            #ffffff 100%
        );
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 118, 110, 0.10);
}

/* Decorative Shape */
.balaji-breadcrumb::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.06);
    top: -120px;
    right: 5%;
}

.balaji-breadcrumb::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(244, 185, 66, 0.08);
    bottom: -100px;
    left: 8%;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    margin-bottom: 14px;
    background: #ffffff;
    color: #0F766E;
    border: 1px solid rgba(15, 118, 110, 0.15);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(11, 37, 51, 0.06);
}

.breadcrumb-tag i {
    color: #F4B942;
}

.breadcrumb-content h1 {
    margin: 0 0 12px;
    color: #0B2533;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.breadcrumb-content p {
    margin: 0;
    max-width: 650px;
    color: #5B6B73;
    font-size: 16px;
    line-height: 1.7;
}


/* Breadcrumb Navigation */
.breadcrumb-nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 22px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(15, 118, 110, 0.10);
    box-shadow: 0 12px 35px rgba(11, 37, 51, 0.07);
}

.breadcrumb-nav a {
    color: #0F766E;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #F4B942;
}

.breadcrumb-nav a i {
    margin-right: 5px;
}

.breadcrumb-nav span {
    color: #A5B3B8;
    font-size: 11px;
}

.breadcrumb-nav strong {
    color: #0B2533;
    font-size: 14px;
    font-weight: 700;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .balaji-breadcrumb {
        padding: 50px 0;
    }

    .breadcrumb-content h1 {
        font-size: 34px;
    }

    .breadcrumb-nav {
        margin-top: 25px;
        justify-content: flex-start;
    }
}


@media (max-width: 767px) {

    .balaji-breadcrumb {
        padding: 40px 0;
    }

    .breadcrumb-content h1 {
        font-size: 29px;
    }

    .breadcrumb-content p {
        font-size: 14px;
    }

    .breadcrumb-tag {
        font-size: 12px;
    }

    .breadcrumb-nav {
        padding: 14px 16px;
        gap: 7px;
    }

    .breadcrumb-nav a,
    .breadcrumb-nav strong {
        font-size: 12px;
    }
}


@media (max-width: 480px) {

    .breadcrumb-content h1 {
        font-size: 26px;
    }

    .breadcrumb-nav {
        line-height: 1.8;
    }
}
.balaji-about-page {
    padding: 90px 0;
    background: #F7FBFA;
    overflow: hidden;
}


/* IMAGE AREA */

.about-image-wrap {
    position: relative;
    padding: 12px;
}

.about-image-wrap::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #E8F7F5;
    top: -25px;
    left: -25px;
    z-index: 0;
}

.about-image-wrap::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(244, 185, 66, 0.13);
    right: -20px;
    bottom: -20px;
    z-index: 0;
}

.about-image-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 50px rgba(11, 37, 51, 0.13);
}


/* EXPERIENCE CARD */

.about-experience {
    position: absolute;
    z-index: 3;
    left: -5px;
    bottom: 55px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 22px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(11, 37, 51, 0.15);
}

.experience-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F766E;
    color: #ffffff;
    border-radius: 12px;
    font-size: 20px;
}

.about-experience strong {
    display: block;
    color: #0B2533;
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}

.about-experience span {
    display: block;
    margin-top: 5px;
    color: #68777D;
    font-size: 12px;
}


/* FLOATING BADGE */

.about-floating-badge {
    position: absolute;
    z-index: 3;
    right: -5px;
    top: 45px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    background: #0B2533;
    color: #ffffff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(11, 37, 51, 0.20);
}

.about-floating-badge i {
    color: #F4B942;
}


/* CONTENT */

.about-page-content {
    padding-left: 15px;
}

.about-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 8px 15px;
    border-radius: 30px;
    background: #E8F7F5;
    color: #0F766E;
    border: 1px solid rgba(15, 118, 110, 0.10);
    font-size: 13px;
    font-weight: 700;
}

.about-section-tag i {
    color: #F4B942;
}


.about-page-content h2 {
    margin: 0 0 18px;
    color: #0B2533;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.about-page-content h2 span {
    color: #0F766E;
}


.about-page-content > p {
    margin-bottom: 14px;
    color: #617178;
    font-size: 15px;
    line-height: 1.8;
}

.about-page-content .about-intro {
    color: #40535B;
}

.about-page-content .about-intro strong {
    color: #0F766E;
}


/* FEATURES */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 25px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.08);
    border-radius: 13px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 118, 110, 0.20);
    box-shadow: 0 12px 30px rgba(11, 37, 51, 0.08);
}


.feature-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F7F5;
    color: #0F766E;
    border-radius: 10px;
    font-size: 17px;
}

.about-feature-item h4 {
    margin: 0 0 4px;
    color: #0B2533;
    font-size: 15px;
    font-weight: 700;
}

.about-feature-item p {
    margin: 0;
    color: #718087;
    font-size: 12px;
    line-height: 1.5;
}


/* BUTTONS */

.about-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}

.about-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 21px;
    background: #0F766E;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.about-btn-primary:hover {
    background: #0B2533;
    color: #ffffff;
    transform: translateY(-2px);
}

.about-btn-primary i {
    transition: 0.3s ease;
}

.about-btn-primary:hover i {
    transform: translateX(4px);
}


.about-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    color: #0B2533;
    background: #ffffff;
    border: 1px solid #DCE9E7;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.about-btn-call i {
    color: #0F766E;
}

.about-btn-call:hover {
    border-color: #0F766E;
    color: #0F766E;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .balaji-about-page {
        padding: 70px 0;
    }

    .about-image-wrap img {
        height: 470px;
    }

    .about-page-content {
        padding-left: 0;
    }

    .about-page-content h2 {
        font-size: 34px;
    }

    .about-experience {
        left: 0;
    }

    .about-floating-badge {
        right: 0;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .balaji-about-page {
        padding: 55px 0;
    }

    .about-image-wrap {
        padding: 7px;
    }

    .about-image-wrap img {
        height: 360px;
        border-radius: 18px;
    }

    .about-image-wrap::before {
        width: 110px;
        height: 110px;
    }

    .about-image-wrap::after {
        width: 90px;
        height: 90px;
    }

    .about-experience {
        left: 5px;
        bottom: 30px;
        padding: 11px 14px;
    }

    .experience-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .about-experience strong {
        font-size: 21px;
    }

    .about-experience span {
        font-size: 10px;
    }

    .about-floating-badge {
        right: 5px;
        top: 25px;
        padding: 9px 12px;
        font-size: 11px;
    }

    .about-page-content h2 {
        font-size: 29px;
    }

    .about-page-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .about-btn-primary,
    .about-btn-call {
        justify-content: center;
        width: 100%;
    }
}


/* SMALL MOBILE */

@media (max-width: 420px) {

    .about-image-wrap img {
        height: 310px;
    }

    .about-page-content h2 {
        font-size: 26px;
    }

    .about-section-tag {
        font-size: 11px;
    }
}
.balaji-household-service {
    padding: 90px 0;
    background: #F7FBFA;
    overflow: hidden;
}


/* IMAGE */

.household-image-box {
    position: relative;
    padding: 12px;
}

.household-image-box::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: #E8F7F5;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    z-index: 0;
}

.household-image-box::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: rgba(244, 185, 66, 0.12);
    border-radius: 50%;
    right: -25px;
    bottom: -25px;
    z-index: 0;
}

.household-image-box img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 50px rgba(11, 37, 51, 0.13);
}


/* EXPERIENCE */

.household-experience {
    position: absolute;
    z-index: 3;
    left: -5px;
    bottom: 55px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;
    background: #ffffff;
    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(11, 37, 51, 0.15);
}

.household-exp-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0F766E;
    color: #ffffff;

    border-radius: 11px;
    font-size: 19px;
}

.household-experience strong {
    display: block;
    color: #0B2533;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.household-experience span {
    display: block;
    margin-top: 5px;
    color: #718087;
    font-size: 12px;
}


/* SAFE BADGE */

.household-safe-badge {
    position: absolute;
    z-index: 3;
    top: 45px;
    right: -5px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 17px;

    background: #0B2533;
    color: #ffffff;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    box-shadow: 0 10px 30px rgba(11, 37, 51, 0.20);
}

.household-safe-badge i {
    color: #F4B942;
}


/* CONTENT */

.household-service-content {
    padding-left: 15px;
}

.household-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;
    margin-bottom: 15px;

    background: #E8F7F5;
    color: #0F766E;

    border: 1px solid rgba(15, 118, 110, 0.10);
    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
}

.household-service-tag i {
    color: #F4B942;
}


/* HEADING */

.household-service-content h2 {
    margin: 0 0 18px;

    color: #0B2533;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.household-service-content h2 span {
    color: #0F766E;
}


/* PARAGRAPHS */

.household-service-content > p {
    margin-bottom: 14px;

    color: #617178;

    font-size: 15px;
    line-height: 1.8;
}

.household-service-content .household-intro {
    color: #40535B;
}

.household-intro strong {
    color: #0F766E;
}


/* FEATURES */

.household-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    margin-top: 24px;
}

.household-feature {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 14px;

    background: #ffffff;

    border: 1px solid rgba(15, 118, 110, 0.08);
    border-radius: 13px;

    transition: all 0.3s ease;
}

.household-feature:hover {
    transform: translateY(-4px);

    border-color: rgba(15, 118, 110, 0.20);

    box-shadow: 0 12px 30px rgba(11, 37, 51, 0.08);
}


/* FEATURE ICON */

.household-feature-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #E8F7F5;
    color: #0F766E;

    border-radius: 10px;

    font-size: 16px;
}

.household-feature h4 {
    margin: 0 0 4px;

    color: #0B2533;

    font-size: 14px;
    font-weight: 700;
}

.household-feature p {
    margin: 0;

    color: #718087;

    font-size: 11px;
    line-height: 1.5;
}


/* BUTTONS */

.household-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 27px;
}

.household-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 21px;

    background: #0F766E;
    color: #ffffff;

    text-decoration: none;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.household-primary-btn:hover {
    background: #0B2533;
    color: #ffffff;
    transform: translateY(-2px);
}

.household-primary-btn i {
    transition: 0.3s ease;
}

.household-primary-btn:hover i {
    transform: translateX(4px);
}


.household-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 19px;

    background: #ffffff;
    color: #0B2533;

    border: 1px solid #DCE9E7;
    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.household-call-btn i {
    color: #0F766E;
}

.household-call-btn:hover {
    border-color: #0F766E;
    color: #0F766E;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .balaji-household-service {
        padding: 70px 0;
    }

    .household-image-box img {
        height: 470px;
    }

    .household-service-content {
        padding-left: 0;
    }

    .household-service-content h2 {
        font-size: 33px;
    }

    .household-experience {
        left: 0;
    }

    .household-safe-badge {
        right: 0;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .balaji-household-service {
        padding: 55px 0;
    }

    .household-image-box {
        padding: 7px;
    }

    .household-image-box img {
        height: 350px;
        border-radius: 18px;
    }

    .household-image-box::before {
        width: 110px;
        height: 110px;
    }

    .household-image-box::after {
        width: 90px;
        height: 90px;
    }

    .household-experience {
        left: 5px;
        bottom: 28px;
        padding: 10px 13px;
    }

    .household-exp-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .household-experience strong {
        font-size: 20px;
    }

    .household-experience span {
        font-size: 10px;
    }

    .household-safe-badge {
        top: 25px;
        right: 5px;
        padding: 9px 12px;
        font-size: 11px;
    }

    .household-service-content h2 {
        font-size: 28px;
    }

    .household-service-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .household-features {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .household-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .household-primary-btn,
    .household-call-btn {
        width: 100%;
        justify-content: center;
    }
}


/* SMALL MOBILE */

@media (max-width: 420px) {

    .household-image-box img {
        height: 300px;
    }

    .household-service-content h2 {
        font-size: 25px;
    }

    .household-service-tag {
        font-size: 11px;
    }

}
.balaji-office-service {
    padding: 90px 0;
    background: #F7FBFA;
    overflow: hidden;
}


/* IMAGE BOX */

.office-image-box {
    position: relative;
    padding: 12px;
}

.office-image-box::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: #E8F7F5;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    z-index: 0;
}

.office-image-box::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: rgba(244, 185, 66, 0.12);
    border-radius: 50%;
    right: -25px;
    bottom: -25px;
    z-index: 0;
}

.office-image-box img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(11, 37, 51, 0.13);
}


/* EXPERIENCE CARD */

.office-experience {
    position: absolute;
    z-index: 3;
    left: -5px;
    bottom: 55px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;
    background: #ffffff;
    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(11, 37, 51, 0.15);
}

.office-exp-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0F766E;
    color: #ffffff;

    border-radius: 11px;
    font-size: 19px;
}

.office-experience strong {
    display: block;
    color: #0B2533;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.office-experience span {
    display: block;
    margin-top: 5px;
    color: #718087;
    font-size: 12px;
}


/* SAFE BADGE */

.office-safe-badge {
    position: absolute;
    z-index: 3;
    top: 45px;
    right: -5px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 17px;

    background: #0B2533;
    color: #ffffff;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    box-shadow: 0 10px 30px rgba(11, 37, 51, 0.20);
}

.office-safe-badge i {
    color: #F4B942;
}


/* CONTENT */

.office-service-content {
    padding-left: 15px;
}

.office-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;
    margin-bottom: 15px;

    background: #E8F7F5;
    color: #0F766E;

    border: 1px solid rgba(15, 118, 110, 0.10);
    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
}

.office-service-tag i {
    color: #F4B942;
}


/* HEADING */

.office-service-content h2 {
    margin: 0 0 18px;

    color: #0B2533;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.office-service-content h2 span {
    color: #0F766E;
}


/* PARAGRAPHS */

.office-service-content > p {
    margin-bottom: 14px;

    color: #617178;

    font-size: 15px;
    line-height: 1.8;
}

.office-service-content .office-intro {
    color: #40535B;
}

.office-intro strong {
    color: #0F766E;
}


/* FEATURES */

.office-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    margin-top: 24px;
}

.office-feature {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 14px;

    background: #ffffff;

    border: 1px solid rgba(15, 118, 110, 0.08);
    border-radius: 13px;

    transition: all 0.3s ease;
}

.office-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 118, 110, 0.20);
    box-shadow: 0 12px 30px rgba(11, 37, 51, 0.08);
}


/* FEATURE ICON */

.office-feature-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #E8F7F5;
    color: #0F766E;

    border-radius: 10px;

    font-size: 16px;
}

.office-feature h4 {
    margin: 0 0 4px;

    color: #0B2533;

    font-size: 14px;
    font-weight: 700;
}

.office-feature p {
    margin: 0;

    color: #718087;

    font-size: 11px;
    line-height: 1.5;
}


/* BUTTONS */

.office-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 27px;
}

.office-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 21px;

    background: #0F766E;
    color: #ffffff;

    text-decoration: none;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.office-primary-btn:hover {
    background: #0B2533;
    color: #ffffff;
    transform: translateY(-2px);
}

.office-primary-btn i {
    transition: 0.3s ease;
}

.office-primary-btn:hover i {
    transform: translateX(4px);
}


.office-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 19px;

    background: #ffffff;
    color: #0B2533;

    border: 1px solid #DCE9E7;
    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.office-call-btn i {
    color: #0F766E;
}

.office-call-btn:hover {
    border-color: #0F766E;
    color: #0F766E;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .balaji-office-service {
        padding: 70px 0;
    }

    .office-image-box img {
        height: 470px;
    }

    .office-service-content {
        padding-left: 0;
    }

    .office-service-content h2 {
        font-size: 33px;
    }

    .office-experience {
        left: 0;
    }

    .office-safe-badge {
        right: 0;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .balaji-office-service {
        padding: 55px 0;
    }

    .office-image-box {
        padding: 7px;
    }

    .office-image-box img {
        height: 350px;
        border-radius: 18px;
    }

    .office-image-box::before {
        width: 110px;
        height: 110px;
    }

    .office-image-box::after {
        width: 90px;
        height: 90px;
    }

    .office-experience {
        left: 5px;
        bottom: 28px;
        padding: 10px 13px;
    }

    .office-exp-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .office-experience strong {
        font-size: 20px;
    }

    .office-experience span {
        font-size: 10px;
    }

    .office-safe-badge {
        top: 25px;
        right: 5px;
        padding: 9px 12px;
        font-size: 11px;
    }

    .office-service-content h2 {
        font-size: 28px;
    }

    .office-service-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .office-features {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .office-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .office-primary-btn,
    .office-call-btn {
        width: 100%;
        justify-content: center;
    }
}


/* SMALL MOBILE */

@media (max-width: 420px) {

    .office-image-box img {
        height: 300px;
    }

    .office-service-content h2 {
        font-size: 25px;
    }

    .office-service-tag {
        font-size: 11px;
    }

}
.balaji-vehicle-service {
    padding: 90px 0;
    background: #F7FBFA;
    overflow: hidden;
}


/* =========================
   IMAGE BOX
========================= */

.vehicle-image-box {
    position: relative;
    padding: 12px;
}

.vehicle-image-box::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: #E8F7F5;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    z-index: 0;
}

.vehicle-image-box::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: rgba(244, 185, 66, 0.12);
    border-radius: 50%;
    right: -25px;
    bottom: -25px;
    z-index: 0;
}

.vehicle-image-box img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(11, 37, 51, 0.13);
}


/* =========================
   EXPERIENCE
========================= */

.vehicle-experience {
    position: absolute;
    z-index: 3;
    left: -5px;
    bottom: 55px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;
    background: #ffffff;
    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(11, 37, 51, 0.15);
}

.vehicle-exp-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0F766E;
    color: #ffffff;

    border-radius: 11px;
    font-size: 19px;
}

.vehicle-experience strong {
    display: block;
    color: #0B2533;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.vehicle-experience span {
    display: block;
    margin-top: 5px;
    color: #718087;
    font-size: 12px;
}


/* =========================
   SAFE BADGE
========================= */

.vehicle-safe-badge {
    position: absolute;
    z-index: 3;
    top: 45px;
    right: -5px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 17px;

    background: #0B2533;
    color: #ffffff;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    box-shadow: 0 10px 30px rgba(11, 37, 51, 0.20);
}

.vehicle-safe-badge i {
    color: #F4B942;
}


/* =========================
   CONTENT
========================= */

.vehicle-service-content {
    padding-left: 15px;
}

.vehicle-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;
    margin-bottom: 15px;

    background: #E8F7F5;
    color: #0F766E;

    border: 1px solid rgba(15, 118, 110, 0.10);
    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
}

.vehicle-service-tag i {
    color: #F4B942;
}


/* =========================
   HEADING
========================= */

.vehicle-service-content h2 {
    margin: 0 0 18px;

    color: #0B2533;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.vehicle-service-content h2 span {
    color: #0F766E;
}


/* =========================
   PARAGRAPHS
========================= */

.vehicle-service-content > p {
    margin-bottom: 14px;

    color: #617178;

    font-size: 15px;
    line-height: 1.8;
}

.vehicle-service-content .vehicle-intro {
    color: #40535B;
}

.vehicle-intro strong {
    color: #0F766E;
}


/* =========================
   VEHICLE CARDS
========================= */

.vehicle-service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    margin-top: 24px;
}

.vehicle-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 17px;

    background: #ffffff;

    border: 1px solid rgba(15, 118, 110, 0.09);
    border-radius: 14px;

    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);

    border-color: rgba(15, 118, 110, 0.25);

    box-shadow: 0 14px 35px rgba(11, 37, 51, 0.09);
}


/* CARD ICON */

.vehicle-card-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #E8F7F5;
    color: #0F766E;

    border-radius: 11px;

    font-size: 18px;
}

.vehicle-card-icon.bike-icon {
    background: rgba(244, 185, 66, 0.14);
    color: #B07800;
}


.vehicle-card-content h4 {
    margin: 0 0 5px;

    color: #0B2533;

    font-size: 15px;
    font-weight: 700;
}

.vehicle-card-content p {
    margin: 0 0 8px;

    color: #718087;

    font-size: 11px;
    line-height: 1.5;
}

.vehicle-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #0F766E;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    transition: 0.3s ease;
}

.vehicle-card-content a:hover {
    color: #0B2533;
}

.vehicle-card-content a i {
    font-size: 9px;
    transition: 0.3s ease;
}

.vehicle-card-content a:hover i {
    transform: translateX(3px);
}


/* =========================
   HIGHLIGHTS
========================= */

.vehicle-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 18px;

    margin-top: 20px;
}

.vehicle-highlight {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #53666D;

    font-size: 12px;
    font-weight: 600;
}

.vehicle-highlight i {
    color: #0F766E;
    font-size: 13px;
}


/* =========================
   BUTTONS
========================= */

.vehicle-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 27px;
}

.vehicle-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 21px;

    background: #0F766E;
    color: #ffffff;

    text-decoration: none;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.vehicle-primary-btn:hover {
    background: #0B2533;
    color: #ffffff;
    transform: translateY(-2px);
}

.vehicle-primary-btn i {
    transition: 0.3s ease;
}

.vehicle-primary-btn:hover i {
    transform: translateX(4px);
}


.vehicle-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 19px;

    background: #ffffff;
    color: #0B2533;

    border: 1px solid #DCE9E7;
    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.vehicle-call-btn i {
    color: #0F766E;
}

.vehicle-call-btn:hover {
    border-color: #0F766E;
    color: #0F766E;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .balaji-vehicle-service {
        padding: 70px 0;
    }

    .vehicle-image-box img {
        height: 470px;
    }

    .vehicle-service-content {
        padding-left: 0;
    }

    .vehicle-service-content h2 {
        font-size: 33px;
    }

    .vehicle-experience {
        left: 0;
    }

    .vehicle-safe-badge {
        right: 0;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .balaji-vehicle-service {
        padding: 55px 0;
    }

    .vehicle-image-box {
        padding: 7px;
    }

    .vehicle-image-box img {
        height: 350px;
        border-radius: 18px;
    }

    .vehicle-image-box::before {
        width: 110px;
        height: 110px;
    }

    .vehicle-image-box::after {
        width: 90px;
        height: 90px;
    }

    .vehicle-experience {
        left: 5px;
        bottom: 28px;
        padding: 10px 13px;
    }

    .vehicle-exp-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .vehicle-experience strong {
        font-size: 20px;
    }

    .vehicle-experience span {
        font-size: 10px;
    }

    .vehicle-safe-badge {
        top: 25px;
        right: 5px;
        padding: 9px 12px;
        font-size: 11px;
    }

    .vehicle-service-content h2 {
        font-size: 28px;
    }

    .vehicle-service-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .vehicle-service-cards {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .vehicle-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .vehicle-primary-btn,
    .vehicle-call-btn {
        width: 100%;
        justify-content: center;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {

    .vehicle-image-box img {
        height: 300px;
    }

    .vehicle-service-content h2 {
        font-size: 25px;
    }

    .vehicle-service-tag {
        font-size: 11px;
    }

    .vehicle-highlights {
        grid-template-columns: 1fr;
    }

}
.balaji-loading-service {
    padding: 90px 0;
    background: #F7FBFA;
    overflow: hidden;
}


/* =========================
   IMAGE BOX
========================= */

.loading-image-box {
    position: relative;
    padding: 12px;
}

.loading-image-box::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: #E8F7F5;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    z-index: 0;
}

.loading-image-box::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: rgba(244, 185, 66, 0.12);
    border-radius: 50%;
    right: -25px;
    bottom: -25px;
    z-index: 0;
}

.loading-image-box img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(11, 37, 51, 0.13);
}


/* =========================
   EXPERIENCE CARD
========================= */

.loading-experience {
    position: absolute;
    z-index: 3;
    left: -5px;
    bottom: 55px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;
    background: #ffffff;
    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(11, 37, 51, 0.15);
}

.loading-exp-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0F766E;
    color: #ffffff;

    border-radius: 11px;
    font-size: 19px;
}

.loading-experience strong {
    display: block;
    color: #0B2533;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.loading-experience span {
    display: block;
    margin-top: 5px;
    color: #718087;
    font-size: 12px;
}


/* =========================
   SAFE BADGE
========================= */

.loading-safe-badge {
    position: absolute;
    z-index: 3;
    top: 45px;
    right: -5px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 17px;

    background: #0B2533;
    color: #ffffff;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    box-shadow: 0 10px 30px rgba(11, 37, 51, 0.20);
}

.loading-safe-badge i {
    color: #F4B942;
}


/* =========================
   CONTENT
========================= */

.loading-service-content {
    padding-left: 15px;
}

.loading-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;
    margin-bottom: 15px;

    background: #E8F7F5;
    color: #0F766E;

    border: 1px solid rgba(15, 118, 110, 0.10);
    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
}

.loading-service-tag i {
    color: #F4B942;
}


/* =========================
   HEADING
========================= */

.loading-service-content h2 {
    margin: 0 0 18px;

    color: #0B2533;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.loading-service-content h2 span {
    color: #0F766E;
}


/* =========================
   PARAGRAPHS
========================= */

.loading-service-content > p {
    margin-bottom: 14px;

    color: #617178;

    font-size: 15px;
    line-height: 1.8;
}

.loading-service-content .loading-intro {
    color: #40535B;
}

.loading-intro strong {
    color: #0F766E;
}


/* =========================
   FEATURES
========================= */

.loading-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    margin-top: 24px;
}

.loading-feature {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 14px;

    background: #ffffff;

    border: 1px solid rgba(15, 118, 110, 0.08);
    border-radius: 13px;

    transition: all 0.3s ease;
}

.loading-feature:hover {
    transform: translateY(-4px);

    border-color: rgba(15, 118, 110, 0.20);

    box-shadow: 0 12px 30px rgba(11, 37, 51, 0.08);
}


/* FEATURE ICON */

.loading-feature-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #E8F7F5;
    color: #0F766E;

    border-radius: 10px;

    font-size: 16px;
}

.loading-feature h4 {
    margin: 0 0 4px;

    color: #0B2533;

    font-size: 14px;
    font-weight: 700;
}

.loading-feature p {
    margin: 0;

    color: #718087;

    font-size: 11px;
    line-height: 1.5;
}


/* =========================
   HIGHLIGHTS
========================= */

.loading-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 18px;

    margin-top: 20px;
}

.loading-highlight {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #53666D;

    font-size: 12px;
    font-weight: 600;
}

.loading-highlight i {
    color: #0F766E;
    font-size: 13px;
}


/* =========================
   BUTTONS
========================= */

.loading-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 27px;
}

.loading-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 21px;

    background: #0F766E;
    color: #ffffff;

    text-decoration: none;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.loading-primary-btn:hover {
    background: #0B2533;
    color: #ffffff;
    transform: translateY(-2px);
}

.loading-primary-btn i {
    transition: 0.3s ease;
}

.loading-primary-btn:hover i {
    transform: translateX(4px);
}


.loading-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 19px;

    background: #ffffff;
    color: #0B2533;

    border: 1px solid #DCE9E7;
    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.loading-call-btn i {
    color: #0F766E;
}

.loading-call-btn:hover {
    border-color: #0F766E;
    color: #0F766E;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .balaji-loading-service {
        padding: 70px 0;
    }

    .loading-image-box img {
        height: 470px;
    }

    .loading-service-content {
        padding-left: 0;
    }

    .loading-service-content h2 {
        font-size: 33px;
    }

    .loading-experience {
        left: 0;
    }

    .loading-safe-badge {
        right: 0;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .balaji-loading-service {
        padding: 55px 0;
    }

    .loading-image-box {
        padding: 7px;
    }

    .loading-image-box img {
        height: 350px;
        border-radius: 18px;
    }

    .loading-image-box::before {
        width: 110px;
        height: 110px;
    }

    .loading-image-box::after {
        width: 90px;
        height: 90px;
    }

    .loading-experience {
        left: 5px;
        bottom: 28px;
        padding: 10px 13px;
    }

    .loading-exp-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .loading-experience strong {
        font-size: 20px;
    }

    .loading-experience span {
        font-size: 10px;
    }

    .loading-safe-badge {
        top: 25px;
        right: 5px;
        padding: 9px 12px;
        font-size: 11px;
    }

    .loading-service-content h2 {
        font-size: 28px;
    }

    .loading-service-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .loading-features {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .loading-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .loading-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .loading-primary-btn,
    .loading-call-btn {
        width: 100%;
        justify-content: center;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {

    .loading-image-box img {
        height: 300px;
    }

    .loading-service-content h2 {
        font-size: 25px;
    }

    .loading-service-tag {
        font-size: 11px;
    }

    .loading-highlights {
        grid-template-columns: 1fr;
    }

}
/* =========================
   WAREHOUSE SECTION
========================= */

.balaji-warehouse-section {
    padding: 90px 0;
    background: #F7FBFA;
    overflow: hidden;
}


/* =========================
   IMAGE
========================= */

.balaji-warehouse-image {
    position: relative;
    padding: 15px;
}

.balaji-warehouse-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    box-shadow: 0 20px 55px rgba(11, 37, 51, 0.15);
    transition: 0.5s ease;
}

.balaji-warehouse-image:hover img {
    transform: scale(1.015);
}


/* =========================
   EXPERIENCE BADGE
========================= */

.warehouse-experience {
    position: absolute;
    left: -5px;
    bottom: 65px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #ffffff;
    padding: 16px 22px;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(11, 37, 51, 0.14);
}

.warehouse-exp-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #E8F7F5;
    color: #0F766E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.warehouse-experience strong {
    display: block;
    color: #0B2533;
    font-size: 16px;
    font-weight: 800;
}

.warehouse-experience span {
    display: block;
    color: #71808a;
    font-size: 13px;
    margin-top: 2px;
}


/* =========================
   SAFE BADGE
========================= */

.warehouse-safe {
    position: absolute;
    right: -5px;
    top: 55px;
    background: #0B2533;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 19px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(11, 37, 51, 0.22);
}

.warehouse-safe > i {
    color: #F4B942;
    font-size: 23px;
}

.warehouse-safe strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.warehouse-safe span {
    display: block;
    font-size: 11px;
    color: #c9d3d7;
    margin-top: 2px;
}


/* =========================
   CONTENT
========================= */

.balaji-warehouse-content {
    padding-left: 15px;
}

.warehouse-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0F766E;
    background: #E8F7F5;
    border: 1px solid rgba(15, 118, 110, 0.12);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.balaji-warehouse-content h2 {
    color: #0B2533;
    font-size: 39px;
    line-height: 1.18;
    font-weight: 800;
    margin: 0 0 18px;
}

.balaji-warehouse-content h2 span {
    display: block;
    color: #0F766E;
}

.balaji-warehouse-content p {
    color: #64757d;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 13px;
}

.warehouse-intro {
    font-weight: 500;
}


/* =========================
   FEATURE CARDS
========================= */

.warehouse-feature-row {
    margin-top: 24px;
}

.warehouse-feature-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px;
    background: #ffffff;
    border: 1px solid #e4eeee;
    border-radius: 15px;
    transition: 0.35s ease;
}

.warehouse-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 118, 110, 0.25);
    box-shadow: 0 12px 28px rgba(11, 37, 51, 0.08);
}

.warehouse-feature-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border-radius: 11px;
    background: #E8F7F5;
    color: #0F766E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.warehouse-feature-card h4 {
    color: #0B2533;
    font-size: 15px;
    font-weight: 800;
    margin: 2px 0 5px;
}

.warehouse-feature-card p {
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
    color: #78868c;
}


/* =========================
   HIGHLIGHTS
========================= */

.warehouse-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
}

.warehouse-highlight {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #455b63;
    font-size: 13px;
    font-weight: 600;
}

.warehouse-highlight i {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F766E;
    color: #ffffff;
    font-size: 9px;
}


/* =========================
   BUTTONS
========================= */

.warehouse-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.warehouse-buttons a {
    text-decoration: none;
}

.warehouse-btn-primary,
.warehouse-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.warehouse-btn-primary {
    background: #0F766E;
    color: #ffffff;
    border: 1px solid #0F766E;
}

.warehouse-btn-primary:hover {
    background: #0B2533;
    border-color: #0B2533;
    color: #ffffff;
    transform: translateY(-2px);
}

.warehouse-btn-secondary {
    background: #ffffff;
    color: #0B2533;
    border: 1px solid #d8e3e5;
}

.warehouse-btn-secondary:hover {
    background: #E8F7F5;
    border-color: #0F766E;
    color: #0F766E;
    transform: translateY(-2px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .balaji-warehouse-section {
        padding: 70px 0;
    }

    .balaji-warehouse-image img {
        height: 500px;
    }

    .balaji-warehouse-content {
        padding-left: 0;
    }

    .balaji-warehouse-content h2 {
        font-size: 32px;
    }

    .warehouse-experience {
        left: 0;
        bottom: 45px;
    }

    .warehouse-safe {
        right: 0;
        top: 35px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .balaji-warehouse-section {
        padding: 55px 0;
    }

    .balaji-warehouse-image {
        padding: 8px;
        margin-bottom: 25px;
    }

    .balaji-warehouse-image img {
        height: 360px;
        border-radius: 20px;
    }

    .warehouse-experience {
        left: -2px;
        bottom: 25px;
        padding: 11px 14px;
        gap: 9px;
    }

    .warehouse-exp-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .warehouse-experience strong {
        font-size: 13px;
    }

    .warehouse-experience span {
        font-size: 11px;
    }

    .warehouse-safe {
        right: -2px;
        top: 25px;
        padding: 11px 13px;
    }

    .warehouse-safe > i {
        font-size: 19px;
    }

    .warehouse-safe strong {
        font-size: 12px;
    }

    .warehouse-safe span {
        font-size: 9px;
    }

    .warehouse-tag {
        font-size: 11px;
        padding: 7px 12px;
    }

    .balaji-warehouse-content h2 {
        font-size: 27px;
    }

    .balaji-warehouse-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .warehouse-feature-card {
        padding: 14px;
    }

    .warehouse-feature-card h4 {
        font-size: 14px;
    }

    .warehouse-feature-card p {
        font-size: 11px;
    }

    .warehouse-highlights {
        gap: 9px 15px;
    }

    .warehouse-highlight {
        font-size: 11px;
    }

    .warehouse-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .warehouse-btn-primary,
    .warehouse-btn-secondary {
        width: 100%;
        padding: 12px 18px;
        font-size: 13px;
    }
}
