/* =========================
   STAR HOME NAVBAR
========================= */

.star-navbar {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    z-index: 999;
}

/* BRAND */

.star-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    color: #111111;
}

.star-logo {
    width: 44px;
    height: 44px;
    background: #df1119;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    box-shadow: 0 5px 15px rgba(223,17,25,0.20);
}

.star-brand-text {
    line-height: 1.1;
}

.star-brand-text span {
    color: #df1119;
    display: block;
    font-size: 13px;
    margin-top: 4px;
}


/* =========================
   MENU
========================= */

.star-navbar .navbar-nav {
    gap: 4px;
}

.star-navbar .nav-link {
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 14px !important;
    border-radius: 7px;
    transition: all 0.3s ease;
}

.star-navbar .nav-link:hover,
.star-navbar .nav-link.active {
    color: #df1119;
    background: #fff1f1;
}


/* =========================
   DROPDOWN
========================= */

.star-navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 9px;
    margin-top: 12px;
    min-width: 230px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.star-navbar .dropdown-item {
    color: #111111;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 13px;
    border-radius: 7px;
    transition: all 0.3s ease;
}

.star-navbar .dropdown-item:hover {
    color: #df1119;
    background: #fff1f1;
}

.star-navbar .dropdown-item i {
    color: #df1119;
}


/* =========================
   QUOTE BUTTON
========================= */

.star-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #df1119;
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.star-quote-btn:hover {
    background: #111111;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}


/* =========================
   MOBILE
========================= */

.star-navbar .navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.star-navbar .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {

    .star-navbar .navbar-collapse {
        background: #ffffff;
        margin-top: 12px;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .star-navbar .nav-link {
        padding: 10px 12px !important;
    }

    .star-navbar .dropdown-menu {
        margin-top: 3px;
        box-shadow: none;
        border: 1px solid #eeeeee;
    }

    .star-quote-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {

    .star-navbar .navbar-brand {
        font-size: 17px;
    }

    .star-logo {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .star-brand-text span {
        font-size: 11px;
    }
}
.star-breadcrumb {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(17,17,17,0.96),
            rgba(17,17,17,0.82),
            rgba(17,17,17,0.65)
        ),
        url('images/about-banner.jpg') center / cover no-repeat;
}

/* Red Decorative Shape */
.star-breadcrumb::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #df1119;
    opacity: 0.12;
    right: -100px;
    top: -150px;
}

/* Red Bottom Line */
.star-breadcrumb::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #df1119;
}

/* Container */
.star-breadcrumb-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 55px 15px;
    position: relative;
    z-index: 2;
}

/* Content */
.star-breadcrumb-content {
    text-align: center;
}

/* Small Label */
.star-breadcrumb-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    background: rgba(223,17,25,0.15);
    border: 1px solid rgba(223,17,25,0.45);
    padding: 7px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.star-breadcrumb-label i {
    color: #df1119;
}

/* Heading */
.star-breadcrumb-content h1 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 13px;
    letter-spacing: -0.5px;
}

.star-breadcrumb-content h1 span {
    color: #df1119;
}

/* Breadcrumb */
.star-breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.star-breadcrumb-nav li {
    color: #cccccc;
    font-size: 13px;
    font-weight: 500;
}

.star-breadcrumb-nav li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.star-breadcrumb-nav li a:hover {
    color: #df1119;
}

.star-breadcrumb-nav .separator {
    color: #df1119;
    font-size: 12px;
}

.star-breadcrumb-nav .current {
    color: #df1119;
    font-weight: 700;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 767px) {

    .star-breadcrumb {
        min-height: 220px;
    }

    .star-breadcrumb-container {
        padding: 45px 15px;
    }

    .star-breadcrumb-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 480px) {

    .star-breadcrumb {
        min-height: 200px;
    }

    .star-breadcrumb-content h1 {
        font-size: 29px;
    }

    .star-breadcrumb-label {
        font-size: 11px;
    }

    .star-breadcrumb-nav li {
        font-size: 12px;
    }
}
/* HERO */
.star-hero {
    position: relative;
    min-height: 650px;
    background:
        linear-gradient(90deg, #111111 0%, #111111 48%, rgba(17,17,17,0.82) 70%, rgba(17,17,17,0.45) 100%),
        url('images/moving-truck.jpg') center right / cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Decorative Shapes */
.star-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    background: #df1119;
    opacity: 0.10;
    border-radius: 50%;
    right: -140px;
    top: -130px;
}

.star-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(223,17,25,0.30);
    border-radius: 50%;
    right: 35%;
    bottom: -160px;
}

/* Container */
.star-hero-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 70px 15px;
    position: relative;
    z-index: 2;
}

/* Row */
.star-hero-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

/* LEFT CONTENT */
.star-hero-content {
    max-width: 680px;
}

/* Small Badge */
.star-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(223,17,25,0.12);
    border: 1px solid rgba(223,17,25,0.40);
    color: #ffffff;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.star-hero-badge i {
    color: #df1119;
}

/* Heading */
.star-hero-content h1 {
    color: #ffffff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.06;
    font-weight: 800;
    margin: 0 0 22px;
    letter-spacing: -1.5px;
}

.star-hero-content h1 span {
    color: #df1119;
}

/* Paragraph */
.star-hero-content p {
    color: #d4d4d4;
    font-size: 17px;
    line-height: 1.8;
    max-width: 610px;
    margin-bottom: 28px;
}

/* Buttons */
.star-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.star-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #df1119;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.star-primary-btn:hover {
    background: #ffffff;
    color: #df1119;
    transform: translateY(-3px);
}

.star-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #555555;
    padding: 13px 23px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.star-outline-btn:hover {
    border-color: #df1119;
    background: #df1119;
}

/* Trust Points */
.star-trust-points {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.star-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #eeeeee;
    font-size: 13px;
    font-weight: 600;
}

.star-trust-item i {
    color: #df1119;
    font-size: 18px;
}


/* =================================
   FORM CARD
================================= */

.star-quote-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.30);
    position: relative;
    max-width: 450px;
    margin-left: auto;
}

/* Red Top */
.star-quote-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: #df1119;
    border-radius: 18px 18px 0 0;
}

.star-form-title {
    font-size: 25px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 6px;
}

.star-form-subtitle {
    color: #777777;
    font-size: 13px;
    margin-bottom: 23px;
}

/* Form Group */
.star-form-group {
    margin-bottom: 14px;
}

.star-form-group label {
    display: block;
    color: #333333;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.star-form-control {
    width: 100%;
    height: 46px;
    border: 1px solid #dddddd;
    border-radius: 7px;
    padding: 0 13px;
    font-size: 13px;
    color: #222222;
    outline: none;
    transition: 0.3s ease;
    background: #fafafa;
}

.star-form-control:focus {
    border-color: #df1119;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(223,17,25,0.08);
}

textarea.star-form-control {
    height: 75px;
    padding-top: 12px;
    resize: none;
}

/* Two Columns */
.star-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Submit */
.star-submit-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 7px;
    background: #df1119;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 5px;
}

.star-submit-btn:hover {
    background: #111111;
    transform: translateY(-2px);
}

/* Secure Text */
.star-secure-text {
    text-align: center;
    color: #888888;
    font-size: 11px;
    margin-top: 12px;
}

.star-secure-text i {
    color: #df1119;
}


/* =================================
   FLOATING STAT
================================= */

.star-floating-stat {
    position: absolute;
    left: -45px;
    bottom: 35px;
    background: #ffffff;
    padding: 13px 18px;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.20);
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #fff0f0;
    color: #df1119;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-stat-text strong {
    display: block;
    color: #111111;
    font-size: 15px;
}

.star-stat-text span {
    color: #777777;
    font-size: 11px;
}


/* =================================
   RESPONSIVE
================================= */

@media (max-width: 1100px) {

    .star-hero-row {
        gap: 40px;
    }

    .star-hero-content h1 {
        font-size: 48px;
    }

    .star-floating-stat {
        display: none;
    }
}

@media (max-width: 991px) {

    .star-hero {
        min-height: auto;
        background:
            linear-gradient(rgba(17,17,17,0.90), rgba(17,17,17,0.94)),
            url('images/moving-truck.jpg') center / cover no-repeat;
    }

    .star-hero-row {
        grid-template-columns: 1fr;
    }

    .star-hero-content {
        max-width: 750px;
    }

    .star-quote-card {
        margin: 10px auto 0;
        width: 100%;
    }
}

@media (max-width: 575px) {

    .star-hero-container {
        padding: 55px 15px;
    }

    .star-hero-content h1 {
        font-size: 39px;
        letter-spacing: -0.8px;
    }

    .star-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .star-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .star-primary-btn,
    .star-outline-btn {
        justify-content: center;
    }

    .star-trust-points {
        gap: 15px;
    }

    .star-quote-card {
        padding: 22px;
        border-radius: 14px;
    }

    .star-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}.star-about {
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.star-about-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}

.star-about-row {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 75px;
    align-items: center;
}


/* =================================
   IMAGE AREA
================================= */

.star-about-image-area {
    position: relative;
    padding: 20px 30px 30px 20px;
}

.star-about-image {
    position: relative;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(17,17,17,0.15),
            rgba(17,17,17,0.35)
        ),
        url('../img/ChatGPT Image Aug 19, 2026, 04_36_15 AM.png') center / cover no-repeat;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Red Border */
.star-about-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #df1119;
    border-radius: 18px;
    left: 18px;
    top: 18px;
    z-index: -1;
}


/* Experience Card */

.star-experience-card {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #111111;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    min-width: 190px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.star-experience-card strong {
    display: block;
    color: #df1119;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.star-experience-card span {
    font-size: 12px;
    color: #dddddd;
}


/* =================================
   CONTENT
================================= */

.star-about-content {
    max-width: 650px;
}

.star-about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #df1119;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.star-about-label::before {
    content: "";
    width: 32px;
    height: 3px;
    background: #df1119;
    border-radius: 5px;
}


.star-about-content h2 {
    color: #111111;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 20px;
}

.star-about-content h2 span {
    color: #df1119;
}

.star-about-content > p {
    color: #666666;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 18px;
}


/* =================================
   FEATURES
================================= */

.star-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 28px 0;
}

.star-about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid #eeeeee;
    border-radius: 9px;
    transition: 0.3s ease;
}

.star-about-feature:hover {
    border-color: #df1119;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.star-about-feature-icon {
    width: 39px;
    height: 39px;
    min-width: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f0;
    color: #df1119;
    border-radius: 8px;
    font-size: 17px;
}

.star-about-feature strong {
    display: block;
    color: #111111;
    font-size: 13px;
    margin-bottom: 3px;
}

.star-about-feature span {
    color: #777777;
    font-size: 11px;
}


/* =================================
   BOTTOM CTA
================================= */

.star-about-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
}

.star-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #df1119;
    color: #ffffff;
    padding: 13px 22px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.star-about-btn:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-2px);
}


/* Phone */

.star-about-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-about-phone-icon {
    width: 40px;
    height: 40px;
    background: #111111;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-about-phone small {
    display: block;
    color: #888888;
    font-size: 10px;
}

.star-about-phone strong {
    display: block;
    color: #111111;
    font-size: 14px;
}


/* =================================
   RESPONSIVE
================================= */

@media (max-width: 991px) {

    .star-about {
        padding: 70px 0;
    }

    .star-about-row {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .star-about-content {
        max-width: 800px;
    }

    .star-about-content h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {

    .star-about {
        padding: 55px 0;
    }

    .star-about-image-area {
        padding: 12px 18px 25px 8px;
    }

    .star-about-image {
        height: 390px;
    }

    .star-about-content h2 {
        font-size: 31px;
    }

    .star-about-content > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .star-about-features {
        grid-template-columns: 1fr;
    }

    .star-about-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .star-experience-card {
        padding: 16px 20px;
    }

    .star-experience-card strong {
        font-size: 28px;
    }
}.star-why {
    padding: 90px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.star-why-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}


/* =================================
   SECTION HEADER
================================= */

.star-why-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.star-why-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #df1119;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.star-why-label::before,
.star-why-label::after {
    content: "";
    width: 28px;
    height: 2px;
    background: #df1119;
}

.star-why-header h2 {
    color: #111111;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 15px;
}

.star-why-header h2 span {
    color: #df1119;
}

.star-why-header p {
    color: #777777;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* =================================
   MAIN GRID
================================= */

.star-why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 55px;
    align-items: center;
}


/* =================================
   LEFT IMAGE
================================= */

.star-why-image-box {
    position: relative;
    min-height: 300px;
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(17,17,17,0.20),
            rgba(17,17,17,0.45)
        ),
        url('../img/ChatGPT Image Aug 19, 2026, 04_38_51 AM.png') center / cover no-repeat;
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

.star-why-image-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,0.75)
    );
}


/* =================================
   IMAGE CARD
================================= */

.star-why-image-card {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border-radius: 12px;
    background: rgba(17,17,17,0.92);
    backdrop-filter: blur(8px);
}

.star-why-image-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #df1119;
    color: #ffffff;
    border-radius: 9px;
    font-size: 19px;
}

.star-why-image-card strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 3px;
}

.star-why-image-card span {
    color: #cccccc;
    font-size: 11px;
}


/* =================================
   RIGHT CONTENT
================================= */

.star-why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}


/* =================================
   FEATURE CARD
================================= */

.star-why-card {
    position: relative;
    background: #ffffff;
    padding: 25px 22px;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    transition: all 0.35s ease;
    overflow: hidden;
}

.star-why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #df1119;
    transition: 0.35s ease;
}

.star-why-card:hover {
    transform: translateY(-6px);
    border-color: #df1119;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.star-why-card:hover::before {
    height: 100%;
}


/* Icon */

.star-why-icon {
    width: 50px;
    height: 50px;
    background: #fff0f0;
    color: #df1119;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 21px;
    margin-bottom: 17px;
    transition: 0.3s ease;
}

.star-why-card:hover .star-why-icon {
    background: #df1119;
    color: #ffffff;
}


/* Text */

.star-why-card h3 {
    color: #111111;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 8px;
}

.star-why-card p {
    color: #777777;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}


/* =================================
   BOTTOM STATS
================================= */

.star-why-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 4px;
}

.star-why-stat {
    text-align: center;
    padding: 20px 15px;
    border-right: 1px solid #333333;
}

.star-why-stat:last-child {
    border-right: none;
}

.star-why-stat strong {
    display: block;
    color: #df1119;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 4px;
}

.star-why-stat span {
    color: #dddddd;
    font-size: 11px;
}


/* =================================
   RESPONSIVE
================================= */

@media (max-width: 1100px) {

    .star-why-grid {
        grid-template-columns: 1fr;
    }

    .star-why-image-box {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 767px) {

    .star-why {
        padding: 65px 0;
    }

    .star-why-header h2 {
        font-size: 35px;
    }

    .star-why-content {
        grid-template-columns: 1fr;
    }

    .star-why-stats {
        grid-template-columns: 1fr;
    }

    .star-why-stat {
        border-right: none;
        border-bottom: 1px solid #333333;
    }

    .star-why-stat:last-child {
        border-bottom: none;
    }
}

@media (max-width: 575px) {

    .star-why {
        padding: 55px 0;
    }

    .star-why-header {
        margin-bottom: 35px;
    }

    .star-why-header h2 {
        font-size: 30px;
    }

    .star-why-header p {
        font-size: 13px;
    }

    .star-why-image-box {
        min-height: 390px;
    }

    .star-why-image-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}








.star-process {
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.star-process-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}


/* =================================
   HEADER
================================= */

.star-process-header {
    max-width: 720px;
    text-align: center;
    margin: 0 auto 60px;
}

.star-process-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #df1119;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.star-process-label::before,
.star-process-label::after {
    content: "";
    width: 28px;
    height: 2px;
    background: #df1119;
}

.star-process-header h2 {
    color: #111111;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 15px;
}

.star-process-header h2 span {
    color: #df1119;
}

.star-process-header p {
    color: #777777;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* =================================
   PROCESS WRAPPER
================================= */

.star-process-wrapper {
    position: relative;
}


/* Connecting Line */

.star-process-line {
    position: absolute;
    top: 54px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #e6e6e6;
    z-index: 1;
}

.star-process-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: #df1119;
    transform: scaleX(0.72);
    transform-origin: left;
}


/* =================================
   PROCESS GRID
================================= */

.star-process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* =================================
   PROCESS CARD
================================= */

.star-process-card {
    text-align: center;
    background: #ffffff;
    padding: 0 15px 25px;
}


/* Number Circle */

.star-process-number {
    width: 72px;
    height: 72px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    border: 6px solid #ffffff;
    box-shadow: 0 0 0 2px #df1119;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    position: relative;
    transition: all 0.35s ease;
}

.star-process-card:hover .star-process-number {
    background: #df1119;
    transform: translateY(-5px);
    box-shadow: 0 0 0 2px #df1119,
                0 10px 25px rgba(223,17,25,0.25);
}


/* Icon */

.star-process-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f0;
    color: #df1119;
    border-radius: 12px;
    font-size: 22px;
    transition: 0.3s ease;
}

.star-process-card:hover .star-process-icon {
    background: #df1119;
    color: #ffffff;
}


/* Content */

.star-process-card h3 {
    color: #111111;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
}

.star-process-card p {
    color: #777777;
    font-size: 13px;
    line-height: 1.75;
    margin: 0;
}


/* =================================
   BOTTOM NOTE
================================= */

.star-process-note {
    max-width: 700px;
    margin: 45px auto 0;
    padding: 15px 20px;
    background: #111111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #dddddd;
    font-size: 13px;
    text-align: center;
}

.star-process-note i {
    color: #df1119;
    font-size: 17px;
}


/* =================================
   RESPONSIVE
================================= */

@media (max-width: 991px) {

    .star-process {
        padding: 70px 0;
    }

    .star-process-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 45px;
    }

    .star-process-line {
        display: none;
    }
}

@media (max-width: 575px) {

    .star-process {
        padding: 55px 0;
    }

    .star-process-header {
        margin-bottom: 40px;
    }

    .star-process-header h2 {
        font-size: 31px;
    }

    .star-process-header p {
        font-size: 13px;
    }

    .star-process-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .star-process-card {
        padding: 0 20px 10px;
    }

    .star-process-number {
        width: 65px;
        height: 65px;
    }

    .star-process-note {
        margin-top: 30px;
        font-size: 12px;
    }
}.star-mv {
    padding: 90px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.star-mv-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}


/* =================================
   HEADER
================================= */

.star-mv-header {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.star-mv-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #df1119;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.star-mv-label::before,
.star-mv-label::after {
    content: "";
    width: 28px;
    height: 2px;
    background: #df1119;
}

.star-mv-header h2 {
    color: #111111;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 15px;
}

.star-mv-header h2 span {
    color: #df1119;
}

.star-mv-header p {
    color: #777777;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* =================================
   CARDS GRID
================================= */

.star-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}


/* =================================
   CARD
================================= */

.star-mv-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 38px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    transition: all 0.35s ease;
}

.star-mv-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.10);
}


/* Red Corner */

.star-mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #df1119;
}


/* Decorative Circle */

.star-mv-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #df1119;
    opacity: 0.045;
    right: -70px;
    bottom: -70px;
}


/* =================================
   ICON
================================= */

.star-mv-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f0;
    color: #df1119;
    border-radius: 13px;
    font-size: 27px;
    margin-bottom: 22px;
    transition: 0.3s ease;
}

.star-mv-card:hover .star-mv-icon {
    background: #df1119;
    color: #ffffff;
}


/* =================================
   CONTENT
================================= */

.star-mv-card h3 {
    color: #111111;
    font-size: 25px;
    font-weight: 800;
    margin: 0 0 13px;
}

.star-mv-card h3 span {
    color: #df1119;
}

.star-mv-card p {
    color: #707070;
    font-size: 14px;
    line-height: 1.85;
    margin: 0;
}


/* =================================
   POINTS
================================= */

.star-mv-points {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.star-mv-point {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #333333;
    font-size: 12px;
    font-weight: 600;
}

.star-mv-point i {
    color: #df1119;
    font-size: 15px;
}


/* =================================
   BOTTOM STRIP
================================= */

.star-mv-strip {
    margin-top: 25px;
    background: #111111;
    border-radius: 13px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.star-mv-strip i {
    color: #df1119;
    font-size: 20px;
}

.star-mv-strip span {
    color: #dddddd;
    font-size: 13px;
    line-height: 1.6;
}

.star-mv-strip strong {
    color: #ffffff;
}


/* =================================
   RESPONSIVE
================================= */

@media (max-width: 767px) {

    .star-mv {
        padding: 65px 0;
    }

    .star-mv-header {
        margin-bottom: 38px;
    }

    .star-mv-header h2 {
        font-size: 34px;
    }

    .star-mv-grid {
        grid-template-columns: 1fr;
    }

    .star-mv-card {
        padding: 28px;
    }
}

@media (max-width: 575px) {

    .star-mv {
        padding: 55px 0;
    }

    .star-mv-header h2 {
        font-size: 30px;
    }

    .star-mv-header p {
        font-size: 13px;
    }

    .star-mv-card h3 {
        font-size: 22px;
    }

    .star-mv-card p {
        font-size: 13px;
    }

    .star-mv-strip {
        padding: 17px;
        align-items: flex-start;
    }
}
.star-service-detail {
    padding: 80px 0;
    background: #f8f8f8;
}

.star-service-detail .container {
    max-width: 1200px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.star-service-content {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    padding: 40px;
}

.star-service-content .service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #df1119;
    background: #fff1f1;
    padding: 8px 13px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 18px;
}

.star-service-content h2 {
    color: #111111;
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 18px;
    line-height: 1.2;
}

.star-service-content h2 span {
    color: #df1119;
}

.star-service-content .intro {
    color: #666666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.star-service-content h3 {
    color: #111111;
    font-size: 21px;
    font-weight: 800;
    margin: 30px 0 12px;
}

.star-service-content p {
    color: #777777;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 15px;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.service-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.service-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    color: #333333;
    font-size: 12px;
    font-weight: 600;
}

.service-highlight i {
    color: #df1119;
    font-size: 17px;
}


/* =========================================
   PROCESS
========================================= */

.service-process {
    margin-top: 25px;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.service-process-box {
    padding: 18px 12px;
    text-align: center;
    background: #fff7f7;
    border-radius: 9px;
}

.service-process-box .number {
    width: 34px;
    height: 34px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #df1119;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.service-process-box h4 {
    color: #111111;
    font-size: 12px;
    margin: 0;
    font-weight: 700;
}


/* =========================================
   RIGHT SERVICE MENU
========================================= */

.star-service-sidebar {
    position: sticky;
    top: 25px;
}

.service-menu {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.service-menu-header {
    background: #111111;
    padding: 20px 22px;
}

.service-menu-header h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    margin: 0;
}

.service-menu-header p {
    color: #999999;
    font-size: 11px;
    margin: 6px 0 0;
}

.service-menu-list {
    padding: 10px;
}

.service-menu-list li {
    list-style: none;
    margin: 3px 0;
}

.service-menu-list a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    color: #555555;
    text-decoration: none;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    transition: .3s ease;
}

.service-menu-list a i {
    color: #df1119;
    font-size: 16px;
}

.service-menu-list a:hover,
.service-menu-list a.active {
    background: #df1119;
    color: #ffffff;
}

.service-menu-list a:hover i,
.service-menu-list a.active i {
    color: #ffffff;
}


/* =========================================
   SIDEBAR CTA
========================================= */

.service-sidebar-cta {
    margin-top: 18px;
    background: #111111;
    border-radius: 13px;
    padding: 23px;
    text-align: center;
}

.service-sidebar-cta .cta-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #df1119;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-sidebar-cta h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 7px;
}

.service-sidebar-cta p {
    color: #999999;
    font-size: 11px;
    line-height: 1.6;
    margin: 0 0 15px;
}

.service-sidebar-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 11px;
    background: #df1119;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    transition: .3s ease;
}

.service-sidebar-cta a:hover {
    background: #ffffff;
    color: #111111;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .star-service-sidebar {
        position: static;
        margin-top: 30px;
    }

    .star-service-content {
        padding: 30px;
    }
}

@media (max-width: 575px) {

    .star-service-detail {
        padding: 55px 0;
    }

    .star-service-content {
        padding: 23px;
    }

    .star-service-content h2 {
        font-size: 29px;
    }

    .star-service-content .intro {
        font-size: 13px;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .service-process-grid {
        grid-template-columns: 1fr;
    }
}

