@import url(../font/stylesheet.css);
@import url('https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Zen Dots", sans-serif;
}

/* scroll css start */
::-webkit-scrollbar {
    width: 10px;
}

li {
    list-style: none;
    font-size: 16px;
    color: #5e6075;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #2ea3ef;
    border-radius: 10px;
}

/* scroll css end */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

@keyframes infiniteScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* Scale to 150% of original size */
    }

    100% {
        transform: scale(1);
        /* Back to original size */
    }
}

/* html {
    overflow-x: hidden ;
  } */

a {
    text-decoration: none;
}

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #5e6075;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    color: #5e6075;
}

input:focus {
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

/* main-header */

.main-header {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
}

.main-header .top-header {
    background-color: #ffffff;
}

.main-header .top-header .txt {
    text-align: center;
    font-family: "Zen Dots", sans-serif;
    color: #959191;
    font-size: 12px;
    padding: 10px 0;
}

.main-header .navbar-brand img {
    width: 150px;
}

.main-header .navbar-nav {
    gap: 0 40px;
}

.main-header .nav-item .nav-link {
    color: #fff;
    font-family: "Zen Dots", sans-serif;
}


/* .main-banner */

.main-banner {
    background-image: url(../images/banner-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: unset;
    padding: 160px 0 100px;
    position: relative;
    z-index: 1;
}

.main-banner::before {
    background: linear-gradient(to bottom, rgba(11, 11, 12, 0.01) 0%, rgba(11, 11, 12, 0.28) 100%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
}

.main-banner .content {}

.main-banner .content h1 {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    font-size: 50px;
    text-align: center;
}

.main-banner .content p {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    text-align: center;
    padding: 5px 0 11px;
}

.btn-ban {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 15px;
    padding-top: 17px;
}

.btn-learn {
    font-family: "Zen Dots", sans-serif;
    background-color: #ffff;
    color: #000;
    padding: 10px 70px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: 0.6s;
    border: none;
    outline: none;
}

.btn-learn:hover {
    color: #000;
    opacity: .87;
}

.btn-learn::before,
.btn-book::before {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translate(0%, -50%);
    opacity: 0;
    transition: 0.6s;
    color: #000;
}

.btn-learn:hover::before,
.btn-book:hover::before {
    transform: translate(10px, -50%);
    opacity: 1;
}

.btn-book {
    background-color: rgb(49 162 236);
    color: #fff;
}

.btn-book:hover {
    color: #fff;
    opacity: .87;
}

.btn-book::before {
    color: #fff;
}

.main-banner .banner-form {
    /* background: #ffffffa8 !important; */
    padding: 20px;
    border-radius: 10px !important;
    box-shadow: 1px 1px 11px #0000005c;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.7px);
    -webkit-backdrop-filter: blur(3.7px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.40);
}

.main-banner .banner-form .nav-tabs {
    padding: 0 0 10px;
    border: none;
}

.main-banner .banner-form .nav-item {
    width: 50%;
}

.main-banner .banner-form .nav-item .nav-link {
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    font-family: "Zen Dots", sans-serif;
    text-transform: capitalize;
    color: #000;
}

.main-banner .banner-form .nav-item .nav-link.active {}

.banner-form-fields .form-box {
    background: #f6f6f6;
    width: 100%;
    position: relative;
    padding: 4px 36px;
    border-radius: 5px;
    font-family: "Zen Dots", sans-serif;
    font-size: 11px;
    font-weight: 500;
}

.banner-form-fields .form-box i {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-form-fields .form-box input,
.banner-form-fields .form-box select {
    WIDTH: 100%;
    outline: none;
    background: transparent;
    border: none;
    font-family: "Zen Dots", sans-serif;
    font-size: 11px;
}

.banner-form-fields .form-box select option {
    font-family: "Zen Dots", sans-serif;
}

.banner-form-fields input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    cursor: pointer;
}

.banner-slider .card {
    background-color: transparent;
    border: none;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.7px);
    -webkit-backdrop-filter: blur(3.7px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.30);
    padding: 0 30px 15px;
}

.banner-slider .card img{
    width: 85%;
    margin: 0 auto;
}

.banner-slider .card h3 {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    font-size: 23px  !important;
    text-transform: capitalize;
    text-align: left;
}

.banner-slider .card p {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    text-align: center;
    padding: 0px 0 5px;
    text-align: left;
}

.stay-com-sec {
    background-image: url(../images/banner-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 120vh;
    padding: 45px 0 60px;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.stay-com-sec::before {
    background: linear-gradient(to bottom, rgba(11, 11, 12, 0.01) 0%, rgba(11, 11, 12, 0.28) 100%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
}

.stay-com-sec .main-content .title h2 {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    font-size: 50px;
    text-align: center;
}

.stay-com-sec .main-content .title p {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    text-align: center;
    padding: 5px 0 11px;
}

.stay-com-sec .main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.stay-com-sec.sec-img-2 {
    background-image: url(../images/banner-3.jpg);
}

.stay-com-sec.sec-img-3 {
    background-image: url(../images/banner-4.jpg);
}

.professional-sec {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* margin-bottom: 500px; */
}

.professional-sec .title h2 {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    font-size: 50px;
}

.professional-sec::before {
    background: linear-gradient(to bottom, rgba(11, 11, 12, 0.01) 0%, rgba(11, 11, 12, 0.28) 100%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
}

.professional-sec video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -2;
    object-fit: cover;
    object-position: center;
    height: 100%;
}

/* footer  */

.footer-gap {
    /* height: 500px; */
    width: 100%;
    margin: 0 0 500px;
    position: relative;
}

footer {
    /* position: absolute; */
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    padding: 70px 0 0;
}

footer .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    padding: 0 0 30px;
}

footer .social-icons li a {
    color: #969696;
    border: 2px solid #d9d0d0;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.7s;
}

footer .txt li {
    font-family: "Zen Dots", sans-serif;
    color: #969696;
    text-align: center;
    font-size: 12px;
    padding: 0 0 15px;
    font-weight: 500;
}

footer .quick-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 23px;
}

footer .quick-links li a {
    font-family: "Zen Dots", sans-serif;
    color: #969696;
    font-size: 14px;
    transition: 0.7s;
}

footer p {
    font-family: "Zen Dots", sans-serif;
    color: #969696;
    font-size: 12px;
    text-align: center;
    padding: 25px 0 15px;
}

footer ul li a:hover {
    color: #30a1ed;
    border-color: #30a1ed;
}

.inner-banner {
    background-image: url(../images/inner-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    padding-top: 53px;
    background-position: center;
}

.inner-banner::before {
    background-color: #000;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    opacity: .35;
}

.inner-banner .title h1 {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    font-size: 55px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* booking-form-sec */

.booking-form-sec {
    padding: 50px 0 50px;
}

.booking-form-sec .booking-form {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2), 0 -1px 10px 0 rgba(0, 0, 0, .01);
    border-radius: 13px;
    padding: 22px 20px;
}

.booking-form-sec .booking-form .stepss {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 45px;
    padding: 0 0 27px;
}

.booking-form-sec .booking-form .stepss li {
    position: relative;
    font-family: "Zen Dots", sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #000;
    z-index: 1;
}

.booking-form-sec .booking-form .stepss li::after {
    content: "";
    position: absolute;
    background: #e3e5ea;
    height: 2px;
    left: 50%;
    top: 35px;
    right: -116px;
    z-index: -2;
}

.booking-form-sec .booking-form .stepss li::before {
    content: "";
    position: absolute;
    border: 2px solid #d0d6e3;
    height: 15px;
    width: 15px;
    top: 28px;
    border-radius: 50%;
    left: 50%;
    background: #fff;
    z-index: -1;
}

.booking-form-sec .booking-form .stepss li.active::before {
    background: #000;
    border-color: #000;
}

.booking-form-sec .booking-form .stepss li.active::after {
    background: #000;
}

.booking-form-sec .booking-form .stepss li:nth-last-child(1)::after,
.booking-form-sec .booking-form .stepss li.active:nth-last-child(1)::after {
    background: #fff;
    display: none;
}

.booking-form-sec .step {
    padding: 20px 0 0;
}

.booking-form-sec .step .location-detail {
    background-color: #f0f2f7;
    border-radius: 10px;
    padding: 11px 13px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-bottom: 20px;
}

.booking-form-sec .step .location-detail h2 {
    color: #000;
    font-size: 17px;
    font-family: "Zen Dots", sans-serif;
    padding: 0 0px 9px;
}

.booking-form-sec .step .location-detail p {
    color: #64666b;
    font-family: "Zen Dots", sans-serif;
    font-size: 14px;
}

.booking-form-sec .step .location-detail p i {
    color: #000;
    padding: 0 6px;
}

.box-info {
    margin: 20px 0px;
}

.booking-form-sec .step .car-detail {
    padding-top: 50px;
}

.booking-form-sec .step .car-detail .txt {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-size: 15px;
    padding: 0 0 7px;
}

.booking-form-sec .step .car-box {
    background-color: #fff;
    outline: 1px solid #e3e5ea;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 0px 10px;
    border-radius: 11px;
}

.booking-form-sec .step .car-detail input[type="radio"]:checked + label{
outline: 2px solid #000;
}

.booking-form-sec .step .car-box .car-img {
    width: 25%;
}

.booking-form-sec .step .car-box .car-type ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 10px;
    padding: 6px 0 5px;
}

.booking-form-sec .step .car-box .car-type ul li {
    font-family: "Zen Dots", sans-serif;
    color: #000;
}

.booking-form-sec .step .car-box .car-type h4 {
    font-family: "Zen Dots", sans-serif;
    font-size: 18px;
    color: #000;
}

.booking-form-sec .step .car-box .car-type p {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-size: 15px;
}

.booking-form-sec .step .car-box .price h3 {
    font-family: "Zen Dots", sans-serif;
    color: #000;
}

.booking-form-sec .step .car-box:focus {
    outline: 2px solid #000;
}

.booking-form-sec .step {
    display: none;
}

.booking-form-sec .step.active {
    display: block;
}

.booking-form-sec .txt-box label {
    font-family: "Zen Dots", sans-serif;
    font-size: 16px;
    font-weight: 500;

}

.booking-form-sec .txt-box input {
    width: 100%;
    font-family: "Zen Dots", sans-serif;
    border-radius: 5px;
    border: 1px solid #9b9b9b;
    padding: 4px 10px;
}

.booking-form-sec .thankyou{
text-align: center;
}

.booking-form-sec .thankyou h3{
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-size: 35px;
}

.booking-form-sec .thankyou p{
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.booking-form-sec .title h3{
    text-align: left;
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-size: 36px;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.booking-form-sec .signup label{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-form-sec .signup label a{
    color: #3452fe;
    font-family: "Zen Dots", sans-serif;
}

/* contact-us */

.contact-sec {
    padding: 70px 0;
}

.contact-sec .title {
    padding: 0 0 30px;
    text-align: center;
}

.contact-sec .title h2 {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    padding: 0px 0 12px;
}

.contact-sec .title p {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    text-align: center;
    font-size: 15px;
    padding: 0 0 20px;
}

.contact-sec .card {
    padding: 15px 13px 35px;
    background: #2a3654;
    border-radius: 10px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-sec .card .content h4 {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    text-align: center;
    font-size: 17px;
    padding: 30px 0 15px;
}

.contact-sec .card .content p,
.contact-sec .card .content a {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    text-align: center;
    font-size: 13px;
}

/* contact-form-sec */

.contact-form-sec {
    background-image: url(../images/contactus-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    padding: 70px 0;
}

.contact-form-sec::before {
    background: linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 100%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    opacity: 0.3;
}

.contact-form-sec .title h3 {
    font-family: "Zen Dots", sans-serif;
    text-align: center;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

.contact-form-sec .txt-box label {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
}

.contact-form-sec .txt-box input,
.contact-form-sec .txt-box textarea {
    font-family: "Zen Dots", sans-serif;
    background-color: #ffffffbf;
    border: none;
    position: relative;
    border-bottom: 2px solid #e0e0e0;
    width: 100%;
    padding: 5px 8px;
}

/* chauffeur-applay-sec */

.chauffeur-applay-sec {
    padding: 70px 0 0;
}

.chauffeur-applay-sec .title {
    padding: 0 0 0px;
    text-align: center;
}

.chauffeur-applay-sec .title h4 {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
}

.chauffeur-applay-sec .title h2 {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
}

.chauffeur-applay-sec .title p {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    text-align: center;
    font-size: 13px;
    padding: 10px 0 20px;
}

.chauffeur-applay-sec .title.sec {
    padding-bottom: 30px;
}

.chauffeur-applay-sec .box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.chauffeur-applay-sec .box .icon {
    background-color: rgba(136, 136, 136, 0.17);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.chauffeur-applay-sec .box .icon i {
    color: #000;
    font-size: 19px;
}

.chauffeur-applay-sec .box .content h5 {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    padding: 10px 0 10px;
}

.chauffeur-applay-sec .box .content p {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-size: 13px;
}


.our-company-sec {
    padding: 70px 0 30px;
}

.our-company-sec .content h2 {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-weight: 700;
    font-size: 40px;
    padding: 0 0 25px;
}

.our-company-sec .content h6 {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-weight: 600;
    font-size: 15px;
}

.our-company-sec .content p,
.our-company-sec .content ul li {
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-size: 13px;
    padding: 10px 0 20px;
    line-height: 20px;
    font-weight: 500;
}

.our-company-sec .content ul {
    padding: 0 0 15px;
}

.our-company-sec .content ul li {
    padding: 7px 0 0;
}

.booking-form-sec.login-sec {
    padding: 50px 0 50px;
}

/* .about-sec */

.about-sec{
    padding: 50px 0;
}

.about-sec .about-img{
    position: relative;
}

.about-sec .about-img .img-a{
    transform: translateX(-35%);
}

.about-sec .about-img .img-b{
    position: absolute;
    top: 50%;
    width: 271px;
    object-fit: cover;
    right: 70px;
    height: 300px;
    transform: translateY(-50%);
}

.about-sec .about-img .img-b img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-sec .content h2{
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-weight: 700;
    font-size: 40px;
    padding: 0 0 25px;
}

.about-sec .content h6{
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
}

.about-sec .content p,
.about-sec .content ul li{
    font-family: "Zen Dots", sans-serif;
    color: #000;
    font-size: 14px;
    padding: 3px 0 0px;
    line-height: 20px;
    font-weight: 500;
    /* list-style: inside; */
}

.about-sec .content ul{
    padding: 6px 0 14px;
}

/* story-sec */

.story-sec{
position: relative;
}
.story-sec .story-box{
    background-image: url(../images/story.webp);
    background-repeat: no-repeat;
    border-radius: 10px;
    background-size: cover;
    text-align: center;
    padding: 80px 10px;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.story-sec .story-box::before{
    content: "";
    position: absolute;
    background: linear-gradient(135deg, #41537e 0%, #190707 100%);
    opacity: 0.8;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 10px;
}


.story-sec .story-box .content h2{
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    padding: 0 0 0px;
}

.story-sec .story-box .content h6 {
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
}

.story-sec .story-box .content p,
.story-sec .story-box .content ul li{
    font-family: "Zen Dots", sans-serif;
    color: #fff;
    font-size: 16px;
    padding: 10px 0 36px;
    line-height: 20px;
    font-weight: 400;
    line-height: 28px;
}

.story-sec .story-box .content ul li{
    padding: 3px 0 0px;
}

.story-sec .story-box .content ul {
   padding: 6px 0 14px;
}


/* profile-sec */

.profile-sec {
    padding: 70px 0;
}

.profile-sec .title {
    padding: 0 0 30px;
    text-align: center;
}

.profile-sec .title h2 {
    font-family: 'Helvetica Neue';
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    padding: 0px 0 12px;
}

.profile-sec .title p {
    font-family: 'SF Pro Display';
    color: #000;
    text-align: center;
    font-size: 15px;
    padding: 0 0 20px;
}

.profile-sec .card{border: 2px solid #959191;border-radius: 7px;padding: 13px 7px;height: 100%;}

.profile-sec .card .prof-img{

}

.profile-sec .card .prof-img img{width: 100%;}

.profile-sec .card .content{padding: 15px 20px 12px;}

.profile-sec .card h2 {
    font-family: 'Helvetica Neue';
    color: #000;
    font-weight: 700;
    font-size: 22px;
    padding: 0px 0 7px;
    text-align: center;
}

.profile-sec .card .content h3{
    font-family: 'Helvetica Neue';
    color: #000;
    font-weight: 700;
    font-size: 33px;
    padding: 0px 0 7px;
}

.profile-sec .card .content ul{display: flex;justify-content: flex-start;align-items: center;gap: 0 5px;}

.profile-sec .card .content ul li{
    color: #fbec1b;
}

.profile-sec .card .content p{font-family: 'SF Pro Display';color: #000;text-align: left;font-size: 15px;padding: 0 0 5px;}


.profile-sec .card.chauffeur .content h4{
    color: #44557c;
    font-weight: 700;
    font-size: 27px;
    padding: 0px 0 7px;
    font-family: 'Helvetica Neue';
    text-transform: capitalize;
}

.profile-sec .card.chauffeur .content .detail{
    padding-top: 10px;
}

.profile-sec .cardd {
  background: #ffff;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  border: 1px solid #333;
  padding: 20px;
}

.profile-sec .logo-container {
  text-align: right;
  padding: 10px;
}

.profile-sec .logo {
  color: gold;
  font-weight: bold;
  font-size: 1em;
  text-transform: uppercase;
}

.profile-sec .logo span {
  display: block;
  font-size: 0.8em;
  color: #ccc;
}

.profile-sec .header {
  text-align: left;
  padding: 10px 45% 10px 15px;
}

.profile-sec .name {
  font-size: 1.6em;
  font-weight: bold;
  color: rgb(52, 82, 255);
  font-family: 'Helvetica Neue';
}

.profile-sec .position {
  font-size: 0.9em;
  color: #393939;
  margin-bottom: 10px;
  font-family: 'SF Pro Display';
}

.profile-sec .contact p {
  margin: 4px 0;
  font-size: 1em;
  color: #000;
  font-family: 'SF Pro Display';
}

.profile-sec .section-title {
  color: rgb(52, 82, 255);
  font-weight: bold;
  font-size: 1.8em;
  margin-bottom: 5px;
  font-family: 'Helvetica Neue';
}

.profile-sec .text {
  font-size: 17px;
  color: #000;
  font-family: 'SF Pro Display';
}

.profile-sec .profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 2px solid #3b4f79;
}

.profile-sec .profile-text {
  flex: 1 1 50%;
  padding-left: 16px;
}

.profile-sec .profile-pic {
  flex: 1 1 40%;
  text-align: right;
  padding-right: 6px;
}

.profile-sec .profile-pic img {
    width: 100%;
    margin-bottom: 0;
    height: unset;
    object-fit: contain;
    object-position: bottom;
    margin-top: -310px;
}

.profile-sec  .reward-box {
  padding: 15px 18px;
  border-top: 2px solid #3b4f79;
}

.profile-sec  .reward-progress {
  text-align: center;
}

.profile-sec  .label {
  font-size: 1.2em;
  color: rgb(52, 82, 255);
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'SF Pro Display';
}

.profile-sec  .progress-bar {
  width: 100%;
  background: #333;
  height: 12px;
  border-radius: 8px;
  overflow: hidden;
  margin: 6px 0;
}

.profile-sec  .progress {
  height: 100%;
  background: gold;
  width: 0%;
  transition: width 0.3s ease-in-out;
}

.profile-sec .points {
  font-size: 0.85em;
  color: #aaa;
}

.reward-info {
  text-align: center;
}

.profile-sec .rating {
  font-size: 1.2em;
  color: gold;
  margin-bottom: 5px;
}

.profile-sec .reward-text {
  font-size: 1.75em;
  color: #000;
  font-family: 'SF Pro Display';
}

.profile-sec .note {
  font-size: 0.75em;
  color: #888;
  margin-top: 4px;
  font-family: 'SF Pro Display';
}
.profile-sec .semi-circle-wrapper {
  position: relative;
  width: 100%;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-sec .semi-circle {
  width: 100%;
  height: 130px;
}

.profile-sec .progress-value {
  font-size: 0.85em;
  color: #aaa;
  margin-top: 5px;
}

/* Optional hover animation */
.profile-sec .semi-circle path[stroke='gold'] {
  transition: stroke-dashoffset 0.6s ease-in-out;
}

.profile-sec .center-value {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8em;
    font-weight: bold;
    color: rgb(52, 82, 255);
    font-family: 'SF Pro Display';
}

.profile-sec .progress-caption {
  font-size: 1em;
  color: #000;
  margin-top: 4px;
  font-family: 'SF Pro Display';
}

.profile-sec .bottom-bar{
    display: flex;
}
.profile-sec .reward-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.profile-sec .reward-progress,
.profile-sec .reward-info {
  flex: 1 1 45%;
}




/* font-family */
/* font-family: "Zen Dots", sans-serif;
font-family: "Zen Dots", sans-serif; */
/*font-family: 'Orbitron', sans-serif ;*/

@media only screen and (max-width: 1920px) {}

@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1444px) {}

@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {
    .btn-learn {
        padding: 10px 56px;
    }
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .main-header .top-header .txt {
        font-size: 11px;
    }

    .main-header .navbar-brand img {
        width: 130px;
    }

    .main-header .navbar {
        padding: 0;
    }

    .main-header .navbar-toggler-icon {
        color: #fff;
        align-content: center;
    }

    .main-banner .content h1 {
        font-size: 42px;
    }

    .main-banner {
        height: unset;
        padding-top: 132px;
    }

    .btn-learn {
        padding: 10px 31px;
    }

    .btn-ban {
        gap: 0 12px;
        padding-top: 0;
        justify-content: center;
    }

    .stay-com-sec .main-content .title h2 {
        font-size: 36px;
    }

    .stay-com-sec {
        height: 100vh;
        padding: 45px 0 45px;
    }

    .professional-sec .title h2 {
        font-size: 36px;
        text-align: center;
        padding-bottom: 10px;
    }

    footer {
        padding: 45px 0 0;
    }

    footer .txt li {
        padding: 0 0 12px;
    }

    footer .social-icons {
        gap: 0 10px;
        padding: 0 0 15px;
    }

    footer .quick-links {
        gap: 0 15px;
    }

    footer p {
        padding: 15px 0 15px;
    }

    .navbar-collapse {
        align-items: center;
        background: #000;
        text-align: center;
    }

    /* inner pages  */
    .inner-banner {
        height: 360px;
        padding-top: 43px;
    }
    .inner-banner .title h1 {
        font-size: 36px;
        letter-spacing: 0px;
    }

    .contact-sec {
        padding: 45px 0;
    }

    .contact-sec .title h2 {
        font-size: 36px;
        padding: 0px 0 12px;
    }

    .contact-sec .title {
        padding: 0 0 0px;
    }

    .contact-sec .card .content h4 {
        font-size: 17px;
        padding: 15px 0 5px;
    }

    .contact-form-sec .title h3 {
        font-size: 36px;
    }

    .contact-form-sec {
        padding: 45px 0;
    }

    .booking-form-sec.login-sec {
        padding: 50px 0 0px;
    }

    .chauffeur-applay-sec {
        padding: 45px 0 0;
    }
    .about-sec .about-img .img-a {
        transform: translateX(-20%);
    }
    .about-sec .about-img .img-b {
        width: 171px;
        right: 10px;
        height: 200px;
    }
    .about-sec .content h2 {
        font-size: 36px;
        padding: 0 0 10px;
    }
    .story-sec .story-box .content p {
        padding: 10px 0 20px;
        line-height: 20px;
    }
    .story-sec .story-box {
        padding: 40px 10px;
    }
    .booking-form-sec .booking-form .stepss {
        gap: 0 12px;
    }
    .booking-form-sec .booking-form .stepss li {
        font-size: 11px;
    }
    .booking-form-sec .step .car-detail {
        padding-top: 20px;
    }
    .booking-form-sec .step .car-box .price h3 {
        padding-right: 24px;
        font-size: 15px;
    }
    .booking-form-sec .step .car-detail .btn-arrow {
        top: 2px;
        font-size: 14px;
    }
    .booking-form-sec .step .car-box .car-type p {
        font-size: 12px;
    }
    .booking-form-sec .step .car-box .car-type h4 {
        font-size: 17px;
    }
    .booking-form-sec .step .car-box .car-img {
        width: 31%;
        padding-right: 3px;
    }
    .booking-form-sec .step .car-box {
        padding: 15px 10px;
    }
    .booking-form-sec .step .car-detail .car-box .advance-info ul {
        padding-bottom: 0px;
    }
}

@media only screen and (max-width: 576px) {}

@media only screen and (max-width: 414px) {}

@media only screen and (max-width: 376px) {}