/*
*******************************************
*******************************************

** - Default CSS
** - Header Top Area CSS
** - Navbar Area CSS
** - Side Navbar Area CSS
** - Main Content Area CSS
** - Home Header Area CSS
** - Login Page Area CSS
** - Why Choose US Area CSS
** - Bus Amenities Area CSS
** - Popular Desination Area CSS
** - Gallery Section Area CSS
** - Footer Area CSS
** - Whatsapp Shortcut Area CSS

*******************************************
*******************************************
*/

/*================================================
Default CSS
=================================================*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

:focus {
    outline: 0 !important;
}

a {
    text-decoration: none;
}

/* Default Button */

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #000;
    background-color: #ffff00;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    padding: 7px 30px 7px 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

.default-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    /*background-color: #221638;*/
    background: linear-gradient(to right, #8b0000, #ff0000, #8b0000);
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
}

.default-btn:hover {
    color: #ffffff;
    /* background: linear-gradient(to right, #8b0000, #ff0000, #8b0000); */
    -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.default-btn:hover span {
    width: 225%;
    height: 562.5px;
}

/* Section Title */

.title-design {
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-design img {
    width: 60px;
    height: 40px;
}

.title-design h2 {
    color: #ffff00;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
    padding: 12px 0 0 10px;
    font-family: "Outfit", sans-serif;
}

/*================================================
Header Top Area CSS
=================================================*/

.header-top {
    background-color: rgb(54, 54, 54);
    padding: 10px 0;
    text-align: center;
}

.header-top .contact-info a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    align-items: center;
}

.header-top .contact-info a i {
    color: #ffff00;
    margin-right: 10px;
    margin-top: -5px;
}

/*================================================
Navbar Area CSS
=================================================*/

#Navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 999;
    background-color: #252525;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.website-name {
    display: flex;
    align-items: center;
}

.website-name .logo-img img {
    width: 150px;
    height: 60px;
}

.navbar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-menu ul {
    display: flex;
    padding-top: 23px;
    column-gap: 30px;
}

.navbar-item {
    display: flex;
    align-items: center;
}

.navbar-menu ul a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    position: relative;
    padding: 0 10px;
    font-weight: 600;
    font-family: 'Georgia', serif;
}

.navbar-menu ul a:after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #ffff00, #ffff00, #ffff00);
    height: 4px;
    width: 0;
    left: 0;
    bottom: -5px;
    transition: width 0.4s ease-in-out;
    border-radius: 50px;
    box-shadow: 0 0 5px #ffa41b88;
}

.navbar-menu ul a:hover:after {
    width: 100%;
}

.navbar-menu ul a li {
    list-style: none;
}

.navbar-menu-toggle {
    display: none;
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
}

/*================================================
Side Navbar Area CSS
=================================================*/

.side-navbar {
    position: fixed;
    width: 250px;
    height: 100%;
    top: 0;
    left: -100%;
    padding: 20px;
    transition: 2s;
    border-radius: 5px;
    z-index: 9999;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/side-nav-img2.jpg);
    /*background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../img/side-nav-img2.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.side-navbar-logo {
    display: grid;
    place-items: center;
}

.side-navbar img {
    width: 200px;
    height: 100px;
    filter: drop-shadow(2px 2px 4px #323232);
}

.side-navbar-link {
    margin-bottom: 30px;
    margin-top: 30px;
}

.side-navbar-links p {
    display: flex;
    align-items: center;
    height: 40px;
    background-color: transparent;
    padding: 0 20px;
    border-radius: 10px;
    cursor: pointer;

}

.side-navbar-links a {
    text-decoration: none;
    color: #ffff00;
    cursor: pointer;
    font-size: 18px;
    text-shadow: 0.5px 0.5px 1px #000;
}

.side-navbar-links a:hover {
    color: goldenrod;
}

.cross-symbol {
    color: red;
    text-align: right;
    font-size: 20px;
    cursor: pointer;
}

.side-navbar-links a button {
    border: none;
    outline: none;
    text-decoration: none;
    font-size: 18px;
    text-shadow: 1px 1px 2px #000;
    background-color: #ffff00;
    color: gold;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 4px;
}

.side-navbar-links a button:hover {
    background-color: transparent;
    border: 2px solid #ffff00;
    color: #ffff00;
    text-shadow: none;
}

/*================================================
Main Content Area CSS
=================================================*/

/* white
background-color: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(10px); */

/* black 
style="background-color: rgba(0, 0, 0, 0.6);" */

.main-content {
    background-image: url(../img/home-page-img/main.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

/*================================================
Home Header Area CSS
=================================================*/

.home-header {
    position: relative;
    width: 100%;
    height: auto;
    background-image: url(../img/home-page-img/bus_interior4.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.home-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.home-header>* {
    position: relative;
    z-index: 2;
}

/* MS Transports Section */

.jjtransports-section {
    background-color: transparent;
    height: auto;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.welcome-text {
    width: 280px;
    font-size: 20px;
    margin-bottom: 10px;
    border: 2px solid #ffff00;
    padding: 10px;
    text-align: center;
    border-radius: 30px;
}

.service-text {
    font-size: 44px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #000;
}

.service-text span {
    color: #ffff00;
}

.description {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Car Booking Section */

.car-booking-section {
    background-color: transparent;
}

.car-booking-details {
    padding: 35px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-title {
    font-size: 28px;
    color: #ffff00;
    margin-bottom: 20px;
    text-shadow: 0.5px 0.5px 1px #000;
}

.booking-form .form-group {
    margin-bottom: 15px;
}

.booking-form .form-group .booking-form-label {
    color: #ffff;
    font-size: 15px;
}

.booking-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.booking-form input {
    width: 100%;
    padding: 5px;
    border: none;
    border-bottom: 2px solid #ffff00;
    border-radius: 0;
    font-size: 14px;
    background-color: transparent;
    color: #ffffff;
}

.booking-form select {
    color: #ffffff;
    width: 100%;
    padding: 10px;
    border: 2px solid #ffff00;
    font-size: 14px;
    border-radius: 10px;
    background-color: transparent;
    cursor: pointer !important;
}

.booking-form select:focus {
    border: none;
    outline: none !important;
    background-color: none;
}

.booking-form input[readonly] {
    background-color: #e9ecef;
}

.booking-form select {
    appearance: none;
    cursor: not-allowed;
}

/*
.date-input {
    position: relative;
    padding-left: 35px;
    color: #fff !important;
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    padding-left: 10px;
}

.date-input::-moz-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
} */

/* Car Image */

.floating-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -75px;
    right: 20%;
    transform: translateX(-50%);
    z-index: 99;
}

.floating-circle img {
    width: 300px;
    height: auto;
}

.header-destination-img {
    border: 2px solid #fff;
    width: 350px;
    height: 150px;
    margin-top: 15px;
    border-radius: 8px;
}

/* Header Destination Image */

.header-destination-img {
    position: relative;
    width: 400px;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

.destination-text {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Cursive", sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Highway Bus Animation */

.highway {
    position: relative;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    height: 80px;
    background: #333;
    z-index: 2;
    margin-top: 50px;
}

.road {
    position: absolute;
    width: 100%;
    height: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: repeating-linear-gradient(to right,
            white 0,
            white 50px,
            transparent 50px,
            transparent 100px);
}

.bus {
    position: absolute;
    bottom: 5px;
    display: flex;
    align-items: center;
}

.bus img {
    width: 200px;
    height: auto;
}

.ad-text {
    font-size: 14px;
    margin: 0 15px;
    padding: 12px 40px;
    font-weight: bold;
    white-space: nowrap;
    color: #fff;
    background: linear-gradient(to right, #8b0000, #ff0000, #8b0000);
    border: 2px solid #ffff00;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    clip-path: polygon(0% 50%, 5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%);
    display: inline-block;
    animation: flutter 1.5s infinite alternate ease-in-out;
}

@keyframes flutter {
    0% {
        transform: rotate(-1deg) translateY(0);
    }

    100% {
        transform: rotate(1deg) translateY(2px);
    }
}

.bus-right {
    z-index: 6;
    flex-direction: row;
    left: 100%;
    animation: moveRightToLeft 40s linear infinite;
}

.bus-left {
    z-index: 5;
    margin-bottom: 38px;
    flex-direction: row-reverse;
    right: 100%;
    animation: moveLeftToRight 40s linear infinite;
}

@keyframes moveRightToLeft {
    0% {
        left: 100%;
    }

    100% {
        left: -250px;
    }
}

@keyframes moveLeftToRight {
    0% {
        right: 100%;
    }

    100% {
        right: -250px;
    }
}

/*================================================
    Login Page CSS
=================================================*/

.login-page {
    width: 100%;
    height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    background: url(../img/home-page-img/login.png) no-repeat center center/cover;
}

.login-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.login-form-box {
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, .2);
    padding: 25px 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.login-form-control {
    width: 100%;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 2px solid #fff !important;
    border-radius: 0 !important;
    outline: none !important;
    color: #fff !important;
    margin-top: 25px;
}

.login-form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.login-form-control:focus {
    box-shadow: none;
}

/* Eye icon */

.password-container {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ccc;
}

.eye-icon:hover {
    color: #fff;
}

.link.forget-pass {
    text-align: right;
    padding-top: 10px;
}

.link.forget-pass a {
    font-size: 16px;
    text-decoration: underline;
}

/*================================================
    Why Choose US CSS
=================================================*/

.why_choose_us {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-section {
    display: flex;
    align-items: center;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: opacity 2s ease, transform 6s ease;
}

.hero-image img.active {
    opacity: 1;
    transform: scale(1);
}

.hero-content {
    padding-left: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.highlight {
    color: #ffff00;
}

.hero-description {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 1.5rem;
    color: #fff;
}

.services-description {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 3rem;
    max-width: 600px;
}

.service-cards {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: transparent !important;
    padding: 20px 0;
}

.cards-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.cards-track:hover {
    animation-play-state: paused;
}

.service-card {
    transition: transform 0.3s;
    border-radius: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    width: 250px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 0;
    /* background: linear-gradient(to right, #8b0000, #ff0000, #8b0000); 
    background-color: #323232;
    border: 2px solid #ffff00;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
    background: rgba(255, 255, 255, 0.15);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 56, 0.15);
}

.service-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-size: cover;
    background-position: center;
}

.tracking-icon {
    background-image: url(../img/home-page-img/service_icon/live_tracking.png);
}

.booking-icon {
    background-image: url(../img/home-page-img/service_icon/fast_booking.png);
}

.safety-icon {
    background-image: url(../img/home-page-img/service_icon/safe_travel.png);
}

.payment-icon {
    background-image: url(../img/home-page-img/service_icon/easy_payment.png);
}

.schedule-icon {
    background-image: url(../img/home-page-img/service_icon/flexible_schedule.png);
}

.seat-icon {
    background-image: url(../img/home-page-img/service_icon/reserved_seats.png);
}

.speed-icon {
    background-image: url(../img/home-page-img/service_icon/on_time_arrival.png);
}

/*================================================
    Bus Amenities CSS
=================================================*/

.amenities-section {
    backdrop-filter: blur(5px);
    background-color: rgba(36, 35, 35, 0.6);
}

.section-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.images-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bus-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
}

.bus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
}

.bus-image img.bg {
    z-index: 1;
}

.bus-image img.bus {
    z-index: 2;
    opacity: 0;
    animation: fadeBus 6s infinite;
}

@keyframes fadeBus {

    0%,
    40% {
        opacity: 0;
    }

    50%,
    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.content-container {
    flex: 1.2;
}

.amenities-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    position: relative;
}

.section-title .highlight {
    color: #ff6b35;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #ff6b35;
    border-radius: 2px;
}

.amenities-card {
    padding: 25px 20px 0 22px;
    border-radius: 16px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffff00 !important;
    margin-bottom: 12px;
}

.card-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.amenity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.amenity-icon {
    width: 48px;
    height: 48px;
    background-color: #1e3a8a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amenity-icon i {
    color: white;
    font-size: 20px;
}

.amenity-text {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

/*================================================
    Popular Desination CSS
=================================================*/

.destinations_travel-section {
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.6);
}

.container {
    max-width: 1400px;
}

.destinations_left-panel {
    border-radius: 20px;
    padding: 40px 30px;
}

.route-item {
    color: #fff;
    font-size: 15px;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.route-item.active {
    color: #ffff00;
    border: 2px solid #ffff00;
}

.image-container {
    min-height: 400px !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: 400px !important;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bus-number {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/*================================================
    Gallery Section CSS
=================================================*/

.gallery-section {
    text-align: center;
    backdrop-filter: blur(5px);
    background-color: rgba(36, 35, 35, 0.6);
}

.gallery-section h2 {
    margin-bottom: 30px;
    font-weight: bold;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.btn-more {
    margin-top: 20px;
    padding: 10px 30px;
    border-radius: 25px;
}

/*================================================
Footer Area CSS
=================================================*/

.footer-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url(../img/home-page-img/Amenities4.png) no-repeat center center;
    background-size: cover;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.top-footer-box {
    background-color: #fff;
    color: #072b63;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.top-footer-box {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 20px 10px 0 20px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.top-footer-box .icon-box {
    display: grid;
    place-items: center;
    border-right: 1px solid #ccc;
}

.top-footer-box .icon-box a p:hover {
    color: #ffff00;
}

.top-footer-box .icon-box:last-child {
    border: none;
}

.top-footer-icon {
    margin-bottom: 10px;
}

.top-footer-box .top-footer-icon i {
    font-size: 25px;
    color: #ffff00;
}

.footer-main {
    padding: 80px 0 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000;
}

.footer-logo span {
    color: #ffff00;
}

.footer-links a {
    text-decoration: none;
    color: rgb(187, 183, 183);
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffff00;
}

.footer-gallery img {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    object-fit: contain;
    border-radius: 10px;
    margin: 4px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/*
.social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.social-icons .social-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background-color: #ffff00;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
}

.social-icons a {
    font-size: 18px;
    color: #000;
}*/

.share-certificate {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.share-certificate a {
    text-decoration: none;
}

.share-certificate a i {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.share-certificate #facebook {
    font-size: 20px;
    padding: 10px 15px;
    color: #fff;
    background-color: blue;
    border-radius: 50%;
}

.share-certificate #instagram {
    font-size: 20px;
    padding: 10px 13px;
    color: #fff;
    background: linear-gradient(45deg, yellow, red, rgb(233, 6, 233), rgb(243, 8, 117));
    border-radius: 50%;
}

.share-certificate #gmail {
    font-size: 20px;
    padding: 10px 13px;
    color: red;
    background-color: wheat;
    border-radius: 50%;
}

.share-certificate #whatsapp {
    font-size: 20px;
    padding: 10px 13px;
    color: #fff;
    background-color: green;
    border-radius: 50%;
}

.share-certificate #youtube {
    font-size: 20px;
    padding: 10px 11px;
    color: red;
    background-color: white;
    border-radius: 50%;
}

.footer-bottom {
    border-top: 1px solid rgb(112, 108, 108);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.footer-car {
    position: absolute;
    bottom: 0;
    width: 200px;
    z-index: 0;
    opacity: 0.9;
}

.footer-car-left {
    left: 0;
}

.footer-car-right {
    right: 0;
}

/*================================================
Whatsapp Shortcut Area CSS
=================================================*/

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    animation: zoomPulse 2s infinite;
}

.whatsapp-icon img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0px 0px 25px rgb(3, 247, 3));
    border-radius: 50%;
    object-fit: contain;
}

@keyframes zoomPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}


/*

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #002b40;
    border-radius: 10px;
}*/

:root {
    scroll-padding-top: 80px;
}




/* https://preview.themeforest.net/item/caralfa-car-rental-dealer-elementor-pro-template-kit/full_screen_preview/56584855?_ga=2.210674835.766671765.1750732686-604677903.1743994989 
https://preview.themeforest.net/item/valencia-limousine-transport-car-hire-theme/full_screen_preview/19260264?_ga=2.8358068.766671765.1750732686-604677903.1743994989
*/