body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
    background-color: var(--darkcolor);
}

/*=====common Styling Start Here=====*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
ul,
ol,
figure {
    padding: 0px;
    margin: 0px;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
}

a {
    color: var(--darkcolor);
    display: inline-block;
}

:root {
    --primarycolor: #EE682D;
    --secondarycolor: #2E81C3;
    --darkcolor: #000;
    --lightcolor: #ffffff;
    --bgcolor: #1A1A1A;
    --textcolor: #aaa;
    --textcolor: #ccc;
    --bordercolor: #e5e7eb;
    --hovercolor: #2E81C3;
}

.g-icon {
    width: 20px;
}

.common-style {
    display: inline-block;
    width: 100%;
    padding: 45px 0px;
}

.common-title-box {
    text-align: center;
}

.common-label {
    display: inline-block;
    color: var(--primarycolor);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.6px;
    line-height: normal;
    margin-bottom: 18px;
}

.common-title {
    color: var(--lightcolor);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    line-height: 45px;
    text-transform: capitalize;
    margin-bottom: 36px;
}

.common-btn {
    padding: 5px;
    color: var(--lightcolor);
    background: var(--secondarycolor);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    padding-right: 15px;
    position: relative;
    overflow: hidden;
}


.common-btn i {
    color: var(--secondarycolor);
    background-color: var(--lightcolor);
    font-size: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.common-btn::before {
    content: "";
    position: absolute;
    top: 0%;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0));
    transition: 0.6s ease;
}

.custom-btn {
    background-color: transparent;
    color: var(--lightcolor);
    border: 2px solid var(--primarycolor);
}

.custom-btn i {
    background-color: var(--primarycolor);
    color: var(--lightcolor);
}

.common-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.common-btn:hover::before {
    left: 120%;
}


.owl-nav {
    margin-top: 0px !important;
}

.owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: var(--secondarycolor) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    margin: 0 !important;
    transition: 0.3s ease;
}


.owl-nav button:hover {
    background-color: var(--primarycolor) !important;
}

.owl-nav button i {
    color: var(--lightcolor);
    font-size: 15px;
}


.owl-nav .owl-prev {
    left: -19px;
}

.owl-nav .owl-next {
    right: -19px;
}

.owl-dots {
    margin-top: 24px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--primarycolor);
}

.reserve-btn,
.new-btn {
    background-color: transparent;
    color: var(--lightcolor);
    border: 2px solid var(--secondarycolor);
}

.categories {
    display: none;
}

.app-wrapper .row {
    justify-content: space-between;
}

.bg-color {
    background-color: var(--bgcolor);
}

.text-left {
    text-align: left;
}

.fancybox-container {
    z-index: 9999999999;
}

body.no-scroll {
    overflow: hidden;
}

.pagination-box {
    text-align: center;
}

.pagination {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bgcolor);
    border-radius: 100px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 20px auto 0px;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0px;
    border-radius: 50% !important;
    color: var(--lightcolor);
    background-color: var(--darkcolor);
    border-color: #303030;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: none;
}

.pagination .page-link:hover {
    transform: translateY(-1px);
    color: var(--lightcolor);
    background-color: var(--primarycolor);
}

.pagination .page-item.active .page-link {
    color: var(--lightcolor);
    background: var(--primarycolor);
}

.play-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: var(--lightcolor);
    background-color: var(--primarycolor);
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.35);
}

.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primarycolor);
    opacity: 0.4;
    animation: ripple 1.5s infinite;
    z-index: -1;
}

.common-tab .nav {
    justify-content: center;
    align-items: center;
    border: none;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.common-tab .nav-item {
    margin: 0px;
    margin-right: 15px;
}

.common-tab .nav-link {
    white-space: nowrap;
    border: 1px solid var(--primarycolor);
    text-align: center;
    color: var(--primarycolor);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    line-height: normal;
    letter-spacing: 0.3px;
    transition: all 0.3s ease-in-out;
}

.common-tab .nav-link:hover {
    color: var(--primarycolor);
    border-color: var(--primarycolor);
}

.common-tab .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--lightcolor);
    border-color: var(--primarycolor);
    background: var(--primarycolor);
    border-color: var(--secondarycolor);
    background-color: var(--secondarycolor);
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 25px;
    z-index: 9999999;
    border-radius: 50%;
    box-shadow: 0 4px 6px #0000004d;
    width: 50px;
    height: 50px;
    animation: pluse 2s linear infinite;
}

.fleet-filter-btn {
    display: none;
}

/*=====common Styling End Here=====*/
/*----------Home Page Styling Start Here----------*/
/*=====Header Styling Start Here=====*/

.header .common-btn {
    background-color: var(--primarycolor);
}

.header .common-btn i {
    color: var(--primarycolor);
}

.header {
    width: 100%;
    display: inline-block;
    position: fixed;
    top: 4%;
    left: 0%;
    z-index: 9999;
}

.header .nav-header {
    display: none;
}

.header .navbar {
    backdrop-filter: blur(55px);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    padding: 5px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header .navbar-nav {
    padding-right: 21px;
}

.header .navbar-brand {
    padding: 0px;
}

.header .company-logo {
    height: 52px;
    object-fit: contain;
}

.header .nav-link {
    color: var(--lightcolor);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 17px 12px !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in;
}

.header .toggle-icon {
    color: var(--primarycolor);
    font-weight: 900;
    font-size: 14px;
    margin-left: 4px;
    transition: all 0.2s ease-in;
}

.header .nav-link.active {
    color: var(--primarycolor);
}

.header .nav-link:hover {
    color: var(--primarycolor);
}

.header .nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header.is-sticky {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999999999;
    background: var(--bgcolor);
    backdrop-filter: blur(8px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    animation: smoothSlideDown 0.4s ease forwards;
}

.header.is-sticky .navbar {
    background-color: transparent;
    border-radius: 0px;
    padding: 8px 0px;
    box-shadow: none;
    backdrop-filter: none;
}

/*====Header Styling End Here=====*/

/*=====Hero Panel Styling Start Here=====*/
.hero-panel {
    width: 100%;
    padding: 20px;
}

.hero-panel .hero-wrapper {
    width: 100%;
    height: 735px;
    border-radius: 25px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    overflow: hidden;
}

.hero-panel figure {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.hero-panel figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .item {
    height: 100%;
}

.hero-panel .owl-carousel .owl-stage-outer {
    border-radius: 15px;
}

.hero-panel .hero-content {
    display: flex;
    align-items: center;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-panel .content {
    width: 54%;
    padding-top: 31px;
}

.hero-panel .label {
    display: inline-block;
    color: var(--lightcolor);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 21px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 100px;
}

.hero-panel h1 {
    color: var(--lightcolor);
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

/*#typing {
    color: var(--lightcolor);
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-bottom: 20px;
}*/

.hero-panel p {
    color: var(--lightcolor);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 39px;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
    z-index: -1;
    border-radius: inherit;
}

.hero-panel .cta-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-panel .cursor {
    display: inline-block;
    width: 2px;
    height: 40px;
    background: var(--primarycolor);
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

.hero-panel #typing {
    color: var(--primarycolor);
}

/*=====Hero Panel Styling End Here=====*/

/*=====Book Tool Styling Start Here=====*/
.filter-btn {
    display: none;
}

.book-tool {
    width: 86%;
    margin: 0px auto;
    margin-top: -64px;
    background: rgb(55 55 55 / 85%);
    backdrop-filter: blur(14px);
    padding: 14px;
    border-radius: 60px;
    border: 8px solid var(--darkcolor);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

.book-tool .tool-row {
    display: flex;
    align-items: center;
}

.book-tool .tool-item {
    width: 20%;
    padding: 0px 4px;
}

.book-tool .input-box {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.book-tool .input-box i {
    color: #ccc;
    font-size: 14px;
    position: absolute;
    top: 18px;
    right: 15px;
    pointer-events: none;
}

.book-tool .form-select,
.book-tool .form-control {
    display: inline-block;
    width: 100%;
    color: var(--lightcolor);
    background: rgb(0 0 0 / 21%);
    font-size: 14px;
    border-radius: 50px;
    padding: 14px 18px;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.book-tool .form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23ffffff' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 35px;
}

.book-tool input::placeholder {
    color: var(--lightcolor);
    opacity: 0.3;
}

.book-tool select option {
    background: var(--lightcolor);
    color: var(--darkcolor);
}

.book-tool .form-select:focus,
.book-tool .form-control:focus {
    box-shadow: none;
}

.book-btn-box .common-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
}

.book-tool .tool-head {
    display: none;
}

/*=====Book Tool Styling End Here=====*/

/*=====About Panel Styling Start Here=====*/
.about-content h2 {
    color: var(--lightcolor);
    margin-bottom: 24px;
}

.about-content p {
    color: var(--textcolor);
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 16px;
    text-align: justify;
}

.abtImg {
    margin-left: 40px !important;
}

.about-content p:last-child {
    margin-bottom: 0px;
}

.about-content p a {
    color: var(--primarycolor);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.about-content .inner-box {
    margin-top: 43px;
}

.about-content h3 {
    color: var(--lightcolor);
    width: calc(35% - 30px);
    font-size: 21px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 27px;
    position: relative;
}

.about-content .con p {
    width: calc(65% - 30px);
    margin: 0px;
    line-height: 23px;
}

.about-content .con {
    width: calc(100% - 75px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 60px;
}

.about-content h3::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    background: #686868;
    width: 1px;
    height: 100%;
}

.about-content .box {
    margin-bottom: 33px;
    display: flex;
    padding-right: 30px;
}

.about-content .box i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #252525;
    color: var(--primarycolor);
    font-size: 23px;
    text-align: center;
    align-content: center;
    margin-right: 15px;
}

.about-content .common-btn {
    margin-top: 20px;
}

.media-box .inner-media {
    position: relative;
    overflow: hidden;
}

.media-box .inner-media figure {
    width: 100%;
    height: 650px;
    border-radius: 15px;
}

.media-box .inner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.media-box .wrapper1 {
    padding: 0px 0px 20px 20px;
    border-bottom-left-radius: 15px;
    background: var(--darkcolor);
    position: absolute;
    z-index: 1;
    top: 0px;
    right: 0px;
}

.media-box .counter-box {
    width: 214px;
    padding: 24px 33px;
    background: var(--secondarycolor);
    border-radius: 10px;
    box-shadow: 0px 40px 40px rgba(153, 153, 153, 0.16);
    position: relative;
    z-index: 1;
    text-align: center;
}

.media-box .counter-box2 {
    padding: 24px 60px;
}

.media-box .wrapper2 {
    padding: 20px 20px 0px 0px;
    border-top-right-radius: 20px;
    background: var(--darkcolor);
    position: absolute;
    z-index: 1;
    bottom: 0px;
    left: 0px;
}

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

.media-box .count-num {
    margin-right: 2px;
}

.media-box .count {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.media-box .count span {
    color: var(--lightcolor);
    font-size: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 3px;
    line-height: normal;
}

.media-box h3 {
    color: var(--lightcolor);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 24px;
}

.media-box .counter-box2 {
    top: unset;
    right: unset;
    bottom: 0px;
    left: 0px;
}

/*=====About Panel Styling End Here=====*/

/*=====List Panel Styling Start Here=====*/
.list-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.list-card {
    background: var(--bgcolor);
    border-radius: 15px;
    padding: 27px 10px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.list-card i {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    color: var(--lightcolor);
    background-color: var(--secondarycolor);
    font-size: 28px;
    border: 2px dotted var(--bgcolor);
    margin: 0px auto 29px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-card h3 {
    color: var(--lightcolor);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.list-card:hover {
    transform: translateY(-8px);
    background: #1a1a1a;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/*=====List Panel Styling End Here=====*/


/*=====Black Car Service Panel Styling Start Here=====*/
.black-car-wrapper {
    width: 100%;
    height: 460px;
    background-image: url("../images/more-images/bg-img11.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.premium-services .common-label {
    margin-bottom: 20px;
}

.premium-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.premium-services h2 {
    color: var(--lightcolor);
    font-size: 43px;
    line-height: 48px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.premium-services p {
    color: var(--lightcolor);
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 43px;
}

/*=====Black Car Service Panel Styling End Here=====*/

/*=====Our Fleet Panel Styling Start Here=====*/
.fleet-container .common-tab {
    margin-bottom: 47px;
}

.fleet-container .nav-tabs {
    gap: 10px;
}

.fleet-container .nav-item {
    margin: 0px;
}

.fleet-container .nav-link {
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    padding: 11px 18px;
    color: var(--lightcolor);
    border-color: var(--secondarycolor);
    text-align: center;
}

.fleet-container .nav-link:hover {
    color: var(--lightcolor);
    background-color: var(--secondarycolor);
    border-color: var(--secondarycolor);
}

.fleet-card {
    width: 100%;
    border-radius: 15px;
    text-align: center;
    background-color: var(--bgcolor);
    padding: 15px;
    margin-bottom: 24px;
    transition: all 0.3s ease-in-out;
}

.fleet-card:hover {
    transform: scale(0.95);
}

.fleet-card:hover h3 {
    color: var(--secondarycolor);
}

.fleet-slider .fleet-card {
    margin-bottom: 0px !important;
}

.fleet-card a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.fleet-card figure {
    width: 100%;
    height: 273px;
    border-radius: 15px;
    margin-bottom: 22px;
}

.fleet-slider .fleet-card figure {
    height: 274px;
}

.fleet-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.fleet-card h3 {
    color: var(--lightcolor);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 14px;
    transition: all 0.3s ease-in-out;
}

.fleet-card ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.fleet-card li {
    display: flex;
    align-items: center;
    color: var(--textcolor);
    font-size: 13px;
    gap: 6px;
}

.fleet-slider .owl-nav button {
    top: 48%;
}

/*=====Our Fleet Panel Styling End Here=====*/


/*=====Service Panel Styling Start Here=====*/
.service-wrapper {
    position: relative;
    overflow: hidden;
}

.service-card {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;

    background-color: var(--bgcolor);
}

.service-slider .service-card {
    margin-bottom: 0px !important;
}

.service-card:hover h3 a {
    color: var(--hovercolor);
}

.service-card figure {
    width: 100%;
    height: 250px;
    border-radius: inherit;
    margin-bottom: 23px;
}

.service-card figure a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.service-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: all 0.4s ease-in-out;
}

.service-card:hover img {
    transform: scale(1.1);
}


.service-card h3 {
    color: var(--lightcolor);
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.service-card h3 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.service-card p {
    color: var(--textcolor);
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 4px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.service-card .num-box {
    padding: 16px 0px 0px 16px;
    background: var(--darkcolor);
    border-top-left-radius: 20px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: none;
}

.service-card .num {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    color: var(--primarycolor);
    opacity: 0.8;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*.service-card::before {
    content: "";
    height: 30px;
    width: 30px;
    background: transparent;
    border-bottom-right-radius: 15px;
    position: absolute;
    right: 0;
    bottom: 63px;
    box-shadow: 16px 0 0 0 var(--darkcolor);
}

.service-card::after {
    content: "";
    height: 30px;
    width: 30px;
    background: transparent;
    border-bottom-right-radius: 15px;
    position: absolute;
    right: 63px;
    bottom: 0;
    box-shadow: 16px 0 0 0 var(--darkcolor);
}*/

.service-wrapper .owl-prev,
.service-wrapper .owl-next {
    position: absolute;
    top: -13%;
    right: 0px;
    left: unset;
}

.service-wrapper .owl-prev {
    right: 54px;
}

.service-card .common-btn {
    font-size: 14px;
}

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

/*=====Service Panel Styling End Here=====*/

/*=====Connect Panel Styling Start Here=====*/
.support-box {
    width: 100%;
    height: 430px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    position: relative;
}

.support-box::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: inherit;
}

.support-box img:not(.car-img img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.support-box .support-details {
    width: 100%;
    height: 100%;
    padding: 40px;
    position: absolute;
    top: 0%;
    left: 0%;
    display: flex;
    align-items: center;
}

.support-box .common-label {
    color: var(--lightcolor);
    font-weight: 600;
    margin-bottom: 17px;
}

.support-box .common-title {
    font-size: 31px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 37px;
}

.support-box .cta-btn {
    display: flex;
    gap: 12px;
}

.support-box .car-img {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-box .car-img img {
    height: 296px;
    object-fit: contain;
    position: absolute;
    top: 127px;
    right: 20px;
    filter: drop-shadow(0px 6px 8px rgba(0, 0, 0, 0.25)) drop-shadow(0px 25px 45px rgba(0, 0, 0, 0.18));
    transform: translateY(-8px) scale(1.02);
    transition: all 0.3s ease;
}

.support-wrapper .info-card {
    width: 100%;
    height: 430px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.support-wrapper .info-card::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0%;
    left: 0%;
}

.support-wrapper .info-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.support-wrapper .info {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0%;
    left: 0%;
    text-align: center;
    padding: 10px;
}

.support-wrapper .info h3 {
    color: var(--lightcolor);
    font-size: 34px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 13px;
}

.support-wrapper p {
    color: var(--lightcolor);
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 25px;
}

.support-wrapper .info-card .common-btn {
    padding-right: 22px;
}

/*=====Connect Panel Styling End Here=====*/

/*=====Choose Us Panel Styling Start Here=====*/
.choose-wrapper {
    margin: 0px auto;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #434343;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.choose-wrapper .inner-wrapper {
    padding: 30px;
    border-radius: inherit;
    background-color: var(--bgcolor);
}

.choose-us-box .common-title {
    margin-bottom: 23px;
}

.choose-us-box {
    padding-right: 40px;
}

.choose-us-box p {
    color: var(--textcolor);
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 15px;
}

.choose-us-box p:last-child {
    margin-bottom: 0px;
}

.choose-us-box .common-btn {
    margin-top: 23px;
}

.choose-media {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.choose-media::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 75%;
    background: var(--primarycolor);
    z-index: -1;
}

.choose-media span {
    position: absolute;
    top: 0px;
    right: 0;
    writing-mode: sideways-lr;
    color: var(--lightcolor);
    text-transform: uppercase;
    font-size: 185px;
    line-height: 229px;
    font-weight: 800;
    letter-spacing: 5px;
}

.choose-media {
    width: 100%;
}

.choose-media img {
    height: 606px;
    object-fit: contain;
}

/*=====Choose Us Panel Styling End Here=====*/

/*=====Service Area Panel Styling Start Here=====*/
.area-card {
    width: 100%;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.area-card a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.area-card figure {
    width: 100%;
    height: 170px;
    border-radius: inherit;
    margin-bottom: 24px;
    overflow: hidden;
}

.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: all 0.3s ease-in-out;
}

.area-card h3 {
    color: var(--lightcolor);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.area-card:hover h3 {
    color: var(--hovercolor);
}

.area-card:hover img {
    transform: scale(1.1);
}

/*=====Service Area Panel Styling End Here=====*/

/*=====Service Keywords Styling Start Here=====*/
.service-keywords-container {
    padding: 55px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg,
            rgba(30, 30, 30, 0.6),
            rgba(10, 10, 10, 0.85));
    backdrop-filter: blur(12px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.6);
}

.service-keywords-container .keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.service-keywords-container li {
    flex: 0 0 calc(33.33% - 16px);
    background: linear-gradient(145deg, #1f1f1f, #141414);
    border-radius: 100px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.18);
    transform: perspective(800px) translateZ(0);
}

.service-keywords-container i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(145deg, #222, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 20px;
    color: #caa45f;
    transition: color 0.3s ease, box-shadow 0.3s ease;
    box-shadow:
        inset 2px 2px 5px rgba(0, 0, 0, 0.7),
        inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.service-keywords-container span {
    color: var(--lightcolor);
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-transform: capitalize;
    flex: 1;
}


.service-keywords-container li:hover {
    transform: perspective(800px) translateY(-6px) scale(1.02);
    border-color: var(--primarycolor);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.4);
}

.service-keywords-container li:hover i {
    color: var(--primarycolor);
}

/*=====Service Keywords Styling End Here=====*/

/*=====Testimonial Styling Start Here=====*/
.testimonial-box {
    background: var(--lightcolor);
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

.testimonial-box a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.testimonial-box .testimonial-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.testimonial-box img {
    width: auto !important;
    height: 44px;
    object-fit: contain;
    margin-right: 1px;
}

.testimonial-box .reviewer-name {
    color: var(--darkcolor);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 1px;
}

.testimonial-box span {
    color: var(--textcolor);
    font-size: 13px;
}

.testimonial-box i {
    color: #F8B703;
    font-size: 10px;
}

.testimonial-box p {
    color: var(--darkcolor);
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    height: 159px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.testimonial .owl-nav button {
    background-color: var(--primarycolor) !important;
}

.testimonial .owl-nav .owl-prev {
    left: -20px;
}

.testimonial .owl-nav .owl-next {
    right: -20px;
}

/*=====Testimonial Styling End Here=====*/

/*=====Post Panel Styling Start Here=====*/
.post-box {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    background-color: var(--bgcolor);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 24px;
}

.post-slider .post-box {
    background-color: var(--bgcolor);
    margin-bottom: 0px !important;
    box-shadow: none;
}

.post-box figure {
    width: 100%;
    height: 255px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.post-box figure a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.post-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: all 0.3s ease-in-out;
}

.post-box:hover img {
    transform: scale(1.05) rotate(2deg);
}

.post-box .post-description {
    padding: 20px 5px 0px;
}

.post-box h3 {
    color: var(--lightcolor);
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 22px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    height: 47px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease-in-out;
}

.post-box h3 a {
    color: inherit;
}

.post-box:hover h3 a {
    color: var(--hovercolor);
}

.post-box p {
    color: var(--textcolor);
    font-size: 15px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.post-box .post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.post-box .post-meta span {
    font-size: 14px;
    text-transform: capitalize;
    margin-right: 14px;
}

.post-box .post-meta span a {
    color: var(--textcolor);
}

.post-box .post-meta span i {
    color: var(--primarycolor);
    margin-right: 3px;
}

/*=====Post Panel Styling End Here=====*/

/*=====Faq Panel Styling Start Here=====*/
.faq-left {
    width: 100%;
    height: 575px;
    border-radius: 15px 15px 0px 15px;
    position: relative;
    overflow: hidden;
}

.faq-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.faq-left .faq-cta-box {
    border: 24px solid var(--darkcolor);
    border-bottom: 0px;
    border-right: 0px;
    border-radius: 15px 0px 0px 0px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
    margin: auto;
    text-align: center;
    background-color: var(--darkcolor);
}

.faq-left .faq-cta {
    border-radius: 8px;
    padding: 23px 22px;
    background-color: var(--primarycolor);
}

.faq-left .faq-cta .common-btn {
    padding-right: 22px;
}

.faq-left h3 {
    color: var(--lightcolor);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.faq-wrapper {
    height: 100%;
}

.faq-wrapper .accordion-item {
    width: 100%;
    border: 0px;
    padding: 0px;
    border-radius: 10px !important;
    margin-bottom: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.faq-wrapper .accordion-header {
    margin: 0px !important;
}

.faq-wrapper .accordion-item:last-child {
    margin-bottom: 0px;
}

.faq-wrapper .accordion-button.collapsed {
    color: var(--darkcolor);
    background-color: var(--lightcolor);
    border-radius: 10px !important;
}

.faq-wrapper .accordion-button {
    color: var(--lightcolor);
    background-color: var(--primarycolor);
    font-size: 16px;
    font-weight: 600;
    padding: 17px 14px;
    padding-right: 65px;
    border-radius: 10px 10px 0px 0px !important;
}

.faq-wrapper .accordion-button:focus {
    box-shadow: none;
}

.faq-wrapper .accordion-button::after {
    position: absolute;
    content: "\f067";
    font-family: "Font Awesome 7 Free";
    font-weight: 700;
    right: 11px;
    font-size: 13px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    color: var(--lightcolor);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 100px;
    text-align: center;
    background-color: var(--primarycolor);
    background-image: none !important;
    transform: rotate(0deg);
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-family: "Font Awesome 7 Free";
    color: var(--primarycolor);
    background-color: var(--lightcolor);
}

.faq-wrapper .accordion-body {
    padding: 15px;
}

.faq-wrapper p {
    color: var(--darkcolor);
    font-size: 16px;
    line-height: 24px;
}

.faq-wrapper p a {
    color: var(--primarycolor);
}

/*=====Faq Panel Styling End Here=====*/

/*=====App Download Styling Start Here=====*/
.app-wrapper {
    width: 70%;
    padding: 18px 24px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    background-color: var(--bgcolor);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    border: 10px solid var(--darkcolor);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: -39px;
}

.app-download .common-title {
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 9px;
    font-weight: 600;
}

.app-download p {
    color: var(--textcolor);
    font-size: 14px;
    margin: 0;
}

.download-btn-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    height: 100%;
}

.download-btn-box figure {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--lightcolor);
}

.download-btn-box figure img {
    height: 20px;
    object-fit: contain;
}

.download-btn-box .custom-btn {
    background-color: var(--secondarycolor);
    border: none;
}

/*=====App Download Styling End Here=====*/

/*=====Footer Panel Styling Start Here=====*/
.footer {
    padding: 0px 0px 22px;
}

.footer .secure-icon {
    height: 80px;
}

.footer .footer-wrapper {
    padding: 83px 30px 22px;
    border-radius: 15px;
    background: var(--bgcolor);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.footer img {
    height: 65px;
    object-fit: contain;
}

.footer .ftr-box p {
    margin-top: 20px;
    color: var(--textcolor);
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 26px;
    padding-right: 10px;
}

.footer h2 {
    color: var(--lightcolor);
    font-size: 21px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.footer .ftr-box li {
    margin-bottom: 11px;
}

.footer .ftr-box li:last-child {
    margin-bottom: 0px;
}

.footer .ftr-box li a {
    color: var(--textcolor);
    font-size: 15px;
    text-transform: capitalize;
}

.footer .ftr-box li a:hover {
    color: var(--hovercolor);
}

.footer .ftr-contact li {
    color: var(--textcolor);
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.footer .ftr-contact i {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 2px;
    color: var(--lightcolor);
    background-color: var(--primarycolor);
    font-size: 12px;
    text-align: center;
    margin-right: 10px;
}

.footer li img {
    height: 43px;
    object-fit: contain;
}

.footer .footer-bottom {
    border-top: 1px solid #393939;
    margin-top: 35px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer p {
    color: var(--textcolor);
    font-size: 14px;
    font-weight: 500;
}

.footer .footer-bottom img {
    height: 30px;
    object-fit: cover;
    border: 1px solid white;
    border-radius: 4px;
    padding: 2px;
}

/*=====Footer Styling End Here=====*/

/*=====Banner Panel Styling Start Here=====*/
.banner {
    width: 100%;
    padding: 20px;
    position: relative;
}

.banner .banner-wrapper {
    width: 100%;
    height: 440px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.banner .banner-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.25));
    z-index: 1;
    border-radius: inherit;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.breadcrumbs-container {
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-color: var(--bgcolor);
    backdrop-filter: blur(12px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 6px solid rgb(0 0 0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.breadcrumbs-container li {
    display: inline-block;
    color: var(--textcolor);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.breadcrumbs-container a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs-container a:hover {
    color: var(--secondarycolor);
}

.breadcrumbs-container li.active {
    color: var(--primarycolor);
    font-weight: 600;
}

.breadcrumbs-container .separator {
    margin: 0px 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/*=====Banner Panel Styling End Here=====*/

/*=====Counter Panel Styling Start Here=====*/
.about-media {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.counter-card {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-color: var(--bgcolor);
    padding: 25px;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-bottom: 2px solid var(--secondarycolor);
}

.counter-card i {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: var(--lightcolor);
    background-color: var(--secondarycolor);
    border: 2px dotted var(--darkcolor);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 23px;
}

.counter-card .count {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.counter-card span {
    color: var(--lightcolor);
    font-size: 31px;
    font-weight: 700;
}

.counter-card h3 {
    color: var(--textcolor);
    font-size: 14px;
    text-transform: capitalize;
}

/*=====Counter Panel Styling End Here=====*/

/*=====Contact Us Panel Styling Start Here=====*/
.contact-wrapper {
    width: 95%;
    margin: 0px auto;
    border-radius: 15px;
    background-color: var(--bgcolor);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.contact-wrapper .contact-form {
    padding: 25px;
    height: 100%;
}

.contact-wrapper .input-box {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.contact-wrapper .input-box i {
    position: absolute;
    left: 15px;
    top: 18px;
    color: var(--secondarycolor);
    font-size: 14px;
}

.contact-wrapper .form-control,
.contact-wrapper .form-select {
    color: var(--lightcolor);
    font-size: 15px;
    padding: 13px 14px;
    border-radius: 10px;
    border: 1px solid #ebe9e924;
    outline: 0px;
    background-color: var(--darkcolor);
    transition: all 0.3s ease-in-out;
    text-indent: 30px;
}

.form-control::placeholder,
.form-select::placeholder {
    color: var(--lightcolor);
    opacity: 0.3;
}

.form-control:focus,
.form-select:focus {
    color: var(--lightcolor);
    box-shadow: none;
    background-color: var(--darkcolor);
    border-color: var(--secondarycolor);
}

.contact-wrapper .submit-btn-box {
    text-align: center;
    margin-top: 35px;
}

.contact-wrapper .common-title {
    font-size: 38px;
    margin-bottom: 12px;
}

.contact-wrapper p {
    color: var(--textcolor);
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 27px;
}

.contact-wrapper .contact-info {
    border-radius: 0px 15px 15px 0px;
    padding: 25px;
    height: 100%;
    background-color: var(--lightcolor);
    height: 100%;
}


.contact-wrapper .info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-wrapper .icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lightcolor);
    background-color: var(--primarycolor);
    font-size: 20px;
}

.contact-wrapper h4 {
    color: var(--darkcolor);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.contact-wrapper a {
    color: var(--darkcolor);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.contact-wrapper a:hover {
    font-weight: 600;
}

.contact-wrapper .info-item span {
    color: var(--lightcolor);
}

.contact-wrapper .map {
    width: 100%;
    height: 368px;
    margin-top: 38px;
    border-radius: 15px;
}

.contact-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

/*=====Contact us Panel Styling End Here=====*/

/*=====Contact option Panel Styling Start Here=====*/
.option-wrap {
    width: 100%;
    background-image: url("../images/more-images/bg-img11.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 60px 0px;
}

.option-card {
    width: 100%;
    height: 100%;
    background-color: var(--bgcolor);
    border-radius: 15px;
    text-align: center;
    padding: 25px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.option-card i {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px dotted var(--bgcolor);
    color: var(--lightcolor);
    background-color: var(--secondarycolor);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 20px;
}

.option-card h2 {
    color: var(--lightcolor);
    font-size: 21px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.option-card p {
    color: var(--textcolor);
    font-size: 15px;
    line-height: 23px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    height: 67px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    margin-bottom: 24px;
}

.option-card .common-btn {
    padding: 0px;
    padding: 10px 18px;
    font-size: 15px;
}

/*=====Contact option Panel Styling End Here=====*/

/*=====Fleets Listing Panel Styling Start Here====*/
.fleet-container .pagination {
    margin-top: 40px;
}

.filter-widgets {
    width: 100%;
    backdrop-filter: blur(10px);
    background-color: var(--bgcolor);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 78px;
    left: 0px;
}

.filter-widgets .filter-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
}

.filter-widgets .fa-xmark {
    display: none;
}

.filter-widgets .title {
    color: var(--lightcolor);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.filter-widgets .filter-content {
    padding: 0px 18px;
}

.filter-widgets .filter-group {
    padding: 17px 0px;
    border-top: 1px solid #6c6c6c2b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-widgets .filter-group:last-child {
    border-bottom: 0px;
}

.filter-widgets .filter-title {
    color: var(--lightcolor);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    pointer-events: none;
    margin-bottom: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-title::after {
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    transition: 0.3s ease-in;
    background-image: unset;
}

.filter-title:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.filter-widgets .filter-list.collapse {
    display: block;
}

.filter-widgets .filter-content {
    height: 496px;
    overflow-y: auto;
}

.filter-widgets .filter-content::-webkit-scrollbar {
    width: 2px;
}

.filter-widgets .filter-content::-webkit-scrollbar-track {
    background-color: var(--lightcolor);
}

.filter-widgets .filter-content::-webkit-scrollbar-thumb {
    background: var(--secondarycolor);
    border-radius: 10px;
}

.filter-widgets li {
    margin-bottom: 10px;
}

.filter-widgets li:last-child {
    margin-bottom: 0px;
}

.filter-widgets label {
    display: inline-block;
    color: var(--textcolor);
    color: #bfbfbf;
    font-size: 14px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.filter-widgets label:hover {
    color: var(--primarycolor);
}

.filter-widgets input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--primarycolor);
    vertical-align: middle;
    cursor: pointer;
    margin-right: 6px;
}

.filter-widgets input[type="checkbox"]:checked+label {
    color: var(--lightcolor);
    font-weight: 500;
}

.filter-widgets input.form-check-input {
    width: 47px;
    height: 20px;
}

.filter-widgets input.form-check-input:focus {
    box-shadow: none;
}

.filter-widgets .range-label {
    color: var(--textcolor);
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}

.filter-widgets .bottom-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 21px 18px 18px;
    gap: 6px;
}

.filter-widgets .common-btn {
    display: block;
    width: 48%;
    font-size: 14px;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
}

.filter-widgets .custom-btn {
    background: var(--secondarycolor);
    border: none;
}

.latest-post-btn,
.sidebar-widgets .fa-xmark {
    display: none;
}

/*=====Fleets Listing Panel Styling End Here====*/

/*=====Fleets Details Panel Styling Start Here====*/
.wrapper-fleet {
    width: 100%;
    position: sticky;
    top: 127px;
    left: 0px;
    padding-right: 10px;
}

.wrapper-fleet figure {
    width: 100%;
    height: 440px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.wrapper-fleet figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block !important;
}

.wrapper-fleet .fleet-swiper {
    margin-bottom: 15px;
}

.wrapper-fleet .thumbnail-swiper figure {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    padding: 4px;
    cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primarycolor);
    font-size: 14px;
    font-weight: 800;
}

.swiper-button-next {
    right: 2px;
}

.swiper-button-prev {
    left: 2px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 19px;
}

.thumbnail-swiper .swiper-slide figure {
    opacity: 0.5;
    border: 1px solid #f6f6f696;
    transition: all 0.3s ease-in-out;
}

.thumbnail-swiper .swiper-slide-thumb-active figure {
    opacity: 1;
    border-color: var(--secondarycolor);
}

.fleet-details {
    background: var(--bgcolor);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.fleet-info h1 {
    color: var(--lightcolor);
    font-size: 27px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.fleet-info .rating-box {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.fleet-info .rating-box .box {
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.fleet-info .rating-box span {
    color: var(--textcolor);
    font-size: 14px;
    margin-right: 3px;
}

.fleet-info .fa-star {
    color: #f5b50a;
    font-size: 12px;
    margin-left: -6px;
}

.fleet-info .rating-box strong {
    color: var(--primarycolor);
    font-size: 19px;
    font-weight: 600;
}

.fleet-info .rating-box sub {
    color: var(--textcolor);
    font-size: 11px;
    text-transform: capitalize;
}

.fleet-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-info ul li {
    display: flex;
    justify-content: space-between;
    padding: 12px 12px;
    margin-bottom: 8px;
    background: var(--darkcolor);
    border-radius: 8px;
    font-size: 14px;
}

.fleet-info ul li strong {
    color: var(--lightcolor);
    text-transform: capitalize;
}

.fleet-info ul li span {
    color: var(--textcolor);
    font-size: 14px;
}

.fleet-info .bottom-box {
    margin-top: 37px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fleet-info .common-btn {
    display: block;
    padding: 10px 18px;
    border-radius: 4px;
    line-height: normal;
}

.fleet-info .call-btn {
    background-color: var(--secondarycolor);
}

.fleet-info p {
    color: var(--textcolor);
    font-size: 15px;
    line-height: 23px;
    margin-top: 36px;
}

.fleet-additional-info {
    background-color: var(--darkcolor);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-top: 50px;
}

.fleet-additional-info h2,
.fleet-additional-info h3,
.fleet-additional-info h4,
.fleet-additional-info h5,
.fleet-additional-info h6 {
    color: var(--lightcolor);
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.fleet-additional-info>h2,
.fleet-additional-info>h3,
.fleet-additional-info>h4,
.fleet-additional-info>h5,
.fleet-additional-info>h6 {
    margin-top: 32px;
}

.fleet-additional-info>h2:first-child {
    margin-top: 0px;
}

.fleet-additional-info h2 {
    font-size: 23px;
}

.fleet-additional-info h3 {
    font-size: 21px;
}

.fleet-additional-info h4 {
    font-size: 20px;
}

.fleet-additional-info h5 {
    font-size: 19px;
}

.fleet-additional-info h6 {
    font-size: 18px;
}

.fleet-additional-info p {
    color: var(--textcolor);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}

.fleet-additional-info p:last-child {
    margin-bottom: 0px;
}

.fleet-additional-info ul,
.fleet-additional-info ol {
    margin: 20px 0px;
}

.fleet-additional-info ul{margin-left:12px;}
.fleet-additional-info li {
    color: var(--textcolor);
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;

}

.fleet-additional-info li:last-child {
    margin-bottom: 0px;
}

.fleet-additional-info li::before {
    display: inline-block;
    content: "✔";
    color: var(--secondarycolor);
    font-size: 14px;
    margin-right: 7px;
}

.fleet-additional-info li strong {
    color: var(--primarycolor);
    font-weight: 400;
}

.fleet-additional-info .list-group {
    margin: 30px 0px;
    padding: 0px;
}

.fleet-additional-info .list-group-item {
    position: relative;
    color: #d0d0d0;
    background: linear-gradient(145deg, #141414, #0f0f10);
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fleet-additional-info .list-group-item:nth-child(even) {
    background: linear-gradient(145deg, #181818, #121212);
}

.fleet-additional-info a {
    color: var(--secondarycolor);
    text-decoration: underline !important;
    text-underline-offset: 5px;
}

/*=====Booking Form Styling Start Here=====*/
.book-form {
    width: 100%;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.book-form iframe {
    width: 100%;
    height: 1081.58px;
    border: none;
    display: block;
    border-radius: inherit;
}

.flatpickr-calendar {
    z-index: 99999999999999999999999999999999999999999999999999999999999 !important;
}

/*=====Booking Form Styling End Here=====*/

/*=====Fleets Details Panel Styling End Here====*/

/*=====Post Details Panel Styling Start Here=====*/
.content-body {
    background: var(--bgcolor);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    color: var(--lightcolor);
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 16px;
}

.content-body>h1,
.content-body>h2,
.content-body>h3,
.content-body>h4,
.content-body h5,
.content-body h6 {
    margin-top: 32px;
}

.content-body h1 {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.5px;
    margin-top: 0px !important;
}

.content-body h2 {
    font-size: 25px;
}

.content-body h3 {
    font-size: 23px;
}

.content-body h4 {
    font-size: 21px;
}

.content-body h5 {
    font-size: 20px;
}

.content-body h6 {
    font-size: 18px;
}

.content-body .meta-box {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0px 32px;
}

.content-body .meta-box span {
    color: var(--textcolor);
    font-size: 13px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.content-body .meta-box i {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    color: var(--lightcolor);
    background-color: var(--primarycolor);
    border: 1px dotted var(--bgcolor);
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    line-height: normal;
}

.content-body .content-img {
    width: 100%;
    margin: 25px 0px;
}

.content-body img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    margin: 0 !important;
}

.content-body p {
    color: var(--textcolor);
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 15px;
}

.content-body p a {
    color: var(--secondarycolor);
    text-decoration: underline !important;
    text-underline-offset: 5px;
}

.content-body p strong {
    color: var(--primarycolor);
    font-weight: 500;
}

.content-body>ul {
    list-style: none;
    margin-bottom: 22px;
}

.content-body>ul,
.content-body>ol {
    list-style: none;
    margin-bottom: 22px;
    margin-top: 20px;
}

.content-body ul li,
.content-body ol li {
    color: var(--textcolor);
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;
}

.content-body ul li::before,
.content-body ol li::before {
    display: inline-block;
    content: "✔";
    color: var(--secondarycolor);
    font-size: 14px;
    margin-right: 7px;
}

.content-body ul li strong,
.content-body ol li strong {
    color: var(--textcolor);
    font-weight: 400;
}

.content-body .list-group {
    margin: 30px 0px;
    padding: 0px;
}

.content-body .list-group-item {
    position: relative;
    color: #d0d0d0;
    background: linear-gradient(145deg, #141414, #0f0f10);
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-body .list-group-item:nth-child(even) {
    background: linear-gradient(145deg, #181818, #121212);
}

.content-body .car-featured {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 25px 0px 35px;
}

.content-body .car-featured li {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 32.6%;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    background-color: var(--darkcolor);
    padding: 14px 12px;
    border-radius: 6px;
}

.content-body .car-featured i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px dotted var(--darkcolor);
    color: var(--lightcolor);
    background-color: var(--primarycolor);
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0px;
}

.media-container div,
.media-container figure {
    flex: 1 1 49%;
    border-radius: 15px;
}

.media-container img {
    border: 1px solid #626262;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0px;
}

.content-wrapper .content-text {
    flex: 1 1 49%;
}

.content-wrapper .content-media {
    flex: 1 1 49%;
    border-radius: 15px;
    border: none;
}

.card-grid {
    margin: 25px 0px;
}

.card-grid .card-item {
    background: var(--darkcolor);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-grid i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--lightcolor);
    background-color: var(--primarycolor);
    border: 3px dotted var(--darkcolor);
    font-size: 20px;
    margin-bottom: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-grid h4 {
    color: var(--lightcolor);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 14px;
    line-height: 1.2;
}

.card-grid p {
    color: var(--textcolor);
    font-size: 15px;
    line-height: 24px;
    margin: 0px 0px 12px;
}

.card-grid p:last-child {
    margin-bottom: 0px;
}

.content-body .share-box {
    padding-top: 20px;
    margin-top: 40px;
    margin-bottom: 47px;
    border-top: 1px solid #2e2e2e;
}

.content-body table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 26px 0px 40px;
    font-size: 15px;
    color: var(--lightcolor);
    overflow: hidden;
    background-color: #212529;
    border: 1px solid #4d5154;
    vertical-align: middle !important;
    overflow-x: auto;
    border-collapse: collapse;
}

.content-body table strong {
    color: var(--lightcolor);
    font-weight: 400;
}

.content-body table th,
.content-body table td {
    color: var(--lightcolor);
    font-size: 15px;
    padding: 12px 14px;
    text-align: left;
    vertical-align: middle;
    border-top: 1px solid #4d5154;
}

.content-body table th+th,
.content-body table td+td {
    border-left: 1px solid #4d5154;
}

.content-body table th {
    color: var(--lightcolor);
    font-weight: 600;
}

.content-body table tbody tr:nth-of-type(odd) {
    background-color: #262a2e;
}

.share-box span {
    display: inline-block;
    color: var(--lightcolor);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-right: 15px;
}

.share-box .share-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--lightcolor);
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    margin-right: 8px;
}

.share-box .share-links a:hover {
    background: var(--primarycolor);
    transform: translateY(-3px);
}

.content-body .faq-wrapper {
    margin-top: 30px;
}

.content-body .accordion-button {
    padding: 15px 14px;
}

.content-body .faq-wrapper p {
    color: var(--darkcolor);
}

.content-body p:last-child,
.content-body ul:last-child,
.content-body ul li:last-child {
    margin-bottom: 0px;
}

.content-body .service-card {
    background-color: var(--darkcolor);
    padding: 10px !important;
}

.content-body .service-card figure {
    margin-bottom: 19px;
    height: 192px;
}

.content-body .service-card h3 {
    font-size: 18px;
    height: 22px;
    line-height: normal;
    margin-bottom: 11px;
}

.content-body .service-card p {
    font-size: 14px;
    line-height: 21px;
    height: 42px;
    margin-bottom: 5px;
}

.content-body .post-box figure {
    height: 239.36px;
}

.content-body .post-box h3 {
    font-size: 17px;
    line-height: 26px;
    height: 51px;
    margin-bottom: 14px;
}

.content-body .post-box p {
    color: var(--textcolor);
    font-size: 14px;
    line-height: 23px;
    height: 44px;
    margin-bottom: 15px;
}

.content-body.blogDetails .post-box {
    background-color: var(--darkcolor) !important;
    padding: 10px;
}

.content-body.blogDetails .post-box figure {
    height: 192px;
}

.content-body.blogDetails .post-box h3 {
    font-size: 17px;
    height: 23px;
    line-height: normal;
    margin-bottom: 11px;
}

.content-body.blogDetails .post-box p {
    font-size: 14px;
    line-height: 21px;
    height: 43px;
    margin-bottom: 5px !important;
}

/*=====Post Details Panel Styling End Here=====*/

/*======Services Details Panel Styling Start Here=====*/
.premium-cta {
    margin: 50px 0px 40px;
    padding: 60px 20px;
    background: var(--secondarycolor);
    background: linear-gradient(135deg, #0f172a, #020617);
    border-radius: 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.premium-cta::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -80px;
    left: -80px;
}

.premium-cta .cta-content {
    max-width: 700px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.premium-cta h2 {
    color: var(--lightcolor);
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.premium-cta p {
    color: var(--lightcolor);
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.premium-cta .cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.premium-cta .book-btn {
    background-color: var(--secondarycolor);
}

.premium-cta .book-btn i {
    color: var(--secondarycolor);
}

/*======Services Details Panel Styling End Here=====*/

/*=====Reviews Panel Styling Start Here=====*/
.reviews-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

.reviews-container .reviews-box {
    width: 280px;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reviews-container .reviews-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.platform-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.reviews-container .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--lightcolor);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.reviews-container .icon-box img {
    width: 40px;
    object-fit: contain;
}

.reviews-container .reviews-box a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 14px;
}

.reviews-container h3 {
    font-size: 21px;
    font-weight: 700;
    color: #222;
    margin-bottom: 3px;
}

.reviews-container .reviews {
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    color: #4a4a4a;
}

.reviews-container .review-bottom {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-container .stars {
    display: flex;
    gap: 4px;
}

.reviews-container i {
    color: var(--lightcolor);
    background: var(--primarycolor);
    font-size: 13px;
    padding: 5px;
    border-radius: 5px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews-container .rating {
    color: var(--lightcolor);
    font-weight: 700;
    font-size: 13px;
    padding: 4px 13px;
    border-radius: 20px;
    background: linear-gradient(135deg, #111, #444);
}

.content-body .reviews-box h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--darkcolor);
    margin-bottom: 3px;
}

/*=====Reviews Panel Styling End Here=====*/

/*=====Error Panel Styling Start Here=====*/
.error-message {
    width: 100%;
    height: 100vh;
    text-align: center;
    align-content: center;
}

.error-message .smile {
    color: #cecece;
    font-size: 100px;
    margin-bottom: 5px;
    opacity: 0.2;
}

.error-message h1 {
    color: var(--primarycolor);
    font-size: 220px;
    font-weight: 600;
    line-height: 1;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.70));
}

.error-message span {
    display: inline-block;
    color: var(--lightcolor);
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 10px;
}

.error-message p {
    color: var(--textcolor);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
}

/*=====Error Panel Styling End Here=====*/

/*=====Blog Start Here=====*/
.blogDetails .tags-list {
    margin-bottom: 40px;
}

.blogDetails a {
    text-decoration: none !important;
}

/*=====Awards Panel Styling Start Here=====*/
.award-card {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.award-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}


/*=====Awards Panel Styling End Here=====*/

/*=====Google Reviews Panel Styling Start Here======*/
.rev-stars.revRed i {
    line-height: 17px;
}

.ylIcon {
    height: 30px;
}

.rev-section {
    padding: 30px 0;
}

.googleRevLogo {
    text-align: center;
    display: flex;
    margin: 0 auto 25px auto;
    align-items: center;
    justify-content: center;
}

.googleRevLogo img {
    height: 88px;
}

.rev-card {
    background: #f3f4f6;
    border-radius: 20px;
    padding: 20px 20px 41px 20px;
    height: 100%;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.voReview {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #dee0e5;
    width: 100%;
    padding: 5px 10px;
    text-align: center;
}

.voReview a {
    font-size: 13px;
    font-weight: 600;
}


.rev-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

.rev-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rev-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.rev-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #555;
    overflow: hidden;
}

.rev-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-close-custom {
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.rev-name {
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

.rev-time {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.rev-google {
    font-size: 20px;
    color: #4285F4;
    max-width: 20px;
}

.rev-stars {
    color: #f59e0b;
    margin: 12px 0;
}

.rev-stars i {
    margin-right: 2px;
    width: 22px;
    height: 22px;
    font-size: 10px;
    line-height: 17px;
    background: var(--primarycolor);
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.rev-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.rev-read {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.modal-body {
    padding: 28px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f97316;
}

.stars {
    color: #f97316;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1rem;
}

.reviewer-time {
    font-size: 0.82rem;
    color: #888;
}

.review-full {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.7;
}

.google-badge {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.google-badge svg {
    width: 16px;
    height: 16px;
}

.btn-close-custom {
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-close-custom:hover {
    background: #e5e7eb;
}

/*=====Google Reviews Panel Styling End Here======*/

/*=====Service Rate Card Styling Start Here=====*/
.service-rate {
    width: 100%;
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(145deg, #111, #1c1c1c);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-rate:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.service-rate h3 {
    color: var(--lightcolor);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.service-rate .price {
    color: var(--secondarycolor);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
}

/*=====Service Rate Card Styling End Here=====*/

/*=====Sidebar Widgets Styling Start Here=====*/
.sidebar-widgets {
    width: 100%;
    height: auto;
    position: sticky;
    top: 77px;
    left: 0px;
}

.sidebar-widgets .widgets {
    padding: 20px 15px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.sidebar-widgets .widgets:last-child {
    margin-bottom: 0px;
}

.sidebar-widgets .widgets:hover {
    transform: translateY(-4px);
}

.sidebar-widgets .widgets-title {
    color: var(--lightcolor);
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 8px;
}

.sidebar-widgets .widgets-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--secondarycolor);
}

.sidebar-widgets .input-box {
    display: flex;
    margin-bottom: 0px;
}

.sidebar-widgets input {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    outline: none;
    padding: 10px 50px 10px 12px;
    width: 100%;
    color: var(--lightcolor);
    border-radius: 8px;
    font-size: 15px;
}

.sidebar-widgets input::placeholder {
    color: var(--lightcolor);
    opacity: 0.3;
}

.sidebar-widgets button {
    border: none;
    outline: none;
    color: var(--lightcolor);
    background: var(--secondarycolor);
    font-size: 15px;
    padding: 0px 10px;
    border-radius: 0 8px 8px 0;
    margin-left: -36px;
}

.sidebar-widgets li {
    margin-bottom: 18px;
}

.sidebar-widgets li:last-child {
    margin-bottom: 0px;
}

.sidebar-widgets .recent-post a {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    transition: all 0.3s ease-in;
}

.sidebar-widgets .recent-post a:hover p {
    color: var(--primarycolor);
}

.sidebar-widgets .recent-post img {
    width: 80px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.sidebar-widgets .short-description {
    width: 67%;
}

.sidebar-widgets .recent-post p {
    color: var(--lightcolor);
    font-size: 13px;
    font-weight: 500;
    line-height: 19px;
    margin: 0px;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    transition: all 0.5s ease-in-out;
}

.sidebar-widgets .post-date {
    color: var(--textcolor);
    font-size: 12px;
}

.sidebar-widgets .post-date i {
    color: var(--primarycolor);
    margin-right: 4px;
}

.sidebar-widgets .category-list a {
    width: 100%;
    color: var(--lightcolor);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
}

.sidebar-widgets .category-list span {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    color: var(--lightcolor);
    background-color: var(--secondarycolor);
    font-size: 11px;
    text-align: center;
    align-content: center;
    margin: 0px;
    transition: all 0.3s ease-in-out;
}

.sidebar-widgets .category-list a:hover {
    color: var(--secondarycolor);
}

.sidebar-widgets .category-list a:hover span {
    background-color: var(--primarycolor);
}

.content-body .tags-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
}

.content-body .tags-list a {
    color: var(--lightcolor);
    background-color: var(--primarycolor);
    padding: 10px 12px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.sidebar-widgets .input-group {
    margin-bottom: 15px;
}

.sidebar-widgets .form-control,
.sidebar-widgets .form-select {
    color: var(--lightcolor);
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #404040;
    outline: 0px;
    padding: 10px 12px;
    background-color: var(--darkcolor);
}

.sidebar-widgets .submit-btn-box {
    text-align: center;
    margin-top: 30px;
}

.sidebar-widgets .common-btn {
    display: block;
    width: 100%;
    margin: 0px;
    padding: 10px;
    border-radius: 100px;
}

.latest-post-btn,
.sidebar-widgets .fa-xmark {
    display: none;
}

.sidebar-widgets .sidebar-header {
    display: none;
}

/*=====Sidebar Widgets Styling End Here=====*/

/*=====Social Link Styling Start Here=====*/
.social-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.social-toggle .toggle-btn {
    width: 40px;
    height: 40px;
    color: var(--lightcolor);
    background: var(--secondarycolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px) scale(0.7);
    transition: all 0.4s ease;
}

.toggle-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.toggle-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.toggle-btn.active i {
    transform: rotate(180deg);
    transition: 0.4s;
}

.social-icons {
    position: absolute;
    bottom: 60px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icons.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.social-icons a {
    width: 40px;
    height: 40px;
    color: var(--lightcolor);
    background: var(--secondarycolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primarycolor);
}

/*=====Social Link Styling End Here=====*/

/*=====Animation Styling Start Here=====*/
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes smoothSlideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


@keyframes pluse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #25d366b3
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px #25d36600
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #25d36600
    }
}

@keyframes heartbeats {
    0% {
        width: 60px;
        height: 60px;
        opacity: .9;
    }

    100% {
        width: 90px;
        height: 90px;
        opacity: 0;
    }
}

/*=====Animation Styling End Here=====*/