﻿@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');




* {
    font-family: "Oswald", sans-serif;
}

:root {
    --primary: #3D3D98;
    --accent: #00C4B4;
    --light-blue: #D8F7FF;
    --body-bg: #ffffff;
    --btn-bg: #3D3D98;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--body-bg);
}

a:hover {
    color: none !important;
}
/* Top Header CSS */
.topbar {
    background-color: #111;
    color: #f5f5f5;
    font-size: 14px;
    padding: 6px 0;
}

    .topbar .star {
        color: #FFD700;
        margin: 0 1px;
        font-size: 13px;
    }

    .topbar .icon {
        color: var(--primary);
        font-size: 14px;
        margin-right: 6px;
    }

    .topbar .text-light-sm {
        color: #dcdcdc;
        font-size: 13px;
    }

/* Responsive Layout */
@media (min-width: 769px) and (max-width: 992px) {
    .topbar .row {
        text-align: start;
    }

    .topbar .col-md-auto {
        margin: 4px auto;
    }
}
@media (max-width: 768px) {
    .topbarList{
        display:none !important;
    }
    .topbar .row {
        text-align: center;
    }
.chat-btn{
    position: fixed !important;
    bottom: 10px !important;
    right: 10px !important;
    z-index: 999;
}
}

/* Top Header Ends */


/* Header CSS Start */
/* Navbar Base */
.navbar {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 15px;
}

.navbar-brand img {
    height: 36px;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #111111;
    margin-right: 10px;
    font-weight: 400;
    transition: color 0.2s ease;
    font-family: 'Instrument Sans', sans-serif;
}

.navbar-nav .nav-link {
    background-color: transparent;
    transition: all 0.3s ease; /* <-- animate all changes */
}

.navbar-nav .nav-link {
    padding: 6px 16px; /* keep constant */
    border-radius: 8px 0 8px 0;
    background-color: transparent;
    color: inherit;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: var(--btn-bg);
        color: white;
    }


/* Primary Button */
.btn-primary {
    background-color: var(--btn-bg);
    border-color: var(--primary);
    border-radius: 8px 0px 8px 0px;
    font-weight: 400;
    padding: 6px 16px;
    color:white;
}

    .btn-primary:hover {
        background-color: #2f2f80;
        border-color: #2f2f80;
        color:white;
    }

.text-primary {
    color: var(--primary) !important;
}
.bg-primar {
    background-color: var(--primary) !important;
}
/* Login Button */
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    padding: 6px 16px;
}

    .btn-outline-primary:hover {
        background-color: var(--primary);
        color: #fff;
    }

/* Cart Icon */
.cart-icon {
    width: 22px;
    margin-right: 15px;
    cursor: pointer;
}

/* Language Flag */
.lang-flag {
    width: 24px;
    border-radius: 50%;
    margin-right: 15px;
    cursor: pointer;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }

        .navbar-nav .nav-link {
            margin: 10px 0;
        }

    .right-buttons {
        flex-direction: row;
        align-items: center;
    }

    .btn-outline-primary {
        margin-top: 8px;
    }
    .
}

/* Header CSS Ends */


/* Banner CSS Start */


.hero {
    background: url('../images/banner-img.png') center/cover no-repeat;
    color: #fff;
    height: 840px;
    display: flex;
    align-items: center;
    position: relative;
}

    .hero .container {
        z-index: 2;
    }

    .hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        letter-spacing: 1px;
        border-left: 7px solid #53c3bf;
        padding-left: 15px;
        text-align:left;
    }

    .hero p {
        color: #e0e0e0;
        font-size: 1rem;
        max-width: 400px;
        margin-top: 10px;
        text-align:left !important;
    }

/* QR Code Image */
.qr-img {
    width: 150px;
    margin-top: 100px;
    border-radius: 12px;
    position: relative;
    right: 20px;
    display:none;
}

/* Right Card */
.info-card-back {
    background-color: #ffffff;
    border-radius: 18px 18px 18px 0px;
    color: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px;
}

.info-card {
    background-color: #53c3bf;
    border-radius: 15px 15px 15px 0px;
    padding: 25px 25px 20px;
    color: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 400px;
}

    .info-card h5 {
        font-weight: 700;
        color: #003B3A;
        margin-bottom: 20px;
    }

.info-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 10px 0px 10px 0px;
    padding: 10px 15px;
    margin-bottom: 12px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    transition: background 0.2s ease;
}

    .info-link:hover {
        background-color: #f4f4f4;
    }

    .info-link span {
        color: #666;
        font-size: 0.9rem;
    }

    .info-link i {
        color: var(--primary);
        font-size: 1rem;
    }

.login-btn {
    border: 1px solid var(--btn-bg);
    color: var(--primary);
    border-radius: 10px 0px 10px 0px;
    font-weight: 400;
    background-color: transparent;
    padding: 6px 26px;
    transition: all 0.2s ease-in-out;
}

    .login-btn:hover {
        background-color: var(--primary);
        color: #fff;
        border:none;
    }

/* Bottom Left Info */
.registered-info {
    position: absolute;
    bottom: 92px;
    left: 30px;
    color: #d0d0d0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .registered-info i {
        color: var(--accent);
    }
.chat-btn {
    position: absolute;
    bottom: 40px;
    right: 30px;
    color: #111111;
    background-color: #53C3BF;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content:center;
    gap: 6px;
    height:50px;
    width:100px;
    border-radius:50px;
    border:none !important;
}
.chat-btn button{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:5px;
    border: none !important;
    background:none !important;
    font-weight:500;
    font-size:14px;
}
    .chat-btn button img{
        height:20px;
        width:20px;
    }
.drop-down-icon {
    position: absolute;
    bottom: 30px;
    left: 0;
    color: #d0d0d0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100vw;
}

    /* 🔽 Add blinking animation to the image */
    .drop-down-icon img {
        animation: blink 1.2s infinite ease-in-out;
    }

/* ✨ Keyframes for blinking */
@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.2;
        transform: translateY(6px); /* small bounce down for extra effect */
    }
}


@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding: 50px 15px;
        height:500px;
    }

    .qr-img {
       display:none;
    }

    /* .info-card {
        margin: 30px auto 0;
    }*/

    .hero h1 {
        font-size: 2.2rem;
    }
    .main-info-card{
        scale:0.8;
    }
}
@media (max-width: 768px) {


    .main-info-card {
        scale: .8;
        position: absolute;
        top: 500px;
        left: 40%;
        transform: translateX(-50%);
    }

    .registreerFiets {
        padding-top: 390px !important;
    }

    .bottomCard1,.bottomCard2 {
        min-height: 350px;
    }

        .bottomCard1::before {
            content: "" !important;
            position: absolute !important;
            transform: rotate(137deg) !important;
            width: 150px !important;
            height: 170px !important;
            left: 0px !important;
            bottom: -43px !important;
            background: url(../images/step2-img3.png) no-repeat center;
            background-size: contain !important;
            z-index: 0 !important;
        }

        .bottomCard1::after {
            content: "" !important;
            position: absolute !important;
            transform: rotate(10deg) !important;
            width: 151px !important;
            height: 168px !important;
            left: 87px !important;
            bottom: 34px !important;
            background: url(../images/right-card-2.png) no-repeat center !important;
            background-size: contain !important;
            z-index: 0 !important;
        }

    .bikeScanImg {
        width: 120px !important;
        height: auto !important;
        position: absolute !important;
        z-index: 2 !important;
        top: 194px !important;
        left: 65px !important;
        rotate: 10deg !important;
    }
    .bottomCard2Img {
        position: absolute;
        bottom: -50px;
        left:100px;
    }
}
/*Banner CSS Ends */

/*Registreer fiets CSS Start*/
/* Section Base */
.registreerFiets {
    padding: 80px 20px;
    text-align: center;
}

    .registreerFiets h2 {
        color: var(--primary);
        font-weight: 800;
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .registreerFiets p.lead {
        color: #555;
        max-width: 750px;
        margin: 0 auto 40px;
    }

/* Card styles */
.fiets-card-1 {
    border: none;
    border-radius: 10px;
    padding: 50px 25px 30px 25px;
    text-align: left;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height:380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.fiets-card-2 {
    border: none;
    border-radius: 10px;
    padding: 50px 25px 30px 25px;
    /* text-align: right; */
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}
    .fiets-card-1 h4, .fiets-card-2 h4 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 15px;
    }

    .fiets-card-1 p {
        font-size: 18px;
        color: #555;
        font-weight:normal;
    }.fiets-card-2 p {
        font-size: 18px;
        color: #555;
        font-weight: normal;
        text-align:left;
    }

.fiets-card-1 .btn, .fiets-card-2 .btn {
    background-color: var(--btn-bg);
    border: none;
    color: #fff;
    border-radius: 8px 0px 8px 0px;
    padding: 8px 18px;
    font-weight: normal !important;
    margin-top: 10px;
}

        .fiets-card-1 .btn:hover, .fiets-card-2 .btn:hover {
            background-color: #2f2f80;
        }
.fiets-card-1::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 35%;
    transform: rotate(0deg);
    width: 222px;
    height: 238px;
    background: url(../images/left-card-1.png) no-repeat center;
    background-size: contain;
}
.fiets-card-1::after {
    content: "";
    position: absolute;
    top: 87px;
    right: -7%;
    transform: rotate(-1deg);
    width: 274px;
    height: 293px;
    background: url(../images/left-card-2.png) no-repeat center;
    background-size: contain;
}

.fiets-card-2::before {
    content: "";
    position: absolute;
    top: 64px;
    left: -40px;
    transform: rotate(0deg);
    width: 222px;
    height: 238px;
    background: url(../images/right-card-1.png) no-repeat center;
    background-size: contain;
}

.fiets-card-2::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 9%;
    transform: rotate(-1deg);
    width: 137px;
    height: 199px;
    background: url(../images/right-card-2.png) no-repeat center;
    background-size: contain;
}
.bg-left {
    background-color: #F4E2E3;
}

.bg-right {
    background-color: #FAF5E9;
}
.fiets-card-3 {
    position: relative;
    border-radius: 10px;
    padding: 40px;
    text-align: left;
    min-height: 350px;
    height: auto;
}
    .fiets-card-3::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: -28px;
        transform: rotate(0deg);
        width: 222px;
        height: 238px;
        background: url(../images/bottom-card-1.png) no-repeat center;
        background-size: contain;
    }

    .fiets-card-3::after {
        content: "";
        position: absolute;
        bottom: 73px;
        right: 163px;
        transform: rotate(2deg);
        width: 300px;
        height: 300px;
        background: url(../images/bottom-card-2.png) no-repeat center;
        background-size: contain;
    }
    .fiets-card-3 .btn {
        background-color: var(--btn-bg);
        border: none;
        color: #fff;
        border-radius: 8px 0px 8px 0px;
        padding: 8px 18px;
        font-weight: normal !important;
        margin-top: 10px;
    }
.bg-bottom {
    background-color: #DBFFFE;
}

.card-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    opacity: 1;
    z-index: 101;
}

.sticker-img {
    position: absolute;
    left: 0px;
    top: 7px;
    width: 175px;
    z-index: 101;
}

.cycle-img {
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 300px;
    z-index: 101;
}
.bottom-logo-1 {
    position: absolute;
    right: 124px;
    bottom: 166px;
    width: 130px;
    z-index: 101;
}
.bottom-logo-2 {
    position: absolute;
    right: 183px;
    bottom: 60px;
    width: 150px;
    z-index: 101;
}
/* Responsive */
@media (max-width: 992px) {
    .registreerFiets h2 {
        font-size: 1.5rem;
    }

    .politie-img {
        position: relative;
        width: 100%;
        margin-top: 20px;
    }

    .sticker-img {
        position: absolute;
        width: 100px;
        height: auto;
    }

    .card-img {
        position: absolute;
        width: 130px;
        height: auto;
    }

    .fiets-card-2::before {
        content: "";
        position: absolute;
        top: 26px;
        left: -21px;
        transform: rotate(0deg);
        width: 100px;
        height: 100px;
        background-size: contain;
    }

    .fiets-card-2::after {
        content: "";
        position: absolute;
        top: 6px;
        left: 9%;
        transform: rotate(-1deg);
        width: 100px;
        height: 100px;
        background-size: contain;
    }

    .fiets-card {
        text-align: center;
    }

    .fiets-card-1::before {
        content: "";
        position: absolute;
        bottom: 2px;
        left: 370px;
        transform: rotate(0deg);
        width: 100px;
        height: 100px;
        background-size: contain;
    }

    .fiets-card-1::after {
        content: "";
        position: absolute;
        top: 248px;
        right: -7%;
        transform: rotate(-1deg);
        width: 100px;
        height: 100px;
        background-size: contain;
    }

    .cycle-img {
        width: 130px;
    }

    .fiets-card-3::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: -28px;
        transform: rotate(0deg);
        width: 100px;
        height: 100px;
        background: url(../images/bottom-card-1.png) no-repeat center;
        background-size: contain;
    }

    .fiets-card-3::after {

    content: "";
    position: absolute;
    bottom: 10px;
    right: 76px;
    transform: rotate(2deg);
    width: 140px;
    height: 140px;
    background: url(../images/bottom-card-2.png) no-repeat center;
    background-size: contain;

    }
    .bottom-logo-1 {
        position: absolute;
        right: 10px;
        bottom: 70px;
        width: 80px;
        z-index: 101;
    }
    .bottom-logo-2 {
        position: absolute;
        right: 54px;
        bottom: 19px;
        width: 100px;
        z-index: 101;
    }
  /*  .fiets-card-2 {
        justify-content: flex-start !important;
        align-items: flex-start !important
    }*/
}

/*Registreer fiets CSS Ends*/



/* Section Base */
.registered-section {
    text-align: center;
    padding: 0px 0px 100px;
    position: relative;
    background: #3d3d98;
}
    .registered-section::before {
        content: "";
        width: 100vw;
        height: 600px;
        position: absolute;
        top: -1px;
        left: 0;
        z-index: 0;
        border-radius: 0% 0% 45% 45%;
        background: var(--body-bg);
    }

    .registered-section h2 {
        color: var(--primary);
        font-weight: 600;
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

/* Slider Container */
.slider-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.slider-images {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .slider-images img {
        min-width: 200px;
        min-height: 200px;
        padding: 30px;
        opacity: 0.3;
        transition: all 0.4s ease;
        border-radius: 50%;
        border-radius: 50%;
        box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
        background: #FEFEFE;
    }
.left-img {
    position: relative;
    left: 60px;
    top: 60px;
}
.right-img {
    position: relative;
    right: 60px;
    top: 60px;
}
.slider-images img.active {
    min-width: 350px;
    min-height: 350px;
    opacity: 1;
    z-index: 2;
    border: 8px solid var(--accent);
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.frame-number {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    background: white;
    box-shadow: 1px 1px 1px 1px #00000010;
    padding: 10px;
    z-index: 12;
    border-radius: 10px;
}

    .frame-number span {
        display: block;
        color: #555;
        font-size: 0.9rem;
        font-weight: 400;
    }

/* Controls */
.controls {
    margin-top: 80px;
}

.control-btn {
    background-color: var(--btn-bg);
    border: none;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.2rem;
    margin: 0 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .control-btn:hover {
        background-color: #2f2f80;
    }

@media (max-width: 768px) {
    .slider-images img.active {
        width: 200px;
    }

    .slider-images img {
        width: 140px;
    }

    .frame-number {
        bottom: -35px;
    }

}

/**/

.Registreer-je-fiets{
    background:var(--primary);
    padding:30px 0px;

}
.Registreer-je-fiets h2{
   text-align:center;
    color: white;
}
.je-fiets-boxes {
    background-color: #F6FFFF;
    border-radius: 5px;
    padding: 15px;
}
.je-fiets-icon{
    display:flex;
    justify-content:center;
    align-items:center;
}
.je-fiets-icon-back {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E1F4F4;
    display: flex;
    justify-content: center;
    align-items: center;
}
.je-fiets-boxes p{
    text-align:center;
    color:#111111;
    font-weight:500;
    font-size:14px;
    margin-bottom:5px;
    margin-top:10px;
}
.je-fiets-boxes span {
    color: #464646;
    font-size:13px;
    font-weight:normal;
}
.btn1 {
    background-color: #52C1BE;
    border: none;
    color: #fff;
    border-radius: 8px 0px 8px 0px;
    padding: 8px 18px;
    font-weight: normal !important;
    margin-top: 20px;
    width:fit-content;
    text-decoration:none;
}



/**Step numbers*/


/* ================================
   CICOPASS IN 3 STAPPEN SECTION
   ================================ */

.bg-steps {
    background-color: #E1F4F4;
}

.bg-steps h2 {
    color: var(--primary) !important;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.step-number {
    width: 66px;
    height: 66px;
    background-color: #ffffff; /* white circle */
    border-radius: 50%; /* makes it perfectly round */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3D3D98; /* your brand blue */
    font-weight: 500;
    font-size: 20px;
    border: 2px solid #E1F4F4; /* soft outline (optional) */
    box-shadow:none;
    position: relative;
    z-index: 2;
    margin-bottom: 15px; /* space below circle */
}

.step-card-1 h4 {
    font-weight: 400;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #111111;
    text-align: left;
    margin-bottom: 15px;
}


.step-card-1 {
    border: none;
    text-align: start;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    justify-content: end;
    align-items: end;
    min-height: 450px;
}

    .step-card-1::before {
        content: "";
        position: absolute;
        bottom: 40px;
        pointer-events: none;
        left: 50%;
        transform: translateX(-50%);
        width: 280px;
        height: 280px;
        background: url("../images/frame-step-1.png") no-repeat center bottom;
        background-size: contain;
        z-index: 0;
    }

    .step-card-1::after {
        content: "";
        pointer-events: none;
        position: absolute;
        bottom: -2px; /* ⬆️ moves it slightly above bottom */
        left: 50%; /* center horizontally */
        transform: translateX(-50%) rotate(-5deg); /* tilt slightly for style */
        width: 270px; /* adjust size as needed */
        height: 200px;
        background: url("../images/bike-card-steps1.png") no-repeat center;
        background-size: contain;
        z-index: 0;
    }

    .step-card-1 .btn {
        background-color: var(--btn-bg);
        border: none;
        color: #FFFFFF; /* from Figma */
        border-radius: 8px 0px 8px 0px;
        padding: 10px 24px;
        margin-top: 15px;
        font-weight: 400;
        font-size: 18px;
        line-height: 1.11;
        letter-spacing: 0em;
        text-align: center;
        /* Button behavior */
        display: inline-block;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        .step-card-1 .btn:hover {
            background-color: #2f2f80;
            color: #FFFFFF;
        }


/* ---------- STEP CARD 2 ---------- */
.step-card-2 {
    position: relative;
    border-radius: 10px;
    padding: 25px;
    min-height: 450px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: left;
}
    .step-card-2::before {
        content: "";
        position: absolute;
        bottom: 0px;
        pointer-events: none;
        right: -13px;
        width: 170px;
        height: 170px;
        background: url(../images/step2-img3.png) no-repeat center bottom;
        background-size: contain;
        z-index: 0;
        rotate: -18deg;
    }

    .step-card-2::after {
        content: "";
        pointer-events: none;
        position: absolute;
        bottom: 117px;
        transform: translateX(-32%) rotate(-14deg);
        width: 160px;
        height: 160px;
        background: url(../images/step2-img4.png) no-repeat center;
        background-size: contain;
        z-index: 0;
    }
    .step-card-2 .btn {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 25px;
        white-space: nowrap;
        background-color: var(--btn-bg);
        border: none;
        color: #FFFFFF; /* from Figma */
        border-radius: 8px 0px 8px 0px;
        padding: 10px 24px;
        margin-top: 15px;
        font-weight: 400;
        font-size: 18px;
        letter-spacing: 0em;
        text-align: center;
        /* Button behavior */
        display: inline-block;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .step-card-2 .btn:hover {
        background-color: #2f2f80;
        color: #FFFFFF;
    }
.step2-qr1 {
    width: 150px;
    height: auto;
    object-fit: contain;
    z-index: 10;
    position: absolute;
    left: 97px;
    top: 180px;
    rotate: 3deg;
}
.step2-qr2 {
    width: 150px;
    height: auto;
    object-fit: contain;
    z-index: 8;
    position: absolute;
    opacity: 0.5;
    left: 130px;
    TOP: 200px;
    transform: rotate(15deg);
}
.step-card-3 {
    position: relative;
    border-radius: 10px;
    padding: 25px;
    min-height: 450px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: left;
}
    .step-card-3::before {
        content: "";
        position: absolute;
        top: -100px;
        pointer-events: none;
        right: 0;
        width: 300px;
        height: 300px;
        background: url(../images/step3-img2.png) no-repeat center bottom;
        background-size: contain;
        z-index: 0;
        rotate: -18deg;
    }

    .step-card-3::after {
        content: "";
        position: absolute;
        top: 0;
        width: 250px;
        height: 250px;
        background: url(../images/step3-img1.png) no-repeat center;
        background-size: contain;
        z-index: 0;
        right: -16px;
    }
.step-card-3 .btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    white-space: nowrap;
    background-color: var(--btn-bg);
    border: none;
    color: #FFFFFF; /* from Figma */
    border-radius: 8px 0px 8px 0px;
    padding: 10px 24px;
    margin-top: 15px;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0em;
    text-align: center;
    /* Button behavior */
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .step-card-3 .btn:hover {
        background-color: #2f2f80;
        color: #FFFFFF;
    }
    .step-card-3 h4{
        position:absolute;
        bottom:110px;
    }


/* brands-section */
.brandsArea_bx77 {
    background: #fff;
    overflow: hidden;
}

.marqueeWrap_bx77 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marqueeTrack_bx77 {
    display: flex;
    align-items: center;
    gap: 60px; /* space between logos */
    animation: scroll_bx77 40s linear infinite;
    width: max-content;
}

.brandLogo_bx77 {
    height: 200px;
    width: 200px;
    object-fit: contain;
    background: transparent;
    border-radius: 10px;
    filter: brightness(1) contrast(1) saturate(1.1);
    transition: transform 0.3s ease;
}

    .brandLogo_bx77:hover {
        transform: scale(1.1);
    }

@keyframes scroll_bx77 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .brandLogo_bx77 {
        height: 100px;
        width: 100px;
    }

    .marqueeTrack_bx77 {
        gap: 40px;
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .brandLogo_bx77 {
        height: 70px;
        width: 70px;
    }

    .marqueeTrack_bx77 {
        gap: 30px;
        animation-duration: 25s;
    }
}

/**testimonial*/
.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.2s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
    }


.cicopassSteps h2{
    color:var(--primary);
    font-size:40px;
    font-weight:600;

}

/*register-section*/
.register-section{
    padding:80px 0px;
}
.register-section-text{
    color:var(--primary);
    font-size:32px;
    font-weight:600;
    display:flex;
    justify-content:center;
}

.register-section-text .btn {
    width:fit-content;
    background-color: var(--btn-bg);
    border: none;
    color: #FFFFFF; /* from Figma */
    border-radius: 8px 0px 8px 0px;
    padding: 10px 24px;
    margin-top: 15px;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0em;
    text-align: center;
    /* Button behavior */
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .register-section-text .btn:hover {
        background-color: #2f2f80;
        color: #FFFFFF;
    }

    /* FAQ Section */

.faq-section {
    border-radius: 14px;
    padding: 60px 0;
}
    .faq-section .container {
        background-color: #ECECF5;
        padding: 40px;
        border-radius: 25px;
    }
.faq-active{

}
.faq-left h2 {
    color: #3D3D98;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-left p {
    color: #444;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.chat-btn {
    background-color: #53C3BF;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

    .chat-btn:hover {
        background-color: #2e2e7a;
    }
.faq-item {
    border-bottom: 1px solid #d9d9e8;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .faq-item:hover {
        background-color: rgba(61, 61, 152, 0.05);
    }

    .faq-item.active {
        background-color: white !important;
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    color: #333;
}

    .faq-question .icon {
        font-size: 20px;
        color: #3D3D98;
        transition: all 0.3s ease;
    }

.faq-answer {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.faq-item.faq-active .faq-answer {
    max-height: 200px;
    margin-top: 10px;
    opacity: 1;
    text-align:left;
}
.faq-active {
    background: transparent;
    border-radius: 0px;
}
.view-more {
    margin-top: 25px;
    text-align: right;
}

    .view-more a {
        color: #3D3D98;
        font-size: 14px;
        text-decoration: none;
        border: 1px solid #3D3D98;
        border-radius: 8px 0px 8px 0px;
        padding: 8px 16px;
        transition: all 0.3s;
    }

        .view-more a:hover {
            background-color: #3D3D98;
            color: white;
        }
        /*Bottom CArd Section*/

.bottom-card-section{
    padding:30px 0px 40px 0px;
}
.bottomCard1 {
    background-color: #faf5e9;
    border-radius:15px;
    height:auto;
    position:relative;
    overflow:hidden;
}
    .bottomCard1::before {
        content: "";
        position: absolute;
        transform: rotate(137deg);
        width: 165px;
        height: 200px;
        left: -83px;
        bottom: -43px;
        background: url(../images/step2-img3.png) no-repeat center;
        background-size: contain;
        z-index: 0;
    }
    .bottomCard1::after {
        content: "";
        position: absolute;
        transform: rotate(10deg);
        width: 165px;
        height: 200px;
        left: 30px;
        bottom: 23px;
        background: url(../images/right-card-2.png) no-repeat center;
        background-size: contain;
        z-index: 0;
    }

.bikeScanImg {
    width: 175px;
    height: auto;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    rotate: 10deg;
}
/*    .bottomCard1::after {
        content: "";
        position: absolute;
        top: 87px;
        right: -7%;
        transform: rotate(-1deg);
        width: 274px;
        height: 293px;
        background: url(../images/left-card-2.png) no-repeat center;
        background-size: contain;
    }*/
.bottomCard1 .row {
    height: 100%; /* Make the row fill the full height */
}
.bottomCard1 .col-6 {
    height: 100%;
}
.rightCol {
    display:flex;
    flex-direction:column;
    gap:10px;
    justify-content:flex-start;
    align-items:start;
}
.bottomCard1 p {
    color: var(--primary);
    font-size: 32px;
    font-weight: 500;
}
    .bottomCard1 .btn{
        background:white;
         color: #3D3D98;
        font-size: 14px;
        text-decoration: none;
        border-radius: 8px 0px 8px 0px;
        padding: 8px 16px;
        transition: all 0.3s;
    }
.bottomCard1 a:hover {
    background-color: #3D3D98;
    border: 1px solid #3D3D98;
    color: white;
}
.bottomCard2 {
    background-color: #53C3BF;
    border-radius: 15px;
    height: auto;
    position: relative;
    overflow: hidden;
}
.bottomCard2Img {
    position: absolute;
    bottom: -50px;
}
.leftCol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: start;
}
        .bottomCard2 p {
            color: var(--primary);
            font-size: 32px;
            font-weight: 500;
        }
.bottomCard2 .btn {
    background: white;
    color: #3D3D98;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px 0px 8px 0px;
    padding: 8px 16px;
    transition: all 0.3s;
}

.bottomCard2 a:hover {
    background-color: #3D3D98;
    color: white;
    border: 1px solid #3D3D98;
}
.loginImg1 {
    position: absolute;
    width: 241px;
    transform: translate(158px, 66px);
}
.loginImg2 {
    position: absolute;
    width: 241px;
    transform: translate(-436px, 346px);
}

/*Product Section*/
.product-section {
    padding: 30px 0;
    background: url('../images/Product-banner.png') center/ 100% 100% no-repeat;
    height: auto;
    min-height: 600px;
    display:flex;
    justify-content:center;
    /*align-items:center;*/
}
.breadCrumb {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 400;
    display: flex;
    gap: 5px;
    align-items: center;
    position: relative;
    padding: 0.5rem 0rem;
    background-color: #ECECF5;
}

    .breadCrumb a {
        text-decoration: none;
        color: gray;
        font-family: 'Instrument Sans', sans-serif!important;
 
    }
    .breadCrumb span:nth-last-child(2) {
        color: gray;
        margin-top:-3px;
   
    }

    .breadCrumb span:last-child {
        color: black;
        font-weight:500;
        font-family: 'Instrument Sans', sans-serif !important;
    }

.slider-container1 {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.slide {
    width: 100%;
    height: 380px;
    display: none;
    border-radius: 12px;
    transition: opacity 2s ease-in-out;
}

    .slide.active {
        display: block;
        opacity: 1;
    }

.slider-btn {
    position: absolute;
    bottom: 20px;
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    display:flex;
    justify-content:center;
    align-items:center;
}

    .slider-btn.left {
        right: 80px;
    }

    .slider-btn.right {
        right: 20px;
    }

.product-info h2 {
    font-weight: 600;
    text-transform: uppercase;
  /*  font-size: 28px;*/
    color: #1a1a1a;
}
.product-info p {
    font-size: 14px;
    font-weight: 400;
    color: #464646;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 10px;
}
.price {
    font-size: 20px;
    margin: 10px 0;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.discount {
    background: #dfffea;
    color: #0a885f;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    margin-left: 5px;
}
.rmvBtn {
    background: white;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111111;
    border: none;
    font-size: 20px;
    padding: 0px 10px;
    border-radius:8px 0px 0px 8px;
}
.addBtn {
    background: white;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111111;
    border: none;
    font-size: 20px;
    padding: 0px 10px;
    border-radius: 0px 8px 8px 0px;
}
.qtyInput {
    width: 50px;
    height: 40px;
    border: none;
}
.btn-buy {
    background-color: var(--btn-bg);
    color: #fff;
    font-weight: 400;
    border-radius: 8px 0px 8px 0px;
    padding: 10px 25px;
    border: none;
    margin-top: 10px;
    font-size: 13px;
}

    .btn-buy:hover {
        background-color: #2d2d78;
    }


@media (max-width: 991px) {
    .product-section {
        padding: 40px 15px;
    }

    .product-info {
        text-align: center;
        margin-top: 30px;
    }
    .dropdown.userDropdown {
        margin-right: 1.3rem;
    }
}


/*Informati Text */
.informati-section {
    padding: 40px 0px 20px 0px;

}
.informati-section .container{
    padding-bottom:20px;
    border-bottom: 1px solid #D9D9D9;
}
.informatiText h1{
    color:var(--primary);
    font-weight:600;
    font-size:36px;
}
.informatiText p {
    color: #464646;
    font-weight: 400;
    font-size: 14px;
}


.sticker-section {
padding:40px 0px;
}

.sticker-box {
    border: 2px solid #00b4d8;
    border-radius: 15px;
    min-height: 450px;
    width: 400px;
    background: url('../images/prod-stckr.png') center/ 100% 100% no-repeat;
    overflow:hidden;
}

.sticker-image {
    position: relative;
    width: 220px;
    height: 220px;
}

    .sticker-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.sticker-content .btnwerkt {
    background-color: var(--btn-bg);
    color: white;
    border-radius: 8px;
    padding: 10px;
    font-weight: 400;
    font-size: 13px;
    text-decoration: none;
    display: block;
    width: fit-content;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticker-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2e3192;
    margin-bottom: 20px;
}

.sticker-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

    .sticker-content ul li {
        margin-bottom: 10px;
        line-height: normal;
        border-bottom:1px solid #d9d9d9;
        padding:10px 0px;
        font-size:13px;
        color:#464646;
    }

.sticker-content .btn {
    background-color: #2e3192;
    color: #fff;
    border-radius: 8px 0px 8px 0px;
    padding: 10px 25px;
    font-weight: 600;
}

    .sticker-content .btn:hover {
        background-color: #212579;
    }

@media (max-width: 768px) {
    .sticker-box {
        padding: 20px;
    }

    .sticker-image {
        width: 180px;
    }

    .sticker-content h2 {
        font-size: 22px;
    }
}

/*Search Bike Section*/
.main-page-section {
    padding: 0px 0px 100px 0px;
    background: url('../images/searchBikeBG.png') center/ 100% 100% no-repeat;
    height: auto;
    display: flex;
    justify-content: center;
    /*align-items:center;*/
}
.search-section {
    background: #fff;
    border-radius: 8px 0px 8px 0px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
    .search-section .row{
        margin:0;
        padding:10px 0px;
    }
    .search-section input {
        border: none;
        box-shadow: none;
        background: #F5F5F5;
        color: #111111;
        font-size: 13px;
        font-weight: 400;
    }
        .search-section input:focus {
            border: none;
            box-shadow: none;
            background: #F5F5F5;
        }
        .search-section input::placeholder {
            color:#111111;
            font-size:13px;
            font-weight:400;
        }
label {
    font-size: 14px;
    color: #3D3D98;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #d4d4d4;
    font-size: 15px;
    padding: 10px 14px;
}

.btn-search {
    background-color: var(--btn-bg);
    color: #fff;
    border-radius: 8px 0px 8px 0px;
    padding: 10px 24px;
    border: none;
    font-weight: 400;
    transition: 0.3s ease;
    width: 100%;
}


.or-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .btn-search {
        margin-top: 15px;
    }
}
.results-section{
    margin-top:30px;
}
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

    .results-header h6 {
        font-weight: 500;
        color: #1c1c2b;
    }

    .results-header a {
        color: #6263c9;
        text-decoration: none;
        font-weight: 400;
    }

.btn-filter {
    background-color: #fdfdfe;
    color: #3b3fbf;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .btn-filter input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: #3b3fbf; /* modern browsers */
        cursor: pointer;
    }

    .btn-filter:hover {
        background-color: #d9dcff;
    }

    .btn-filter label {
        cursor: pointer;
        margin: 0;
        font-size: 14px;
    }


.bike-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.2s ease;
    position: relative;
}

    .bike-card:hover {
        transform: translateY(-5px);
    }

    .bike-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        padding:10px;
    }

.bike-card-body {
    padding: 15px;
}

.bike-card h6 {
    color: #3b3fbf;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    cursor: pointer;
}

.bike-card p {
    font-size: 14px;
    color: #555;
    margin: 2px 0;
}

.badge-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e63b3b;
    color: white;
    font-size: 13px;
    border-radius: 0px 6px 0px 6px;
    padding: 5px 10px;
}

.badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e5e8ff;
    color: #3b3fbf;
    font-size: 13px;
    border-radius: 0px 6px 0px 6px;
    padding: 5px 10px;
}
.pagination {
    display: flex;
    gap: 10px;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 0;
}

    .pagination a,
    .pagination span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        border-radius: 8px;
        background: #fff;
        color: #2e2fa2;
        text-decoration: none;
        font-weight: 600;
        font-size: 18px;
        border: 1px solid transparent;
        transition: all 0.2s ease;
    }

        .pagination a:hover {
            border-color: #c4c7ff;
            background-color: #f2f3ff;
        }

    .pagination .active {
        background: #42c4c4;
        color: white;
    }

    .pagination .next {
        border: 1px solid #c4c7ff;
        color: #2e2fa2;
        background: #fff;
    }

    /* Bike Detail Section*/
.status-bar {
    color: white;
    border-radius: 8px;
    margin-top: 15px;
    padding: 15px;
}

.status-bar-danger {
    background-color: #d63031; /* red */
}

.status-bar-success {
    background-color: #00b894; /* green */
}

.status-bar-info {
    background-color: #0984e3; /* blue */
}

.status-bar-warning {
    background-color: #fdcb6e; /* yellow/orange */
    color: #000;
}

.status-text {
    font-size: 16px;
    font-weight: 500;
}

.badge-status1 {
    background-color: transparent;
    color: #ffffff;
    font-weight: 500;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    padding: 5px 10px;
}

.btn-location {
    background-color: transparent;
    color: #ffffff;
    font-weight: 500;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    padding: 8px 15px;
}

.main-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 25px;
    margin-top: 25px;
}

h5 {
    color: #1e3799;
    font-weight: 600;
}

.bike-image {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

table {
    font-size: 15px;
}

td:first-child {
    font-weight: 600;
    width: 40%;
    white-space: nowrap;
}

.location-card {
    border-radius: 12px;
    margin: 40px auto;
}

.map-wrapper {
    background-color: #cef7df;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 8px;
}

h6 {
    color: #1e3799;
    font-weight: 600;
    margin-bottom: 15px;
}


@media (max-width: 768px) {
    .status-bar {
        text-align: center;
    }

    .btn-location {
        margin-top: 10px;
    }

    .map-container iframe {
        height: 250px;
    }
}

/*Cicopass Sticker*/

.search-options {
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.option-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease;
}

    .option-card:hover {
        transform: translateY(-4px);
    }

    .option-card h6 {
        color: #1e3799;
        font-weight: 700;
        font-size: 15px;
        text-transform: uppercase;
        text-align: center;
        padding: 15px 10px 0 10px;
    }

.option-img {
    text-align: center;
    padding: 15px;
}

    .option-img img {
        width: 100%;
        border-radius: 8px;
        object-fit: cover;
    }

.btn-option {
    background-color: var(--btn-bg);
    color: white;
    border: none;
    border-radius: 8px 0px 8px 0px;
    padding: 10px;
    font-weight: 500;
    margin-bottom: 20px;
    width: calc(100% - 20px);
}

.sticker-text-section {
    padding: 80px 0px;
}

.sticker-content-section h1 {
    color: #3D3D98;
    margin: 10px 0px 40px 0px;
}

.sticker-content-section p {
    color: #464646;
    font-size: 13px;
    font-weight: 400;
}

.sticker-content-section h3 {
    color: #111111;
    margin: 70px 0px 30px 0px;
}

.cicopassStickerBtn {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .cicopassStickerBtn .btn {
        background-color: var(--btn-bg);
        border: none;
        color: #fff;
        border-radius: 8px 0px 8px 0px;
        padding: 8px 18px;
        font-weight: normal !important;
        margin-top: 10px;
        min-width: 25%;
    }

@media (max-width: 768px) {
    .option-card {
        max-width: 100%;
    }
}
.btn-check:focus + .btn, .btn:focus {
     outline: none;
     box-shadow: none;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: none;
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: none;
}
.main-contact-page {
    padding: 30px 0px 100px 0px;
    background: url(../images/Product-banner.png) center / 100% 100% no-repeat;
    height: auto;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contactText span {
    font-weight: 600;
    font-size: 50px;
    color: #111111;
    text-transform:uppercase;
    line-height:65px;
}
.contactText p {
    font-weight: 400;
    font-size: 16px;
    color: #464646;
}
.contact-section {
    max-width: 450px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 30px 35px;
    position: absolute;
    top: 130px;
    z-index: 10;
}

    .contact-section h5 {
        color: #1e3799;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

label {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

input, textarea {
    background-color: #f3f3fc;
    border: none;
    border-radius: 6px;
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    resize: none;
}

    input:focus, textarea:focus {
        outline: none;
        box-shadow: 0 0 0 2px #3d3d9833;
    }

.btn-submit {
    background-color: var(--btn-bg);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    font-weight: 500;
    margin-top: 10px;
    transition: background 0.2s ease;
}

    .btn-submit:hover {
        background-color: #2a2a78;
    }

.response-note {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    color: #555;
}

    .response-note img {
        width: 16px;
        margin-right: 4px;
        vertical-align: middle;
    }
@media (max-width: 991px) {
    .contact-section {
       max-width:400px;
    }
    .contactText span {
        font-weight: 600;
        font-size: 30px;
        color: #111111;
        text-transform: uppercase;
        line-height: normal;
    }

    .contactText p {
        font-weight: 400;
        font-size: 14px;
        color: #464646;
    }
}
@media (max-width: 768px) {
   .contact-section {
        padding: 20px;
        position:relative;
        top:0;
    }
    .contactText span {
        font-weight: 600;
        font-size: 20px;
        color: #111111;
        text-transform: uppercase;
        line-height: normal;
    }

    .contactText p {
        font-weight: 400;
        font-size: 12px;
        color: #464646;
    }
}

/*FAQ Page CSS*/
.main-faq-page {
    padding: 0px 0px 100px 0px;
    background: url(../images/searchBikeBG.png) center / 100% 100% no-repeat;
    margin-bottom:60px;
}
.faq-section {
    text-align: center;
    padding: 60px 0;
}

    .faq-section h3 {
        font-weight: 700;
        margin-bottom: 40px;
        color: #000;
        text-transform: uppercase;
        font-size: 18px;
        letter-spacing: 1px;
    }

.faq-card {
    background-color: var(--btn-bg);
    color: #fff;
    border-radius: 8px 0px 8px 0px;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}
.faq-card > img {
    position:relative;
    top:2px;
}

    .faq-card:hover {
        transform: translateY(-3px);
        color:white;
    }

    .faq-card span {
        font-size: 13px;
    }
.faq-wrapper {
    padding: 60px 0;
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
}
.faq-title img{
  width:40px;
  height:auto;
  object-fit:contain;
}

    .faq-title i {
        color: #3c3a97;
        border: 2px solid #3c3a97;
        border-radius: 50%;
        font-size: 18px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.accordion-button {
    background-color: #fff;
    border: none;
    font-weight: 500;
    font-size: 15px;
    color: #111111;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        color: #111111;
        background-color: #ffffff;
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233c3a97' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 011 0L8 9.293l5.354-4.647a.5.5 0 11.707.707l-6 5.5a.5.5 0 01-.707 0l-6-5.5a.5.5 0 010-.707z'/%3E%3C/svg%3E");
    }

.accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
}

.accordion-body {
    font-size: 14px;
    color: #464646;
    line-height: 1.6;
    background-color: #fff;
}

@media (max-width: 768px) {
    .faq-title {
        justify-content: center;
        margin-bottom: 20px;
    }
}

.main-fietsregistreren-page {
    width: 100%;
    height: 100vh;
    scroll-behavior: smooth;
    overflow: auto;
    background: #f0f0f7;
}

.fiets-section {
    text-align: center;
    padding: 60px 0;
}

.fietsregistreren-page-content {
    padding: 2px 15px 200px 15px;
}

    .fietsregistreren-page-content h2 {
        font-weight: 600;
        text-transform: uppercase;
        color: #111111;
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }

    .fietsregistreren-page-content p {
        color: #464646;
        max-width: 600px;
        margin: 0 auto 40px;
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
    }

.fiets-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    cursor: pointer;
    padding: 20px;
}

.fixed-card {
    width: 530px;
    min-width: 530px;
    max-width: 530px;
    flex: 0 0 auto;
}
    .fiets-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

   /* .fiets-card img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }*/

.fiets-card-body {
    padding: 10px;
    text-align: left;
    background:var(--btn-bg);
    margin:10px 0px 0px 0px;
    border-radius:8px 0px 8px 0px;
}

    .fiets-card-body h5 {
        font-weight: 600;
        color: white;
        font-size: 16px;
        text-transform: uppercase;
    }

    .fiets-card-body p {
        font-size: 12.5px;
        color: white;
        margin-top: 5px;
        margin-bottom: 0;
    }

    .fiets-card-body .arrow {
        float: right;
        font-size: 18px;
        color: white;
        font-weight: bold;
    }
    .fiets-card-body1 .arrow1 {
        float: right;
        font-size: 18px;
        color: #3c3a97;
        font-weight: bold;
    }
.fiets-card-body1 {
    padding: 10px;
    text-align: left;
    background: transparent;
    margin: 10px 0px 0px 0px;
    border-radius: 8px 0px 8px 0px;
    border:1px solid var(--primary);
}

    .fiets-card-body1 h5 {
        font-weight: 600;
        color: var(--primary);
        font-size: 16px;
        text-transform: uppercase;
    }

    .fiets-card-body1 p {
        font-size: 12.5px;
        color: #464646;
        margin-top: 5px;
        margin-bottom: 0;
    }

    .fiets-card-body1 .arrow {
        float: right;
        font-size: 18px;
        color: #3c3a97;
        font-weight: bold;
    }

.fietsregistrerenRow {
    background: white;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
.fiets-card-img {
    background: #dbfffe;
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position:relative;
}
.reg-stp-1 {
    position: absolute;
    z-index: 0;
    width: 300px;
}
img.fiets-abs-img {
    position: absolute;
    z-index: 10;
}
.fiets-card-img1 {
    background: #F8F3E9;
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.reg-stp-2 {
    position: absolute;
    z-index: 7;
    top: 8%;
    left: 46%;
    width: 150px;
    height: auto;
}
.reg-stp-3 {
    position: absolute;
    z-index: 8;
    top: -14%;
    right: -9%;
    width: 150px;
    height: auto;
}
.fiets-black-frame {
    width: 207px;
    height: auto;
    position: absolute;
    z-index: 10;
}
.fiets-card-img2 {
    background: url(../images/fietsreg1.png) center / 100% 100% no-repeat;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
img.fiets-abs-img1 {
    width: 300px;
    height: 300px;
    object-fit: contain;
}
@media (max-width: 767px) {
    .fietsregistreren-page-content h2 {
        font-size: 20px;
    }
    .fiets-card-img {
       
        width: 100%;
        height: 160px;
        overflow: hidden;
    }

    .fiets-card-img1 {
        width: 100%;
        height: 160px;
        overflow: hidden;
    }
    .fiets-black-frame {
        width: 130px;
        height: auto;
        overflow: hidden;
    }
    img.fiets-abs-img {
        width: 130px;
        height: auto;
        object-fit: contain;
    }
    .fiets-card-img2 {
        background: url(../images/fietsreg1.png) center / 100% 100% no-repeat;
        width: 100%;
        height: 200px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    

    img.fiets-abs-img1 {
        width: 150px;
        height: 200px;
        object-fit: contain;
    }
    .reg-stp-2 {
        position: absolute;
        z-index: 7;
        top: -4%;
        left: 58%;
        width: 100px;
        height: auto;
    }
    .reg-stp-3 {
        position: absolute;
        z-index: 8;
        top: -24%;
        right: -4%;
        width: 100px;
        height: auto;
    }
    .fixed-card {
        width: 100%;
        max-width: 100%;
        flex:0 0 auto;
    }
}
@media (max-width: 410px) {

    .fixed-card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
}
.fiets-section {
    text-align: center;
    padding: 60px 0;
}

    .fiets-section h2 {
        font-weight: 700;
        text-transform: uppercase;
        color: #000;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .fiets-section p {
        color: #555;
        max-width: 650px;
        margin: 0 auto 40px;
        font-size: 15px;
        line-height: 1.6;
    }

.fiets-box {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    padding: 20px;
}

.fiets-img img {
    width: 100%;
    border-radius: 10px;
}

.fiets-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .fiets-form h5 {
        color: #3c3a97;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .fiets-form label {
        font-weight: 500;
        margin-bottom: 10px;
        display: block;
        text-align: left;
    }

.code-box {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 25px;
}

    .code-box input {
        width: 40px;
        height: 45px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 18px;
        font-weight: 600;
        transition: 0.2s;
        padding:0;
    }

        .code-box input:focus {
            border-color: #3c3a97;
            outline: none;
        }

.btnSubmit {
    width: calc(100% - 20%);
    background-color: #3c3a97;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px 0px 8px 0px;
    transition: 0.3s;
}


.fiets-form a {
    display: inline-block;
    margin-top: 15px;
    color: #3c3a97;
    font-size: 14px;
    text-decoration: none;
}

    .fiets-form a:hover {
        text-decoration: underline;
    }

@media (max-width: 992px) {
    .fiets-box {
        text-align: center;
    }

    .fiets-form label {
        text-align: center;
    }

    .code-box {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .btnSubmit {
        width: calc(100% - 0%);
        background-color: var(--btn-bg);
        border: none;
        color: #fff;
        font-weight: 600;
        padding: 10px;
        border-radius: 8px 0px 8px 0px;
        transition: 0.3s;
    }
}
@media (max-width: 530px) {
    .code-box input {
        width: 30px;
        height: 30px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 600;
        transition: 0.2s;
        padding: 0;
    }
}
@media (max-width: 400px) {

    .code-box input {
        width: 25px;
        height: 25px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 400;
        transition: 0.2s;
        padding: 0;
    }
}

.fiets-card-img22 {
    background: url(../images/fietsreg2.png) center / 100% 100% no-repeat;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fiets-form22 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding:0px 0px 0px 50px;
}

    .fiets-form22 h5 {
        color: #3c3a97;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .fiets-form22 label {
        font-weight: 500;
        margin-bottom: 10px;
        display: block;
        text-align: left;
    }
    .fiets-form22 select,
    .fiets-form22 input {
        width: calc(100% - 20%);
        background-color: #f3f3fc;
        border: none;
        border-radius: 6px;
        padding: 10px 12px;
        margin-bottom: 10px;
    }
        .fiets-form22 input:focus, .fiets-form22 select:focus {
            outline: none;
            box-shadow: 0 0 0 2px #0052cc33;
        }
    .fiets-form22 a {
        display: inline-block;
        margin-top: 15px;
        color: #3c3a97;
        font-size: 14px;
        text-decoration: none;
        margin-bottom: 15px;
        text-decoration: underline;
    }

        .fiets-form22 a:hover {
            text-decoration: underline;
        }
    .fiets-form22 .btnSubmit {
        margin: 10px 0px;
    }
@media (max-width: 992px) {
    .fiets-form22{
        padding:0;
    }
    .fiets-form label {
        text-align: center;
    }
    .fiets-form22 select,
    .fiets-form22 input {
        width: 100%;
        background-color: #f3f3fc;
        border: none;
        border-radius: 6px;
        padding: 10px 12px;
        margin-bottom: 10px;
        transition: 0.3s;
    }
    .fiets-form22 .btnSubmit {
        width: calc(100% - 0%);
        background-color: var(--btn-bg);
        border: none;
        color: #fff;
        font-weight: 400;
        padding: 10px;
        border-radius: 8px 0px 8px 0px;
        transition: 0.3s;
        margin:10px 0px;
    }
}
@media (max-width: 768px) {

    .fiets-card-img22 {
        background: url(../images/fietsreg2.png) center / 100% 100% no-repeat;
        width: 100%;
        height: 150px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.bg-white {

    background-color:white !important;
}
.modal-dialog {
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-arrow {
    position: absolute;
    bottom: 15px; /* distance from bottom */
    right: 15px; /* distance from right */
    width: 60px;
    height: 40px;
    background-color: #3D3D98;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: background 0.3s ease;
}

    .btn-arrow i {
        font-size: 18px;
        color: #fff;
    }

    .btn-arrow:hover {
        background-color: #2c2c80;
    }