@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap");


* {
    font-family: 'Sora', sans-serif;
}

a {
    text-decoration: none;
}




ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.travel-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: .4s;
    padding: 18px 0;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


.travel-header.sticky {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    padding: 12px 0;
}


.travel-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.travel-logo img {
    width: 180px;
    transition: .4s;
}


.travel-header.sticky .travel-logo img {
    width: 165px;
}



.travel-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}


.travel-menu li {
    position: relative;
}


.travel-menu li a {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    transition: .3s;
    position: relative;
    letter-spacing: .3px;
}


.travel-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #fa7b06;
    transition: .4s;
    border-radius: 50px;
}


.travel-menu li a:hover {
    color: #fa7b06;
}


.travel-menu li a:hover::after {
    width: 100%;
}


.travel-menu li a.active {
    color: #fa7b06;
}


.travel-menu li a.active::after {
    width: 100%;
}


.travel-toggle {
    width: 42px;
    height: 42px;
    display: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}


.travel-toggle span {
    width: 28px;
    height: 3px;
    background: #222;
    transition: .4s;
    border-radius: 30px;
}


.travel-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}


.travel-toggle.active span:nth-child(2) {
    opacity: 0;
}


.travel-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}



.travel-mobile-menu {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    background: #fff;
    z-index: 999;
    transition: .45s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    padding: 90px 40px 40px;
}


.travel-mobile-menu.active {
    top: 0;
}


.travel-mobile-menu ul {
    display: flex;
    flex-direction: column;
}


.travel-mobile-menu li {
    border-bottom: 1px solid #ececec;
}


.travel-mobile-menu li:last-child {
    border: none;
}


.travel-mobile-menu li a {
    display: block;
    padding: 18px 0;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    transition: .3s;
}


.travel-mobile-menu li a:hover {
    color: #fa7b06;
    padding-left: 10px;
}




@media(max-width:1400px) {

    .travel-menu {
        gap: 28px;
    }

}

@media(max-width:1200px) {

    .travel-menu {
        gap: 22px;
    }

    .travel-menu li a {
        font-size: 14px;
    }

    .travel-logo img {
        width: 170px;
    }

}

@media(max-width:991px) {

    .travel-menu {
        display: none;
    }

    .travel-toggle {
        display: flex;
    }

    .travel-logo img {
        width: 165px;
    }

}

@media(max-width:768px) {

    .travel-header {
        padding: 15px 0;
    }

    .travel-logo img {
        width: 150px;
    }

    .travel-mobile-menu {
        padding: 70px 20px 10px;
    }

    .travel-mobile-menu li a {
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .travel-logo img {
        width: 140px;
    }

    .travel-toggle {
        width: 38px;
        height: 38px;
    }

    .travel-toggle span {
        width: 24px;
    }

    .travel-mobile-menu {
        padding: 70px 20px 10px;
    }

}

@media(max-width:425px) {

    .travel-logo img {
        width: 130px;
    }

    .travel-mobile-menu li a {
        font-size: 15px;
    }

}

@media(max-width:375px) {

    .travel-mobile-menu {
        padding: 70px 20px 10px;
    }

}

@media(max-width:320px) {

    .travel-logo img {
        width: 120px;
    }

    .travel-toggle span {
        width: 22px;
    }

    .travel-mobile-menu li a {
        font-size: 14px;
    }

}







.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(#000000e0, #000000ad), url(../img/main-img.jpeg) center 75% / cover no-repeat;
    margin-top: 90px;
    height: 850px;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 717px;
    color: #fff;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    margin-bottom: 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.hero-content h1 span {
    color: #fa7b06;
}


.hero-content i {
    color: #fa7b06;
    font-size: 22px;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.hero-content h1 span {
    color: #fa7b06;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .90);
    margin-bottom: 30px;
}



.hero-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 45px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fa7b06;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    flex-shrink: 0;
}

.hero-feature span {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}



.hero-counter-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-counter-box {
    width: 170px;
    padding: 22px 18px;
    text-align: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .18);
    transition: .4s;
}

.hero-counter-box:hover {
    transform: translateY(-8px);
}

.hero-counter-box h3 {
    color: #fa7b06;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-counter-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}



.hero-form {
    position: relative;
    z-index: 2;
    padding: 40px;
    border-radius: 25px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}


.hero-form h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-form p {
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    margin-bottom: 28px;
}



.hero-form .form-control,
.hero-form .form-select {

    height: 56px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .10);
    color: #fff;
    padding-left: 18px;
    box-shadow: none;
    transition: .4s;
}

.hero-form textarea.form-control {
    height: 120px;
    resize: none;
    padding-top: 15px;
}

.hero-form .form-control::placeholder {
    color: rgba(255, 255, 255, .75);
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {

    background: rgba(255, 255, 255, .16);
    border-color: #fa7b06;
    color: #fff;
    box-shadow: none;
}

.hero-form .form-select option {
    color: #222;
}

.hero-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #fa7b06, #ff7b00);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: .4s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(255, 123, 0, .35);
}




@media (max-width:1600px) {

    .hero-section {
        padding: 130px 0 80px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .hero-content {
        max-width: 620px;
    }

}


@media (max-width:1400px) {

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-form {
        padding: 35px;
    }

    .hero-counter-box {
        width: 160px;
    }

    .hero-feature-list {
        gap: 16px;
    }

}



@media (max-width:1200px) {

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-tag {
        font-size: 14px;
    }

    .hero-feature span {
        font-size: 15px;
    }

    .hero-counter-box {
        width: 150px;
        padding: 20px 15px;
    }

    .hero-counter-box h3 {
        font-size: 30px;
    }

    .hero-form {
        padding: 30px;
    }

    .hero-form h3 {
        font-size: 28px;
    }

    .hero-btn {
        height: 54px;
    }

}



@media (max-width:991px) {

    .hero-section {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }

    .hero-tag {
        margin: 0 auto 25px;
    }

    .hero-content p {
        margin: 0 auto 35px;
        max-width: 700px;
    }

    .hero-feature-list {
        max-width: 650px;
        margin: 0 auto 40px;
    }

    .hero-counter-wrapper {
        justify-content: center;
    }

    .hero-form {
        max-width: 650px;
        margin: 0 auto;
    }

}



@media (max-width:768px) {

    .hero-section {
        padding: 60px 0 60px;
        height: 100%;
        margin-top: 68px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-feature-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-feature {
        justify-content: flex-start;
    }

    .hero-counter-box {
        width: 47%;
    }

    .hero-form {
        padding: 28px;
    }

    .hero-form h3 {
        font-size: 26px;
    }

}



@media (max-width:576px) {

    .hero-section {
        padding: 60px 0 60px;
        height: 100%;
        margin-top: 68px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-tag {
        width: 100%;
        justify-content: left;
        width: max-content;
    }

    .hero-content h1 {
        font-size: 31px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-feature {
        align-items: flex-start;
    }

    .hero-feature span {
        font-size: 14px;
    }

    .hero-counter-wrapper {
        gap: 15px;
    }

    .hero-counter-box {
        width: 100%;
    }

    .hero-form {
        padding: 22px;
        border-radius: 18px;
    }

    .hero-form h3 {
        font-size: 24px;
    }

    .hero-form p {
        font-size: 14px;
    }

    .hero-form .form-control,
    .hero-form .form-select {
        height: 52px;
        font-size: 14px;
    }

    .hero-form textarea.form-control {
        height: 110px;
    }

    .hero-btn {
        height: 52px;
        font-size: 15px;
    }

}



@media (max-width:425px) {

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-tag {
        font-size: 13px;
        padding: 10px 16px;
    }

    .hero-feature i {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .hero-counter-box h3 {
        font-size: 26px;
    }

    .hero-form {
        padding: 20px;
    }

}



@media (max-width:375px) {

    .hero-content h1 {
        font-size: 25px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-feature-list {
        gap: 14px;
    }

    .hero-form {
        padding: 18px;
    }

    .hero-form h3 {
        font-size: 22px;
    }

}



@media (max-width:320px) {

    .hero-section {
        padding: 60px 0 60px;
        height: 100%;
        margin-top: 68px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-feature i {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .hero-feature span {
        font-size: 13px;
    }

    .hero-counter-box {
        padding: 18px 12px;
    }

    .hero-counter-box h3 {
        font-size: 22px;
    }

    .hero-counter-box p {
        font-size: 13px;
    }

    .hero-form {
        padding: 16px;
    }

    .hero-form h3 {
        font-size: 20px;
    }

    .hero-form .form-control,
    .hero-form .form-select {
        height: 48px;
        font-size: 13px;
        padding-left: 14px;
    }

    .hero-form textarea.form-control {
        height: 100px;
    }

    .hero-btn {
        height: 48px;
        font-size: 14px;
    }

}





.hero-content {
    animation: fadeLeft 1s ease forwards;
}

.hero-form {
    animation: fadeRight 1s ease forwards;
}

.hero-tag {
    animation: fadeUp .8s ease forwards;
}

.hero-feature {
    transition: .35s;
}

.hero-feature:hover {
    transform: translateX(8px);
}

.hero-counter-box {
    transition: .4s;
}

.hero-counter-box:hover {
    transform: translateY(-10px);
}

.hero-form .form-control,
.hero-form .form-select {
    transition: .35s;
}

.hero-form .form-control:hover,
.hero-form .form-select:hover {
    border-color: #fa7b06;
}

.hero-btn {
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    transform: skewX(-25deg);
    transition: .6s;
}

.hero-btn:hover::before {
    left: 130%;
}

@keyframes fadeLeft {

    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes fadeRight {

    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}









.about-section {
    padding: 90px 0 50px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}



.about-section .container {
    position: relative;
    z-index: 2;
}



.about-image-wrapper {
    position: relative;
}


.about-main-image {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
    transition: .5s;
    height: 580px;
}


.about-main-image:hover {
    transform: scale(1.02);
}


.experience-card {
    position: absolute;
    padding: 28px 20px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
    margin-top: 30px;
    display: none;
}


.experience-card span {
    display: block;
    font-size: 48px;
    color: #ff8c00;
    font-weight: 700;
    line-height: 1;

}

.experience-card p {
    margin-top: 10px;
    margin-bottom: 0;
    color: #555;
    font-size: 15px;
    font-weight: 500;

}



.rating-card {
    position: absolute;
    right: 0px;
    bottom: 1px;
    width: 240px;
    padding: 22px;
    background: #0000005c;
    backdrop-filter: blur(14px);
    border-radius: 0 0 30px 0;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
    display: none;
}

.rating-star {
    color: #ffb400;
    font-size: 20px;
    margin-bottom: 8px;
}

.rating-card h5 {
    color: #fa7b05;
    font-weight: 700;
    margin-bottom: 5px;
}

.rating-card span {
    color: #ffffff;
    font-size: 14px;
}



.about-content {
    padding-left: 18px;
}

.about-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #fff4e8;
    color: #fa7b06;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 22px;

}

.about-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #02014d;
    line-height: 1.1;
    margin-bottom: 10px;
}

.about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 18px;
}



.about-feature-card {
    background: #fff;
    padding: 15px 15px;
    border-radius: 20px;
    height: 100%;
    transition: .4s;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    border: 1px solid #f3f3f3;
}


.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(255, 140, 0, .18);
}

.about-feature-card i {
    width: 40px;
    height: 40px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9f1c, #ff6b00);
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.about-feature-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #02014d;
    margin-bottom: 0px;
}

.about-feature-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.5;
}




@media (max-width:1600px) {

    .about-content h2 {
        font-size: 42px;
    }

}



@media (max-width:1400px) {

    .about-section {
        padding: 90px 0;
    }

    .about-content {
        padding-left: 25px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content p {
        font-size: 16px;
    }

    .experience-card {
        left: -20px;
    }

    .rating-card {
        right: -15px;
    }

}



@media (max-width:1199px) {

    .about-content {
        padding-left: 20px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-feature-card {
        padding: 22px;
    }

    .about-feature-card h5 {
        font-size: 18px;
    }

    .about-feature-card p {
        font-size: 14px;
    }

    .experience-card {
        width: 150px;
        padding: 24px 18px;
    }

    .experience-card span {
        font-size: 40px;
    }

    .rating-card {
        width: 190px;
    }

}



@media (max-width:991px) {

    .about-section {
        padding: 80px 0;
    }

    .about-image-wrapper {
        margin-bottom: 60px;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-content p {
        max-width: 700px;
        margin: 0 auto 20px;
    }

    .about-subtitle {
        margin-bottom: 18px;
    }

    .about-feature-card {
        text-align: left;
    }

    .experience-card {
        left: 20px;
        top: 20px;
    }

    .rating-card {
        right: 20px;
        bottom: 20px;
    }

}



@media (max-width:767px) {

    .about-section {
        padding: 70px 0;
    }


    .about-main-image {
        height: 100%;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-feature-card {
        padding: 20px;
    }

    .about-feature-card i {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .experience-card {
        width: 130px;
    }

    .experience-card span {
        font-size: 34px;
    }

    .experience-card p {
        font-size: 13px;
    }

    .rating-card {
        width: 120px;
        padding: 12px;
        display: none;
    }


    .about-image-wrapper {
        margin-bottom: 30px;
    }

    .rating-card h5 {
        font-size: 16px;
    }

    .rating-card span {
        font-size: 13px;
    }

}



@media (max-width:575px) {

    .about-section {
        padding: 60px 0;
    }

    .about-content {
        text-align: left;
    }

    .about-subtitle {
        font-size: 14px;
        padding: 10px 18px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-feature-card {
        text-align: center;
    }

    .about-feature-card i {
        margin: 0 auto 18px;
    }

    .experience-card {
        width: 110px;
        padding: 18px 12px;
        border-radius: 16px;
    }

    .experience-card span {
        font-size: 28px;
    }

    .experience-card p {
        font-size: 11px;
    }

    .rating-card {
        width: 150px;
        border-radius: 16px;
    }

    .rating-star {
        font-size: 16px;
    }

    .rating-card h5 {
        font-size: 15px;
    }

    .rating-card span {
        font-size: 12px;
    }

}



@media (max-width:425px) {

    .about-content h2 {
        font-size: 23px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-subtitle {
        width: 100%;
        text-align: center;
    }

    .experience-card {
        width: 95px;
        left: 15px;
        top: 15px;
    }

    .experience-card span {
        font-size: 24px;
    }

    .rating-card {
        width: 135px;
        right: 15px;
        bottom: 15px;
    }

    .rating-card h5 {
        font-size: 14px;
    }

    .rating-card span {
        font-size: 11px;
    }

    .about-feature-card {
        padding: 18px;
    }

    .about-feature-card h5 {
        font-size: 17px;
    }

}



@media (max-width:375px) {

    .about-content h2 {
        font-size: 21px;
    }

    .about-content p {
        font-size: 13px;
    }

    .about-feature-card {
        padding: 16px;
    }

    .about-feature-card i {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .about-feature-card h5 {
        font-size: 16px;
    }

    .about-feature-card p {
        font-size: 13px;
    }

}



@media (max-width:320px) {

    .about-section {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 19px;
        line-height: 1.5;
    }

    .about-subtitle {
        font-size: 13px;
        padding: 8px 14px;
    }

    .about-content p {
        font-size: 13px;
    }

    .experience-card {
        width: 80px;
        padding: 14px 8px;
    }

    .experience-card span {
        font-size: 20px;
    }

    .experience-card p {
        font-size: 9px;
    }

    .rating-card {
        width: 120px;
        padding: 12px;
        display: none;
    }

    .rating-star {
        font-size: 14px;
    }

    .rating-card h5 {
        font-size: 13px;
    }

    .rating-card span {
        font-size: 10px;
    }

    .about-feature-card {
        padding: 15px;
    }

    .about-feature-card i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .about-feature-card h5 {
        font-size: 15px;
    }

    .about-feature-card p {
        font-size: 12px;
    }

}


.glass-title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgb(2 1 77);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(250 130 19);
    margin-bottom: 15px;
}

.glass-title i {
    color: #fa7b06;
    font-size: 18px;
}

.glass-title span {
    color: #fa7b06;
    font-weight: 600;
}






.fleet-section {
    position: relative;
    padding: 90px 0;
    background: url("../img/main-img.jpeg") center 93%/cover no-repeat;
    overflow: hidden;
}

.fleet-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000d1;
}

.fleet-section .container {
    position: relative;
    z-index: 2;
}

.fleet-heading {
    max-width: 850px;
    margin: 0 auto 40px;
}

.fleet-subtitle {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    color: #fa7b06;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.fleet-heading h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.fleet-heading p {
    color: #d4d4d4;
    font-size: 17px;
    line-height: 1.5;
}


.fleet-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: .45s;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    height: 100%;
}

.fleet-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .22);
}



.fleet-image {
    position: relative;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: .6s;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.08);
}

.fleet-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .55),
            transparent 60%);
}

.fleet-seat {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #fa7b06;
    color: #fff;
    padding: 4px 15px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.fleet-content {
    padding: 20px 15px;
}

.fleet-content h3 {
    font-size: 22px;
    color: #02014d;
    font-weight: 700;
    margin-bottom: 5px;
}

.fleet-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 15px;
}


.fleet-list {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.fleet-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
}



.fleet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fa7b06;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

.fleet-btn i {
    font-size: 16px;
    transition: 0.4s ease;
}



.fleet-btn:hover i {
    transform: translateX(6px);
}


.fleet-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #fa7b06, #ff6b00);
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s;
}

.fleet-card:hover::before {
    transform: scaleX(1);
}




@media (max-width:1400px) {

    .fleet-section {
        padding: 100px 0;
    }

    .fleet-heading {
        margin-bottom: 70px;
    }

    .fleet-heading h2 {
        font-size: 44px;
    }

}


@media (max-width:1199px) {

    .fleet-section {
        padding: 90px 0;
    }

    .fleet-heading h2 {
        font-size: 40px;
    }

    .fleet-heading p {
        font-size: 16px;
    }

    .fleet-content {
        padding: 25px;
    }

    .fleet-content h3 {
        font-size: 23px;
    }

    .fleet-image img {
        height: 240px;
    }

}



@media (max-width:991px) {

    .fleet-section {
        padding: 80px 0;
    }

    .fleet-heading {
        margin-bottom: 55px;
    }

    .fleet-heading h2 {
        font-size: 34px;
    }

    .fleet-heading p {
        font-size: 15px;
        line-height: 1.8;
    }

    .fleet-card {
        border-radius: 25px;
    }

    .fleet-image img {
        height: 230px;
    }

    .fleet-content {
        padding: 22px;
    }

    .fleet-content h3 {
        font-size: 21px;
    }

}



@media (max-width:767px) {

    .fleet-section {
        padding: 70px 0;
    }

    .fleet-heading {
        margin-bottom: 45px;
    }

    .fleet-subtitle {
        font-size: 14px;
        padding: 9px 20px;
    }

    .fleet-heading h2 {
        font-size: 30px;
    }

    .fleet-heading p {
        font-size: 15px;
    }

    .fleet-image img {
        height: 220px;
    }

    .fleet-content {
        padding: 20px;
    }

    .fleet-content h3 {
        font-size: 20px;
    }

    .fleet-content p {
        font-size: 14px;
    }

    .fleet-list li {
        font-size: 14px;
    }

    .fleet-btn {
        width: 100%;
        justify-content: center;
    }

}



@media (max-width:575px) {

    .fleet-section {
        padding: 60px 0;
    }

    .fleet-heading {
        margin-bottom: 40px;
        text-align: left !important;
    }

    .fleet-heading h2 {
        font-size: 26px;
    }

    .fleet-heading p {
        font-size: 14px;
    }

    .fleet-card {
        border-radius: 22px;
    }

    .fleet-image img {
        height: 210px;
    }

    .fleet-seat {
        font-size: 13px;
        padding: 7px 15px;
    }

    .fleet-content {
        padding: 18px;
    }

    .fleet-content h3 {
        font-size: 19px;
    }

    .fleet-content p {
        font-size: 14px;
    }

    .fleet-list li {
        font-size: 13px;
    }

    .fleet-btn {
        font-size: 16px;
        justify-content: left;
    }

}



@media (max-width:425px) {

    .fleet-heading h2 {
        font-size: 23px;
    }

    .fleet-heading p {
        font-size: 13px;
    }

    .fleet-image img {
        height: 190px;
    }

    .fleet-content {
        padding: 16px;
    }

    .fleet-content h3 {
        font-size: 18px;
    }

    .fleet-content p {
        font-size: 13px;
    }

    .fleet-list li {
        font-size: 13px;
        padding-left: 24px;
    }

    .fleet-seat {
        top: 15px;
        left: 15px;
        font-size: 12px;
    }

}



@media (max-width:375px) {

    .fleet-heading h2 {
        font-size: 21px;
    }

    .fleet-heading p {
        font-size: 12px;
    }

    .fleet-image img {
        height: 180px;
    }

    .fleet-content h3 {
        font-size: 17px;
    }

    .fleet-content p {
        font-size: 12px;
    }

    .fleet-btn {
        font-size: 13px;
    }

}



@media (max-width:320px) {

    .fleet-section {
        padding: 50px 0;
    }

    .fleet-heading h2 {
        font-size: 19px;
        line-height: 1.5;
    }

    .fleet-heading p {
        font-size: 12px;
    }

    .fleet-subtitle {
        font-size: 12px;
        padding: 8px 16px;
    }

    .fleet-image img {
        height: 165px;
    }

    .fleet-content {
        padding: 15px;
    }

    .fleet-content h3 {
        font-size: 16px;
    }

    .fleet-content p {
        font-size: 12px;
    }

    .fleet-list li {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .fleet-btn {
        width: 100%;
        padding: 11px;
        font-size: 13px;
    }

}










.counter-section {
    position: relative;
    padding: 0 0 90px;
}


.counter-section .container {
    position: relative;
    z-index: 2;
}



.counter-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 35px 20px;
    text-align: center;
    transition: 0.4s ease;
    height: 100%;
    box-shadow: 1px 4px 12px rgb(0 0 0 / 35%);
}

.counter-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: #fa7b06;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}



.counter-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fa7b06, #ff6b00);
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon i {
    font-size: 30px;
    color: #ffffff;
}

.counter-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: #02014d;
    margin-bottom: 10px;
}

.counter-box h5 {
    color: #777777;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}




@media (max-width:1199px) {

    .counter-box {
        padding: 30px 18px;
    }

    .counter-box h2 {
        font-size: 36px;
    }

}

@media (max-width:991px) {

    .counter-section {
        padding: 80px 0;
    }

    .counter-box {
        margin-bottom: 20px;
    }

}

@media (max-width:767px) {

    .counter-section {
        padding: 70px 0;
    }

    .counter-icon {
        width: 65px;
        height: 65px;
    }

    .counter-icon i {
        font-size: 26px;
    }

    .counter-box h2 {
        font-size: 32px;
    }

    .counter-box h5 {
        font-size: 17px;
    }

}

@media (max-width:575px) {

    .counter-section {
        padding: 0px 0 60px;
    }

    .counter-box {
        padding: 25px 18px;
    }

    .counter-box h2 {
        font-size: 28px;
    }

    .counter-box h5 {
        font-size: 16px;
    }

    .counter-box p {
        font-size: 13px;
    }

}

@media (max-width:425px) {

    .counter-box {
        padding: 22px 15px;
    }

    .counter-icon {
        width: 60px;
        height: 60px;
    }

    .counter-icon i {
        font-size: 24px;
    }

}

@media (max-width:320px) {

    .counter-box h2 {
        font-size: 24px;
    }

    .counter-box h5 {
        font-size: 15px;
    }

    .counter-box p {
        font-size: 12px;
    }

}








.services-section {
    position: relative;
    padding: 90px 0;
    background: #f8fafc;
    overflow: hidden;
}




.services-section .container {
    position: relative;
    z-index: 1;
}



.services-content {
    padding-right: 45px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: #fff3e6;
    border-radius: 50px;
    color: #fa7b06;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

.section-tag i {
    font-size: 17px;
}

.services-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #02014d;
    margin-bottom: 15px;
}

.services-content h2 span {
    color: #fa7b06;
}

.services-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 15px;
}



.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #02014d, #02014d);
    color: #fc7304;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-item span {
    font-size: 17px;
    color: #0B1D39;
    font-weight: 600;
}



.service-item {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 22px;
    height: 100%;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
}

.service-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(#02014d, #02014d);
    transition: .4s;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.service-item:hover::before {
    width: 100%;
    opacity: .06;
}

/*==========================================
        SERVICE CONTENT
==========================================*/

.service-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.service-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fa7b06, #ff6200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.service-icon i {
    font-size: 30px;
    color: #fff;
}

.service-item:hover .service-icon {
    transform: rotate(-8deg) scale(1.08);
}

.service-item h4 {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: #0B1D39;
    transition: .3s;
}

.service-item:hover h4 {
    color: #fa7b06;
}



.service-item-center {
    max-width: 520px;
    margin: 10px auto 0;
}






@media (max-width:1400px) {

    .services-section {
        padding: 100px 0;
    }

    .services-content {
        padding-right: 30px;
    }

    .services-content h2 {
        font-size: 44px;
    }

}


@media (max-width:1199px) {

    .services-section {
        padding: 90px 0;
    }

    .services-content {
        padding-right: 20px;
    }

    .services-content h2 {
        font-size: 40px;
    }

    .services-content p {
        font-size: 15px;
    }

    .feature-item span {
        font-size: 16px;
    }

    .service-item {
        padding: 20px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-item h4 {
        font-size: 18px;
    }

}



@media (max-width:991px) {

    .services-section {
        padding: 80px 0;
    }

    .services-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }

    .services-content h2 {
        font-size: 36px;
    }

    .services-content p {
        max-width: 700px;
        margin: 0 auto 35px;
    }

    .service-features {
        align-items: center;
    }

    .feature-item {
        justify-content: center;
    }

    .service-item-center {
        max-width: 100%;
    }

}



@media (max-width:767px) {

    .services-section {
        padding: 70px 0;
    }

    .services-content {
        margin-bottom: 40px;
        text-align: left;
    }

    .services-content h2 {
        font-size: 30px;
    }

    .services-content p {
        font-size: 15px;
    }

    .feature-item span {
        font-size: 15px;
    }

    .service-item {
        padding: 18px;
    }

    .service-left {
        gap: 15px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        border-radius: 16px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-item h4 {
        font-size: 17px;
    }

}



@media (max-width:575px) {

    .services-section {
        padding: 60px 0;
    }

    .section-tag {
        font-size: 13px;
        padding: 8px 18px;
    }

    .services-content h2 {
        font-size: 26px;
    }

    .services-content p {
        font-size: 14px;
    }

    .service-features {
        align-items: flex-start;
    }

    .feature-item {
        justify-content: flex-start;
        gap: 12px;
    }

    .feature-item i {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .feature-item span {
        font-size: 14px;
    }

    .service-item {
        padding: 16px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .service-icon i {
        font-size: 22px;
    }

    .service-item h4 {
        font-size: 16px;
    }

}



@media (max-width:425px) {

    .services-content {
        text-align: left;
    }

    .services-content h2 {
        font-size: 22px;
    }

    .services-content p {
        font-size: 13px;
    }

    .service-features {
        align-items: flex-start;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-item span {
        font-size: 13px;
    }

    .service-item {
        padding: 15px;
    }

    .service-left {
        gap: 12px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .service-icon i {
        font-size: 20px;
    }

    .service-item h4 {
        font-size: 15px;
        line-height: 1.4;
    }

}



@media (max-width:375px) {

    .services-content h2 {
        font-size: 20px;
    }

    .section-tag {
        font-size: 12px;
    }

    .feature-item span {
        font-size: 12px;
    }

    .service-item h4 {
        font-size: 14px;
    }

}



@media (max-width:320px) {

    .services-section {
        padding: 50px 0;
    }

    .services-content h2 {
        font-size: 18px;
    }

    .services-content p {
        font-size: 12px;
    }

    .feature-item i {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .feature-item span {
        font-size: 11px;
    }

    .service-item {
        padding: 14px;
    }

    .service-left {
        gap: 10px;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 12px;
    }

    .service-icon i {
        font-size: 18px;
    }

    .service-item h4 {
        font-size: 13px;
    }

}









.why-choose-section {
    padding: 20px 0 90px;
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}



.why-choose-section .container {
    position: relative;
    z-index: 2;
}



.why-heading {
    max-width: 800px;
    margin: 0 auto 4%;
    text-align: center;
}

.why-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: #02014d;
    color: #fa7b06;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
    border: 1px solid #fa7b06;
}

.why-heading h2 {
    font-size: 40px;
    color: #02014a;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.why-heading h2 span {
    color: #fa7b06;
}

.why-heading p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}


.why-layout {
    display: grid;
    grid-template-columns: 1fr 520px 1fr;
    align-items: center;
    gap: 40px;
}



.why-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    border: 1px solid #f1f1f1;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fa7b06, #fa7b06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    color: #fff;
    font-size: 24px;
}


.why-content h4 {
    font-size: 22px;
    color: #0b1d39;
    margin-bottom: 5px;
    font-weight: 700;
}


.why-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0px;
}


.why-image {
    position: relative;
    text-align: center;
}

.why-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .18);
    transition: .5s;
}

.why-image:hover img {
    transform: scale(1.03);
}

.experience-box {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: #fa7b06;
    color: #fff;
    padding: 18px 35px;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(255, 122, 0, .35);
    width: 100%;
}

.experience-box h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-box span {
    font-size: 15px;
    font-weight: 600;
}




@media (max-width:1400px) {

    .why-choose-section {
        padding: 100px 0;
    }

    .why-layout {
        grid-template-columns: 1fr 470px 1fr;
        gap: 30px;
    }

    .why-heading h2 {
        font-size: 44px;
    }

}



@media (max-width:1199px) {

    .why-choose-section {
        padding: 90px 0;
    }

    .why-layout {
        grid-template-columns: 1fr 420px 1fr;
        gap: 25px;
    }

    .why-image img {
        max-width: 420px;
    }

    .why-card {
        padding: 20px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .why-icon i {
        font-size: 24px;
    }

    .why-content h4 {
        font-size: 20px;
    }

    .why-content p {
        font-size: 14px;
    }

    .why-heading h2 {
        font-size: 40px;
    }

}



@media (max-width:991px) {

    .why-choose-section {
        padding: 80px 0;
    }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .why-image {
        order: 1;
    }

    .left-column {
        order: 2;
    }

    .right-column {
        order: 3;
    }

    .why-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-image img {
        max-width: 550px;
    }

    .why-heading h2 {
        font-size: 34px;
    }

}



@media (max-width:767px) {

    .why-choose-section {
        padding: 70px 0;
    }

    .why-heading {
        margin-bottom: 50px;
    }

    .why-heading h2 {
        font-size: 30px;
    }

    .why-heading p {
        font-size: 15px;
    }

    .why-column {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 18px;
    }

    .why-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        border-radius: 16px;
    }

    .why-icon i {
        font-size: 22px;
    }

    .why-content h4 {
        font-size: 18px;
    }

    .experience-box {
        padding: 15px 28px;
    }

    .experience-box h3 {
        font-size: 28px;
    }

}



@media (max-width:575px) {

    .why-choose-section {
        padding: 30px 0 60px;
    }

    .why-subtitle {
        font-size: 13px;
        padding: 8px 18px;
    }

    .why-heading h2 {
        font-size: 26px;
    }

    .why-heading p {
        font-size: 14px;
    }

    .why-image img {
        border-radius: 22px;
    }

    .why-card {
        border-radius: 18px;
        gap: 15px;
    }

    .experience-box {
        padding: 14px 24px;
        border-radius: 16px;
    }

    .experience-box h3 {
        font-size: 24px;
    }

    .experience-box span {
        font-size: 13px;
    }

}



@media (max-width:425px) {

    .why-heading h2 {
        font-size: 22px;
    }

    .why-heading p {
        font-size: 13px;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
    }

    .why-icon {
        margin: 0 auto;
    }

    .why-content h4 {
        font-size: 17px;
    }

    .why-content p {
        font-size: 13px;
    }

    .experience-box {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 20px auto 0;
        display: inline-block;
    }

}



@media (max-width:375px) {

    .why-heading h2 {
        font-size: 20px;
    }

    .why-heading p {
        font-size: 12px;
    }

    .why-subtitle {
        font-size: 12px;
    }

    .why-card {
        padding: 16px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .why-icon i {
        font-size: 20px;
    }

    .why-content h4 {
        font-size: 16px;
    }

}



@media (max-width:320px) {

    .why-choose-section {
        padding: 30px 0 60px;
    }

    .why-heading h2 {
        font-size: 18px;
    }

    .why-heading p {
        font-size: 11px;
    }

    .why-card {
        padding: 14px;
    }

    .why-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .why-icon i {
        font-size: 18px;
    }

    .why-content h4 {
        font-size: 15px;
    }

    .why-content p {
        font-size: 11px;
    }

    .experience-box {
        padding: 12px 18px;
    }

    .experience-box h3 {
        font-size: 22px;
    }

    .experience-box span {
        font-size: 11px;
    }

}











.booking-process-section {
    padding: 0px 0 90px;
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}


.booking-process-section .container {
    position: relative;
    z-index: 2;
}


.booking-process-wrapper {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 40px;
    align-items: center;
}



.booking-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #02014d;
    color: #fa7b06;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid;
}


.booking-tag i {
    font-size: 18px;

}

.booking-process-content h2 {
    font-size: 46px;
    line-height: 1.3;
    color: #02014d;
    font-weight: 800;
    margin-bottom: 22px;
}

.booking-process-content h2 span {
    display: block;
    color: #fa7b06;
}

.booking-process-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}



.booking-highlights {
    display: grid;
    gap: 18px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #0b1d39;
    font-weight: 600;
}

.highlight-item i {
    color: #fa7b06;
    font-size: 20px;

}



.booking-process-steps {
    display: flex;
    flex-direction: column;
}

.booking-step {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #ececec;
    transition: .35s;
}

.booking-step:first-child {
    border-top: 1px solid #ececec;

}

.booking-step:hover {
    padding-left: 18px;

}



.step-count {
    width: 75px;
    min-width: 75px;
    font-size: 42px;
    font-weight: 800;
    color: #fa7b06;
    opacity: .18;
    transition: .35s;
    line-height: 1;
}

.booking-step:hover .step-count {
    opacity: 1;
    transform: scale(1.08);

}



.step-details {
    flex: 1;
}

.step-details h3 {
    font-size: 24px;
    color: #0b1d39;
    font-weight: 700;
    margin-bottom: 10px;
    transition: .3s;
}

.booking-step:hover .step-details h3 {
    color: #fa7b06;

}

.step-details p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0px;
}



@media (max-width:1400px) {

    .booking-process-wrapper {
        grid-template-columns: 420px 1fr;
        gap: 60px;
    }

    .booking-process-content h2 {
        font-size: 42px;
    }

}



@media (max-width:1199px) {

    .booking-process-section {
        padding: 90px 0;
    }

    .booking-process-wrapper {
        grid-template-columns: 380px 1fr;
        gap: 50px;
    }

    .booking-process-content h2 {
        font-size: 38px;
    }

    .booking-process-content p {
        font-size: 15px;
    }

    .step-details h3 {
        font-size: 22px;
    }

    .step-count {
        width: 65px;
        min-width: 65px;
        font-size: 36px;
    }

}



@media (max-width:991px) {

    .booking-process-section {
        padding: 80px 0;
    }

    .booking-process-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-process-content {
        position: static;
    }

    .booking-process-content h2 {
        font-size: 34px;
    }

}



@media (max-width:767px) {

    .booking-process-section {
        padding: 70px 0;
    }

    .booking-process-content {
        text-align: left;
    }

    .booking-process-content h2 {
        font-size: 30px;
    }

    .booking-process-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .booking-highlights {
        grid-template-columns: 1fr;
        justify-items: left;
    }

    .highlight-item {
        justify-content: center;
        text-align: center;
    }

    .booking-step {
        gap: 18px;
        padding: 22px 0;
    }

    .step-count {
        width: 55px;
        min-width: 55px;
        font-size: 30px;
    }

    .step-details h3 {
        font-size: 20px;
    }

    .step-details p {
        font-size: 14px;
    }

}



@media (max-width:575px) {

    .booking-process-section {
        padding: 20px 0 60px;
    }

    .booking-tag {
        font-size: 13px;
        padding: 8px 16px;
    }

    .booking-process-content h2 {
        font-size: 26px;
    }

    .booking-process-content p {
        font-size: 14px;
    }

    .booking-step {
        flex-direction: column;
        gap: 10px;
    }

    .step-count {
        width: auto;
        min-width: auto;
        font-size: 28px;
    }

    .step-details h3 {
        font-size: 18px;
    }

    .step-details p {
        font-size: 13px;
        line-height: 1.7;
    }

}



@media (max-width:425px) {

    .booking-process-content h2 {
        font-size: 22px;
    }

    .booking-process-content p {
        font-size: 13px;
    }

    .highlight-item {
        font-size: 14px;
    }

    .highlight-item i {
        font-size: 18px;
    }

    .step-count {
        font-size: 24px;
    }

    .step-details h3 {
        font-size: 17px;
    }

    .step-details p {
        font-size: 12px;
    }

}



@media (max-width:375px) {

    .booking-process-content h2 {
        font-size: 20px;
    }

    .booking-tag {
        font-size: 12px;
        padding: 8px 14px;
    }

    .booking-process-content p {
        font-size: 12px;
    }

    .highlight-item {
        font-size: 13px;
    }

    .step-details h3 {
        font-size: 16px;
    }

    .step-details p {
        font-size: 12px;
    }

}



@media (max-width:320px) {

    .booking-process-section {
        padding: 20px 0 60px;
    }

    .booking-process-content h2 {
        font-size: 18px;
    }

    .booking-tag {
        font-size: 11px;
        padding: 7px 12px;
    }

    .booking-process-content p {
        font-size: 11px;
    }

    .highlight-item {
        font-size: 12px;
        gap: 10px;
    }

    .highlight-item i {
        font-size: 16px;
    }

    .step-count {
        font-size: 22px;
    }

    .step-details h3 {
        font-size: 15px;
    }

    .step-details p {
        font-size: 11px;
        line-height: 1.6;
    }

}








.floating-cta-section {
    position: relative;
    padding: 90px 0;
    background: url("../img/17-bg.jpeg") center center/cover no-repeat;
    overflow: hidden;
    z-index: 1;
    background-attachment: fixed;
}

.floating-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000000bd, #000000bf, #000000b0);
    z-index: -1;
}

.floating-cta-section .container {
    position: relative;
    z-index: 2;
}

.floating-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}



.floating-cta-content {
    max-width: 850px;
    width: 100%;
    margin: auto;
    color: #fff;
    text-align: center;
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 600;

}

.floating-badge i {
    color: #fa7f0d;
}

.floating-cta-content h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.floating-cta-content h2 span {
    color: #fa7f0d;
}

.floating-cta-content p {
    max-width: 720px;
    margin: 0 auto 25px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .90);

}



.floating-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 35px;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.floating-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.floating-features i {
    color: #ff9800;
    font-size: 18px;

}



.floating-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;

}

.floating-cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: .35s;
}

.floating-cta-section .primary-btn {
    background: #fa7b05;
    color: #fff;
}

.floating-cta-section .primary-btn:hover {
    background: #fff;
    color: #0b1d39;
    transform: translateY(-5px);
}

.floating-cta-section .secondary-btn {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}

.floating-cta-section .secondary-btn:hover {
    background: #fff;
    color: #0b1d39;
    transform: translateY(-5px);
}

.floating-cta-section .whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.floating-cta-section .whatsapp-btn:hover {
    background: #fff;
    color: #25D366;
    transform: translateY(-5px);
}









@media (max-width:1400px) {

    .floating-cta-section {
        padding: 110px 0;
    }

    .floating-cta-content h2 {
        font-size: 50px;
    }

    .floating-image img {
        width: 580px;
    }

}



@media (max-width:1199px) {

    .floating-cta-section {
        padding: 100px 0;
    }

    .floating-cta-wrapper {
        gap: 50px;
    }

    .floating-cta-content h2 {
        font-size: 42px;
    }

    .floating-cta-content p {
        font-size: 16px;
    }


}



@media (max-width:991px) {

    .floating-cta-section {
        padding: 90px 0;
    }

    .floating-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .floating-cta-content {
        flex: 100%;
        max-width: 700px;
    }

    .floating-features {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .floating-buttons {
        justify-content: center;
    }

    .floating-image {
        flex: 100%;
        text-align: center;
    }

    .floating-image img {
        width: 520px;
        max-width: 100%;
    }

}



@media (max-width:767px) {

    .floating-cta-section {
        padding: 80px 0;
    }

    .floating-badge {
        font-size: 13px;
        padding: 8px 18px;
    }

    .floating-cta-content h2 {
        font-size: 34px;
    }

    .floating-cta-content p {
        font-size: 15px;
    }

    .floating-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .floating-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .floating-cta-section .cta-btn {
        width: 100%;
        max-width: 320px;
    }


}


@media (max-width:575px) {

    .floating-cta-section {
        padding: 70px 0;
    }

    .floating-cta-content h2 {
        font-size: 28px;
    }

    .floating-cta-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .floating-features li {
        font-size: 14px;
        justify-content: center;
    }


}



@media (max-width:425px) {

    .floating-cta-section {
        padding: 60px 0;
    }

    .floating-badge {
        font-size: 12px;

    }

    .floating-cta-content h2 {
        font-size: 24px;
    }

    .floating-cta-content p {
        font-size: 13px;
    }

    .floating-image img {
        width: 290px;
    }

}



@media (max-width:375px) {

    .floating-cta-content h2 {
        font-size: 21px;
    }

    .floating-cta-content p {
        font-size: 12px;
    }

    .floating-features li {
        font-size: 13px;
    }

    .floating-image img {
        width: 260px;
    }

}



@media (max-width:320px) {

    .floating-cta-section {
        padding: 50px 0;
    }

    .floating-badge {
        font-size: 11px;
        padding: 7px 14px;
    }

    .floating-cta-content h2 {
        font-size: 18px;
    }

    .floating-cta-content p {
        font-size: 11px;
    }

    .floating-features li {
        font-size: 12px;
    }

    .floating-cta-section .cta-btn {
        font-size: 13px;
        padding: 14px 20px;
    }

    .floating-image img {
        width: 220px;
    }

}







.premium-testimonial-section {
    padding: 90px 0 60px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}


.premium-testimonial-section .container {
    position: relative;
    z-index: 2;
}



.premium-testimonial-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.premium-testimonial-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 40px;
    background: #02014d;
    color: #fa7f0d;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 22px;
    border: 1px solid;
}

.premium-testimonial-heading span i {
    font-size: 18px;
}

.premium-testimonial-heading h2 {
    font-size: 46px;
    font-weight: 800;
    color: #02014d;
    line-height: 1.1;
    margin-bottom: 18px;
}

.premium-testimonial-heading h2 strong {
    color: #fa7f0d;
    font-weight: 800;
}

.premium-testimonial-heading p {
    font-size: 17px;
    line-height: 1.5;
    color: rgb(102, 102, 102);
}


.testimonial-slider {
    padding: 20px 8px 80px;
}



.testimonial-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .07);
    transition: .35s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .12);
}



.quote-icon {
    position: absolute;
    top: 80px;
    right: 366px;
    font-size: 29px;
    color: #02014d91;
}



.testimonial-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 18px;
}

.google-review-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #020149;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.google-review-badge img {
    width: 18px;
    height: 18px;
}

.testimonial-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}



.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff4e7;
}

.testimonial-user h4 {
    font-size: 20px;
    color: #0b1d39;
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-user span {
    color: #fa7b05;
    font-size: 14px;
    font-weight: 600;
}



.testimonial-pagination {
    bottom: 5px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d9d9d9;
    opacity: 1;
    transition: .35s;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 20px;
    background: #fa7b05;
}




@media (max-width:1400px) {

    .premium-testimonial-section {
        padding: 100px 0;
    }

    .premium-testimonial-heading h2 {
        font-size: 42px;
    }

}



@media (max-width:1199px) {

    .premium-testimonial-section {
        padding: 90px 0;
    }

    .premium-testimonial-heading {
        margin-bottom: 60px;
    }

    .premium-testimonial-heading h2 {
        font-size: 38px;
    }

    .premium-testimonial-heading p {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 35px;
    }

}



@media (max-width:991px) {

    .premium-testimonial-section {
        padding: 80px 0;
    }

    .premium-testimonial-heading h2 {
        font-size: 34px;
    }

    .testimonial-slider {
        padding-bottom: 70px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-user img {
        width: 65px;
        height: 65px;
    }

}



@media (max-width:767px) {

    .premium-testimonial-section {
        padding: 70px 0;
    }

    .premium-testimonial-heading {
        margin-bottom: 45px;
    }

    .premium-testimonial-heading span {
        font-size: 13px;
        padding: 8px 18px;
    }

    .premium-testimonial-heading h2 {
        font-size: 30px;
    }

    .premium-testimonial-heading p {
        font-size: 15px;
    }

    .testimonial-card {
        padding: 28px;
        border-radius: 22px;
    }

    .quote-icon {
        font-size: 55px;
        top: 15px;
        right: 18px;
        display: none;
    }

    .testimonial-card p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .testimonial-user h4 {
        font-size: 18px;
    }

    .testimonial-user span {
        font-size: 13px;
    }

    .testimonial-next,
    .testimonial-prev {
        display: none;
    }

}



@media (max-width:575px) {

    .premium-testimonial-section {
        padding: 60px 0;
    }

    .premium-testimonial-heading h2 {
        font-size: 26px;
    }

    .premium-testimonial-heading p {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-rating i {
        font-size: 16px;
    }

    .testimonial-user {
        gap: 12px;
    }

    .testimonial-user img {
        width: 60px;
        height: 60px;
    }

}



@media (max-width:425px) {

    .premium-testimonial-heading h2 {
        font-size: 23px;
    }

    .premium-testimonial-heading p {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 22px;
    }

    .testimonial-card p {
        font-size: 14px;
        line-height: 1.8;
    }

    .testimonial-user h4 {
        font-size: 17px;
    }

    .testimonial-user span {
        font-size: 12px;
    }

}


@media (max-width:375px) {

    .premium-testimonial-heading span {
        font-size: 12px;
    }

    .premium-testimonial-heading h2 {
        font-size: 20px;
    }

    .premium-testimonial-heading p {
        font-size: 12px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-user img {
        width: 55px;
        height: 55px;
    }

    .testimonial-user h4 {
        font-size: 16px;
    }

    .testimonial-card p {
        font-size: 13px;
    }

}



@media (max-width:320px) {

    .premium-testimonial-section {
        padding: 50px 0;
    }

    .premium-testimonial-heading span {
        font-size: 11px;
        padding: 7px 14px;
    }

    .premium-testimonial-heading h2 {
        font-size: 18px;
    }

    .premium-testimonial-heading p {
        font-size: 11px;
        line-height: 1.7;
    }

    .testimonial-card {
        padding: 18px;
        border-radius: 18px;
    }

    .quote-icon {
        font-size: 45px;
    }

    .testimonial-rating {
        margin-bottom: 18px;
    }

    .testimonial-rating i {
        font-size: 14px;
    }

    .testimonial-card p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .testimonial-user {
        gap: 10px;
    }

    .testimonial-user img {
        width: 50px;
        height: 50px;
    }

    .testimonial-user h4 {
        font-size: 15px;
    }

    .testimonial-user span {
        font-size: 11px;
    }

}







.contact-premium-section {
    padding: 50px 0 90px;
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}



.new-contact {
    padding: 90px 0;
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}


.contact-premium-section .container {
    position: relative;
    z-index: 2;
}


.contact-premium-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    gap: 40px;
    align-items: center;
}


.contact-premium-section .contact-left {
    padding-right: 20px;
}

.contact-premium-section .contact-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 40px;
    background: #02014d;
    color: #fa7b05;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid;
}

.contact-premium-section .contact-label i {
    font-size: 18px;
}

.contact-premium-section .contact-left h2 {
    font-size: 44px;
    color: #02014d;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-premium-section .contact-left h2 span {
    color: #fa7b05;
}

.contact-premium-section .contact-left p {
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}


.contact-premium-section .contact-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-premium-section .contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-premium-section .contact-feature i {
    color: #02014d;
    font-size: 20px;
}

.contact-premium-section .contact-feature span {
    color: #222;
    font-size: 16px;
    font-weight: 600;
}



.contact-premium-section .contact-right {
    position: relative;
}


.contact-premium-section .contact-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.contact-premium-section .contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #fa7b05, #02014d);
}

.contact-premium-section .contact-card h3 {
    font-size: 30px;
    color: #02014d;
    font-weight: 700;
    margin-bottom: 10px;
}


.contact-premium-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #ededed;
    transition: .35s;
}

.contact-premium-section .contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-premium-section .contact-item:hover {
    transform: translateX(8px);
}


.contact-premium-section .contact-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    background: #02014d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.contact-premium-section .contact-item:hover .contact-icon {
    background: #fa7b05;
}

.contact-premium-section .contact-icon i {
    color: #fa7b05;
    font-size: 24px;
    transition: .35s;
}

.contact-premium-section .contact-item:hover .contact-icon i {
    color: #ffffff;
}



.contact-premium-section .contact-text {
    flex: 1;
}

.contact-premium-section .contact-text small {
    display: block;
    color: #999;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-premium-section .contact-text a {
    text-decoration: none;
    color: #0b1d39;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
    word-break: break-word;
}

.contact-premium-section .contact-text a:hover {
    color: #fa7b05;

}

.contact-premium-section .contact-text p {
    margin: 0;
    color: #0b1d39;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 700;
}




@media (max-width:1400px) {

    .contact-premium-section {
        padding: 100px 0;
    }

    .contact-premium-wrapper {
        gap: 60px;
    }

    .contact-premium-section .contact-left h2 {
        font-size: 44px;
    }

}



@media (max-width:1199px) {

    .contact-premium-section {
        padding: 90px 0;
    }

    .contact-premium-wrapper {
        gap: 45px;
        grid-template-columns: 1fr .95fr;
    }

    .contact-premium-section .contact-left h2 {
        font-size: 38px;
    }

    .contact-premium-section .contact-left p {
        font-size: 16px;
    }

    .contact-premium-section .contact-card {
        padding: 35px;
    }

    .contact-premium-section .contact-card h3 {
        font-size: 28px;
    }

}



@media (max-width:991px) {

    .contact-premium-section {
        padding: 80px 0;
    }

    .contact-premium-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-premium-section .contact-left {
        padding-right: 0;
        text-align: left;
    }

    .contact-premium-section .contact-feature-list {
        max-width: 650px;
        margin: auto;
    }

    .contact-premium-section .contact-card {
        max-width: 700px;
        margin: auto;
    }

}



@media (max-width:767px) {

    .contact-premium-section {
        padding: 70px 0;
    }

    .contact-premium-section .contact-left h2 {
        font-size: 30px;
    }

    .contact-premium-section .contact-left p {
        font-size: 15px;
    }

    .contact-premium-section .contact-feature-list {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }

    .contact-premium-section .contact-card {
        padding: 30px 25px;
        border-radius: 22px;
    }

    .contact-premium-section .contact-card h3 {
        font-size: 25px;
        margin-bottom: 25px;
        text-align: center;
    }

}



@media (max-width:575px) {

    .contact-premium-section {
        padding: 10px 0 60px;
    }


    .new-contact {
        padding: 60px 0 60px;
    }


    .contact-premium-section .contact-label {
        font-size: 13px;
        padding: 8px 18px;
    }

    .contact-premium-section .contact-left h2 {
        font-size: 26px;
    }

    .contact-premium-section .contact-left p {
        font-size: 14px;
    }

    .contact-premium-section .contact-card {
        padding: 25px 20px;
    }

    .contact-premium-section .contact-item {
        gap: 15px;
    }

    .contact-premium-section .contact-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        border-radius: 15px;
    }

    .contact-premium-section .contact-icon i {
        font-size: 22px;
    }

    .contact-premium-section .contact-text a {
        font-size: 17px;
    }

    .contact-premium-section .contact-text p {
        font-size: 15px;
    }

}


@media (max-width:425px) {

    .contact-premium-section .contact-left h2 {
        font-size: 23px;
    }

    .contact-premium-section .contact-left p {
        font-size: 13px;
    }

    .contact-premium-section .contact-feature {
        font-size: 14px;
    }

    .contact-premium-section .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-premium-section .contact-text small {
        margin-top: 8px;
    }

    .contact-premium-section .contact-text a {
        font-size: 16px;
    }

    .contact-premium-section .contact-text p {
        font-size: 14px;
    }

}



@media (max-width:375px) {

    .contact-premium-section .contact-label {
        font-size: 12px;
    }

    .contact-premium-section .contact-left h2 {
        font-size: 20px;
    }

    .contact-premium-section .contact-left p {
        font-size: 12px;
    }

    .contact-premium-section .contact-feature span {
        font-size: 14px;
    }

    .contact-premium-section .contact-card h3 {
        font-size: 22px;
    }

}



@media (max-width:320px) {

    .contact-premium-section {
        padding: 20px 0 60px;
    }

    .contact-premium-section .contact-label {
        font-size: 11px;
        padding: 7px 14px;
    }

    .contact-premium-section .contact-left h2 {
        font-size: 18px;
    }

    .contact-premium-section .contact-left p {
        font-size: 11px;
        line-height: 1.8;
    }

    .contact-premium-section .contact-feature {
        gap: 10px;
    }

    .contact-premium-section .contact-feature i {
        font-size: 17px;
    }

    .contact-premium-section .contact-feature span {
        font-size: 13px;
    }

    .contact-premium-section .contact-card {
        padding: 20px 15px;
        border-radius: 18px;
    }

    .contact-premium-section .contact-card h3 {
        font-size: 20px;
    }

    .contact-premium-section .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .contact-premium-section .contact-icon i {
        font-size: 20px;
    }

    .contact-premium-section .contact-text a {
        font-size: 15px;
    }

    .contact-premium-section .contact-text p {
        font-size: 13px;
    }

}






.premium-footer {
    position: relative;
    background: #1d1d1eeb;
    padding: 90px 0 0;
    overflow: hidden;
    color: #fff;
}



.premium-footer .container {
    position: relative;
    z-index: 2;
}


.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}


.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 210px;
    display: block;
    padding: 8px;
    background: #ffff;
}

.footer-about p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.5;
    font-size: 16px;
    margin: 0;
}



.footer-column h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 55px;
    height: 3px;
    background: #fa7b06;
    border-radius: 50px;
}



.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li:last-child {
    margin-bottom: 0;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .35s;
    font-size: 16px;
}

.footer-column ul li a i {
    color: #fa7b06;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #fa7b06;
    transform: translateX(8px);
}

.footer-contact-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 20px;
}

.premium-footer .contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
}

.premium-footer .contact-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.premium-footer .contact-item i {
    font-size: 24px;
    color: #fa7b06;
}

.premium-footer .contact-item span {
    display: block;
    color: #fa7b06;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.premium-footer .contact-item a {
    text-decoration: none;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.5;
    transition: .3s;
}



.premium-footer .contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.5;
}


.footer-social-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-social-area h4 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    transition: .35s;
    font-size: 18px;
}

.footer-social a:hover {
    background: #fa7b06;
    transform: translateY(-6px);
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .70);
    font-size: 15px;
}

.footer-bottom h6 {
    margin-top: 10px;
    color: rgba(255, 255, 255, .70);
    font-size: 15px;
    font-weight: 500;
}

.footer-bottom span a {
    color: #fa7b06;
    font-weight: 700;
}





@media (max-width:1400px) {

    .premium-footer {
        padding-top: 80px;
    }

    .footer-top {
        gap: 50px;
    }

}


@media (max-width:1199px) {

    .footer-top {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 40px;
    }

    .footer-logo img {
        width: 180px;
    }

    .footer-column h3 {
        font-size: 22px;
    }

    .footer-about p {
        font-size: 15px;
    }

    .footer-contact-strip {
        grid-template-columns: repeat(3, 1fr);

    }

    .premium-footer .contact-item {
        padding: 25px 18px;

    }

}



@media (max-width:991px) {

    .premium-footer {
        padding-top: 70px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1/-1;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column {
        text-align: left;
    }

    .footer-column ul li a {
        justify-content: center;
    }

    .footer-contact-strip {
        grid-template-columns: 1fr;
    }

    .premium-footer .contact-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        justify-content: left;
        text-align: left;
        flex-direction: row;
        padding: 30px;
    }

    .premium-footer .contact-item:last-child {
        border-bottom: none;
    }

}



@media (max-width:767px) {

    .premium-footer {
        padding-top: 60px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: left;
    }

    .footer-logo {
        display: flex;
        justify-content: left;
    }

    .footer-logo img {
        width: 170px;
    }

    .footer-column h3 {
        font-size: 22px;
    }

    .footer-column h3::after {
        left: 8%;
        transform: translateX(-50%);
    }

    .footer-column ul li a {
        justify-content: left;
    }

    .footer-social-area {
        flex-direction: row;
        gap: 20px;
        justify-content: left;
    }

}



@media (max-width:575px) {

    .footer-about p {
        font-size: 14px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column ul li a {
        font-size: 15px;
    }

    .premium-footer .contact-item {
        padding: 25px 15px;
    }

    .premium-footer .contact-item i {
        font-size: 22px;
    }

    .premium-footer .contact-item a {
        font-size: 15px;
        word-break: break-word;
    }

    .premium-footer .contact-item p {
        font-size: 14px;
    }

    .footer-social-area h4 {
        font-size: 22px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 17px;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .footer-bottom h6 {
        font-size: 14px;
    }

}



@media (max-width:425px) {

    .footer-logo img {
        width: 150px;
    }

    .footer-column h3 {
        font-size: 19px;
    }

    .footer-about p {
        font-size: 13px;
    }

    .footer-column ul li {
        margin-bottom: 14px;
    }

    .premium-footer .contact-item span {
        font-size: 12px;
    }

    .premium-footer .contact-item a {
        font-size: 14px;
    }

    .premium-footer .contact-item p {
        font-size: 13px;
    }

    .footer-social-area h4 {
        font-size: 20px;
    }

}



@media (max-width:375px) {

    .premium-footer {
        padding-top: 50px;
    }

    .footer-logo img {
        width: 140px;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-about p {
        font-size: 12px;
        line-height: 1.8;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-bottom h6 {
        font-size: 13px;
    }

}



@media (max-width:320px) {

    .footer-logo img {
        width: 120px;
    }

    .footer-column h3 {
        font-size: 17px;
    }

    .footer-about p {
        font-size: 11px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    .premium-footer .contact-item {
        padding: 20px 10px;
    }

    .premium-footer .contact-item i {
        font-size: 20px;
    }

    .premium-footer .contact-item span {
        font-size: 11px;
    }

    .premium-footer .contact-item a {
        font-size: 13px;
    }

    .premium-footer .contact-item p {
        font-size: 12px;
    }

    .footer-social-area h4 {
        font-size: 18px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-bottom h6 {
        font-size: 12px;
    }

}








.tt-hero-section {
    position: relative;
    overflow: hidden;
    background: url("../img/tempo-fleet/9-Seater.jpeg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    height: 830px;
    margin-top: 88px;
}

.tt-hero-overlay {
    position: absolute;
    inset: 0;
    background: #000000c9;
    z-index: 1;
}

.tt-hero-section .container {
    position: relative;
    z-index: 2;
}


.tt-hero-content {
    max-width: 680px;
}

.tt-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
}

.tt-badge i {
    color: #fa7b06;
    font-size: 18px;
}

.tt-hero-content h1 {
    color: #fff;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
}

.tt-hero-content h1 span {
    color: #fa7b06;
}

.tt-hero-content p {
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
}


.tt-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.tt-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.tt-feature i {
    color: #fa7b06;
    font-size: 20px;
}



.tt-form-box {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .30);
}

.tt-form-box h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tt-form-box p {
    color: rgba(255, 255, 255, .80);
    margin-bottom: 30px;
    font-size: 15px;
}

.tt-form-box .form-control {
    height: 56px;
    border-radius: 12px;
    border: none;
    box-shadow: none;
    padding: 0 18px;
    font-size: 15px;
}

.tt-form-box textarea.form-control {
    height: 120px;
    padding-top: 15px;
    resize: none;
}

.tt-form-box .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 122, 0, .20);
}

.tt-submit-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 12px;
    background: #fa7b06;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: .35s;
}

.tt-submit-btn:hover {
    background: #ff9225;
    transform: translateY(-3px);
}





@media (max-width:1400px) {

    .tt-hero-section {
        padding: 110px 0;
    }

    .tt-hero-content h1 {
        font-size: 52px;
    }

}


@media (max-width:1199px) {

    .tt-hero-section {
        min-height: 680px;
    }

    .tt-hero-content h1 {
        font-size: 46px;
    }

    .tt-hero-content p {
        font-size: 17px;
    }

    .tt-form-box {
        padding: 35px;
    }

}



@media (max-width:991px) {

    .tt-hero-section {
        padding: 90px 0;
        min-height: auto;
    }

    .tt-hero-content {
        text-align: center;
        margin-bottom: 50px;
        max-width: 100%;
    }

    .tt-badge {
        justify-content: center;
    }

    .tt-features {
        justify-content: center;
        grid-template-columns: repeat(2, 1fr);
    }

    .tt-feature {
        justify-content: center;
    }

    .tt-hero-buttons {
        justify-content: center;
    }

}



@media (max-width:767px) {

    .tt-hero-section {
        padding: 80px 0;
    }

    .tt-badge {
        font-size: 14px;
        padding: 10px 18px;
    }

    .tt-hero-content h1 {
        font-size: 38px;
    }

    .tt-hero-content p {
        font-size: 16px;
    }

    .tt-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }


    .tt-form-box p {
        margin-bottom: 18px;
        font-size: 15px;
    }

    .tt-feature {
        justify-content: flex-start;
    }

    .tt-form-box {
        padding: 30px;
    }

    .tt-form-box h3 {
        font-size: 26px;
    }

}


@media (max-width:575px) {

    .tt-hero-section {
        padding: 50px 0;
        height: 100%;
    }

    .tt-hero-content {
        text-align: left;
        margin-bottom: 30px;
    }

    .tt-badge {
        font-size: 13px;
        padding: 9px 16px;
    }

    .tt-hero-content h1 {
        font-size: 27px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .tt-hero-content p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .tt-features {
        grid-template-columns: 1fr;
    }

    .tt-feature {
        font-size: 15px;
    }

    .tt-hero-buttons {
        flex-direction: column;
    }

    .tt-call-btn,

    .tt-whatsapp-btn {
        width: 100%;
    }

    .tt-form-box {
        padding: 25px;
        border-radius: 20px;
    }

    .tt-form-box h3 {
        font-size: 24px;
    }

}



@media (max-width:425px) {

    .tt-hero-section {
        padding: 60px 0;
    }

    .tt-hero-content h1 {
        font-size: 28px;
    }

    .tt-hero-content p {
        font-size: 14px;
    }

    .tt-feature {
        font-size: 14px;
    }

    .tt-form-box {
        padding: 22px;
    }

    .tt-form-box h3 {
        font-size: 22px;
    }

    .tt-form-box .form-control {
        height: 52px;
        font-size: 14px;
    }

    .tt-form-box textarea.form-control {
        height: 100px;
    }

    .tt-submit-btn {
        height: 52px;
        font-size: 15px;
    }

}



@media (max-width:375px) {

    .tt-badge {
        font-size: 12px;
    }

    .tt-hero-content h1 {
        font-size: 24px;

    }

    .tt-hero-content p {
        font-size: 13px;
    }

    .tt-feature {
        font-size: 13px;
    }

    .tt-call-btn,
    .tt-whatsapp-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .tt-form-box {
        padding: 20px;
    }

    .tt-form-box h3 {
        font-size: 20px;
    }

}



@media (max-width:320px) {

    .tt-hero-section {
        padding: 50px 0;
        height: 100%;
    }

    .tt-badge {
        font-size: 11px;
        padding: 8px 14px;
    }

    .tt-hero-content h1 {
        font-size: 21px;
    }

    .tt-hero-content p {
        font-size: 12px;
    }

    .tt-feature {
        font-size: 12px;
    }

    .tt-feature i {
        font-size: 16px;
    }

    .tt-form-box {
        padding: 18px;
    }

    .tt-form-box h3 {
        font-size: 18px;
    }

    .tt-form-box p {
        font-size: 13px;
    }

    .tt-form-box .form-control {
        height: 48px;
        font-size: 13px;
    }

    .tt-form-box textarea.form-control {
        height: 90px;
    }

    .tt-submit-btn {
        height: 48px;
        font-size: 14px;
    }

}







.traveller-about-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}


.traveller-about-section .container {
    position: relative;
    z-index: 2;
}


.traveller-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: #fff5eb;
    color: #fa7b06;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.traveller-badge i {
    font-size: 16px;
}

.traveller-about-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #02014d;
    line-height: 1.1;
    margin-bottom: 16px;
}

.traveller-about-content h2 span {
    color: #fa7b06;
}

.traveller-about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.traveller-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    transition: .35s;
}

.feature-box:last-child {
    margin-bottom: 0;
}

.feature-box i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #02014d;
    color: #fa7b06;
    font-size: 18px;
    transition: .35s;
}

.feature-box span {
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.feature-box:hover {
    transform: translateX(8px);
}

.feature-box:hover i {
    background: #fa7b06;
    color: #fff;
}



.traveller-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.book-btn,
.enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
}

.book-btn {
    background: #fa7b06;
    color: #fff;
}

.book-btn:hover {
    background: #e66d00;
    color: #fff;
    transform: translateY(-4px);
}

.enquiry-btn {
    background: #07182f;
    color: #fff;
}

.enquiry-btn:hover {
    background: #0d2344;
    color: #fff;
    transform: translateY(-4px);
}


.traveller-image-wrapper {
    position: relative;
}

.traveller-image {
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.traveller-image img {
    width: 100%;
    display: block;
    transition: .6s;
    height: 420px;
    object-fit: cover;
}

.traveller-image:hover img {
    transform: scale(1.08);
}


.traveller-floating-card {
    position: absolute;
    left: -25px;
    bottom: -6px;
    background: #fff;
    border-radius: 20px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
    display: none;
}


.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #fa7b06;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon i {
    color: #fff;
    font-size: 28px;
}

.traveller-floating-card h5 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #07182f;
}

.traveller-floating-card span {
    color: #777;
    font-size: 14px;
}


.experience-card {
    position: absolute;
    top: 35px;
    right: -20px;
    background: #07182f;
    color: #fff;
    padding: 25px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(7, 24, 47, .25);
}

.experience-card h3 {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    color: #fa7b06;
}

.experience-card p {
    margin: 8px 0 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
}




@media (max-width:1400px) {

    .traveller-about-section {
        padding: 90px 0;
    }

    .traveller-about-content h2 {
        font-size: 42px;
    }

}



@media (max-width:1199px) {

    .traveller-about-content h2 {
        font-size: 38px;
    }

    .traveller-about-content p {
        font-size: 16px;
    }

    .traveller-floating-card {
        left: -10px;
    }

    .experience-card {
        right: -10px;
    }

}



@media (max-width:991px) {

    .traveller-about-section {
        padding: 80px 0;
    }

    .traveller-about-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .traveller-features {
        max-width: 500px;
        margin: 35px auto;
    }

    .feature-box {
        justify-content: flex-start;
    }

    .traveller-buttons {
        justify-content: center;
    }

    .traveller-image-wrapper {
        max-width: 650px;
        margin: auto;
    }

    .traveller-floating-card {
        left: 20px;
        bottom: 25px;
    }

    .experience-card {
        right: 20px;
    }

}



@media (max-width:767px) {

    .traveller-about-section {
        padding: 70px 0;
    }

    .traveller-about-content h2 {
        font-size: 34px;
    }

    .traveller-about-content p {
        font-size: 15px;
    }

    .feature-box {
        gap: 12px;
    }

    .feature-box span {
        font-size: 15px;
    }

    .traveller-image {
        border-radius: 22px
    }

    .traveller-floating-card {
        padding: 15px 18px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
    }

    .floating-icon i {
        font-size: 22px;
    }

    .traveller-floating-card h5 {
        font-size: 18px;
    }

    .experience-card {
        padding: 20px;
    }

    .experience-card h3 {
        font-size: 28px;
    }

}



@media (max-width:575px) {

    .traveller-about-section {
        padding: 60px 0;
    }

    .traveller-about-content {
        text-align: left;
        margin-bottom: 0;
    }

    .traveller-about-content h2 {
        font-size: 30px;
    }

    .traveller-about-content p {
        font-size: 15px;
        line-height: 1.5;
    }

    .traveller-features {
        margin: 10px 0;
    }

    .traveller-features {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }

    .traveller-image img {
        height: 100%;
    }

    .traveller-floating-card {
        padding: 15px;
        display: none;
    }

    .feature-box {
        margin-bottom: 16px;
    }

    .feature-box i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .feature-box span {
        font-size: 14px;
    }

    .traveller-buttons {
        flex-direction: column;
    }



    .traveller-floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .experience-card {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
        display: inline-block;
        width: 100%;
        display: none;
    }

}



@media (max-width:425px) {

    .traveller-about-content h2 {
        font-size: 26px;
    }

    .traveller-about-content p {
        font-size: 14px;
    }

    .traveller-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .traveller-floating-card {
        flex-direction: column;
        text-align: center;
    }

    .traveller-floating-card h5 {
        font-size: 17px;
    }

    .experience-card h3 {
        font-size: 24px;
    }

    .experience-card p {
        font-size: 14px;
    }

}



@media (max-width:375px) {

    .traveller-about-content h2 {
        font-size: 23px;
    }

    .traveller-about-content p {
        font-size: 13px;
    }

    .feature-box span {
        font-size: 13px;
    }

    .book-btn,
    .enquiry-btn {
        font-size: 14px;
        padding: 14px 20px;
    }

    .traveller-floating-card {
        padding: 15px;
        display: none;
    }

    .experience-card {
        padding: 18px;
        display: none;
    }

}



@media (max-width:320px) {

    .traveller-about-section {
        padding: 50px 0;
    }

    .traveller-about-content h2 {
        font-size: 20px;
    }

    .traveller-about-content p {
        font-size: 12px;
        line-height: 1.8;
    }

    .traveller-badge {
        font-size: 11px;
    }

    .feature-box {
        gap: 10px;
    }

    .feature-box i {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .feature-box span {
        font-size: 12px;
    }

    .book-btn,
    .enquiry-btn {
        font-size: 13px;
        padding: 13px 18px;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
    }

    .floating-icon i {
        font-size: 20px;
    }

    .traveller-floating-card h5 {
        font-size: 15px;
    }

    .traveller-floating-card span {
        font-size: 12px;
    }

    .experience-card h3 {
        font-size: 22px;
    }

    .experience-card p {
        font-size: 12px;
    }

}








.vehicle-feature-section {
    position: relative;
    padding: 30px 0 90px;
    background: #ffffff;
    overflow: hidden;
}


.vehicle-feature-section .container {
    position: relative;
    z-index: 2;
}


.vehicle-feature-section .section-heading {
    max-width: 800px;
    margin: 0 auto 50px;
}

.vehicle-feature-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: #02014b;
    color: #fa7b06;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid;
}

.vehicle-feature-section .section-tag i {
    font-size: 16px;
}

.vehicle-feature-section .section-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: #02014b;
    line-height: 1.1;
    margin-bottom: 20px;
}

.vehicle-feature-section .section-heading h2 span {
    color: #fa7b06;
}

.section-heading p {
    font-size: 17px;
    color: #666;
    line-height: 1.5;
}



.vehicle-feature-section .feature-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px 1fr;
    align-items: center;
    gap: 40px;
}



.vehicle-feature-section .feature-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.vehicle-feature-section .feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 17px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .35s;
    border: 1px solid transparent;
}


.vehicle-feature-section .feature-item i {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #02014d;
    color: #fa7b06;
    font-size: 22px;
    transition: .35s;
}

.vehicle-feature-section .feature-item h5 {
    margin: 0 0 0px;
    color: #07182f;
    font-size: 18px;
    font-weight: 700;
}

.vehicle-feature-section .feature-item p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.vehicle-feature-section .feature-item:hover {
    transform: translateY(-8px);
    border-color: #fa7b06;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .10);
}

.vehicle-feature-section .feature-item:hover i {
    background: #fa7b06;
    color: #fff;
}



.vehicle-feature-section .feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vehicle-feature-section .image-box {
    position: relative;
    width: 100%;
}

.vehicle-feature-section .image-box img {
    width: 100%;
    border-radius: 30px;
    display: block;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
    transition: .5s;
}

.vehicle-feature-section .image-box:hover img {
    transform: scale(1.05);
}



.vehicle-feature-section .image-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    background: #fff;
    border-radius: 50px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.vehicle-feature-section .image-badge i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fa7b06;
    color: #fff;
    font-size: 20px;
}

.vehicle-feature-section .image-badge span {
    font-size: 17px;
    font-weight: 700;
    color: #07182f;
}




@media (max-width:1400px) {

    .vehicle-feature-section {
        padding: 90px 0;

    }

    .vehicle-feature-section .feature-wrapper {
        grid-template-columns: 1fr 440px 1fr;
        gap: 35px;
    }

    .vehicle-feature-section .section-heading h2 {
        font-size: 40px;
    }

}



@media (max-width:1199px) {

    .vehicle-feature-section {
        padding: 85px 0;
    }

    .vehicle-feature-section .feature-wrapper {
        grid-template-columns: 1fr 380px 1fr;
        gap: 25px;
    }

    .vehicle-feature-section .section-heading {
        margin-bottom: 60px;
    }

    .vehicle-feature-section .section-heading h2 {
        font-size: 36px;
    }

    .vehicle-feature-section .section-heading p {
        font-size: 16px;
    }

    .vehicle-feature-section .feature-item {
        padding: 18px;
    }

    .vehicle-feature-section .feature-item h5 {
        font-size: 16px;
    }

    .vehicle-feature-section .feature-item p {
        font-size: 14px;
    }

}



@media (max-width:991px) {

    .vehicle-feature-section {
        padding: 80px 0;
    }

    .vehicle-feature-section .feature-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .vehicle-feature-section .feature-image {
        order: 1;
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .vehicle-feature-section .feature-column:first-child {
        order: 1;
        width: 100%;
    }

    .vehicle-feature-section .feature-column:last-child {
        order: 3;
        width: 100%;
    }

    .vehicle-feature-section .section-heading {
        margin-bottom: 50px;
    }

    .vehicle-feature-section .section-heading h2 {
        font-size: 34px;
    }

    .vehicle-feature-section .feature-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}



@media (max-width:767px) {

    .vehicle-feature-section {
        padding: 70px 0;
    }

    .vehicle-feature-section .section-heading {
        margin-bottom: 45px;
    }

    .vehicle-feature-section .section-heading h2 {
        font-size: 30px;
    }

    .vehicle-feature-section .section-heading p {
        font-size: 15px;
    }

    .vehicle-feature-section .feature-column {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vehicle-feature-section .feature-item {
        padding: 18px;
    }

    .vehicle-feature-section .image-box {
        max-width: 550px;
        margin: auto;
    }

    .vehicle-feature-section .image-box img {
        border-radius: 24px;
    }

    .vehicle-feature-section .image-badge {
        bottom: -20px;
        padding: 12px 24px;
    }

    .vehicle-feature-section .image-badge span {
        font-size: 15px;
    }

}



@media (max-width:575px) {

    .vehicle-feature-section {
        padding: 30px 0;
    }

    .vehicle-feature-section .section-heading {
        margin-bottom: 20px;
        text-align: left !important;
    }

    .vehicle-feature-section .section-tag {
        font-size: 13px;
        padding: 8px 16px;
    }

    .vehicle-feature-section .section-heading h2 {
        font-size: 26px;
    }

    .vehicle-feature-section .section-heading p {
        font-size: 14px;
        line-height: 1.8;
    }

    .vehicle-feature-section .feature-item {
        padding: 16px;
        gap: 15px;
    }

    .vehicle-feature-section .feature-item i {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
    }

    .vehicle-feature-section .feature-item h5 {
        font-size: 15px;
    }

    .vehicle-feature-section .feature-item p {
        font-size: 13px;
        line-height: 1.6;
    }

    .vehicle-feature-section .image-box img {
        border-radius: 20px;
    }

    .vehicle-feature-section .image-badge {
        position: relative;
        left: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        margin-top: 18px;
        justify-content: center;
        border-radius: 18px;
    }

}



@media (max-width:425px) {
    .vehicle-feature-section {
        padding: 55px 0;
    }

    .vehicle-feature-section .section-heading h2 {
        font-size: 23px;
    }

    .vehicle-feature-section .section-heading p {
        font-size: 13px;
    }

    .vehicle-feature-section .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vehicle-feature-section .feature-item i {
        margin-bottom: 8px;
    }

    .vehicle-feature-section .feature-item h5 {
        font-size: 15px;
    }

    .vehicle-feature-section .feature-item p {
        font-size: 13px;
    }

    .vehicle-feature-section .image-badge {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .vehicle-feature-section .image-badge span {
        font-size: 14px;
    }

}



@media (max-width:375px) {

    .vehicle-feature-section {
        padding: 50px 0;
    }

    .vehicle-feature-section .section-tag {
        font-size: 12px;
    }

    .vehicle-feature-section .section-heading h2 {
        font-size: 21px;
    }

    .vehicle-feature-section .section-heading p {
        font-size: 12px;
    }

    .vehicle-feature-section .feature-item {
        padding: 15px;
    }

    .vehicle-feature-section .feature-item i {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 17px;
    }

    .vehicle-feature-section .feature-item h5 {
        font-size: 14px;
    }

    .vehicle-feature-section .feature-item p {
        font-size: 12px;
    }

    .vehicle-feature-section .image-badge {
        padding: 14px;
    }

    .vehicle-feature-section .image-badge i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

}



@media (max-width:320px) {

    .vehicle-feature-section {
        padding: 0px 0 60px;
    }

    .vehicle-feature-section .section-tag {
        font-size: 11px;
        padding: 7px 14px;
    }

    .vehicle-feature-section .section-heading h2 {
        font-size: 18px;
    }

    .vehicle-feature-section .section-heading p {
        font-size: 11px;
        line-height: 1.7;
    }

    .vehicle-feature-section .feature-item {
        padding: 14px;
        gap: 10px;
    }

    .vehicle-feature-section .feature-item i {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 16px;
    }

    .vehicle-feature-section .feature-item h5 {
        font-size: 13px;
    }

    .vehicle-feature-section .feature-item p {
        font-size: 11px;
    }

    .vehicle-feature-section .image-badge {
        padding: 12px;
    }

    .vehicle-feature-section .image-badge i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .vehicle-feature-section .image-badge span {
        font-size: 12px;
    }

}







.specification-section {
    padding: 30px 0 90px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}





.specification-section .container {
    position: relative;
    z-index: 2;
}



.section-title {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: #02014d;
    color: #fa7b06;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    border: 1px solid;
}

.section-badge i {
    font-size: 16px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #07182f;
    margin-bottom: 18px;
    line-height: 1.3;
}

.section-title h2 span {
    color: #fa7b06;
}

.section-title p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}


.spec-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    border: 1px solid #edf2f7;
    height: 100%;
    transition: .35s;
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.spec-card-header {
    background: linear-gradient(135deg, #02014d, #02014d);
    color: #fff;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-card-header i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fa7b06;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.spec-card-header h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}



.spec-table {
    margin: 0;
}

.spec-table tbody tr {
    transition: .3s;
    border-bottom: 1px solid #edf2f7;
}

.spec-table tbody tr:last-child {
    border-bottom: none;
}

.spec-table tbody tr:nth-child(even) {
    background: #fcfcfc;
}

.spec-table tbody tr:hover {
    background: #fff8f2;
}



.spec-table td {
    padding: 18px 24px;
    vertical-align: middle;
    border: none;
    font-size: 15px;
}

.spec-table td:first-child {
    width: 100%;
    font-weight: 700;
    color: #07182f;
    display: flex;
    align-items: center;
    gap: 13px;
}

.spec-table td:first-child i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #02014d;
    color: #fa7b06;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .3s;
}

.spec-table tr:hover td:first-child i {
    background: #fa7b06;
    color: #fff;
    transform: rotate(-8deg);
}



.spec-table td:last-child {
    font-weight: 600;
    color: #555;
    text-align: right;

}




@media (max-width:1399px) {

    .section-title h2 {
        font-size: 38px;
    }

}


@media (max-width:1199px) {

    .specification-section {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        font-size: 16px;
    }

    .spec-card-header {
        padding: 20px 22px;
    }

    .spec-card-header h4 {
        font-size: 20px;
    }

    .spec-card-header i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .spec-table td {
        padding: 16px 20px;
        font-size: 15px;
    }

}



@media (max-width:991px) {

    .specification-section {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 15px;
        line-height: 1.8;
    }

    .spec-card {
        margin-bottom: 25px;
    }

    .spec-card:last-child {
        margin-bottom: 0;
    }

}



@media (max-width:767px) {

    .specification-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 15px;
    }

    .section-badge {
        font-size: 13px;
        padding: 8px 18px;
    }

    .spec-card-header {
        padding: 18px;
    }

    .spec-card-header h4 {
        font-size: 18px;
    }

    .spec-card-header i {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .spec-table td {
        display: block;
        width: 100%;
        text-align: left !important;
        padding: 12px 18px;
    }

    .spec-table td:first-child {
        padding-bottom: 8px;
        width: 100%;
    }

    .spec-table td:last-child {
        padding-top: 0;
        padding-left: 74px;
        color: #fa7b06;
        font-weight: 700;
    }

}



@media (max-width:575px) {

    .specification-section {
        padding: 10px 0 60px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .section-title p {
        font-size: 14px;
    }

    .spec-card {
        border-radius: 18px;
    }

    .spec-card-header {
        padding: 16px;
        gap: 12px;
    }

    .spec-card-header h4 {
        font-size: 17px;
    }

    .spec-card-header i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .spec-table td {
        font-size: 14px;
        padding: 12px 15px;
    }

    .spec-table td:first-child i {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }

    .spec-table td:last-child {
        padding-left: 63px;
        font-size: 14px;
    }

}



@media (max-width:380px) {

    .section-title h2 {
        font-size: 22px;
    }

    .section-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .spec-card-header {
        flex-direction: column;
        text-align: center;
    }

    .spec-card-header h4 {
        font-size: 16px;
    }

    .spec-table td:first-child {
        gap: 10px;
        font-size: 13px;
    }

    .spec-table td:last-child {
        padding-left: 50px;
        font-size: 13px;
    }

}








.thankyou-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(255 244 234), rgb(255 244 234));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}



.thankyou-card {
    background: #fff;
    border-radius: 25px;
    padding: 60px 45px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);

}



.thankyou-icon {
    width: 110px;
    height: 110px;
    background: #fa7b05;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 58px;
    box-shadow: 0 15px 35px rgba(250, 123, 5, .35);
}



.thankyou-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #02014d;
    color: #fa7b05;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid;
}


.thankyou-card h1 {
    font-size: 48px;
    font-weight: 800;
    color: rgb(2, 1, 77);
    margin-bottom: 20px;
}



.thankyou-text {
    font-size: 18px;
    color: #666;
    line-height: 1.9;
    max-width: 550px;
    margin: 0 auto 35px;
}



.thankyou-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.thank-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

.thank-btn-primary {
    background: #fa7b05;
    color: #fff;
}

.thank-btn-primary:hover {
    background: rgb(2, 1, 77);
    color: #fff;
}

.thank-btn-outline {
    border: 2px solid rgb(2, 1, 77);
    color: rgb(2, 1, 77);
}

.thank-btn-outline:hover {
    background: rgb(2, 1, 77);
    color: #fff;

}




@media(max-width:991px) {
    .thankyou-card {
        padding: 50px 30px;
    }

    .thankyou-card h1 {
        font-size: 40px;
    }

}

@media(max-width:767px) {

    .thankyou-card {
        padding: 40px 25px;
    }

    .thankyou-icon {
        width: 90px;
        height: 90px;
        font-size: 46px;
    }

    .thankyou-card h1 {
        font-size: 34px;
    }

    .thankyou-text {
        font-size: 16px;
    }

    .thank-btn,
    .thank-whatsapp {
        width: 100%;
    }

}

@media(max-width:575px) {

    .thankyou-card {
        border-radius: 20px;
        padding: 35px 20px;

    }

    .thankyou-card h1 {
        font-size: 30px;
    }

    .thankyou-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .thankyou-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .thank-btn,
    .thank-whatsapp {
        font-size: 15px;
        padding: 14px 20px;
    }

}







.sticky-contact {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
}



.sticky-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 26px;
    transition: .3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);

}



.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-4px);

}



.call-btn {
    background: #e53935;
}

.call-btn:hover {
    background: #c62828;
    color: #fff;
    transform: translateY(-4px);

}



@media (max-width:768px) {

    .sticky-contact {
        right: 15px;
        bottom: 56px;
    }

    .sticky-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

}