:root {
    --primary-color: #161633;
    --secondary-color: #fc7600;
    --accent-color: #00aaff;
    --text-color: #333333;
    --light-text: #ffffff;
    --background-light: #f5f5f5;
    --background-dark: #1a1a1a;
    --spacing-unit: 1rem;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

html {
    scroll-behavior: smooth;
    /* scroll-padding-top: 80px; */
}

/* --- Navigation --- */
.lp-navbar {
    background: transparent !important;
    color: #fff;
    z-index: 1000;
    box-shadow: none;
    height: 60px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-navbar.sticky-top {
    position: fixed !important;
    background: var(--primary-color) !important;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.15);
    height: 55px;
}

.lp-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2vw;
}

.lp-navbar-logo {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: #fff;
    transition: all 0.5s ease;
}

.lp-navbar.sticky-top .lp-navbar-logo {
    font-size: 1.2rem;
}

.lp-navbar-logo img {
    max-height: 45px;
    transition: all 0.5s ease;
}

.lp-navbar.sticky-top .lp-navbar-logo img {
    max-height: 40px;
}

.lp-navbar-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.lp-navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
}

.lp-navbar-menu a:hover {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

.lp-navbar-menu a.active {
    color: var(--secondary-color);
    background: rgba(255, 145, 0, 0.15);
    font-weight: 600;
}

/* --- Banner Section --- */
.lp-banner {
    min-height: 20vh;
    max-height: 900px;
    padding: 120px 0 40px 0;
    background: url("/frontend_new/assets/img/carousel-1.jpg") no-repeat center
        center;
    background-size: cover;
    color: #fff;
    position: relative;
}

.lp-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lp-banner > * {
    position: relative;
    z-index: 2;
}

.banner-landing-page {
    padding-left: 10vw;
}

.lp-banner-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.lp-banner-content p {
    font-size: 1.3rem;
    font-weight: 400;
}

/* Device Container */
.lp-devices-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-device {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 16px 50px rgba(44, 62, 80, 0.35);
    overflow: hidden;
    border: 6px solid #16161a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-tablet {
    width: 320px;
    height: 400px;
    z-index: 1;
}

.lp-phone {
    width: 130px;
    height: 240px;
    z-index: 2;
    transform: translate(-150%, -5%);
}

.lp-device img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* --- Problems & Reasons Section --- */
/* .lp-problems-reasons {
    background: #fff;
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    margin-top: -60px;
    position: relative;
    z-index: 10;
} */

.nav-landing-page {
    background-color: #161633 !important;
}

.nav-landing-page .nav-link {
    color: #fff !important;
}

.nav-landing-page .nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-landing-page .nav-link:hover {
    color: var(--secondary-color) !important;
}

.lp-problems {
    background: var(--primary-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.lp-problems-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.7);
}

.lp-problems-content {
    padding: 2rem;
    flex: 1;
}

.lp-problems-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.lp-problems-content ul {
    font-size: 1.1rem;
    padding-left: 1.2rem;
}

.lp-problems-content li {
    margin-bottom: 0.6rem;
}

.lp-reasons {
    background: url("/frontend_new/assets/gif/background.gif") no-repeat center
        center;
    background-size: cover;
    color: #222;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}
.ldp-contact {
    background: url("/frontend_new/assets/gif/background-blue.gif") no-repeat
        center center;
    background-size: cover;
}
.ldp-contact::after {
    background-color: #0000007f !important;
}
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.lp-reasons .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Overlay tối */
    z-index: 1;
}

.lp-reasons .content {
    position: relative;
    z-index: 2;
}

.lp-reasons h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.lp-reasons-content h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.lp-reasons-list {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Reasons Badge List */
.reasons-badge-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    margin-top: 1rem;
    justify-items: stretch;
    align-items: stretch;
    /* max-width: 500px; */
    margin-left: auto;
    margin-right: auto;
}

.badge-custom {
    background: linear-gradient(135deg, #ff9100 0%, #ffab40 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 145, 0, 0.25);
    transition: all 0.3s ease;
    border: none;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 50px;
}

.badge-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 145, 0, 0.35);
    background: linear-gradient(135deg, #f57c00 0%, #ff9100 100%);
}

@media (max-width: 991.98px) {
    .reasons-badge-list {
        gap: 10px;
        max-width: 450px;
    }

    .badge-custom {
        font-size: 0.9rem;
        padding: 0.7rem 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .reasons-badge-list {
        padding: 0 1rem;
        gap: 8px;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 100%;
    }

    .badge-custom {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        white-space: normal;
        min-height: 45px;
    }
}

@media (max-width: 575.98px) {
    .badge-custom {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .carousel-caption p {
        display: none !important;
    }
    .carousel-caption h3 {
        font-size: 1.2rem !important;
    }
}

/* --- Process Section --- */
.lp-process {
    background: linear-gradient(120deg, #8390ed 0%, #251603 100%);
    color: #fff;
    padding: 80px 0;
}

.lp-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .landing-page .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--light-text);
        color: var(--light-text);
    }
    .lp-process-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, auto);
        grid-template-areas:
            "step-01 step-02"
            "step-03 step-04"
            "step-05 step-06";
        gap: 1.5rem;
    }

    .step-01 {
        grid-area: step-01;
    }

    .step-02 {
        grid-area: step-02;
    }

    .step-03 {
        grid-area: step-03;
    }

    .step-04 {
        grid-area: step-04;
    }

    .step-05 {
        grid-area: step-05;
    }

    .step-06 {
        grid-area: step-06;
    }
}

.lp-process-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s, transform 0.6s;
}

.lp-process-step.show {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

.lp-process-step:nth-child(1).show {
    transition-delay: 0.1s;
}

.lp-process-step:nth-child(2).show {
    transition-delay: 0.2s;
}

.lp-process-step:nth-child(3).show {
    transition-delay: 0.3s;
}

.lp-process-step:nth-child(4).show {
    transition-delay: 0.4s;
}

.lp-process-step:nth-child(5).show {
    transition-delay: 0.5s;
}

.lp-process-step:nth-child(6).show {
    transition-delay: 0.6s;
}

.lp-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.lp-process-step span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Mũi tên nối giữa các bước (chỉ desktop, grid ngang) */
@media (min-width: 992px) {
    .lp-process-step {
        position: relative;
    }

    .lp-process-step .arrow-horizontal {
        display: block;
        position: absolute;
        top: 50%;
        left: 97%;
        width: 40px;
        height: 4px;
        background: var(--light-text);
        border-radius: 2px;
        transform: translateY(-50%);
        z-index: 2;
    }

    .lp-process-step .arrow-horizontal::after {
        content: "";
        position: absolute;
        right: 0;
        top: -7px;
        border: solid var(--light-text);
        border-width: 4px 0 0 4px;
        display: inline-block;
        padding: 7px;
        transform: rotate(135deg);
        background: transparent;
    }

    /* Mũi tên hàng trên: 1<-2<-3 (từ phải sang trái) */
    /* .lp-process-step:nth-child(1):after, */
    .lp-process-step:nth-child(2):after,
    .lp-process-step:nth-child(3):after {
        content: "";
        position: absolute;
        top: 50%;
        left: -32px;
        width: 40px;
        height: 4px;
        background: var(--light-text);
        border-radius: 2px;
        transform: translateY(-50%);
        z-index: 2;
    }

    /* .lp-process-step:nth-child(1):before, */
    .lp-process-step:nth-child(2):before,
    .lp-process-step:nth-child(3):before {
        content: "";
        position: absolute;
        top: 50%;
        left: -12px;
        border: solid var(--light-text);
        border-width: 4px 0 0 4px;
        display: inline-block;
        padding: 6px;
        transform: translateY(-50%) rotate(135deg);
        background: transparent;
        z-index: 3;
    }

    /* Mũi tên hàng dưới: 6<-5<-4 (từ phải sang trái) */
    .lp-process-step:nth-child(6):after,
    .lp-process-step:nth-child(5):after {
        content: "";
        position: absolute;
        top: 50%;
        left: -32px;
        width: 40px;
        height: 4px;
        background: var(--light-text);
        border-radius: 2px;
        transform: translateY(-50%);
        z-index: 2;
    }

    .lp-process-step:nth-child(6):before,
    .lp-process-step:nth-child(5):before {
        content: "";
        position: absolute;
        top: 50%;
        left: -32px;
        border: solid var(--light-text);
        border-width: 4px 0 0 4px;
        display: inline-block;
        padding: 6px;
        transform: translateY(-50%) rotate(-45deg);
        background: transparent;
        z-index: 3;
    }

    /* Mũi tên dọc từ step 3 xuống step 6 (ô thứ 6) */
    .lp-process-step:nth-child(3)::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 95%;
        width: 4px;
        height: 40px;
        background: var(--light-text);
        border-radius: 2px;
        transform: translateX(-50%);
        z-index: 2;
    }

    .lp-process-step:nth-child(3)::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 103%;
        border: solid var(--light-text);
        border-width: 0 4px 4px 0;
        display: inline-block;
        padding: 8px;
        transform: translateX(-50%) rotate(45deg);
        background: transparent;
        z-index: 3;
    }
}

/* --- Features Section --- */
.lp-features {
    background: #fff;
    padding: 80px 0;
}

.lp-feature-card {
    background: #f8f9fa;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.lp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.15);
}

.lp-feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.lp-feature-card .card-body {
    padding: 1.5rem;
}

.lp-feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.lp-feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features Section - Responsive Centered Grid */
.feature-grid-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-grid-custom .row {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-img-custom {
    max-width: 600px;
    width: 100%;
    height: 350px;
    min-height: 200px;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
    max-height: 100%;
    height: auto;
}

.feature-img-custom:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 16px 48px rgba(44, 62, 80, 0.25); */
}

.feature-grid-custom .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.feature-grid-custom h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.feature-grid-custom p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    text-align: left;
}

/* Large screens */
@media (min-width: 1400px) {
    .feature-grid-custom {
        max-width: 1400px;
        padding: 0 3rem;
    }

    .feature-img-custom {
        max-width: 550px;
        max-height: 380px;
        height: auto;
    }

    .feature-grid-custom h3 {
        font-size: 1.75rem;
    }

    .feature-grid-custom p {
        font-size: 1.1rem;
    }
}

/* Desktop */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .feature-grid-custom {
        max-width: 1000px;
        padding: 0 1.5rem;
    }

    .feature-img-custom {
        max-width: 450px;
        max-height: 320px;
        height: auto;
    }
}

/* Tablet */
@media (max-width: 991.98px) and (min-width: 768px) {
    .feature-grid-custom {
        padding: 0 1rem;
    }

    .feature-grid-custom .row {
        flex-direction: column;
        text-align: center;
        margin-bottom: 3rem;
    }

    .feature-img-custom {
        max-width: 400px;
        max-height: 280px;
        height: auto;
        margin-bottom: 2rem;
    }

    .feature-grid-custom h3,
    .feature-grid-custom p {
        text-align: center;
    }
}

/* Mobile Large */
@media (max-width: 767.98px) and (min-width: 576px) {
    .feature-grid-custom {
        padding: 0 1rem;
    }

    .feature-grid-custom .row {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .feature-img-custom {
        max-width: 100%;
        max-height: 240px;
        height: auto;
        margin-bottom: 1.5rem;
    }

    .feature-grid-custom h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .feature-grid-custom p {
        font-size: 0.95rem;
        text-align: center;
    }
}

/* Mobile Small */
@media (max-width: 575.98px) {
    .feature-grid-custom {
        padding: 0 0.5rem;
    }

    .feature-grid-custom .row {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }

    .feature-img-custom {
        max-width: 100%;
        max-height: 200px;
        height: auto;
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .feature-grid-custom .col-lg-6 {
        padding: 1rem;
    }

    .feature-grid-custom h3 {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .feature-grid-custom p {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Extra small screens */
@media (max-width: 399.98px) {
    .feature-grid-custom {
        padding: 0 0.5rem;
    }

    .feature-img-custom {
        max-height: 180px;
        height: auto;
        border-radius: 8px;
    }

    .feature-grid-custom h3 {
        font-size: 1.1rem;
    }

    .feature-grid-custom p {
        font-size: 0.85rem;
    }
}

/* Utility classes cho các trường hợp ảnh đặc biệt */
.feature-img-custom.force-cover {
    object-fit: cover;
}

.feature-img-custom.force-fill {
    object-fit: fill;
}

.feature-img-custom.force-scale-down {
    object-fit: scale-down;
}

/* Container có padding để ảnh không chạm viền */
.feature-grid-custom .img-container {
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 20px;
    display: inline-block;
}

/* --- Testimonials Section --- */
.lp-testimonials {
    background: #f8f9fa;
    padding: 80px 0;
}

.lp-testimonial-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    padding: 2rem;
    margin: 1rem 0;
    border: 1px solid #e5e7eb;
}

.lp-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.lp-testimonial-card .card-body {
    padding: 0;
    text-align: left;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Avatar và thông tin header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
    flex-shrink: 0;
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-info .author-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 0.25rem;
}

.testimonial-info .author-position {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Star rating */
.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0;
}

.testimonial-stars .star {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Quote content */
.testimonial-content {
    flex-grow: 1;
    position: relative;
}

.lp-testimonial-card p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-style: italic;
    padding-left: 1rem;
    position: relative;
    z-index: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .lp-testimonial-card {
        padding: 1.5rem;
        margin: 0.5rem 0;
    }

    .testimonial-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-info .author-name {
        font-size: 1.1rem;
    }

    .testimonial-info .author-position {
        font-size: 0.9rem;
    }

    .testimonial-stars .star {
        font-size: 1.1rem;
    }

    .testimonial-content::before {
        font-size: 2.5rem;
        top: -0.25rem;
        left: -0.25rem;
    }

    .lp-testimonial-card p {
        font-size: 0.95rem;
        padding-left: 0.75rem;
    }
}

@media (max-width: 576px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .testimonial-info {
        text-align: center;
    }

    .testimonial-stars {
        justify-content: center;
    }

    .testimonial-content::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .lp-testimonial-card p {
        text-align: center;
        padding-left: 0;
    }
}

/* --- Contact Section --- */
.lp-contact {
    background: linear-gradient(120deg, var(--primary-color) 0%, #00aeef 100%);
    color: #fff;
    padding: 80px 0;
}

.lp-contact-form .form-control {
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.lp-contact-form .btn-warning {
    background: var(--secondary-color);
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: background 0.3s;
}

.lp-contact-form .btn-warning:hover {
    background: #e07b00;
}

/* --- Mobile First Responsive Design --- */

/* Extra Large devices (1400px and up) */
@media (min-width: 1400px) {
    .lp-devices-container {
        height: 65vh;
        max-height: 700px;
    }

    .lp-tablet {
        max-width: 380px;
        max-height: 480px;
    }

    .lp-phone {
        max-width: 200px;
        max-height: 360px;
    }
}

/* Large devices (1200px and up) */
@media (max-width: 1399.98px) and (min-width: 1200px) {
    .lp-devices-container {
        height: 60vh;
        min-height: 450px;
    }
}

/* Medium devices (992px and up) */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .lp-banner {
        min-height: auto;
        padding: 100px 0 40px 0;
    }

    .lp-banner-content h1 {
        font-size: 2.8rem;
    }

    .lp-banner-content p {
        font-size: 1.2rem;
    }

    .lp-devices-container {
        height: 55vh;
        min-height: 400px;
        margin-top: 2rem;
    }

    .lp-tablet {
        width: 30vw;
        height: 38vw;
        max-width: 280px;
        max-height: 350px;
        right: 6%;
    }

    .lp-phone {
        width: 18vw;
        height: 30vw;
        max-width: 150px;
        max-height: 280px;
        /* left: 8vw; */
        top: 12vw;
    }

    .lp-process-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

/* Small devices (768px and up) - Tablet Portrait */
@media (max-width: 991.98px) and (min-width: 768px) {
    .lp-navbar-container {
        flex-wrap: wrap;
        padding: 0.5rem 1rem;
    }

    .lp-navbar-menu {
        gap: 1.5rem;
        font-size: 0.95rem;
    }

    .lp-banner {
        padding: 100px 0 30px 0;
    }

    .lp-banner-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .lp-banner-content h1 {
        font-size: 2.5rem;
    }

    .lp-banner-content p {
        font-size: 1.15rem;
    }

    .lp-devices-container {
        height: 300px;
    }

    .lp-tablet {
        width: 220px;
        height: 280px;
    }

    .lp-phone {
        width: 90px;
        height: 160px;
        transform: translate(-120%, 10%);
    }

    .lp-process-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 1.5rem;
    }

    .lp-process-step {
        padding: 1.5rem;
    }

    /* .lp-problems-reasons {
        margin-top: -40px;
    } */

    .arrow-horizontal {
        display: none !important;
    }
}

/* Extra Small devices (576px and up) - Mobile Landscape */
@media (max-width: 767.98px) and (min-width: 576px) {
    .lp-navbar-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }

    .lp-navbar-menu {
        gap: 1rem;
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .lp-banner {
        padding: 90px 0 25px 0;
    }

    .lp-banner-content {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .lp-banner-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .lp-banner-content p {
        font-size: 1.05rem;
    }

    .lp-devices-container {
        height: 180px;
    }

    .lp-tablet {
        width: 120px;
        height: 150px;
    }

    .lp-phone {
        width: 50px;
        height: 90px;
        transform: translate(-90%, 30%);
    }

    .lp-problems,
    .lp-reasons {
        padding: 1.5rem;
    }

    .lp-process-step {
        padding: 1.2rem;
    }

    .lp-process-step span {
        font-size: 2.2rem;
    }
}

/* Extra Small devices (less than 576px) - Mobile Portrait */
@media (max-width: 575.98px) {
    .lp-navbar {
        height: auto;
        min-height: 60px;
    }

    .banner-landing-page {
        padding-bottom: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lp-navbar-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .lp-navbar-logo {
        font-size: 1.1rem;
    }

    .lp-navbar-menu {
        gap: 0.8rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .lp-banner-content {
        text-align: center;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .lp-banner-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .lp-banner-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .lp-devices-container {
        height: 180px;
    }

    .lp-tablet {
        width: 120px;
        height: 150px;
    }

    .lp-phone {
        width: 50px;
        height: 90px;
        transform: translate(-90%, 30%);
    }

    .lp-device {
        border-radius: 24px;
        border: 4px solid #16161a;
    }

    .lp-device img {
        border-radius: 16px;
    }

    .lp-problems,
    .lp-reasons {
        padding: 1.2rem;
    }

    .lp-problems-content h2 {
        font-size: 1.2rem;
    }

    .lp-problems-content ul,
    .lp-reasons-content {
        font-size: 0.9rem;
    }

    .lp-process-step {
        padding: 1rem;
    }

    .lp-process-step span {
        font-size: 1.8rem;
    }

    .lp-process-step p {
        font-size: 0.9rem;
    }
}

/* Ultra Small devices (less than 400px) - Small Mobile */
@media (max-width: 399.98px) {
    .lp-banner-content h1 {
        font-size: 1.6rem;
    }

    .lp-banner-content p {
        font-size: 0.9rem;
    }

    .lp-devices-container {
        height: 35vh;
        min-height: 220px;
        max-height: 280px;
    }

    .lp-tablet {
        width: 40vw;
        height: 48vw;
        max-width: 140px;
        max-height: 170px;
        min-width: 100px;
        min-height: 130px;
        right: 2%;
    }

    .lp-phone {
        width: 26vw;
        height: 38vw;
        max-width: 85px;
        max-height: 150px;
        min-width: 70px;
        min-height: 120px;
        left: 3vw;
        top: 5vw;
    }

    .lp-navbar-menu {
        font-size: 0.8rem;
        gap: 0.6rem;
    }
}

/* --- Bootstrap Integration Classes --- */
.mobile-hidden {
    display: block;
}

.mobile-visible {
    display: none;
}

@media (max-width: 991.98px) {
    .mobile-hidden {
        display: none;
    }

    .mobile-visible {
        display: block;
    }

    .mobile-center {
        text-align: center !important;
    }

    .mobile-stack {
        flex-direction: column !important;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .lp-banner {
        padding: 70px 0 15px 0;
    }

    .lp-devices-container {
        height: 70vh;
        min-height: 280px;
    }

    .lp-banner-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .lp-banner-content p {
        font-size: 0.95rem;
    }
}

.text-gradient {
    background: linear-gradient(
        120deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-custom {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-custom:hover {
    background: #e07b00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 145, 0, 0.3);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes floatInBottom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Fix Bootstrap conflicts --- */
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

.nav-landing-page {
    background-color: #161633;
}

/* Loading Screen Styles */
.landing-page.loading-active {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
}

/* Hide navigation during loading */
body.loading-active .landing-page #navigationContainer {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}
.landing-page #navigationContainer {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0s 0.8s;
}
.landing-page #navigationContainer.fade-in {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease;
}

/* Hide main content initially */
.landing-page #mainContent {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0s 0.8s;
}

.landing-page #mainContent.fade-in {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease;
}

/* Loading screen fade out */
.landing-page #loadingScreen.fade-out {
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

/* Progress bar gradient */
.landing-page .progress-gradient {
    background: linear-gradient(90deg, #ff9100, #ffab40, #ff9100);
    background-size: 200% 100%;
    animation: progressShimmer 2s ease infinite;
}

@keyframes progressShimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Prevent scrolling during loading */
body.landing-page.loading-active {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Logo and animation fills */
.logo-fill {
    fill: black;
    fill-opacity: 0;
}

.text-fill {
    fill: black;
    fill-opacity: 0;
}

.circle-fill {
    fill: #fc7600;
    fill-opacity: 0;
}

/* Timeline Styles */
.timeline-line {
    background: linear-gradient(to bottom, #fc7600, #374151);
}

.step-circle {
    background: linear-gradient(135deg, #fc7600, #ff9500);
    box-shadow: 0 0 30px rgba(252, 118, 0, 0.4);
}

.content-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.step-number {
    background: linear-gradient(135deg, #1f2937, #374151);
}

.parallax-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    background-attachment: fixed;
}

.timeline-item {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.visible {
    opacity: 1;
}

/* Vertical Timeline for all screen sizes */
.timeline-container {
    position: relative;
    min-height: auto;
    padding-bottom: 2rem;
}

.timeline-line-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0.5rem;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-items-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Step circle always in center */
.step-circle-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Left aligned items (odd) */
.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    width: calc(50% - 4rem);
    transform: translateX(-50px);
}

.timeline-item:nth-child(odd).visible .timeline-content {
    transform: translateX(0);
}

/* Right aligned items (even) */
.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    width: calc(50% - 4rem);
    transform: translateX(50px);
}

.timeline-item:nth-child(even).visible .timeline-content {
    transform: translateX(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .timeline-container {
        padding-left: 1rem;
        padding-bottom: 1rem;
    }

    .timeline-line-wrapper {
        left: 5.5rem !important;
        transform: translateX(-50%) !important;
        width: 0.25rem !important;
        z-index: 1 !important;
    }

    .step-circle-wrapper {
        left: 4rem !important;
        transform: translateX(-50%) !important;
        z-index: 10 !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 6rem);
        margin-left: 5rem;
        margin-right: 0.5rem;
        transform: translateX(20px);
    }

    .timeline-item:nth-child(odd).visible .timeline-content,
    .timeline-item:nth-child(even).visible .timeline-content {
        transform: translateX(0);
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        justify-content: flex-start !important;
    }

    .timeline-items-container {
        gap: 2.5rem;
        padding: 0 0.5rem;
    }

    .step-circle {
        width: 3.5rem !important;
        height: 3.5rem !important;
    }

    .step-number {
        width: 2.5rem !important;
        height: 2.5rem !important;
        font-size: 1.25rem !important;
    }

    .content-card {
        padding: 1.5rem !important;
        margin: 0 !important;
        width: 100% !important;
        border-radius: 1rem !important;
    }

    .content-card h3 {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }

    .content-card ul {
        gap: 0.75rem !important;
    }

    .content-card li {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        padding-left: 0.5rem !important;
    }
}

/* Large desktop adjustments */
@media (min-width: 1441px) {
    .timeline-line-wrapper {
        width: 0.625rem;
    }

    .timeline-items-container {
        gap: 5rem;
    }
    .carousel-caption {
        bottom: 40vh !important;
    }
}

/* Initial states for animated header elements */
.header-section h1 {
    transform: translateY(-50px) scale(0.9);
    opacity: 0;
}

.header-section p {
    transform: translateY(30px);
    opacity: 0;
}

/* Initial state for animated footer elements */
.footer-section {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
}

/* Hide back-to-top button during loading */
body.landing-page.loading-active .back-to-top {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    display: none !important;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
}
/* Responsive adjustments for hero section */
.dashboard-grid-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 150px !important;
    text-align: center !important;
    padding-right: 4rem !important;
}

.dashboard-grid-center img {
    display: block !important;
    margin: 0 auto !important;
}

.dashboard-grid-center lottie-player {
    display: block !important;
    margin: 0 auto !important;
}

/* Force center with high specificity */
.hero-section .dashboard-grid-center {
    position: relative !important;
    width: 300px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

.hero-section .dashboard-grid-center lottie-player {
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
}

/* Z-index layering - Animations on top, image below */
.hero-section .dashboard-grid-center lottie-player {
    z-index: 10 !important;
    position: relative !important;
}

.hero-section .dashboard-grid-center img {
    z-index: 5 !important;
    position: relative !important;
}

/* Fixed size 1.5x larger for all screen sizes */
.hero-section .dashboard-grid-center lottie-player {
    width: 375px !important;
    height: 270px !important;
    max-width: 80vw !important;
    max-height: 50vh !important;
}

.hero-section .dashboard-grid-center img {
    width: 500px !important;
    height: 350px !important;
    max-width: 80vw !important;
    max-height: 50vh !important;
    object-fit: cover !important;
}

/* Adjust container width for moderate content size */
.hero-section .dashboard-grid-center {
    width: 375px !important;
    max-width: 80vw !important;
    min-height: 270px !important;
}

/* Animation effects for lottie players */
.hero-section .dashboard-grid-center lottie-player {
    transition: all 0.3s ease !important;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.12)) !important;
}

.hero-section .dashboard-grid-center lottie-player:hover {
    transform: translateX(-50%) scale(1.05) !important;
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.2)) !important;
}

/* Keep image smaller and subtle */
.hero-section .dashboard-grid-center img {
    opacity: 0.9 !important;
    transition: all 0.3s ease !important;
}

.hero-section .dashboard-grid-center img:hover {
    opacity: 1 !important;
    /* transform: translateX(-50%) scale(1.02) !important; */
}

/* Responsive adjustments */
/* Tablet only styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section .dashboard-grid-center lottie-player,
    .hero-section .dashboard-grid-center img {
        width: 300px !important;
        height: 215px !important;
        max-width: 75vw !important;
        max-height: 40vh !important;
    }

    .hero-section .dashboard-grid-center {
        width: 300px !important;
        max-width: 75vw !important;
        min-height: 215px !important;
    }

    /* Smaller animation-bar on tablet */
    .hero-section #animation-bar {
        width: 250px !important;
        height: 150px !important;
        max-width: 65vw !important;
        margin-right: 20vw !important;
        margin-top: 25vh !important;
    }
    .hero-section #animation {
        margin-left: 30vw !important;
    }
}
@media (min-width: 992px) and (max-width: 1280px) {
    .carousel-caption {
        bottom: 25vh !important;
    }
    .hero-section #animation-bar {
        width: 200px !important;
        height: 120px !important;
        max-width: 65vw !important;
        margin-top: 45vh !important;
    }
}
@media (min-width: 1280px) {
    .hero-section #animation {
        width: 20vw !important;
        height: 35vh !important;
        max-width: 65vw !important;
        margin-left: 3vw !important;
    }
    .hero-section #animation-bar {
        margin-left: 15vw !important;
        margin-top: 45vh !important;
    }
}

/* Hide animations and images on mobile */
@media (max-width: 1277.98px) {
    .hero-section .dashboard-grid-center,
    .hero-section .col-xl-6.col-lg-5 {
        display: none !important;
    }

    /* Make text section full width on mobile */
    .hero-section .col-xl-6.col-lg-7 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Responsive text classes */
.h-lg-3 {
    font-size: 1.6rem;
}

.h-lg-5 {
    font-size: 1.25rem;
}

.small-lg-base {
    font-size: 1.1rem;
}

/* Responsive typography */
@media (min-width: 992px) {
    .h-lg-3 {
        font-size: 1.8rem;
    }

    .h-lg-5 {
        font-size: 1.4rem;
    }

    .small-lg-base {
        font-size: 1.15rem;
    }
}

/* Increase paragraph text size in reasons section */
.lp-reasons-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .lp-reasons-content p {
        font-size: 1.15rem;
        line-height: 1.7;
    }
}

/* Enhance mobile text readability */
@media (max-width: 767.98px) {
    .carousel-caption {
        top: 2vh !important;
    }
    .lp-problems-content h2 {
        font-size: 1.4rem;
    }

    .lp-reasons h2 {
        font-size: 1.4rem;
    }

    .lp-reasons-content h3 {
        font-size: 1.1rem;
    }

    .lp-problems-content ul {
        font-size: 1rem;
    }

    .lp-reasons-content p {
        font-size: 1rem;
    }
}

/* Partner Brands Slider */
.partner-brands-slider {
    background: #fff;
    height: 25vh;
    min-height: 120px;
    max-height: 150px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #dee2e6;
}

.partner-brands-slider h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.brands-slider-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.brands-slider {
    display: flex;
    align-items: center;
    animation: slideLeft 30s linear infinite;
    gap: 4rem;
    white-space: nowrap;
}

.brand-item {
    flex-shrink: 0;
    height: 60px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.brand-item img {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.7); */
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.3);
}

/* Pause animation on hover */
.brands-slider:hover {
    animation-play-state: paused;
}

/* Sliding animation */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for partner slider */
@media (max-width: 991.98px) {
    .partner-brands-slider {
        height: 8vh;
        min-height: 100px;
    }

    .partner-brands-slider h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .brand-item {
        height: 50px;
        gap: 3rem;
    }

    .brand-item img {
        max-height: 50px;
        max-width: 140px;
    }

    .brands-slider {
        animation-duration: 25s;
        gap: 3rem;
    }
}

@media (max-width: 767.98px) {
    .partner-brands-slider {
        height: 12vh;
        min-height: 80px;
        max-height: 120px;
    }

    .partner-brands-slider h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .brand-item {
        height: 40px;
    }

    .brand-item img {
        max-height: 40px;
        max-width: 120px;
    }

    .brands-slider {
        animation-duration: 20s;
        gap: 2rem;
    }
}
.image-wrapper {
    position: relative;
}

.image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0000005c;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}
.title-landing-page {
    font-size: 100px !important;
}
@media (max-width: 1277.98px) {
    .title-landing-page {
        font-size: 50px !important;
    }
}
