body {
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Fredoka', sans-serif;
}

/* MAIN NAVBAR */
.velo-pink-navbar {
    background: linear-gradient(90deg, #e60075, #e60073);
    padding: 14px 0;
}

/* CONTAINER WIDTH */
.velo-pink-navbar .container {
    max-width: 1200px;
}

/* BACK BUTTON */
.velo-pink-navbar .back-btn {
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

/* LOGO */
.velo-pink-navbar .navbar-brand {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}

/* REMOVE UL DEFAULT */
.velo-pink-navbar ul {
    list-style: none;
}

/* BUTTON BASE */
.velo-pink-navbar .btn {
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

/* WHITE BUTTON */
.velo-pink-navbar .btn-light-pink {
    background: #fff;
    color: #e60075;
}

.velo-pink-navbar .btn-light-pink:hover {
    background: #f5f5f5;
}

/* OUTLINE BUTTON */
.velo-pink-navbar .btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
}

.velo-pink-navbar .btn-outline-white:hover {
    background: #fff;
    color: #e60075;
}

/* TOGGLE BUTTON */
.velo-pink-navbar .navbar-toggler {
    border: none;
    color: #fff;
    font-size: 22px;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .velo-pink-navbar .navbar-collapse {
        margin-top: 15px;
        text-align: center;
    }

    .velo-pink-navbar .navbar-nav {
        gap: 15px;
    }
}

/* HERO SECTION */
.hero-section {
    padding: 100px 0;
    background: #f4eef1;
    /* light pink bg */
}

/* TEXT SIDE */
.text-content {
    padding-right: 40px;
}

.hero_bedge span {
    background: #fbcde8;
    color: #a3004b;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    display: inline-block;
}

/* HEADING */
.text-content h1 {
    font-size: 64px;
    font-weight: 800;
    color: #0b1320;
    margin: 20px 0;
}

/* PARAGRAPH */
.text-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-pink {
    background: #ff2e93;
    color: #fff;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-pink:hover {
    background: #e6007e;
}

.btn-outline-pink {
    border: 2px solid #ff2e93;
    color: #ff2e93;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    background: transparent;
    transition: 0.3s;
}

.btn-outline-pink:hover {
    background: #ff2e93;
    color: #fff;
}

/* IMAGE SIDE */
.hero-img-wrapper {
    width: 100%;
    max-width: 600px;
}

.hero-img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .text-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img-wrapper {
        margin-top: 30px;
    }

    .text-content h1 {
        font-size: 42px;
    }
}

/* FEATURES */
.card {
    border: none;
    border-radius: 15px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

/* ===============================
   DRIVER SECTION
=================================*/
.driver-section {
    background: #f6eef2;
    padding: 90px 0;
    text-align: center;
}

/* TITLE */
.driver-section h2 {
    font-weight: bold;
    font-size: 40px;
    color: #111827;
}

.driver-section p {
    color: #6b7280;
    font-size: 16px;
    max-width: 600px;
    margin: 10px auto 0;
}

/* ===============================
   CARD DESIGN
=================================*/
.driver-section .card {
    border: none;
    border-radius: 22px;
    background: #ffffff;
    padding: 35px 20px;
    transition: all 0.3s ease;
    text-align: center;
}

/* HOVER */
.driver-section .card:hover {
    transform: translateY(-8px);
    background: #fff5f9;
    box-shadow: 0 25px 50px rgba(230, 0, 117, 0.15);
}

/* ===============================
   ICON BOX
=================================*/
.driver-section .box_icon {
    width: 70px;
    height: 70px;
    background: #fde8f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}

/* ICON */
.driver-section .box_icon i {
    color: #e60075;
    font-size: 26px;
    transition: 0.3s;
}

/* ICON HOVER */
.driver-section .card:hover .box_icon {
    background: #e60075;
    transform: scale(1.1);
}

.driver-section .card:hover .box_icon i {
    color: #fff;
}

/* ===============================
   TEXT
=================================*/
.driver-section h5 {
    font-weight: bold;
    margin-top: 10px;
    color: #111827;
    font-size: 22px;
}

.driver-section .card p {
    color: #6b7280;
    font-size: 16px;
    margin-top: 8px;
}

/* ===============================
   BUTTON
=================================*/
.driver-section .driver-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff2d8d, #e60075);
    color: #fff;
    padding: 16px 45px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s;
}

/* BUTTON HOVER */
.driver-section .driver-btn:hover {
    background: linear-gradient(135deg, #e60075, #c4005f);
    color: #fff;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 992px) {
    .driver-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .driver-section {
        padding: 50px 20px;
    }

    .driver-section h2 {
        font-size: 28px;
    }
}

/* SECTION */
.features_section {
    /* background: #f7f2f4; */
    padding: 80px 0;
}

/* TITLE */
.features_section h2 {
    font-weight: 800;
    font-size: 40px;
    color: #111827;
}

.features_section p {
    color: #6b7280;
    font-size: 16px;
}

/* CARD DESIGN */
.features_section .card {
    border: none;
    border-radius: 20px;
    background: #f4eef1;
    padding: 30px;
    transition: all 0.3s ease;
}

/* HOVER CARD */
.features_section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
}

/* ICON BOX */
.features_section .choose_icons {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff2d8d, #e60073);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* ICON */
.features_section .choose_icons i {
    color: #fff;
    font-size: 22px;
    transition: 0.3s;
}

/* ICON HOVER EFFECT */
.features_section .card:hover .choose_icons {
    background: #000;
}

.features_section .card:hover .choose_icons i {
    color: #e60073;
}

/* TEXT */
.features_section h5 {
    font-weight: bold;
    margin-top: 15px;
    color: #111827;
    font-size: 22px;
}

.features_section .card p {
    color: #6b7280;
    font-size: 16px;
    margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .features_section h2 {
        font-size: 28px;
    }
}

/* FOOTER */
.footer {
    background: #111;
}


/* TESTIMONIAL */
.testimonial-section {
    /* background: #f6f1f3; */
    padding: 80px 0;
}

.testimonial-section h2 {
    font-weight: bold;
    font-size: 40px;
}

.testimonial-card {
    background: #f4eef1;
    padding: 25px;
    border-radius: 18px;
    text-align: left;
}

.test-header {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.test-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-section .test-header h6 {
    font-weight: bold;
    margin: 0px;
}

.test-quote {
    position: absolute;
    right: 0;
    color: #f2a7c3;
}

.stars {
    color: #ff4da6;
}

.priority_section {
    background-color: #e60075;
}

.priority_section h1 {
    color: #fff;
    font-size: 70px;
    padding: 60px 0px;
    margin: 0px;
}

.footer h5 {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 25px;
}

.footer p {
    font-size: 16px;
    font-weight: 300;
}

.footer small {
    font-size: 12px;
    font-weight: 200;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0px;
    }

    .text-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .text-content h1 {
        font-size: 36px;
    }

    .features_section .choose_icons {
        margin: auto;
    }

    .features_section .card {
        width: 90%;
        margin: auto;
        text-align: center !important;
    }

    .driver-section .driver-btn {
        margin: 0px;
    }

    .testimonial-card {
        width: 90%;
        margin: auto;
    }

    .testimonial-section {
        padding: 50px 0px;
    }

    .testimonial-section h2 {
        font-size: 28px;
    }

    .priority_section h1 {
        font-size: 40px;
    }
}