/* =====================================================
   RIC PACKERS & MOVERS
   BADDI BRANCH PAGE
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #071b3a;
    background: #f5f8fc;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   COMMON CONTAINER
===================================================== */

.baddi-container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.baddi-header {
    width: 100%;
    height: 78px;

    background: #071b3a;

    position: relative;
    z-index: 100;
}

.baddi-header-container {
    width: 92%;
    max-width: 1200px;
    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.baddi-logo img {
    width: 155px;
}

.baddi-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.baddi-nav a {
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    transition: 0.25s ease;
}

.baddi-nav a:hover {
    color: #3d86ed;
}

.baddi-nav-button {
    padding: 13px 20px;

    color: #ffffff !important;
    background: #1769d1;

    border-radius: 7px;
}

.baddi-menu {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 7px;

    color: #ffffff;
    background: #1769d1;

    font-size: 18px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.baddi-hero {
    position: relative;

    min-height: 650px;

    overflow: hidden;

    background: #071b3a;
}


/* =====================================================
   HERO FULL BACKGROUND
===================================================== */

.baddi-hero-background {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 22, 44, 0.90) 0%,
            rgba(5, 22, 44, 0.72) 45%,
            rgba(5, 22, 44, 0.48) 100%
        ),
        url("images/baddi-industrial-hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;
}


/* =====================================================
   HERO CONTAINER
===================================================== */

.baddi-hero-container {
    position: relative;
    z-index: 2;

    width: 92%;
    max-width: 1200px;

    min-height: 570px;

    margin: auto;

    padding: 80px 0;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: center;
}


/* =====================================================
   HERO LEFT CONTENT
===================================================== */

.baddi-hero-content {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 680px;
}

.baddi-eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.baddi-eyebrow span {
    width: 30px;
    height: 2px;

    background: #3d86ed;

    flex-shrink: 0;
}

.baddi-location-tag {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    margin-bottom: 20px;

    border-radius: 30px;

    color: #a9c8e8;

    background: rgba(23, 105, 209, 0.18);

    border: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}

.baddi-location-tag i {
    color: #3d86ed;
}

.baddi-hero-content h1 {
    margin-bottom: 24px;

    color: #ffffff;

    font-size: clamp(50px, 5.5vw, 74px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;
}

.baddi-hero-content h1 strong {
    color: #3d86ed;
}

.baddi-hero-content > p {
    max-width: 610px;

    margin-bottom: 30px;

    color: #c6d6e7;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.baddi-hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 28px;
}

.baddi-primary-button,
.baddi-call-button {
    min-height: 48px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 7px;

    font-size: 12px;
    font-weight: 600;

    transition: 0.25s ease;
}

.baddi-primary-button {
    color: #ffffff;

    background: #1769d1;
}

.baddi-primary-button:hover {
    background: #0f5dbd;
    transform: translateY(-2px);
}

.baddi-call-button {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(255, 255, 255, 0.06);
}

.baddi-call-button:hover {
    background: rgba(255, 255, 255, 0.12);
}


/* =====================================================
   TRUST
===================================================== */

.baddi-trust-row {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;
}

.baddi-trust-row div {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #d2deeb;

    font-size: 10px;
}

.baddi-trust-row i {
    color: #3d86ed;
}


/* =====================================================
   HERO RIGHT VISUAL
===================================================== */

.baddi-hero-visual {
    position: relative;

    z-index: 10;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =====================================================
   HERO CARD
===================================================== */

.baddi-visual-card {
    position: relative;

    width: 100%;
    max-width: 420px;
    min-height: 395px;

    padding: 32px;

    overflow: hidden;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);

    isolation: isolate;
}


.baddi-card-background {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

.baddi-card-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 0.55);

    z-index: 1;
}

.baddi-card-content {
    position: relative;

    width: 100%;

    z-index: 2;
}


/* =====================================================
   CARD LABEL
===================================================== */

.baddi-card-label {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: #1769d1;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.baddi-card-label i {
    color: #1769d1;
}


/* =====================================================
   CARD HEADING
===================================================== */

.baddi-visual-card h2 {
    margin-bottom: 15px;

    color: #071b3a;

    font-size: 31px;

    line-height: 1.1;

    letter-spacing: -0.8px;
}

.baddi-visual-card h2 span {
    display: block;

    color: #1769d1;
}


/* =====================================================
   CARD DESCRIPTION
===================================================== */

.baddi-visual-card > .baddi-card-content > p {
    margin-bottom: 22px;

    color: #526b85;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   CARD SERVICES
===================================================== */

.baddi-service-list {
    padding-top: 20px;

    border-top: 1px solid rgba(7, 27, 58, 0.12);
}

.baddi-service-list div {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 11px;

    color: #071b3a;

    font-size: 12px;
    font-weight: 600;
}

.baddi-service-list div:last-child {
    margin-bottom: 0;
}

.baddi-service-list span {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1769d1;

    background: #edf5ff;

    border-radius: 9px;
}


/* =====================================================
   FLOATING LOCATION
===================================================== */

.baddi-floating-location {
    position: absolute;

    right: -20px;
    bottom: -20px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 12px 15px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);

    z-index: 10;
}

.baddi-floating-location > i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #1769d1;

    border-radius: 8px;
}

.baddi-floating-location small {
    display: block;

    margin-bottom: 3px;

    color: #8a9aac;

    font-size: 8px;
}

.baddi-floating-location strong {
    color: #071b3a;

    font-size: 10px;
}


/* =====================================================
   HERO BOTTOM SERVICE BAR
===================================================== */

.baddi-hero-bottom {
    position: relative;

    z-index: 4;

    background: rgba(3, 17, 36, 0.95);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.baddi-hero-container {
    position: relative;

    z-index: 5;

    width: 92%;
    max-width: 1200px;

    min-height: 570px;

    margin: auto;

    padding: 80px 0;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: center;
}

.baddi-hero-bottom-container div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #b5c7da;

    font-size: 10px;
}

.baddi-hero-bottom-container i {
    color: #3d86ed;
}


/* =====================================================
   COMMON SECTIONS
===================================================== */

.baddi-intro,
.baddi-services,
.baddi-why,
.baddi-areas {
    padding: 100px 0;
}


/* =====================================================
   SECTION LABEL
===================================================== */

.baddi-section-label {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 15px;

    color: #1769d1;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.baddi-section-label span {
    width: 28px;
    height: 2px;

    background: #1769d1;
}


/* =====================================================
   SECTION HEADINGS
===================================================== */

.baddi-intro h2,
.baddi-section-heading h2,
.baddi-why-content h2 {
    color: #071b3a;

    font-size: 46px;

    line-height: 1.1;

    letter-spacing: -2px;
}

.baddi-intro h2 strong,
.baddi-section-heading h2 strong,
.baddi-why-content h2 strong {
    color: #1769d1;
}


/* =====================================================
   RELOCATION SERVICES
===================================================== */

.baddi-relocation {
    padding: 100px 0 90px;

    background: #f5f8fc;
}


/* =====================================================
   HEADING
===================================================== */

.baddi-relocation-heading {
    max-width: 1050px;

    margin: 0 auto 55px;

    text-align: center;
}

.baddi-relocation-heading .baddi-section-label {
    justify-content: center;

    margin-bottom: 20px;
}

.baddi-relocation-heading h2 {
    margin-bottom: 18px;

    color: #071b3a;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2.5px;
}

.baddi-relocation-heading h2 strong {
    color: #1769d1;
}

.baddi-relocation-heading p {
    max-width: 850px;

    margin: auto;

    color: #61758c;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   SERVICE GRID
===================================================== */

.baddi-relocation-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* =====================================================
   CARD
===================================================== */

.baddi-relocation-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dce6f0;

    border-radius: 17px;

    box-shadow:
        0 12px 35px rgba(7, 27, 58, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.baddi-relocation-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 45px rgba(7, 27, 58, 0.12);
}


/* =====================================================
   CARD IMAGE
===================================================== */

.baddi-relocation-image {
    width: 100%;

    height: 235px;

    overflow: hidden;

    background: #e8eef5;
}

.baddi-relocation-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.5s ease;
}

.baddi-relocation-card:hover
.baddi-relocation-image img {
    transform: scale(1.05);
}


/* =====================================================
   ROUND ICON
===================================================== */

.baddi-relocation-icon {
    position: relative;

    width: 68px;
    height: 68px;

    margin: -34px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1769d1;

    background: #edf5ff;

    border: 8px solid #ffffff;

    border-radius: 50%;

    box-shadow:
        0 8px 20px rgba(7, 27, 58, 0.10);

    z-index: 3;

    font-size: 22px;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.baddi-relocation-card-content {
    padding: 17px 25px 28px;

    text-align: center;
}

.baddi-relocation-card-content h3 {
    margin-bottom: 5px;

    color: #071b3a;

    font-size: 23px;

    line-height: 1.2;
}

.baddi-relocation-card-content h4 {
    margin-bottom: 13px;

    color: #1769d1;

    font-size: 14px;

    font-weight: 600;
}

.baddi-relocation-card-content p {
    min-height: 62px;

    margin-bottom: 20px;

    color: #657990;

    font-size: 11px;

    line-height: 1.7;
}

.baddi-relocation-card-content a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #1769d1;

    font-size: 12px;

    font-weight: 700;
}

.baddi-relocation-card-content a i {
    transition:
        transform 0.25s ease;
}

.baddi-relocation-card-content a:hover i {
    transform: translateX(5px);
}


/* =====================================================
   BLUE BOTTOM LINE
===================================================== */

.baddi-relocation-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background: #1769d1;
}


/* =====================================================
   FEATURE STRIP
===================================================== */

.baddi-relocation-features {
    margin-top: 42px;

    padding: 25px 30px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: #ffffff;

    border: 1px solid #e2e9f1;

    border-radius: 16px;

    box-shadow:
        0 10px 35px rgba(7, 27, 58, 0.04);
}


/* =====================================================
   FEATURE
===================================================== */

.baddi-relocation-feature {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 5px 25px;

    border-right: 1px solid #dce5ee;
}

.baddi-relocation-feature:last-child {
    border-right: none;
}


/* =====================================================
   FEATURE ICON
===================================================== */

.baddi-feature-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1769d1;

    background: #edf5ff;

    border-radius: 50%;

    font-size: 20px;
}


/* =====================================================
   FEATURE TEXT
===================================================== */

.baddi-relocation-feature h4 {
    margin-bottom: 5px;

    color: #071b3a;

    font-size: 13px;
}

.baddi-relocation-feature p {
    color: #71849a;

    font-size: 10px;

    line-height: 1.5;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .baddi-relocation-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .baddi-relocation-features {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

    .baddi-relocation-feature {
        padding: 10px 15px;
    }

    .baddi-relocation-feature:nth-child(2) {
        border-right: none;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .baddi-relocation {
        padding: 70px 0;
    }

    .baddi-relocation-heading {
        margin-bottom: 38px;
    }

    .baddi-relocation-heading h2 {
        font-size: 34px;

        line-height: 1.1;

        letter-spacing: -1.2px;
    }

    .baddi-relocation-heading p {
        font-size: 12px;

        line-height: 1.7;
    }


    /* CARDS */

    .baddi-relocation-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .baddi-relocation-image {
        height: 220px;
    }

    .baddi-relocation-card-content {
        padding: 16px 25px 30px;
    }

    .baddi-relocation-card-content h3 {
        font-size: 22px;
    }

    .baddi-relocation-card-content p {
        min-height: auto;

        font-size: 12px;
    }


    /* FEATURES */

    .baddi-relocation-features {
        grid-template-columns: 1fr;

        margin-top: 30px;

        padding: 10px 20px;
    }

    .baddi-relocation-feature {
        padding: 16px 0;

        border-right: none;

        border-bottom: 1px solid #dce5ee;
    }

    .baddi-relocation-feature:last-child {
        border-bottom: none;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .baddi-relocation-heading h2 {
        font-size: 30px;
    }

    .baddi-relocation-image {
        height: 200px;
    }

}

/* =====================================================
   OUR SERVICES
===================================================== */

.baddi-services {
    padding: 100px 0;

    background: #f5f8fc;
}


/* =====================================================
   HEADING
===================================================== */

.baddi-services-heading {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}

.baddi-services-heading .baddi-section-label {
    justify-content: center;

    margin-bottom: 20px;
}

.baddi-services-heading h2 {
    margin: 0 0 18px;

    color: #071b3a;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.baddi-services-heading h2 strong {
    color: #1769d1;

    font-weight: 800;
}

.baddi-services-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #667b92;

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   SERVICE GRID
===================================================== */

.baddi-services-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.baddi-service-card {
    position: relative;

    min-height: 360px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border: 1px solid #dce6f0;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(7, 27, 58, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.baddi-service-card:hover {
    transform: translateY(-7px);

    border-color: #b9d4f5;

    box-shadow:
        0 22px 45px rgba(7, 27, 58, 0.11);
}


/* =====================================================
   TOP ROW
===================================================== */

.baddi-service-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;
}


/* NUMBER */

.baddi-service-number {
    color: #b7c9dc;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* TOP ARROW */

.baddi-service-arrow {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #1769d1;

    background: #edf5ff;

    border-radius: 10px;

    font-size: 13px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.baddi-service-card:hover
.baddi-service-arrow {
    color: #ffffff;

    background: #1769d1;
}


/* =====================================================
   SERVICE ICON
===================================================== */

.baddi-service-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #1769d1;

    background: #edf5ff;

    border-radius: 14px;

    font-size: 22px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.baddi-service-card:hover
.baddi-service-icon {
    color: #ffffff;

    background: #1769d1;

    transform: translateY(-3px);
}


/* =====================================================
   TITLE
===================================================== */

.baddi-service-card h3 {
    margin: 0 0 13px;

    color: #071b3a;

    font-size: 22px;

    line-height: 1.2;

    font-weight: 800;
}

.baddi-service-card h3 span {
    color: #1769d1;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.baddi-service-card p {
    max-width: 450px;

    margin: 0;

    color: #667b92;

    font-size: 13px;

    line-height: 1.75;
}


/* =====================================================
   SERVICE LINK
===================================================== */

.baddi-service-link {
    margin-top: auto;

    padding-top: 28px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    width: fit-content;

    color: #1769d1;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;
}

.baddi-service-link i {
    transition:
        transform 0.25s ease;
}

.baddi-service-link:hover i {
    transform: translateX(5px);
}


/* =====================================================
   BOTTOM BLUE ACCENT
===================================================== */

.baddi-service-card::after {
    content: "";

    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 0;

    height: 3px;

    background: #1769d1;

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.35s ease;
}

.baddi-service-card:hover::after {
    transform: scaleX(1);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

    .baddi-services {
        padding: 80px 0;
    }

    .baddi-services-heading {
        margin-bottom: 40px;
    }

    .baddi-services-grid {
        gap: 18px;
    }

    .baddi-service-card {
        min-height: 330px;

        padding: 25px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .baddi-services {
        padding: 70px 0;
    }

    .baddi-services-heading h2 {
        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -1px;
    }

    .baddi-services-heading p {
        font-size: 12px;
    }


    .baddi-services-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .baddi-service-card {
        min-height: 320px;

        padding: 24px;

        border-radius: 16px;
    }


    .baddi-service-top {
        margin-bottom: 20px;
    }


    .baddi-service-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 20px;

        font-size: 20px;
    }


    .baddi-service-card h3 {
        font-size: 21px;
    }


    .baddi-service-card p {
        font-size: 12px;

        line-height: 1.7;
    }

}

/* =====================================================
   WHY BADDI CHOOSES RIC
===================================================== */

.baddi-why {
    position: relative;

    padding: 70px 0 80px;

    background: #f5f8fc;

    overflow: hidden;
}


/* subtle decorative shape */

.baddi-why::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -160px;
    left: -100px;

    background: #e8f1fc;

    border-radius: 50%;
}

.baddi-why::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -120px;
    right: -70px;

    background: #e8f1fc;

    border-radius: 50%;
}


/* =====================================================
   GRID
===================================================== */

.baddi-why-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 70px;

    align-items: center;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.baddi-why-content {
    padding: 10px 0;
}

.baddi-why-content .baddi-section-label {
    justify-content: flex-start;

    margin-bottom: 18px;
}


.baddi-why-content h2 {
    margin: 0 0 20px;

    color: #071b3a;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.baddi-why-content h2 strong {
    color: #1769d1;
}


.baddi-why-content > p {
    max-width: 560px;

    margin-bottom: 30px;

    color: #62778e;

    font-size: 14px;

    line-height: 1.75;
}


/* =====================================================
   BENEFITS
===================================================== */

.baddi-benefits {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.baddi-benefits > div {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 12px 15px;

    background: rgba(255,255,255,0.65);

    border: 1px solid #e2eaf3;

    border-radius: 12px;

    transition: 0.3s ease;
}

.baddi-benefits > div:hover {
    background: #ffffff;

    transform: translateX(5px);

    box-shadow:
        0 8px 25px rgba(7,27,58,0.06);
}


/* CHECK ICON */

.baddi-benefits > div > span {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #1769d1;

    background: #eaf3ff;

    border-radius: 11px;

    font-size: 15px;
}


/* TEXT */

.baddi-benefits h3 {
    margin: 0 0 3px;

    color: #071b3a;

    font-size: 13px;
}

.baddi-benefits p {
    margin: 0;

    color: #70849a;

    font-size: 10px;

    line-height: 1.5;
}


/* =====================================================
   RIGHT VISUAL
===================================================== */

.baddi-why-visual {
    position: relative;

    min-height: 440px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: #e5eff9;

    border-radius: 26px;

    overflow: visible;
}


/* IMAGE */

.baddi-why-visual img {
    width: 100%;

    height: 390px;

    object-fit: cover;

    border-radius: 18px;

    display: block;

    box-shadow:
        0 20px 45px rgba(7,27,58,0.15);
}


/* =====================================================
   BADGE
===================================================== */

.baddi-why-badge {
    position: absolute;

    right: -20px;

    bottom: 22px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: #ffffff;

    border-radius: 13px;

    box-shadow:
        0 15px 35px rgba(7,27,58,0.15);

    z-index: 5;
}

.baddi-why-badge > i {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #1769d1;

    border-radius: 10px;
}

.baddi-why-badge strong {
    display: block;

    margin-bottom: 3px;

    color: #071b3a;

    font-size: 12px;
}

.baddi-why-badge span {
    display: block;

    color: #71849a;

    font-size: 9px;
}


/* =====================================================
   EXTRA INFO
===================================================== */

.baddi-why-content::after {
    content: "CARE • SAFETY • RELIABILITY";

    display: block;

    margin-top: 28px;

    color: #1769d1;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .baddi-why {
        padding: 70px 0;
    }

    .baddi-why-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .baddi-why-content {
        text-align: center;
    }

    .baddi-why-content .baddi-section-label {
        justify-content: center;
    }

    .baddi-why-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .baddi-why-content::after {
        text-align: center;
    }

    .baddi-why-visual {
        max-width: 700px;

        width: 100%;

        margin: auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .baddi-why {
        padding: 60px 0;
    }

    .baddi-why-grid {
        gap: 35px;
    }

    .baddi-why-content h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .baddi-why-content > p {
        font-size: 12px;
    }

    .baddi-benefits > div {
        text-align: left;

        padding: 11px;
    }

    .baddi-why-visual {
        min-height: 330px;

        padding: 15px;

        border-radius: 20px;
    }

    .baddi-why-visual img {
        height: 300px;

        border-radius: 14px;
    }

    .baddi-why-badge {
        right: 5px;

        bottom: 8px;

        padding: 10px 13px;
    }

    .baddi-why-badge > i {
        width: 38px;
        height: 38px;
    }

}

/* =====================================================
   AREAS WE SERVE
===================================================== */

.baddi-areas {
    position: relative;

    padding: 100px 0;

    background: #f5f8fc;

    overflow: hidden;
}


/* =====================================================
   HEADING
===================================================== */

.baddi-areas-heading {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}

.baddi-areas-heading .baddi-section-label {
    justify-content: center;

    margin-bottom: 18px;
}

.baddi-areas-heading h2 {
    margin: 0 0 17px;

    color: #071b3a;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.baddi-areas-heading h2 strong {
    color: #1769d1;
}

.baddi-areas-heading p {
    max-width: 650px;

    margin: auto;

    color: #687d93;

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   MAIN LAYOUT
===================================================== */

.baddi-areas-layout {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 24px;

    max-width: 1150px;

    margin: auto;
}


/* =====================================================
   LEFT DARK PANEL
===================================================== */

.baddi-areas-intro {
    position: relative;

    min-height: 530px;

    padding: 42px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #071b3a;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(7, 27, 58, 0.16);
}


/* decorative circle */

.baddi-areas-intro::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -130px;
    top: -110px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 50%;
}

.baddi-areas-intro::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    top: -60px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}


/* pin */

.baddi-areas-pin {
    position: relative;

    width: 56px;
    height: 56px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #1769d1;

    border-radius: 15px;

    font-size: 21px;

    box-shadow:
        0 10px 25px rgba(23, 105, 209, 0.30);

    z-index: 2;
}


/* small label */

.baddi-areas-small {
    position: relative;

    margin-bottom: 13px;

    color: #66a3f5;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    z-index: 2;
}


/* heading */

.baddi-areas-intro h3 {
    position: relative;

    max-width: 350px;

    margin: 0 0 18px;

    color: #ffffff;

    font-size: 39px;

    line-height: 1.08;

    letter-spacing: -1.5px;

    z-index: 2;
}

.baddi-areas-intro h3 strong {
    color: #3e88ed;
}


/* description */

.baddi-areas-intro p {
    position: relative;

    max-width: 390px;

    margin: 0 0 28px;

    color: #aebed0;

    font-size: 12px;

    line-height: 1.8;

    z-index: 2;
}


/* =====================================================
   COUNT
===================================================== */

.baddi-areas-count {
    position: relative;

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 30px;

    z-index: 2;
}

.baddi-areas-count strong {
    color: #ffffff;

    font-size: 34px;

    line-height: 1;
}

.baddi-areas-count span {
    color: #8fa6bd;

    font-size: 10px;

    line-height: 1.4;
}


/* =====================================================
   BUTTON
===================================================== */

.baddi-areas-button {
    position: relative;

    width: fit-content;

    padding: 13px 19px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #ffffff;

    background: #1769d1;

    border-radius: 9px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;

    z-index: 2;
}

.baddi-areas-button:hover {
    background: #0d5bbd;

    transform: translateY(-2px);
}

.baddi-areas-button i {
    transition: 0.25s ease;
}

.baddi-areas-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   RIGHT SIDE
===================================================== */

.baddi-areas-right {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


/* =====================================================
   LOCATION GRID
===================================================== */

.baddi-location-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}


/* LOCATION ITEM */

.baddi-location-item {
    min-height: 72px;

    padding: 13px 16px;

    display: flex;

    align-items: center;

    gap: 13px;

    background: #ffffff;

    border: 1px solid #dce6f0;

    border-radius: 13px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.baddi-location-item:hover {
    transform: translateY(-3px);

    border-color: #b9d4f5;

    box-shadow:
        0 10px 25px rgba(7, 27, 58, 0.07);
}


/* ACTIVE BADDI */

.baddi-location-item.active {
    border-color: #1769d1;

    background: #f3f8ff;
}


/* ICON */

.baddi-location-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #1769d1;

    background: #edf5ff;

    border-radius: 10px;

    font-size: 14px;
}


/* TEXT */

.baddi-location-item strong {
    display: block;

    margin-bottom: 3px;

    color: #071b3a;

    font-size: 12px;
}

.baddi-location-item span {
    display: block;

    color: #8a9caf;

    font-size: 9px;
}


/* =====================================================
   MAP
===================================================== */

.baddi-areas-map {
    position: relative;

    height: 225px;

    overflow: hidden;

    background: #dfeaf5;

    border: 1px solid #d6e2ee;

    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(7,27,58,0.06);
}

.baddi-areas-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .baddi-areas-layout {
        grid-template-columns: 1fr;
    }

    .baddi-areas-intro {
        min-height: 380px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .baddi-areas {
        padding: 70px 0;
    }

    .baddi-areas-heading {
        margin-bottom: 35px;
    }

    .baddi-areas-heading h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .baddi-areas-heading p {
        font-size: 12px;
    }


    .baddi-areas-layout {
        gap: 18px;
    }


    .baddi-areas-intro {
        min-height: auto;

        padding: 30px;

        border-radius: 18px;
    }


    .baddi-areas-intro h3 {
        font-size: 32px;
    }


    .baddi-areas-intro p {
        font-size: 11px;
    }


    .baddi-location-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .baddi-location-item {
        min-height: 65px;
    }


    .baddi-areas-map {
        height: 240px;
    }

}

/* =====================================================
   CTA
===================================================== */

.baddi-cta {
    padding: 65px 0;

    background: #071b3a;
}

.baddi-cta-content {
    display: grid;

    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 20px;
}

.baddi-cta-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #1769d1;

    border-radius: 13px;
}

.baddi-cta-content span {
    color: #75a8e9;

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;
}

.baddi-cta-content h2 {
    margin: 5px 0;

    color: #ffffff;

    font-size: 29px;
}

.baddi-cta-content p {
    color: #9bb0c6;

    font-size: 10px;
}

.baddi-cta-button {
    padding: 14px 20px;

    color: #ffffff;

    background: #1769d1;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 600;
}


/* =====================================================
   FOOTER
===================================================== */

.baddi-footer {
    padding-top: 65px;

    background: #061a33;

    color: #ffffff;
}

.baddi-footer-grid {
    display: grid;

    grid-template-columns:
        1.3fr
        0.8fr
        0.8fr
        1fr
        1.3fr;

    gap: 30px;

    padding-bottom: 50px;
}

.baddi-footer-brand img {
    width: 170px;

    margin-bottom: 18px;
}

.baddi-footer-brand p {
    max-width: 280px;

    color: #8fa7c0;

    font-size: 10px;

    line-height: 1.8;
}

.baddi-footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.baddi-footer-column h3,
.baddi-footer-map h3 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 14px;
}

.baddi-footer-column a,
.baddi-footer-column span {
    color: #8fa7c0;

    font-size: 10px;
}

.baddi-footer-column a:hover {
    color: #3d86ed;
}

.baddi-footer-column i {
    width: 18px;

    color: #3d86ed;
}

.baddi-footer-map iframe {
    width: 100%;
    height: 160px;

    border: 0;

    border-radius: 10px;
}

.baddi-footer-bottom {
    min-height: 60px;

    padding: 0 4%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: #66819d;

    font-size: 9px;
}

.baddi-footer-bottom div {
    display: flex;

    gap: 20px;
}

.baddi-footer-bottom a {
    color: #66819d;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    /* HEADER */

    .baddi-header {
        height: 68px;
    }

    .baddi-header-container {
        height: 68px;
    }

    .baddi-logo img {
        width: 125px;
    }

    .baddi-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .baddi-nav {
        display: none;

        position: absolute;

        top: 68px;
        left: 5%;

        width: 90%;

        padding: 20px;

        flex-direction: column;

        background: #071b3a;

        border-radius: 10px;
    }

    .baddi-nav.active {
        display: flex;
    }

    .baddi-nav-button {
        width: 100%;

        text-align: center;
    }


    /* HERO */

    .baddi-hero {
        min-height: auto;
    }

    .baddi-hero-container {
        width: 90%;

        min-height: auto;

        padding: 70px 0 60px;

        display: flex;
        flex-direction: column;

        gap: 45px;
    }

    .baddi-hero-content {
        width: 100%;
        max-width: 100%;

        text-align: center;
    }

    .baddi-eyebrow {
        justify-content: center;

        font-size: 7px;
    }

    .baddi-location-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .baddi-hero-content h1 {
        font-size: 46px;

        line-height: 1;

        letter-spacing: -1.7px;
    }

    .baddi-hero-content > p {
        max-width: 500px;

        margin-left: auto;
        margin-right: auto;

        font-size: 12px;
    }

    .baddi-hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .baddi-primary-button,
    .baddi-call-button {
        width: 100%;
    }

    .baddi-trust-row {
        justify-content: center;

        gap: 12px;
    }

    .baddi-trust-row div {
        font-size: 9px;
    }


    /* HERO CARD */

    .baddi-hero-visual {
        width: 100%;

        margin-top: 0;
    }

    .baddi-visual-card {
        width: 100%;
        max-width: 420px;

        min-height: 380px;

        padding: 25px 20px;
    }

    .baddi-visual-card h2 {
        font-size: 29px;
    }

    .baddi-floating-location {
        right: 5px;
        bottom: -15px;
    }


    /* HERO BOTTOM */

    .baddi-hero-bottom-container {
        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    /* COMMON SECTIONS */

    .baddi-intro,
    .baddi-services,
    .baddi-why,
    .baddi-areas {
        padding: 70px 0;
    }


    /* HEADINGS */

    .baddi-intro h2,
    .baddi-section-heading h2,
    .baddi-why-content h2 {
        font-size: 34px;
    }


    /* STATS */

    .baddi-stats {
        grid-template-columns: 1fr 1fr;
    }


    /* SERVICES */

    .baddi-service-grid {
        grid-template-columns: 1fr;
    }


    /* WHY */

    .baddi-why-grid {
        grid-template-columns: 1fr;
    }

    .baddi-section-label.left {
        justify-content: center;
    }

    .baddi-why-content {
        text-align: center;
    }

    .baddi-why-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .baddi-benefits {
        text-align: left;
    }


    /* AREAS */

    .baddi-area-layout {
        grid-template-columns: 1fr;
    }

    .baddi-map iframe {
        height: 280px;
    }


    /* CTA */

    .baddi-cta-content {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .baddi-cta-icon {
        margin: auto;
    }


    /* FOOTER */

    .baddi-footer-grid {
        grid-template-columns: 1fr;
    }

    .baddi-footer-bottom {
        height: auto;

        padding: 20px 5%;

        flex-direction: column;

        gap: 10px;

        text-align: center;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .baddi-hero-content h1 {
        font-size: 40px;
    }

    .baddi-stats {
        grid-template-columns: 1fr;
    }

    .baddi-area-list {
        grid-template-columns: 1fr;
    }

    .baddi-visual-card {
        padding: 23px 18px;
    }

    .baddi-visual-card h2 {
        font-size: 27px;
    }
}

/* =====================================================
   HERO BOTTOM SERVICE BAR
===================================================== */

.baddi-hero-bottom {
    position: relative;
    z-index: 4;

    background: rgba(3, 17, 36, 0.95);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.baddi-hero-bottom-container {
    width: 92%;
    max-width: 1200px;

    min-height: 75px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    align-items: center;

    gap: 30px;
}

.baddi-hero-bottom-container > div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #b5c7da;

    font-size: 10px;

    white-space: nowrap;
}

.baddi-hero-bottom-container > div:nth-child(2) {
    justify-content: center;
}

.baddi-hero-bottom-container > div:nth-child(3) {
    justify-content: flex-end;
}

.baddi-hero-bottom-container i {
    color: #3d86ed;

    flex-shrink: 0;
}

/* =====================================================
   RIC PREMIUM FOOTER
===================================================== */

.ric-footer {

    position: relative;

    width: 100%;

    background: #061a34;

    color: #ffffff;

    overflow: hidden;

}


/* =====================================================
   DECORATIVE CIRCLE
===================================================== */

.ric-footer-circle {

    position: absolute;

    width: 420px;
    height: 420px;

    top: -250px;
    right: -100px;

    border-radius: 50%;

    background: #0a2447;

    pointer-events: none;

}


/* =====================================================
   MAIN FOOTER
===================================================== */

.ric-footer-container {

    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 100px));

    margin: 0 auto;

    padding: 75px 0 60px;

    display: grid;

    grid-template-columns:
        1.45fr
        0.9fr
        1fr
        1.15fr;

    gap: 60px;

    align-items: start;

}


/* =====================================================
   BRAND
===================================================== */

.ric-footer-brand {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


/* =====================================================
   LOGO
===================================================== */

.ric-footer-logo {

    display: inline-block;

    margin-bottom: 30px;

    line-height: 0;

}


.ric-footer-logo img {

    display: block;

    width: 175px;

    height: auto;

}


/* =====================================================
   DESCRIPTION
===================================================== */

.ric-footer-brand p {

    max-width: 320px;

    margin: 0;

    color: #a9bfd6;

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   SOCIAL
===================================================== */

.ric-footer-social {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

}


.ric-footer-social a {

    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #102b4d;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 8px;

    font-size: 14px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;

}


.ric-footer-social a:hover {

    background: #1769d1;

    border-color: #1769d1;

    transform: translateY(-3px);

}


/* =====================================================
   FOOTER COLUMN
===================================================== */

.ric-footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.ric-footer-column h3 {

    margin: 0;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 700;

}


/* =====================================================
   BLUE UNDERLINE
===================================================== */

.ric-footer-line {

    display: block;

    width: 28px;

    height: 2px;

    margin: 12px 0 20px;

    background: #1769d1;

}


/* =====================================================
   LINKS
===================================================== */

.ric-footer-column > a {

    margin-bottom: 13px;

    color: #9bb3cc;

    font-size: 12px;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;

}


.ric-footer-column > a:hover {

    color: #ffffff;

    transform: translateX(4px);

}


/* =====================================================
   CONTACT
===================================================== */

.ric-footer-contact {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 18px;

}


.ric-footer-contact-icon {

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #3185e8;

    background: #102f59;

    border-radius: 9px;

    font-size: 14px;

}


.ric-footer-contact small {

    display: block;

    margin-bottom: 4px;

    color: #718ba7;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1px;

}


.ric-footer-contact a,
.ric-footer-contact span {

    display: block;

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.5;

    text-decoration: none;

}


.ric-footer-contact a:hover {

    color: #3185e8;

}


/* =====================================================
   BOTTOM
===================================================== */

.ric-footer-bottom {

    position: relative;

    z-index: 2;

    border-top: 1px solid rgba(255,255,255,0.08);

}


.ric-footer-bottom-inner {

    width: min(1180px, calc(100% - 100px));

    min-height: 62px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.ric-footer-bottom p {

    margin: 0;

    color: #6684a6;

    font-size: 9px;

}


.ric-footer-bottom a {

    margin-left: 25px;

    color: #6684a6;

    font-size: 9px;

    text-decoration: none;

}


.ric-footer-bottom a:hover {

    color: #ffffff;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .ric-footer-container {

        width: calc(100% - 60px);

        grid-template-columns:
            1.2fr 1fr 1fr;

        gap: 45px;

    }

    .ric-footer-brand {

        grid-column: 1 / -1;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .ric-footer-container {

        width: calc(100% - 40px);

        padding: 55px 0 45px;

        grid-template-columns: 1fr;

        gap: 38px;

    }


    .ric-footer-brand {

        grid-column: auto;

    }


    .ric-footer-logo {

        margin-bottom: 22px;

    }


    .ric-footer-logo img {

        width: 160px;

    }


    .ric-footer-brand p {

        max-width: 100%;

        font-size: 12px;

    }


    .ric-footer-contact-column {

        width: 100%;

    }


    .ric-footer-bottom-inner {

        width: calc(100% - 40px);

        padding: 18px 0;

        flex-direction: column;

        text-align: center;

        gap: 12px;

    }


    .ric-footer-bottom a {

        margin: 0 8px;

    }


    .ric-footer-circle {

        width: 250px;
        height: 250px;

        top: -150px;
        right: -100px;

    }

}

/* =====================================================
   RIC FOOTER - FINAL CLEAN VERSION
===================================================== */

.ric-footer {
    position: relative;
    width: 100%;
    background: #061a34;
    color: #ffffff;
    overflow: hidden;
}


/* DECORATIVE CIRCLE */

.ric-footer-circle {
    position: absolute;

    width: 360px;
    height: 360px;

    top: -230px;
    right: -100px;

    background: #0a2447;

    border-radius: 50%;

    pointer-events: none;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.ric-footer-container {

    position: relative;
    z-index: 2;

    width: min(1100px, calc(100% - 80px));

    margin: 0 auto;

    padding: 48px 0 42px;

    display: grid;

    grid-template-columns:
        1.35fr
        0.9fr
        1fr
        1.15fr;

    column-gap: 45px;

    align-items: start;
}


/* =====================================================
   BRAND
===================================================== */

.ric-footer-brand {

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    margin: 0;
    padding: 0;
}


/* LOGO */

.ric-footer-logo {

    display: flex;

    align-items: flex-start;

    height: 42px;

    margin: 0 0 48px;

    padding: 0;

    text-decoration: none;

    line-height: 0;
}


.ric-footer-logo img {

    display: block;

    width: 160px;
    height: auto;

    margin: 0;
    padding: 0;

    object-fit: contain;
}


/* DESCRIPTION */

.ric-footer-brand p {

    width: 100%;

    max-width: 300px;

    margin: 0;

    padding: 0;

    color: #a8bfd6;

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   SOCIAL ICONS
===================================================== */

.ric-footer-social {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 24px;
}


.ric-footer-social a {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #102d50;

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 8px;

    font-size: 13px;

    text-decoration: none;

    transition: 0.25s ease;
}


.ric-footer-social a:hover {

    background: #1769d1;

    border-color: #1769d1;

    transform: translateY(-2px);
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.ric-footer-column {

    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    margin: 0;
    padding: 0;
}


/* HEADINGS */

.ric-footer-column h3 {

    margin: 0;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 700;
}


/* BLUE LINE */

.ric-footer-line {

    display: block;

    width: 28px;
    height: 2px;

    margin: 12px 0 18px;

    background: #1769d1;
}


/* LINKS */

.ric-footer-column > a {

    display: block;

    margin: 0 0 12px;

    color: #9ab3cd;

    font-size: 11px;

    line-height: 1.5;

    text-decoration: none;

    transition: 0.2s ease;
}


.ric-footer-column > a:hover {

    color: #ffffff;

    transform: translateX(3px);
}


/* =====================================================
   CONTACT
===================================================== */

.ric-footer-contact {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 11px;

    margin: 0 0 15px;

    min-width: 0;
}


.ric-footer-contact-icon {

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #3185e8;

    background: #102f59;

    border-radius: 9px;

    font-size: 13px;
}


.ric-footer-contact > div:last-child {

    min-width: 0;
}


.ric-footer-contact small {

    display: block;

    margin-bottom: 3px;

    color: #718aa5;

    font-size: 7px;

    line-height: 1.3;

    letter-spacing: 1.2px;
}


.ric-footer-contact a,
.ric-footer-contact span {

    display: block;

    max-width: 100%;

    color: #ffffff;

    font-size: 10px;

    line-height: 1.5;

    font-weight: 600;

    text-decoration: none;

    overflow-wrap: anywhere;
}


.ric-footer-contact a:hover {

    color: #3185e8;
}


/* =====================================================
   BOTTOM
===================================================== */

.ric-footer-bottom {

    position: relative;

    z-index: 2;

    border-top: 1px solid rgba(255,255,255,0.08);
}


.ric-footer-bottom-inner {

    width: min(1100px, calc(100% - 80px));

    min-height: 55px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.ric-footer-bottom p {

    margin: 0;

    color: #6684a6;

    font-size: 9px;
}


.ric-footer-bottom-links {

    display: flex;

    gap: 24px;
}


.ric-footer-bottom-links a {

    color: #6684a6;

    font-size: 9px;

    text-decoration: none;
}


.ric-footer-bottom-links a:hover {

    color: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .ric-footer-container {

        width: calc(100% - 60px);

        grid-template-columns:
            1.2fr 1fr 1fr;

        gap: 40px;
    }

    .ric-footer-brand {

        grid-column: 1 / -1;

    }

    .ric-footer-bottom-inner {

        width: calc(100% - 60px);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .ric-footer-container {

        width: calc(100% - 40px);

        padding: 45px 0 40px;

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .ric-footer-brand {

        grid-column: auto;

    }


    .ric-footer-logo {

        height: auto;

        margin-bottom: 22px;
    }


    .ric-footer-logo img {

        width: 155px;

    }


    .ric-footer-brand p {

        max-width: 340px;

        font-size: 12px;

    }


    .ric-footer-bottom-inner {

        width: calc(100% - 40px);

        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        gap: 12px;

        text-align: center;
    }


    .ric-footer-circle {

        width: 250px;
        height: 250px;

        top: -170px;
        right: -100px;
    }

}

.ric-footer-logo {
    position: relative;
    top: -65px;
}

.ric-footer-brand p {
    margin-top: -50px;
}

/* ==========================================================
   BADDI PAGE - FINAL TEXT SIZE / READABILITY FIX
   PASTE AT ABSOLUTE BOTTOM OF CSS
========================================================== */


/* ==========================================================
   HEADER
========================================================== */

.baddi-nav a {
    font-size: 14px !important;
}


/* ==========================================================
   HERO
========================================================== */

.baddi-eyebrow {
    font-size: 12px !important;
}

.baddi-location-tag {
    font-size: 11px !important;
}

.baddi-hero-content > p {
    font-size: 16px !important;
    line-height: 1.75 !important;
}

.baddi-primary-button,
.baddi-call-button {
    font-size: 13px !important;
}

.baddi-trust-row div {
    font-size: 12px !important;
}


/* ==========================================================
   HERO RIGHT CARD
========================================================== */

.baddi-card-label {
    font-size: 11px !important;
}

.baddi-visual-card > .baddi-card-content > p {
    font-size: 14px !important;
    line-height: 1.7 !important;
}

.baddi-service-list div {
    font-size: 13px !important;
}

.baddi-floating-location small {
    font-size: 10px !important;
}

.baddi-floating-location strong {
    font-size: 12px !important;
}


/* ==========================================================
   HERO BOTTOM BAR
========================================================== */

.baddi-hero-bottom-container > div,
.baddi-hero-bottom-container div {
    font-size: 12px !important;
}


/* ==========================================================
   SECTION LABELS
========================================================== */

.baddi-section-label {
    font-size: 12px !important;
}


/* ==========================================================
   RELOCATION SERVICES
========================================================== */

.baddi-relocation-heading p {
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.baddi-relocation-card-content h4 {
    font-size: 15px !important;
}

.baddi-relocation-card-content p {
    font-size: 14px !important;
    line-height: 1.7 !important;
}

.baddi-relocation-card-content a {
    font-size: 13px !important;
}


/* FEATURE STRIP */

.baddi-relocation-feature h4 {
    font-size: 15px !important;
}

.baddi-relocation-feature p {
    font-size: 12px !important;
    line-height: 1.6 !important;
}


/* ==========================================================
   OUR SERVICES
========================================================== */

.baddi-services-heading p {
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.baddi-service-number {
    font-size: 13px !important;
}

.baddi-service-card h3 {
    font-size: 23px !important;
}

.baddi-service-card p {
    font-size: 14px !important;
    line-height: 1.7 !important;
}

.baddi-service-link {
    font-size: 13px !important;
}


/* ==========================================================
   WHY CHOOSE RIC
========================================================== */

.baddi-why-content > p {
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.baddi-benefits h3 {
    font-size: 15px !important;
}

.baddi-benefits p {
    font-size: 12px !important;
    line-height: 1.6 !important;
}

.baddi-why-badge strong {
    font-size: 14px !important;
}

.baddi-why-badge span {
    font-size: 11px !important;
}

.baddi-why-content::after {
    font-size: 11px !important;
}


/* ==========================================================
   AREAS WE SERVE
========================================================== */

.baddi-areas-heading p {
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.baddi-areas-small {
    font-size: 11px !important;
}

.baddi-areas-intro p {
    font-size: 14px !important;
    line-height: 1.75 !important;
}

.baddi-areas-count span {
    font-size: 12px !important;
}

.baddi-areas-button {
    font-size: 13px !important;
}


/* LOCATION CARDS */

.baddi-location-item strong {
    font-size: 14px !important;
}

.baddi-location-item span {
    font-size: 11px !important;
}


/* ==========================================================
   CTA
========================================================== */

.baddi-cta-content span {
    font-size: 11px !important;
}

.baddi-cta-content h2 {
    font-size: 32px !important;
}

.baddi-cta-content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.baddi-cta-button {
    font-size: 13px !important;
}


/* ==========================================================
   OLD BADDI FOOTER
========================================================== */

.baddi-footer-brand p {
    font-size: 13px !important;
    line-height: 1.7 !important;
}

.baddi-footer-column h3,
.baddi-footer-map h3 {
    font-size: 17px !important;
}

.baddi-footer-column a,
.baddi-footer-column span {
    font-size: 13px !important;
}

.baddi-footer-bottom {
    font-size: 11px !important;
}


/* ==========================================================
   PREMIUM RIC FOOTER
   Your CSS also contains ric-footer classes
========================================================== */

.ric-footer-column h3 {
    font-size: 17px !important;
}

.ric-footer-column > a {
    font-size: 13px !important;
}

.ric-footer-contact small {
    font-size: 10px !important;
}

.ric-footer-contact a,
.ric-footer-contact span {
    font-size: 13px !important;
}

.ric-footer-brand p {
    font-size: 13px !important;
    line-height: 1.7 !important;
}

.ric-footer-bottom,
.ric-footer-bottom a,
.ric-footer-bottom p {
    font-size: 11px !important;
}


/* ==========================================================
   MOBILE READABILITY
========================================================== */

@media (max-width: 700px) {

    /* HEADER */

    .baddi-nav a {
        font-size: 14px !important;
    }


    /* HERO */

    .baddi-eyebrow {
        font-size: 9px !important;
    }

    .baddi-location-tag {
        font-size: 10px !important;
    }

    .baddi-hero-content > p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .baddi-primary-button,
    .baddi-call-button {
        font-size: 13px !important;
    }

    .baddi-trust-row div {
        font-size: 11px !important;
    }


    /* HERO CARD */

    .baddi-card-label {
        font-size: 10px !important;
    }

    .baddi-visual-card > .baddi-card-content > p {
        font-size: 13px !important;
    }

    .baddi-service-list div {
        font-size: 12px !important;
    }

    .baddi-floating-location small {
        font-size: 9px !important;
    }

    .baddi-floating-location strong {
        font-size: 11px !important;
    }


    /* BOTTOM BAR */

    .baddi-hero-bottom-container > div,
    .baddi-hero-bottom-container div {
        font-size: 11px !important;
    }


    /* LABELS */

    .baddi-section-label {
        font-size: 10px !important;
    }


    /* RELOCATION */

    .baddi-relocation-heading p {
        font-size: 14px !important;
    }

    .baddi-relocation-card-content h4 {
        font-size: 14px !important;
    }

    .baddi-relocation-card-content p {
        font-size: 13px !important;
    }

    .baddi-relocation-card-content a {
        font-size: 13px !important;
    }

    .baddi-relocation-feature h4 {
        font-size: 14px !important;
    }

    .baddi-relocation-feature p {
        font-size: 12px !important;
    }


    /* SERVICES */

    .baddi-services-heading p {
        font-size: 14px !important;
    }

    .baddi-service-card p {
        font-size: 13px !important;
    }

    .baddi-service-link {
        font-size: 13px !important;
    }


    /* WHY */

    .baddi-why-content > p {
        font-size: 14px !important;
    }

    .baddi-benefits h3 {
        font-size: 14px !important;
    }

    .baddi-benefits p {
        font-size: 12px !important;
    }

    .baddi-why-badge strong {
        font-size: 13px !important;
    }

    .baddi-why-badge span {
        font-size: 10px !important;
    }


    /* AREAS */

    .baddi-areas-heading p {
        font-size: 14px !important;
    }

    .baddi-areas-small {
        font-size: 10px !important;
    }

    .baddi-areas-intro p {
        font-size: 13px !important;
    }

    .baddi-areas-count span {
        font-size: 11px !important;
    }

    .baddi-location-item strong {
        font-size: 14px !important;
    }

    .baddi-location-item span {
        font-size: 11px !important;
    }

    .baddi-areas-button {
        font-size: 13px !important;
    }


    /* CTA */

    .baddi-cta-content span {
        font-size: 10px !important;
    }

    .baddi-cta-content p {
        font-size: 13px !important;
    }

    .baddi-cta-button {
        font-size: 13px !important;
    }


    /* FOOTER */

    .baddi-footer-brand p,
    .ric-footer-brand p {
        font-size: 13px !important;
    }

    .baddi-footer-column h3,
    .baddi-footer-map h3,
    .ric-footer-column h3 {
        font-size: 17px !important;
    }

    .baddi-footer-column a,
    .baddi-footer-column span,
    .ric-footer-column > a,
    .ric-footer-contact a,
    .ric-footer-contact span {
        font-size: 13px !important;
    }

}