@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Turret+Road:wght@200;300;400;500;700;800&display=swap");
* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

:root {
    --main-color: #fe5b3d;
    --second-color: #ffac38;
    --text-color: #444444;
    --gradient: linear-gradient(#fe5b3d, #ffac38);
}

html::-webkit-scrollbar {
    width: 0.5rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5rem;
}

section {
    padding: 50px 50px;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 100;
    /* display: flex
; */
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.logo img {
    /* width: 40px; */
}

.navbar {
    display: flex;
}

.navbar li {
    position: relative;
}

.navbar a {
    font-size: 1rem;
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 500;
}

.navbar a::after {
    content: "";
    width: 0;
    height: 3px;
    background: var(--gradient);
    bottom: -4px;
    left: 0;
    transition: 0.5s;
    position: absolute;
}

.navbar a:hover::after {
    width: 100%;
}

header .ri-close-line {
    display: none;
}

#menu-icon {
    font-size: 24px;
    cursor: pointer;
    z-index: 110;
    display: none;
}


/* Home */

.text h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
}

.text span {
    color: #2c466b;
}

.text p {
    margin: 0.5rem 0 1rem;
    font-size: 1rem;
}

.app-stores {
    display: flex;
}

.app-stores img {
    width: 100px;
    margin-right: 1rem;
    cursor: pointer;
}

.form-container form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    position: absolute;
    bottom: 4rem;
    left: 100px;
    background: #ffffff;
    padding: 20px;
    border-radius: 0.5rem;
}

.form-container form .btn {
    flex: 1 1 7rem;
    padding: 10px 34px;
    border: none;
    border-radius: 0.5rem;
    background: #474fa0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.form-container form .btn:hover {
    transition: 0.5s;
    background: var(--main-color);
}

.input-box {
    flex: 1 1 7rem;
    display: flex;
    flex-direction: column;
}

.input-box span {
    font-weight: 500;
}

.input-box input {
    padding: 7px;
    outline: none;
    border: none;
    background: #eeeff1;
    border-radius: 0.5rem;
    font-size: 1rem;
}


/* Ride */

.heading {
    text-align: center;
}

.heading span {
    font-weight: 500;
    text-transform: uppercase;
}

.heading h1 {
    font-size: 2rem;
}

.ride-container {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 1rem;
    margin-top: 2rem;
}

.ride-container .box {
    text-align: center;
    padding: 20px;
}

.ride-container .box i {
    font-size: 34px;
    padding: 10px;
    background: #eeeff1;
    border-radius: 0.5rem;
    color: var(--main-color);
}

.ride-container .box i:hover {
    background: var(--gradient);
    color: #ffffff;
}

.ride-container .box h2 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1.4rem 0 0.5rem;
}


/* Services */

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 1rem;
    margin-top: 2rem;
}

.services-container .box {
    padding: 10px;
    border-radius: 1rem;
    box-shadow: 1px 4px 41px rgba(0, 0, 0, 0.1);
}

.services-container .box .box-img {
    width: 100%;
    height: 200px;
}

.services-container .box .box-img img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
    object-position: center;
}

.services-container .box p {
    padding: 0 10px;
    border: 1px solid var(--text-color);
    width: 58px;
    border-radius: 0.5rem;
    margin: 1rem 0 1rem;
}

.services-container .box h3 {
    font-weight: 500;
}

.services-container .box h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0.2rem 0 0.5rem;
}

.services-container .box h2 span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}

.services-container .box .btn {
    display: flex;
    justify-content: center;
    background: #474fa0;
    color: #ffffff;
    padding: 10px;
    border-radius: 0.5rem;
    transition: 0.5s;
}

.services-container .box .btn:hover {
    background: var(--main-color);
}


/* About */

.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.about-img img {
    width: 100%;
}

.about-text span {
    font-weight: 500;
    color: #38b6ff;
    text-transform: uppercase;
}

.about-text p {
    margin: 0.5rem 0 1.4rem;
}

.about-text .btn {
    padding: 10px 20px;
    background: #2c466b;
    color: #ffffff;
    border-radius: 0.5rem;
    transition: 0.5s;
}

.about-text .btn:hover {
    background: #37b6fe;
}


/* Reviews */

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 1rem;
    margin-top: 2rem;
}

.reviews-container .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-shadow: 1px 4px 6px 7px rgba(0, 0, 0, 0.09);
    border-radius: 0.5rem;
}

.reviews-container .box h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0 0.5rem;
}

.reviews-container .box p {
    font-style: italic;
}

.reviews-container .box i {
    color: #38b6ff;
}

.rev-img {
    width: 70px;
    height: 70px;
}

.rev-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid #38b6ff;
}


/* Newsletter */

.newsletter {
    background: linear-gradient(to top right, #fe5b3d, #ffac38);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter h2 {
    color: #ffffff;
    font-size: 1.8rem;
}

.newsletter .box {
    margin-top: 1rem;
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 4px 8px;
    width: 350px;
    display: flex;
    justify-content: space-between;
}

.newsletter .box input {
    border: none;
    outline: none;
}

.newsletter .box .btn {
    background: #474fa0;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 0.5rem;
}

.copyright {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright span {
    font-family: "Turret Road";
}

.social a {
    color: #444444;
    padding: 10px;
    font-size: 21px;
}


/* Responsive */

@media (max-width: 1375px) {
    .text {
        display: none;
    }
}

@media (max-width: 991px) {
    header {
        padding: 18px 40px;
    }
    section {
        padding: 50px 40px;
    }
}

@media (max-width: 881px) {
    .home {
        background-position: center;
    }
    .form-container .form {
        bottom: 0.2rem;
        left: 40px;
    }
    .text {
        display: initial;
    }
}

@media (max-width: 795px) {
    header {
        padding: 11px 40px;
    }
    #menu-icon {
        display: initial;
    }
    .sign-up {
        display: none;
    }
    .text h1 {
        font-size: 2.5rem;
        width: 320px;
    }
    .text p {
        font-size: 0.8rem;
        width: 320px;
    }
    .home {
        grid-template-columns: 1fr;
    }
    .form-container form {
        position: unset;
    }
    header .navbar {
        position: absolute;
        top: -500px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        background: #ffffff;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
        transition: 0.2s ease;
        text-align: left;
    }
    .navbar.active {
        top: 100%;
    }
    .navbar a {
        padding: 1rem;
        border-left: 2px solid var(--main-color);
        margin: 1rem;
        display: block;
        transition: 0.3s ease;
    }
    .navbar a:hover {
        color: #ffffff;
        background: var(--main-color);
        border: none;
    }
    .navbar a::after {
        display: none;
    }
    .heading span {
        font-size: 0.9rem;
        font-weight: 600;
    }
    .heading h1 {
        font-size: 1.3rem;
    }
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-img {
        padding: 1rem;
        order: 1;
    }
    .about-text {
        order: 2;
    }
}

@media (max-width: 568px) {
    .home {
        background-position: left;
    }
    .text h1 {
        width: 300px;
    }
    .text p {
        font-size: 17px;
        color: #fff;
        width: 300px;
    }
    .form-container {
        padding-top: 2rem;
    }
    .about-text p {
        font-size: 14px;
    }
    .copyright {
        flex-direction: column;
    }
    .newsletter .box {
        width: 284px;
    }
}

@media (max-width: 460px) {
    header {
        padding: 6px 14px;
    }
    /* .logo img {
        width: 30px;
    } */
    section {
        padding: 50px 6px;
    }
    .header-btn .sign-in {
        padding: 7px 10px;
        font-size: 14px;
        font-weight: 400;
    }
    .text h1 {
        line-height: 39px;
        font-size: 36px;
    }
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(254px, auto));
    }
    .text span {
        color: #ffffff;
    }
}


/* ==================================About Section ============================= */


/* Section */

.about-section {
    background: #f7f9fc;
    overflow: hidden;
}


/* Image Wrapper */

.about-image-wrapper {
    position: relative;
}


/* Main Image */

.about-main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
}

.about-main-img:hover {
    transform: scale(1.02);
}


/* Floating Card */

.experience-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(11, 59, 117, 0.95);
    color: #fff;
    padding: 22px 28px;
    border-radius: 18px;
    max-width: 280px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.experience-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.experience-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
}


/* Content */

.about-content {
    padding-left: 20px;
}


/* Tag */

.about-tag {
    display: inline-block;
    background: rgba(11, 59, 117, 0.08);
    color: #0b3b75;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}


/* Title */

.about-title {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.3;
    color: #111;
    margin-bottom: 25px;
}

.about-title span {
    color: #0b3b75;
    display: block;
}


/* Description */

.about-description {
    color: #555;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 35px;
}


/* Features */

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.feature-item i {
    color: #0b3b75;
    font-size: 20px;
}


/* Button */

.about-btn {
    display: inline-block;
    background: #0b3b75;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #072952;
    color: #fff;
    transform: translateY(-2px);
}


/* Responsive */

@media(max-width:991px) {
    .about-content {
        padding-left: 0;
    }
    .about-title {
        font-size: 36px;
    }
    .about-main-img {
        height: 420px;
    }
}

@media(max-width:768px) {
    .about-title {
        font-size: 28px;
    }
    .about-description {
        font-size: 15px;
    }
    .experience-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: 100%;
        padding: 18px;
    }
    .experience-card h3 {
        font-size: 18px;
    }
    .about-main-img {
        height: 320px;
    }
}


/*=====================VISSION, MISSION, & GOALS ============================*/


/* Section */

.objectives-section {
    background: #ffffff;
    padding: 80px 0;
}


/* Heading */

.objective-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #0b3b75;
    margin-bottom: 15px;
}

.objective-subtitle {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 17px;
}


/* Card */

.objective-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

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


/* Fixed Same Size Image */

.objective-image {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    width: 55px;
    height: 55px;
    /* SAME HEIGHT FOR ALL */
    overflow: hidden;
    background: #eee;
    margin-bottom: 20px
}

.objective-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* MAINTAIN SAME SIZE */
    display: block;
    transition: 0.5s ease;
}

.objective-card:hover .objective-image img {
    transform: scale(1.05);
}


/* Content */

.objective-content {
    background: linear-gradient(135deg, #0066ff4a, #004ba729);
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.objective-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    min-height: 60px;
}

.objective-content p {
    color: #555;
    line-height: 1.9;
    font-size: 15px;
    flex-grow: 1;
    margin-bottom: 25px;
}


/* Button */

.objective-btn {
    display: inline-block;
    background: #0b3b75;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    width: fit-content;
}

.objective-btn:hover {
    background: #072952;
    color: #fff;
}


/* Responsive */

@media(max-width:768px) {
    .objective-main-title {
        font-size: 30px;
    }
    .objective-image {
        height: 90px;
        width: 90px;
    }
    .objective-content {
        padding: 22px;
    }
    .objective-content h3 {
        font-size: 21px;
        min-height: auto;
    }
}


/* Counter Section */

.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

.counter-box {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.counter-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #00c6ff);
    transition: 0.5s;
}

.counter-box:hover::before {
    left: 0;
}

.counter-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.counter-box i {
    width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
    font-size: 34px;
    margin-bottom: 20px;
    transition: 0.4s ease;
    display: inline-block;
}

.counter-box:hover i {
    transform: rotateY(180deg) scale(1.08);
}

.counter {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1;
}

.counter-box p {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}


/* Colored Special Box */

.counter-box.colored {
    background: linear-gradient(135deg, #0049b8, #004ba7);
}

.counter-box.colored .counter,
.counter-box.colored p,
.counter-box.colored i {
    color: #fff;
}

.counter-box.colored i {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(5px);
}


/* Responsive */

@media (max-width: 991px) {
    .counter-box {
        margin-bottom: 25px;
    }
    .counter {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .counter-box {
        padding: 28px 20px;
    }
    .counter-box i {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 28px;
    }
    .counter {
        font-size: 30px;
    }
    .counter-box p {
        font-size: 15px;
    }
}

@media (max-width: 990px) {
    .mobile-header {
        margin-left: -14px;
        padding: 10px 0;
        display: block;
    }
}

@media (max-width: 767px) {
    .social-icons.style-2 {
        display: flex;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
}
