body {
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Fredoka', sans-serif;
}

/* START NAVBAR HEADER SECTION */
/* NAVBAR FIXED */
.header_section .navbar {
    background: #C6FF00;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

/* CONTAINER */
.header_section .container {
    max-width: 1200px;
}

/* LOGO */
.header_section .navbar-brand {
    font-weight: 700;
    color: #000;
    font-size: 22px;
}

/* LINKS */
.header_section .nav-link {
    color: #000;
    font-weight: bold;
    margin-left: 15px;
}

/* HOVER */
.header_section .nav-link:hover {
    text-decoration: underline;
}


/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* OFFSET FIX */
section {
    scroll-margin-top: 90px;
}

/* CUSTOM TOGGLER */
.custom-toggler {
    border: none;
}

/* HAMBURGER ICON */
.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* START HERO BANNER SECTION */
.hero_banner_section .hero {
    height: auto;
    position: relative;
    background: url('../images/front.jpeg') no-repeat center center/cover;
    padding: 150px 0px;
}

/* PERFECT OVERLAY (MAIN FIX) */
.hero_banner_section .container {
    max-width: 1200px;
}

.hero_banner_section .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.9) 35%,
            rgba(0, 0, 0, 0.6) 55%,
            rgba(0, 0, 0, 0.2) 75%,
            transparent 100%);
}

/* CONTENT CENTER */
.hero_banner_section .hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* TEXT */
.hero_banner_section .hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
}

.hero_banner_section .hero-sub {
    color: #ccc;
}

/* GREEN TAG */
.hero_banner_section .highlight {
    background: #C6FF00;
    color: #000;
    padding: 6px 12px;
    display: inline-block;
}

/* BOOKING BOX */
.hero_banner_section .booking-box {
    background: rgba(255, 255, 255, 0.97);
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* BUTTON */
.hero_banner_section .booking-box .btn {
    background: #000;
    color: #fff;
    padding: 12px;
    font-weight: 600;
}

.hero_banner_section .booking-box .btn a {
    color: #fff;
    text-decoration: none;
}

.hero_banner_section .booking-box .btn:hover {
    background: #C6FF00;
    color: #000;
}

.hero_banner_section .booking-box .btn:hover a {
    color: #000;
}

/* END HERO BANNER SECTION */



/* SECTION */
.section {
    padding: 80px 20px;
}

/* GALLERY */
.gallery-img {
    border-radius: 15px;
    transition: 0.4s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* FOOTER */
.footer {
    background: #0B0B0B;
    color: #fff;
    padding: 40px;
}

/* SECTION BASE */
.qr-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;

    /* MULTI-LAYER BACKGROUND */
    background:
        radial-gradient(circle at 90% 50%, rgba(0, 120, 255, 0.12), transparent 10%),
        /* LEFT BLUE */
        radial-gradient(circle at 50% 50%, rgba(198, 255, 0, 0.15), transparent 30%),
        /* RIGHT GREEN */
        linear-gradient(to left, #05080f 0%, #070b14 50%, #05080f 80%);
    /* BASE DARK */
}

/* LEFT SOFT GLOW */
.qr-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    left: -120px;
    top: 30%;

    background: radial-gradient(circle,
            rgba(198, 255, 0, 0.15),
            transparent 90%);

    filter: blur(100px);
}

/* RIGHT SOFT GLOW */
.qr-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);

    background: radial-gradient(circle,
            rgba(198, 255, 0, 0.18),
            transparent 70%);

    filter: blur(120px);
}

/* CONTENT ABOVE */
.qr-section .container {
    position: relative;
    max-width: 1200px;
    z-index: 2;
}

/* TITLE */
.qr-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.qr-title span {
    color: #9aa0a6;
    font-weight: 500;
}

/* TEXT */
.qr-desc {
    margin-top: 18px;
    color: #cfcfcf;
    max-width: 480px;
}

/* BUTTONS */
.store-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* BUTTON BASE */
.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.store-btn i {
    font-size: 22px;
}

/* LIGHT BUTTON */
.store-btn.light {
    background: #eaeaea;
    color: #000;
}

/* GREEN BUTTON */
.store-btn.green {
    background: #C6FF00;
    color: #000;
}

/* HOVER */
.store-btn:hover {
    transform: translateY(-4px);
}

/* QR BOX (GLASS LOOK) */
.qr-box {
    background: rgba(198, 255, 0, 0.08);
    backdrop-filter: blur(25px);
    padding: 40px 120px;
    border-radius: 30px;
    display: inline-block;
}

/* QR IMAGE */
.qr-box img {
    width: 280px;
}

/* END*/

.features_section .container {
    max-width: 1200px;
}

.features_section h2 {
    font-weight: bold;
    font-size: 40px;
}

.features_section .card h5 {
    font-weight: bold;
}

.features_section .card p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* ICON BOX */
.features_section .choose_icons {
    width: 70px;
    height: 70px;
    background: #c6ef4e;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

/* ICON */
.features_section .choose_icons i {
    font-size: 30px;
    color: #000;
    transition: 0.3s;
}

/* HOVER EFFECT (ONLY INSIDE FEATURES SECTION) */
.features_section .card:hover .choose_icons {
    background: #000;
}

.features_section .card:hover .choose_icons i {
    color: #C6FF00;
}

/* OPTIONAL CARD HOVER */
.features_section .card {
    transition: 0.3s;
}

.features_section .card:hover {
    transform: translateY(-6px);
}


/* SECTION */
.airport-transfer-section {
    padding-top: 80px;
    /* background: #f5f5f5; */
}

/* SECTION */
.airport-transfer-section .container {
    max-width: 1200px;
}

/* TITLE */
.airport-title {
    font-size: 40px;
    font-weight: 700;
}

.airport-sub {
    color: #666;
}

/* BADGE */
.airport-badge {
    display: inline-block;
    background: #C6FF00;
    color: #000;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* CARD */
.airport-card {
    background: #02060c;
    border-radius: 25px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.airport-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.airport-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* OVERLAY GRADIENT */
.airport-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.9));
    top: 0;
    left: 0;
}

/* TEXT ON IMAGE */
.airport-overlay {
    position: absolute;
    bottom: 10px;
    left: 20px;
    z-index: 2;
}

.airport-overlay h4 {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
}

.airport-overlay h4 i {
    color: #C6FF00;
}

.airport-overlay p {
    font-size: 14px;
    color: #ccc;
}

/* CONTENT */
.airport-content {
    padding: 30px;
}

/* LIST */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.feature-list li {
    margin-bottom: 12px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICON */
.feature-list i {
    color: #C6FF00;
    font-size: 18px;
}

/* BUTTON */
.airport-transfer-section .airport-btn {
    width: 100%;
    background: #C6FF00;
    border: none;
    padding: 16px;
    font-weight: 600;
    border-radius: 50px;
    color: #000;
    font-size: 15px;
    transition: 0.3s;
}

/* 🔥 HOVER EFFECT (LIKE OTHER SECTIONS) */
.airport-transfer-section .airport-btn:hover {
    background: #000;
    color: #C6FF00;
    transform: translateY(-2px);
}

/* COVERAGE SECTION */
.coverage-section {
    padding-top: 80px;
}

/* GRADIENT BOX */
.coverage-section .container {
    background: linear-gradient(180deg, #c7ef5c, #eaf5d1);
    padding: 60px 30px;
    border-radius: 30px;
    max-width: 1200px;
}

/* ICON */
.coverage-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TITLE */
.coverage-title {
    font-size: 36px;
    font-weight: 700;
}

/* SUBTEXT */
.coverage-sub {
    color: #444;
    margin-top: 10px;
}

/* CITY CARD */
.coverage-section .city-card {
    background: #000;
    color: #fff;
    padding: 25px 10px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

/* ICON */
.coverage-section .city-card i {
    color: #C6FF00;
    font-size: 22px;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* TEXT */
.coverage-section .city-card p {
    margin: 0;
    font-weight: 500;
    transition: 0.3s;
}

/* 🔥 FULL HOVER EFFECT */
.coverage-section .city-card:hover {
    background: #C6FF00;
    color: #000;
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* ICON CHANGE ON HOVER */
.coverage-section .city-card:hover i {
    color: #000;
}

/* TEXT CHANGE ON HOVER */
.coverage-section .city-card:hover p {
    color: #000;
}

.experience-section {
    padding: 80px 40px;
    background: #f7f7f7;
    /* font-family: Arial, sans-serif; */
    font-family: 'Fredoka', sans-serif;
}

.experience-section .container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT SIDE */
.experience-section .left {
    flex: 1;
}

.experience-section .tag {
    color: #999;
    letter-spacing: 2px;
    font-size: 16 px;
    margin-bottom: 20px;
    font-weight: 600;
}

.experience-section .left h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.experience-section .left h1 span {
    color: #aaa;
    font-weight: 400;
}

.experience-section .desc {
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
    font-size: 18px;
}

.experience-section .features {
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

.experience-section .features li {
    padding: 12px 0;
    border-top: 1px solid #ddd;
    position: relative;
    padding-left: 20px;
    font-size: 18px;
}

.experience-section .features li::before {
    content: "•";
    color: #9ec530;
    position: absolute;
    left: 0;
}

/* RIGHT SIDE */
.experience-section .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.experience-section .card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #eee;
}

.experience-section .card span {
    font-size: 16px;
    color: #999;
}

.experience-section .card h3 {
    margin: 10px 0;
}

.experience-section .card p {
    color: #777;
    font-size: 18px;
}

/* Highlight card */
.experience-section .card.highlight {
    background: #eef3d8;
}


.services-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #c7ef5c, #eaf5d1);
    /* font-family: Arial, sans-serif; */
    font-family: 'Fredoka', sans-serif;
}

/* Container */
.services-section .container {
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.services-section .heading {
    text-align: center;
    margin-bottom: 50px;
}

.services-section .heading h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.services-section .heading p {
    color: #5c6b73;
    font-size: 18px;
}

/* Grid */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.services-section .service-card {
    background: #eaeaea;
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s ease;
}

.services-section .service-card img {
    width: 85px;
    height: 85px;
    margin-bottom: 15px;
}

.services-section .service-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.services-section .service-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

/* Hover Effect */
.services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.velo-pink {
    padding: 80px 20px;
    /* background: #f5f5f5; */
    /* font-family: Arial, sans-serif; */
    font-family: 'Fredoka', sans-serif;
}

.velo-pink .vp-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LEFT */
.velo-pink .vp-left {
    flex: 1;
}

.velo-pink .vp-badge {
    display: inline-block;
    background: #f8c6d8;
    color: #d63384;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: bold;
}

.velo-pink .vp-left h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.velo-pink .vp-left h2 span {
    color: #ff4d94;
}

.velo-pink .vp-desc {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* LIST */
.velo-pink .vp-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.velo-pink .vp-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
    color: #333;
}

.velo-pink .vp-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    font-size: 14px;
    background: pink;
    color: #000;
    width: 22px;
    height: 22px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BUTTON */
.velo-pink .vp-btn {
    padding: 12px 28px;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    background: transparent;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.velo-pink .vp-btn:hover {
    background: #000;
    color: #fff;
}

/* RIGHT IMAGE */
.velo-pink .vp-right {
    flex: 1;
}

.velo-pink .vp-right img {
    width: 100%;
    border-radius: 40px;
    display: block;
}


.newcars-section {
    background: #000;
    padding: 80px 20px;
    /* font-family: Arial, sans-serif; */
    font-family: 'Fredoka', sans-serif;
}

.newcars-section .nc-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE */
.newcars-section .nc-left {
    flex: 1;
}

.newcars-section .nc-left img {
    width: 100%;
    border-radius: 40px;
    display: block;
}

/* RIGHT CONTENT */
.newcars-section .nc-right {
    flex: 1;
    color: #fff;
}

/* TAG */
.newcars-section .nc-tag {
    color: #b7ff3c;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

/* HEADING */
.newcars-section .nc-right h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.newcars-section .nc-desc {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* LIST */
.newcars-section .nc-list {
    list-style: none;
    padding: 0;
}

.newcars-section .nc-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    color: #ddd;
}

/* GREEN ICON */
.newcars-section .nc-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    background: #b7ff3c;
    color: #000;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.save-section {
    padding: 80px 20px;
    background: #f4f5f7;
    /* font-family: Arial, sans-serif; */
    font-family: 'Fredoka', sans-serif;
}

.save-section .save-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.save-section .save-heading {
    text-align: center;
    margin-bottom: 50px;
}

.save-section .save-heading h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.save-section .save-heading p {
    color: #6b7280;
}

/* GRID */
.save-section .save-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.save-section .save-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
}



/* ICON BOX */
.save-section .icon-box {
    width: 70px;
    height: 70px;
    background: #c6ef4e;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

/* ICON */
.save-section .icon-box i {
    font-size: 30px;
    color: #000;
    transition: 0.3s;
}

/* IMAGE ICON (if used) */
.save-section .icon-box img {
    width: 30px;
    transition: 0.3s;
}

/* 🔥 HOVER EFFECT */
.save-section .save-card:hover .icon-box {
    background: #000;
}

.save-section .save-card:hover .icon-box i {
    color: #C6FF00;
}

/* OPTIONAL: invert image on hover */
.save-section .save-card:hover .icon-box img {
    filter: brightness(0) invert(1);
}

/* CARD HOVER (optional premium effect) */
.save-section .save-card {
    transition: 0.3s;
}

.save-section .save-card:hover {
    transform: translateY(-6px);
}

/* TEXT */
.save-section .save-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

.save-section .save-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* HOVER */
.save-section .save-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}



/* Parent wrapper */
.rides-section {
    padding: 80px 20px;
    /* background: #f7f7f7; */
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Fredoka', sans-serif;
}

/* Layout */
.rides-section .rides-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left content */
.rides-section .rides-text {
    flex: 1;
}

.rides-section .rides-text h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.rides-section .rides-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Feature items */
.rides-section .rides-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

/* FEATURE BOX */
.rides-section .rides-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

/* ICON BOX */
.rides-section .rides-icon {
    background: #000;
    color: #C6FF00;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

/* ICON */
.rides-section .rides-icon i {
    transition: 0.3s;
}

/* 🔥 HOVER EFFECT */
.rides-section .rides-feature:hover .rides-icon {
    background: #C6FF00;
}

.rides-section .rides-feature:hover .rides-icon i {
    color: #000;
}

/* OPTIONAL: MOVE EFFECT */
.rides-section .rides-feature:hover {
    transform: translateX(5px);
}

.rides-section .rides-feature h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.rides-section .rides-feature p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #777;
}

/* Image */
.rides-section .rides-image {
    flex: 1;
}

.rides-section .rides-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Parent section */
.velo-news {
    background: #c6f23a;
    /* lime green */
    padding: 80px 20px;
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Fredoka', sans-serif;
}

/* Container */
.velo-news .velo-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.velo-news .velo-header {
    text-align: center;
    margin-bottom: 50px;
}

.velo-news .velo-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}

.velo-news .velo-header p {
    color: #333;
    font-size: 17px;
}

/* Grid */
.velo-news .velo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.velo-news .velo-card {
    border-radius: 20px;
    overflow: hidden;
}

/* Image */
.velo-news .velo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Content */
.velo-news .velo-card-content {
    background: #1f2a37;
    /* dark navy */
    padding: 25px;
    color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Date */
.velo-news .velo-date {
    color: #c6f23a;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

/* Title */
.velo-news .velo-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Description */
.velo-news .velo-card-content p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Link */
.velo-news .velo-card-content a {
    color: #c6f23a;
    text-decoration: none;
    font-weight: 600;
}

/* Hover effect */
.velo-news .velo-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}


/* Parent */
.velo-footer {
    background: #000;
    color: #fff;
    padding: 70px 20px 30px;
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Fredoka', sans-serif;
}

/* Container */
.velo-footer .velo-footer-container {
    max-width: 1200px;
    margin: auto;
}

/* Top layout */
.velo-footer .velo-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Brand */
.velo-footer .velo-footer-brand h2 {
    color: #c6f23a;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.velo-footer .velo-footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
    max-width: 300px;
}

/* Links wrapper */
.velo-footer .velo-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Columns */
.velo-footer .velo-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.velo-footer .velo-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.velo-footer .velo-col ul li {
    margin-bottom: 10px;
}

.velo-footer .velo-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.velo-footer .velo-col ul li a:hover {
    color: #c6f23a;
}

/* Divider */
.velo-footer .velo-divider {
    height: 1px;
    background: #1f2937;
    margin: 30px 0;
}

/* Bottom */
.velo-footer .velo-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.velo-footer .velo-footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

/* Icons */
.velo-footer .velo-icons span {
    margin-left: 15px;
    color: #9ca3af;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.velo-footer .velo-icons span:hover {
    color: #c6f23a;
}


/* SCOPE EVERYTHING INSIDE PARENT */
.velo-footer-wrapper .velo-popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.velo-footer-wrapper .velo-popup-content {
    background: #fff;
    width: 350px;
    margin: 10% auto;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    animation: popupFade 0.3s ease;
}

@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.velo-footer-wrapper .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.velo-footer-wrapper .email-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #C6FF00;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.velo-footer-wrapper .email-btn:hover {
    background: #000;
    color: #fff;
}

.velo-footer-wrapper .close-popup-btn {
    margin-top: 20px;
    padding: 8px 20px;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.velo-footer-wrapper .close-popup-btn:hover {
    background: #C6FF00;
    color: #000;
    font-weight: bold;
}

#scrollTopBtn {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: none;
    z-index: 999;
    cursor: pointer;
}

#scrollTopBtn img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

/* Hover effect */
#scrollTopBtn img:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .save-section .save-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .velo-news .velo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .header_section .navbar-collapse {
        background: #C6FF00;
        padding: 15px;
        border-radius: 10px;
    }

    .header_section .nav-link {
        margin: 10px 0;
    }
}

@media (max-width: 900px) {
    .velo-footer .velo-footer-top {
        grid-template-columns: 1fr;
    }

    .velo-footer .velo-footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive */
@media(max-width: 768px) {
    .experience-section .container {
        flex-direction: column;
    }

    .experience-section .left h1 {
        font-size: 32px;
    }

    .newcars-section .nc-container {
        flex-direction: column;
    }

    .newcars-section .nc-right h2 {
        font-size: 32px;
    }

    .velo-pink .vp-container {
        flex-direction: column;
    }

    .velo-pink .vp-left h2 {
        font-size: 32px;
    }

    .rides-section .rides-container {
        flex-direction: column;
        text-align: center;
    }

    .rides-section .rides-feature {
        /* justify-content: center; */
        text-align: center;
        justify-content: stretch;
        display: flex;
        align-items: center;
        margin: 15px 40px;
    }
}


@media (max-width: 500px) {
    .velo-footer .velo-footer-links {
        grid-template-columns: 1fr;
        display: flex;
        justify-content: space-between;
    }

    .velo-footer .velo-footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .velo-footer .velo-footer-links .velo-col {
        width: 33%;
    }
}


@media (max-width: 600px) {
    .velo-news .velo-grid {
        grid-template-columns: 1fr;
    }

    .velo-news .velo-header h2 {
        font-size: 28px;
    }

    .services-section .services-grid {
        grid-template-columns: 1fr;
    }

    .hero_banner_section .hero-title {
        font-size: 50px;
    }

    .hero_banner_section .hero {
        padding: 100px 0px;
        background-size: cover;
        background-position: -500px 60px;
    }

    .hero_banner_section .container {
        width: 86%;
        margin: auto;
    }

    .qr-section {
        padding: 50px 0px;
    }

    .qr-title {
        font-size: 50px;
    }

    .qr-section .container {
        width: 86%;
        margin: auto;
    }

    .store-btn {
        padding: 12px 13px;
    }

    .qr-box {
        padding: 40px 40px;
        margin-top: 40px;
    }

    .airport-card {
        width: 90%;
        margin: auto;
    }

    .coverage-section {
        padding-top: 80px;
        width: 86%;
        margin: auto;
    }

    .experience-section {
        padding: 60px 30px;
    }

    .features_section .card {
        text-align: center !important;
        width: 86%;
        margin: auto;
    }

    .features_section .choose_icons {
        margin: 0px auto 20px auto;
    }

    .save-section .save-grid {
        grid-template-columns: 1fr;
        width: 86%;
        margin: auto;
    }

    .save-section .save-heading h2 {
        font-size: 30px;
    }

    .save-section .icon-box {
        margin: 0px auto 20px auto;
    }

    /* CARD */
    .save-section .save-card {
        text-align: center;
    }

    .services-section .service-card {
        text-align: center;
    }

}