/* BANNER HOME */
/*================================== Hero Section ==================================*/
.hero-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    padding: 110px 0;
    min-height: 760px;
    display: flex;
    align-items: center;
    max-height: 716px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(248, 250, 253, .95) 0%, 
            rgba(248, 250, 253, .88) 32%,
            rgba(248, 250, 253, .15) 65%,
            rgba(248, 250, 253, 0) 100%); */
}

.hero-section .container {
    position: relative;
    z-index: 5;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 40px;
    margin-bottom: 25px;
    background: #FFE3CC;
    color: #061D44;
    font-family: Inter;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1rem;
}

.hero-badge span {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 2097150rem;
    background: #00AFA9;
    /* color: #FA6E1D; */
}

/* Title */
.hero-title {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 800;
    color: #061D44;
    margin-bottom: 25px;
    font-family: "Plus Jakarta Sans";
}

.hero-title span {
    color: #FA6E1D;
}

/* Description */
.hero-desc {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.9;
    color: #545E6F;
    margin-bottom: 35px;
    font-family: Inter;
}

/* Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    /* height: 3.25rem; */
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FA6E1D;
    color: #fff;
    width: 195.22px;
    height: 52px;
    font-size: 0.875rem;
    gap: 6px;
    border-radius: 60px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 10px 30px -10px rgba(236, 90, 0, 0.50);
}

.btn-book-now:hover {
    color: #fff;
    background: #0f2b59;
    transform: translateY(-3px);
}

.btn-outline-custom {
    color: #061D44;
    font-weight: 600;
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.btn-outline-custom:hover {
    color: #FA6E1D;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 28px;
    max-width: 500px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(6, 29, 68, 0.80);
    font-family: Inter;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
}

.feature i {
    color: #FA6E1D;
}

/*============================== Large Laptop ==============================*/
@media (max-width:1400px) {
    .hero-title {
        font-size: 62px;
    }

    .hero-section {
        min-height: 680px;
    }

    .hero-features {
        min-width: unset;
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/*============================== Laptop ==============================*/
@media (max-width:1200px) {
    .hero-title {
        font-size: 54px;
    }

    .hero-section {
        min-height: 620px;
        padding: 90px 0;
    }
}

/*============================== Tablet ==============================*/
@media (max-width:991px) {
    .hero-section {
        min-height: auto;
        background-position: center;
        padding: 70px 0;
    }

    .hero-section::before {
        background: rgba(248, 250, 253, .90);
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-features {
        gap: 18px;
    }
}

/*============================== Mobile ==============================*/
@media (max-width:767px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-book-now {
        width: 100%;
        text-align: center;
    }

    .btn-outline-custom {
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

/*============================== Small Mobile ==============================*/
@media (max-width:480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 15px;
    }

    .hero-section {
        padding: 50px 0;
    }
}

/*=========================== How it Works ===========================*/
.how-it-works {
    padding: 96px 35.5px;
    background: #FFF;
    /* min-height: 559px; */
    min-height: 489px;
}

.section-title {
    margin-bottom: 18px;

    color: #0C1C45;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 800;
    line-height: 2.5rem;
    letter-spacing: -0.045rem;
}

.section-desc {
    /* max-width: 720px; */
    margin: auto;
    color: #5B6375;
    text-align: center;
    font-family: Inter;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
    /* 155.556% */
}

.step-card {
    border-radius: 28px;
    border: 1px solid rgba(224, 229, 235, 0.60);
    background: #FEFDFB;
    position: relative;
    padding: 45px 28px 30px;
    transition: .35s;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.step-line {
    position: absolute;
    left: 28px;
    right: 18px;
    top: 33px;
    height: 1px;
    background: #e7ecf3;
}

.step-number {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0C1C45;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.step-card h5 {
    margin-top: 18px;
    font-size: 24px;
    color: #0C1C45;
    font-weight: 600;
}

.step-card p {
    margin-top: 10px;
    color: #5B6375;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Tablet */
@media(max-width:991px) {
    .section-title {
        font-size: 38px;
    }

    .step-card {
        padding: 40px 24px 28px;
    }
}

/* Mobile */
@media(max-width:767px) {
    .how-it-works {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .section-desc {
        font-size: 15px;
    }

    .step-card {
        padding: 38px 22px 25px;
        text-align: center;
    }

    .step-line {
        left: 20px;
        right: 20px;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .step-card h5 {
        margin-top: 35px;
        font-size: 22px;
    }
}

/*============================= Vehicle Service =============================*/
.vehicle-service-section {
    position: relative;
    padding: 120px 0 90px;
    overflow: visible;
    /* important */
    background: #fafafa;
}

.floating-mechanic {
    position: absolute;
    left: 15.59px;
    top: -102.398px;
    width: 160px;
    z-index: 20;
}

.floating-mechanic img {
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, .15));
    width: 9.87213rem;
    height: 19.35869rem;
    transform: rotate(-3.406deg);
    aspect-ratio: 51 / 100;
}

/* Heading */
.section-heading {
    max-width: 760px;
    margin: auto;
}

.section-badge {
    font-family: Inter;
    display: inline-block;
    color: #FF7527 !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 33554400px;
    background: rgba(255, 117, 39, 0.10);
    padding: 4px 12px;
}

.section-heading h2 {
    font-size: 44px;
    color: #0C1C45;
    margin-bottom: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: 48px;
    letter-spacing: -0.96px;
    font-family: "Inter";
}

.section-heading span {
    color: #162B59;
}

.section-heading p {
    color: #5B6375;
    font-size: 18px;
    line-height: 28px;
    font-family: Inter;

}

/* Card */
.service-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #eceff5;
    transition: .35s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

/* Image */
.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.top-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    border-radius: 40px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    font-family: Inter;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* Content */
.service-content {
    padding: 24px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff3ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-top: -45px;
    position: relative;
    z-index: 3;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.service-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0C1C45;
    margin: 0;
    font-style: normal;
    line-height: 28px;
    letter-spacing: -0.4px;
    font-family: "Plus Jakarta Sans";
}

.service-content a {
    color: #0C1C45;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: Inter;
}

.service-content p {
    color: #5B6375;
    margin: 18px 0 22px;
    font-style: normal;
    font-weight: 400;
    font-family: Inter;
    font-size: 0.875rem;
    line-height: 1.42188rem;
    /* 162.5% */
}

/* Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 139.25px;
    height: 36px;
    background: #ff6b00;
    color: #fff !important;
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10),
        0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.service-btn:hover {
    background: #162B59;
}

/*========================= Tablet =========================*/
@media(max-width:991px) {
    .section-heading h2 {
        font-size: 42px;
    }

    .floating-mechanic {
        display: none;
    }
}

/*========================= Mobile =========================*/
@media(max-width:767px) {
    .vehicle-service-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .service-image img {
        height: 220px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h5 {
        font-size: 20px;
    }

    .top-badge {
        font-size: 11px;
    }
}

.vehicle-care {
    background: #fff;
    padding: 90px 0;
}

/* Heading */
.care-title {
    font-family: "Plus Jakarta Sans";
    font-size: 58px;
    font-weight: 700;
    color: #0C1C45;
    font-size: 50.362px;
    font-style: normal;
    line-height: normal;
    text-transform: lowercase;
    margin-bottom: 8px;
}

.care-subtitle {
    color: #0C1C45;
    font-size: 14.101px;
    font-style: normal;
    font-family: "Inter";
    font-weight: var(--font-weight-300, 300);
    line-height: normal;
}

/* Slider Buttons */
.slider-btns {
    display: flex;
    gap: 12px;
}

.slider-btns button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ff7a22;
    background: #fff3ea;
    color: #ff7a22;
    transition: .3s;
}

.slider-btns button:hover {
    background: #ff7a22;
    color: #fff;
}

/* Slide */
.service-slide {
    border-radius: 25px;
}

/* Image */
.slide-image {
    overflow: hidden;
    border-radius: 20px;
}

.slide-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

/* Content */
.slide-content {
    padding: 0 40px;
}

.slide-content h3 {
    font-size: 24.806px;
    color: #0C1C45;
    line-height: 29.768px;
    font-weight: 700;
    margin-bottom: 20px;
}

.slide-content p {
    color: #222020;
    font-size: 12.403px;
    font-style: normal;
    line-height: 19.845px;
    margin-bottom: 30px;
    font-family: "Inter";
}

/* Button */
.btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff6b00;
    color: #fff;
    width: 155.884px;
    height: 41.3px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.btn-service:hover {
    color: #fff;
    background: #162b59;
}

/* Right Preview */
.next-preview {
    border-radius: 20px;
    overflow: hidden;
    opacity: .35;
}

.next-preview img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Tablet */
@media(max-width:991px) {
    .care-title {
        font-size: 42px;
    }

    .slide-content {
        padding: 30px 0 0;
    }

    .slide-image img {
        height: 350px;
    }

    .next-preview {
        display: none;
    }
}

/* Mobile */
@media(max-width:767px) {
    .vehicle-care {
        padding: 60px 0;
    }

    .care-title {
        font-size: 32px;
    }

    .slider-btns {
        display: none;
    }

    .slide-image img {
        height: 250px;
    }

    .slide-content h3 {
        font-size: 28px;
    }

    .slide-content {
        text-align: center;
    }
}

/*============================= EV SECTION ==============================*/
.ev-section {
    background: #EEFFE8;
    padding: 90px 0;
    overflow: hidden;
}

/* Badge */
.ev-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;

    background: rgba(86, 209, 163, 0.20);
    color: #0C1C45;
    font-size: 13px;
    font-weight: 600;
    border-radius: 33554400px;
    padding: 4px 12px;
    margin-bottom: 18px;
    font-family: Inter;
}

/* Title */
.ev-title {
    margin-bottom: 18px;
    max-width: 450px;
    color: #0C1C45;
    font-family: "Plus Jakarta Sans";
    font-size: 38px;
    font-style: normal;
    font-weight: 800;
    line-height: 48px;
    letter-spacing: -0.96px;
}

/* Text */
.ev-text {
    margin-bottom: 15px;
    color: #5B6375;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

/* Cards */
.ev-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    transition: .35s;
    border: 1px solid rgba(0, 0, 0, .05);
}

.ev-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
}

.ev-icon {
    width: 46px;
    height: 46px;
    background: #fff3eb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.ev-card h5 {
    margin-bottom: 10px;
    color: #0C1C45;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    font-family: "Plus Jakarta Sans";
    letter-spacing: -0.32px;
}

.ev-card p {
    margin: 0;
    color: #5B6375;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px;
    font-family: Inter;
}

/* Button */
.ev-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    background: #ff6b00;
    color: #fff;
    width: 183.45px;
    height: 48px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    border-radius: 33554400px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    font-family: Inter;
    font-size: 0.875rem;
    line-height: 20px;
    gap: 6px;
}

.ev-btn:hover {
    color: #fff;
    background: #162B59;
}

/* Image */
.ev-image {
    position: relative;
    display: flex;
    justify-content: end;
}

.ev-image img {
    width: 584px;
    height: 480px;
    object-fit: cover;
    aspect-ratio: 4/5;
    border-radius: 24px;
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

/* Floating Card */
.battery-card {
    position: absolute;
    left: 20px;
    bottom: -30px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.battery-icon {
    width: 42px;
    height: 42px;
    background: #dff6d5;
    color: #0f7b57;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.battery-card strong {
    display: block;
    color: #0C1C45;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    font-family: Inter;
}

.battery-card span {
    color: #5B6375;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.5px;
    font-family: Inter;
}

/*===================== Tablet ======================*/
@media(max-width:991px) {
    .ev-title {
        font-size: 42px;
        max-width: 100%;
    }

    .ev-image {
        margin-top: 20px;
    }

    .ev-image img {
        height: auto;
    }
}

/*===================== Mobile ======================*/
@media(max-width:767px) {
    .ev-section {
        padding: 70px 0;
    }

    .ev-title {
        font-size: 34px;
    }

    .ev-card {
        padding: 20px;
    }

    .battery-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        width: 100%;
    }

    .ev-btn {
        width: 100%;
        text-align: center;
    }
}

/*========================== Brand Section ==========================*/
.brand-section {
    background: #F7F5F1;
    padding: 90px 0;
}

/* Heading */
.brand-section .section-badge {
    border-radius: 33554400px;
    background: rgba(12, 28, 69, 0.05);
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #0C1C45 !important;
    text-align: center;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.brand-section .section-title {
    margin-bottom: 15px;
    color: #0C1C45;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.72px;
}

.brand-section .section-subtitle {
    max-width: 620px;
    margin: auto;
    color: #5B6375;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

/* Brand */
.brand-box {
    height: 82px;
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #4d5874;
    font-weight: 600;
    transition: .35s;
    overflow: hidden;
}

.brand-box img {
    /* width: 151px;
     */
    /* height: 36px;
     */
    /* aspect-ratio: 151/36;
     */
    /* max-width: 120px;
     max-height: 38px;
     */
    object-fit: contain;
}

.brand-box:hover {
    transform: translateY(-5px);
    border-color: #ff6b00;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    color: #162B59;
}

/* Note */
.brand-note {
    margin-top: 35px;
    color: #5B6375;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

/*===================== Large Desktop ======================*/
@media(min-width:1200px) {
    .brand-section .col-lg {
        flex: 0 0 14.285%;
        max-width: 14.285%;
    }
}

/*===================== Tablet ======================*/
@media(max-width:991px) {
    .section-title {
        font-size: 40px;
    }

    .brand-box {
        height: 75px;
    }
}

/*===================== Mobile ======================*/
@media(max-width:767px) {
    .brand-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .brand-box {
        height: 70px;
        border-radius: 14px;
        font-size: 14px;
    }

    .brand-box img {
        max-width: 95px;
    }

    .brand-note {
        font-size: 13px;
    }
}

/*============================= WHY VYKAL =============================*/
.why-vykal {
    padding: 90px 0;
    background: #fff;
}

/* Left */
.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 28px;
    display: block;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

/* Floating Card */
.delivery-card {
    position: absolute;
    right: -15px;
    top: -10px;
    background: #162B59;
    color: #fff;
    padding: 18px 26px;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
}

.delivery-card h3 {
    margin: 0;
    color: #FF7527;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
}

.delivery-card span {
    color: rgba(246, 249, 252, 0.70);
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

/* Heading */
.why-badge {
    display: inline-block;
    background: #fff0e6;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 18px;
    border-radius: 33554400px;
    color: #FF7527;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.why-title {
    margin-bottom: 16px;
    color: #0C1C45;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.72px;
}

.why-desc {
    margin-bottom: 30px;
    color: #5B6375;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

/* Feature Box */
.feature-box {
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: .35s;
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(224, 229, 235, 0.60);
    background: #FEFDFB;
}

.feature-box:hover {
    transform: translateY(-6px);
    border-color: #ff7a22;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #162B59;
    color: #ff7a22;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.feature-box h6 {
    margin-bottom: 6px;
    color: #0C1C45;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.32px;
}

.feature-box p {
    margin: 0;
    color: #5B6375;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px;
    /* 162.5% */
}

/* Tablet */
@media(max-width:991px) {
    .why-title {
        font-size: 38px;
    }

    .delivery-card {
        right: 20px;
        top: 20px;
    }
}

/* Mobile */
@media(max-width:767px) {
    .why-vykal {
        padding: 70px 0;
    }

    .why-title {
        font-size: 30px;
    }

    .why-desc {
        font-size: 15px;
    }

    .delivery-card {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .feature-box {
        padding: 18px;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .feature-box h6 {
        font-size: 16px;
    }
}

/*================================== PROCESS SECTION ==================================*/
.process-section {
    position: relative;
    background: #F7F5F1;
    padding: 100px 0;
    /* overflow: hidden; */
}

/* Floating Image */
.floating-worker {
    position: absolute;
    left: 264px;
    bottom: -254px;
    width: 140px;
    z-index: 10;
}

.floating-worker img {
    width: 330px;
    height: 444px;
    aspect-ratio: 55/74;
    display: block;
}

/* Heading */
.section-header {
    margin-bottom: 60px;
}

.process-section .section-badge {
    display: inline-block;
    background: #eef2f7;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 33554400px;
    color: #0C1C45 !important;
    text-align: center;
    font-family: Inter;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background: rgba(12, 28, 69, 0.05);
}

.process-section .section-title {
    margin: 0;
    color: #0C1C45;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.72px;
}

/* Card */
.process-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    border: 1px solid #edf1f6;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    transition: .35s;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 55px rgba(0, 0, 0, .12);
}

/* Step Number */
.process-card .step-number {
    position: absolute;
    top: 18px;
    left: 18px;
    border-radius: 50%;
    background: #ff6b00;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Step */
.process-card .step-text {
    position: absolute;
    top: 28px;
    right: 24px;
    color: #5B6375;
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* Icon */
.process-icon {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 30px;
}

.process-icon img {
    height: 72px;
    width: auto;
}

/* Title */
.process-card h5 {
    margin-bottom: 14px;
    color: #0C1C45;
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.36px;
}

/* Description */
.process-card p {
    margin: 0;
    color: #5B6375;
    font-family: Inter;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px;
}

/* Tablet */
@media(max-width:991px) {
    .section-title {
        font-size: 40px;
    }

    .process-card {
        padding: 28px;
    }

    .process-card .step-number {
        top: 10px;
        left: 25px;
    }
}

/* Mobile */
@media(max-width:767px) {
    .process-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .process-card {
        padding: 25px;
    }

    .process-card h5 {
        font-size: 20px;
    }

    .process-icon img {
        height: 60px;
    }

    .floating-worker {
        display: none;
    }
}

/*========================================= VIDEO =========================================*/
.video-section {

    position: relative;
    padding: 90px 0;
    background: #fff;
}

.video-section .container {
    max-width: 1192px;
}


.video-header {
    /* max-width: 700px; */
    margin: auto auto 50px;
}

.video-header h2 {
    margin: 18px 0;
    color: #0C1C45;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.72px;
}

.video-header p {
    color: #5B6375;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.video-section .section-badge {
    display: inline-block;
    background: #fff2e8;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    color: #FF7527;
    text-align: center;
    font-family: Inter;

    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Video */
.video-box {
    height: 576px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.video-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .70) 0%, rgba(0, 0, 0, .30) 35%, rgba(0, 0, 0, 0) 70%);
}

.video-box img {
    width: 100%;
    display: block;
}

.video-player {
    width: 100%;
    display: block;
    border-radius: 32px;
    object-fit: cover;
}

.video-box.playing::before {
    display: none;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #ff6b00;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    transition: .3s;
    width: 96px;
    height: 96px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    color: #fff;
}

.video-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
}

.video-content h3 {
    margin-bottom: 6px;
    color: #F6F9FC;
    font-family: "Plus Jakarta Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.video-content p {
    margin: 0;
    color: rgba(246, 249, 252, 0.80);
    font-family: Inter;
    font-size: 14px;
    /* font-style: normal;
     */
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

/* Duration */
.video-time {
    padding: 8px 16px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 33554400px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(4px);
    color: #F6F9FC;
    font-family: Inter;

    font-size: 12px;
    font-style: normal;
    line-height: 16px;
}

/*========================================= TRUST =========================================*/
.trust-section {
    padding-bottom: 90px;
    background: #fff;
}

.trust-box {
    background: #0C1C45;
    border-radius: 36px;
    padding: 64px;
}

.trust-badge {
    display: inline-block;
    background: #2d406f;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    border-radius: 33554400px;
    color: #FF7527;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.trust-box h2 {
    margin-bottom: 20px;
    color: #F6F9FC;
    font-family: "Plus Jakarta Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.72px;
}

.trust-box p {
    margin-bottom: 30px;
    color: rgba(246, 249, 252, 0.75);
    font-family: Inter;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

/* Tags */
.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-tags span {
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(246, 249, 252, 0.20);
    background: rgba(246, 249, 252, 0.05);
    color: #F6F9FC;
    font-family: Inter;

    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.trust-tags i {
    color: #44d483;
    margin-right: 6px;
}

/* Stats */
.stat-card {
    text-align: center;
    padding: 30px 15px;
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(246, 249, 252, 0.10);
    background: rgba(246, 249, 252, 0.05);
}

.stat-card h3 {
    margin-bottom: 8px;
    color: #FF7527;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 36px;
    /* 120% */
}

.stat-card span {
    color: rgba(246, 249, 252, 0.70);
    text-align: center;
    font-family: Inter;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* Button */
.btn-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff6b00;
    width: 204.05px;
    height: 48px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 33554400px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10),
        0 4px 6px -4px rgba(0, 0, 0, 0.10);
    color: #FCFCFC;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    gap: 6px;
}

.btn-orange:hover {
    background: #162B59;
    color: #fff;
}

/*========================================= RESPONSIVE =========================================*/
@media(max-width:991px) {
    .trust-box {
        padding: 40px;
    }

    .video-header h2 {
        font-size: 38px;
    }

    .trust-box h2 {
        font-size: 34px;
        margin-top: 30px;
    }

    .video-box {
        height: auto;
    }
}

@media(max-width:767px) {
    .video-section {
        padding: 70px 0;
    }

    .video-header h2 {
        font-size: 30px;
    }

    .video-header p {
        font-size: 15px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .trust-box {
        padding: 30px 22px;
    }

    .trust-box h2 {
        font-size: 28px;
    }

    .trust-tags {
        flex-direction: column;
    }

    .stat-card {
        padding: 22px;
    }

    .stat-card h3 {
        font-size: 28px;
    }

    .btn-orange {
        width: 100%;
        text-align: center;
    }
}

@media(max-width:767px) {
    .play-btn {
        width: 58px;
        height: 58px;
    }

    .play-btn svg {
        width: 24px;
        height: 24px;
    }

    .video-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .video-content h3 {
        font-size: 20px;
    }

    .video-content p {
        font-size: 13px;
    }

    .video-time {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/*================================== APP SECTION ==================================*/
.app-section {
    position: relative;
    padding: 50px 0;
    background: #F7F5F1;
    overflow: hidden;
}

/* Floating Mechanic */
.floating-mechanic {
    position: absolute;
    left: 250.59px;
    top: -102.398px;
    width: 160px;
    z-index: 20;
}

.floating-mechanic img {
    width: 100%;
    width: 207px;
    height: 346px;
}

/* Badge */
.app-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    color: #0C1C45;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background: rgba(12, 28, 69, 0.05);
}

/* Title */
.app-title {
    margin-bottom: 20px;
    max-width: 520px;
    color: #0C1C45;
    font-family: "Plus Jakarta Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.72px;
}

/* Description */
.app-desc {
    max-width: 550px;
    margin-bottom: 28px;
    color: #5B6375;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

/* List */
.app-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.app-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #0C1C45;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.app-list i {
    color: #4fd08b;
    font-size: 18px;
}

/*========================= Tablet =========================*/
@media(max-width:991px) {
    .app-section {
        padding: 80px 0;
    }

    .app-title {
        font-size: 42px;
        max-width: 100%;
    }

    .floating-mechanic {
        width: 150px;
        bottom: -10px;
    }
}

/*========================= Mobile =========================*/
@media(max-width:767px) {
    .app-section {
        padding: 70px 0;
    }

    .app-title {
        font-size: 32px;
    }

    .app-desc {
        font-size: 15px;
    }

    .store-buttons {
        justify-content: center;
    }

    .store-buttons img {
        height: 48px;
    }

    .app-list li {
        align-items: flex-start;
        font-size: 15px;
    }

    .floating-mechanic {
        display: none;
    }
}

.phone-wrapper {
    width: 300px;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Glow */
.phone-wrapper::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 430px;
    background: linear-gradient(180deg, #fff1e8, #ffffff);
    border-radius: 40px;
    z-index: 0;
}

/* Phone */
.phone {
    width: 200px;
    height: 400px;
    border: 6px solid #172c5b;
    border-radius: 30px;
    background: #fff;
    position: relative;
    z-index: 2;
    padding: 14px 10px;
}

/* Notch */
.phone-notch {
    width: 42px;
    height: 5px;
    background: #172c5b;
    border-radius: 20px;
    margin: 0 auto 14px;
}

/* Screen */
.phone-screen {
    display: flex;
    flex-direction: column;
}

/* Top Card */
.app-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f4f1;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.active {
    background: #172c5b;
}

/* Progress */
.progress {
    width: 90px;
    height: 4px;
    background: #ff6b00;
    border-radius: 30px;
    margin: 2px 0 12px;
}

/* Dots */
.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

.orange {
    background: #ff6b00;
}

.green {
    background: #4fd08b;
    color: #fff;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blue {
    background: #172c5b;
}

/* Lines */
.content {
    flex: 1;
}

.line {
    height: 4px;
    border-radius: 30px;
    background: #b9bec8;
    margin-bottom: 6px;
}

.active .line {
    background: #fff;
}

.lg {
    width: 75%;
}

.md {
    width: 58%;
}

.sm {
    width: 42%;
}

/* Button */
.bottom-btn {
    background: #ff6b00;
    height: 28px;
    border-radius: 30px;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-btn span {
    width: 42px;
    height: 5px;
    background: #fff;
    border-radius: 20px;
}

/*====================================== Testimonials ======================================*/
.testimonial-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
    /* overflow: hidden; */
}

/* Floating Image */
.testimonial-worker {
    position: absolute;
    right: 0%;
    top: -188px;
    /* width: 500px; */
    z-index: 2;
}

.testimonial-worker img {
    width: 373px;
    height: 473px;
    aspect-ratio: 97/123;
}

/* Heading */
.testimonial-title {
    margin-bottom: 15px;
    color: #0C1C45;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.72px;
}

/* Rating */
.rating-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rating-summary .stars {
    color: #ff7a22;
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-summary span {
    color: #5B6375;
    text-align: center;
    font-family: Inter;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

/* Card */
.testimonial-card {
    border: 1px solid #edf1f7;
    padding: 28px;
    height: 100%;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
    border-radius: 28px;
    border: 1px solid rgba(224, 229, 235, 0.60);
    background: #FEFDFB;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #ff7a22;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.testimonial-card .stars {
    color: #ff7a22;
    font-size: 18px;
    margin-bottom: 18px;
}

/* Review */
.review {
    margin-bottom: 30px;
    min-height: 95px;
    color: #0C1C45;
    font-family: Inter;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    border-radius: 50%;
    background: #0C1C45;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    height: 40px;
    width: 40px;
}

.user h6 {
    margin: 0;
    color: #0C1C45;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 142.857% */
}

.user span {
    color: #5B6375;
    font-family: Inter;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

/*========================= Tablet =========================*/
@media(max-width:991px) {
    .testimonial-title {
        font-size: 40px;
    }

    .testimonial-worker {
        width: 120px;
    }
}

/*========================= Mobile =========================*/
@media(max-width:767px) {
    .testimonial-section {
        padding: 70px 0;
    }

    .testimonial-title {
        font-size: 30px;
    }

    .rating-summary {
        flex-direction: column;
        gap: 6px;
    }

    .review {
        min-height: auto;
    }

    .testimonial-worker {
        display: none;
    }

    .testimonial-card {
        padding: 22px;
    }
}

/*========================================= PARTNER SECTION =========================================*/
.partner-section {
    padding: 90px 0;
    background: #fff;
}

/* Left Image */
.partner-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 100%;
    background: linear-gradient(0deg, rgba(12, 28, 69, 0.85) 0%, rgba(12, 28, 69, 0.40) 50%, rgba(12, 28, 69, 0.00) 100%);
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 25, 60, .88), rgba(12, 25, 60, .20), transparent);
}

.partner-overlay {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: #fff;
    z-index: 2;
}

.partner-badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    color: #FF7527;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background: rgba(255, 117, 39, 0.20);
}

.partner-overlay h2 {
    margin-bottom: 15px;
    color: #F6F9FC;
    font-family: "Plus Jakarta Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.72px;
}

.partner-overlay p {
    margin-bottom: 20px;
    color: rgba(246, 249, 252, 0.85);
    font-family: Inter;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.partner-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-overlay li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(246, 249, 252, 0.85);
    font-family: Inter;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.partner-overlay i {
    color: #42d88c;
}

/* Form */
.partner-form {
    background: #F7F5F1;
    border: 1px solid #edf1f7;
    padding: 40px;
    height: 100%;
    border-radius: 32px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.partner-form h3 {
    margin-bottom: 10px;
    color: #0C1C45;
    font-family: "Plus Jakarta Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
    letter-spacing: -0.48px;
}

.partner-form p {
    margin-bottom: 30px;
    color: #5B6375;
    font-family: Inter;

    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.partner-form label {
    margin-bottom: 8px;
    color: #0C1C45;
    font-family: Inter;

    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
}

.partner-form .form-control {
    height: 52px;
    border-radius: 14px;
    border: 1px solid #dde3ee;
}

.partner-form textarea.form-control {
    height: 140px;
    resize: none;
}

.partner-form .form-control:focus {
    border-color: #ff7a22;
    box-shadow: none;
}

.partner-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 40px;
    background: #162B59;
    transition: .3s;
    color: #F6F9FC;
    text-align: center;
    font-family: Inter;

    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.partner-btn:hover {
    background: #ff6b00;
}

/*===================== Responsive ======================*/
@media(max-width:991px) {
    .partner-form {
        padding: 30px;
    }

    .partner-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .partner-overlay h2 {
        font-size: 32px;
    }
}

@media(max-width:767px) {
    .partner-section {
        padding: 70px 0;
    }

    .partner-form {
        padding: 24px;
    }

    .partner-form h3 {
        font-size: 28px;
    }

    .partner-overlay h2 {
        font-size: 28px;
    }

    .partner-overlay p {
        font-size: 14px;
    }

    .partner-btn {
        height: 52px;
    }
}

.partner-form-des {
    color: #5B6375;
    text-align: center;
    font-family: Inter;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.5px;
}

/*====================================== CTA SECTION ======================================*/
.cta-section {
    padding: 50px 0;
    background: #ffffff;
}

/* Main Box */
.cta-box {
    position: relative;
    overflow: hidden;
    padding: 90px 40px;
    box-shadow: 0 30px 60px rgba(22, 43, 89, .15);
    border-radius: 36px;
    background: linear-gradient(106deg, #0C1C45 0%, #513C4B 100%);
}

/* Decorative Glow */
.cta-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -120px;
    left: -80px;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
    bottom: -120px;
    right: -60px;
}

/* Content */
.cta-title {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    color: #F6F9FC;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 38px;
    font-style: normal;
    font-weight: 800;
    line-height: 48px;
    letter-spacing: -0.96px;
}

.cta-text {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto 35px;
    color: rgba(246, 249, 252, 0.80);
    text-align: center;
    font-family: Inter;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* Button */
.cta-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff6b00;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 34px;
    border-radius: 60px;
    transition: .35s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    color: #FCFCFC;
    font-family: Inter;

    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    /* 142.857% */
}

.cta-btn:hover {
    background: #fff;
    color: #162B59;
    transform: translateY(-4px);
}

.cta-btn i {
    font-size: 20px;
}

/*========================= Tablet =========================*/
@media(max-width:991px) {
    .cta-box {
        padding: 70px 30px;
    }

    .cta-title {
        font-size: 40px;
    }

    .cta-text {
        font-size: 16px;
    }
}

/*========================= Mobile =========================*/
@media(max-width:767px) {
    .cta-section {
        padding: 70px 0;
    }

    .cta-box {
        border-radius: 22px;
        padding: 55px 22px;
    }

    .cta-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .cta-text {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
    }
}

.slider-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}