@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

:root {
    --white: #fff;
    --black: #000;
    --theme-color: #ffcc00;
    --theme-color2: #000000;
    --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
    --text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    color: #464646;
}

/* ****************************header************************** */
.top-bar {
    background: #3c3c3c;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.top-bar .contact-item {
    margin-left: 20px;
    align-items: center;
}

.top-bar .contact-item i {
    color: #f7b500;
    margin-right: 6px;
    font-size: 17px;
}

.top-bar a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 18px;
}

.top-bar .contact-item span {
    display: block;
    color: #ddd;
}

/* Logo */
.logo img {
    width: 300px;
}

/* Navigation bar */
.navbar-custom {
    background: #000;
}

.navbar-custom .nav-link {
    padding: 10px 13px !important;
    font-size: 17px;
    font-weight: 700;
    color: #ffcc00;
}

.navbar-custom .nav-link:hover {
    color: var(--white) !important;
}

header .dropdown-menu {
    margin-top: -1px !important;
    min-width: 200px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    padding: 0;
}

header .dropdown-menu a {
    color: var(--theme-color);
    background-color: #434343;
    padding: 13px 21px 13px 18px;
}

header .dropdown-menu a:hover {
    color: #ffff8a;
    background-color: #3a3a3a;
    border-bottom-color: #3a3a3a;
}

header .dropdown-menu li:first a {
    box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.3);
}

/* **************************buttons************************* */
.btn-theme {
    background-color: var(--theme-color);
    padding: 15px 20px;
    text-shadow: var(--text-shadow);
    transition: 0.3s linear;
    font-weight: bold;
    font-size: 15px;
    border: none;
    color: #000;
    box-shadow: 4px 4px 6px rgba(0,0,0,0.4);
    border-radius: 40px;
    display: inline-block;
    text-shadow: var(--text-shadow);
}

.btn-theme:hover {
    background-color: var(--theme-color2);
    color: #fff;
}

/* *******************************section title & section padding********************** */
.section-padding {
    padding: 42px 0;
}

.area-title {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.section-title {
    margin-bottom: 30px;
}

.section-title .title {
    font-size: 45px;
    font-weight: bold;
}

/* ******************************home slider*********************** */
#homeslider .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

#homeslider .carousel-caption p {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 5.5px;
    color: var(--theme-color);
    text-shadow: var(--text-shadow);
}

#homeslider .carousel-caption .h2 {
    margin-bottom: 0;
    font-size: 50px;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: var(--text-shadow);
    font-weight: bold;
}


/* ****************************form area************************* */
.form-area form .form-control,
.form-area form .form-select {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: normal;
    color: #000;
    border: 1px solid #bebebe;
    background-color: #f5f5f5;
    border-radius: 1px;
    transition: all 100ms ease-out;
    border-radius: 5px;
}
.form-area form .form-control:placeholder{
    color: #000;
}
.form-area form .form-control:focus,
.form-area form .form-select:focus {
    box-shadow: none;
    border-color: var(--theme-color);
}

.bg-light-color {
    background-color: #f7f7f7;
}

.text-theme {
    color: var(--theme-color);
}

/* *******************************content-area***************************** */
.content-area ul {
    padding-left: 20px;
}

.content-area ul li {
    margin-bottom: 20px;
}

.table .bg-theme th {
    background-color: var(--theme-color);
    color: #000;
}

tbody>tr>td.info {
    background-color: #ffd632;
}

tbody>tr>td.danger {
    background-color: #fff7d9;
}

tbody>tr>td {
    color: #222 !important;
}

.btn-primary {
    border-color: #5472d2 !important;
    background-color: #5472d2 !important;
}

.content-section .btn-primary{
    background-color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    color: #000 !important;
}
/* **********************************why-choose-us-area****************************** */
.why-choose-us-area .custom-card {
    text-align: center;
}

.why-choose-us-area .custom-card img {
    width: 72px;
    margin-bottom: 20px;
}

.why-choose-us-area .custom-card .card-title {
    font-size: 20px;
    font-weight: 600;
}

/* ***********************faq area********************** */
#faqAccordion h2 .accordion-button,
#faqAccordion .accordion-header .accordion-button {
    color: #666 !important;
    font-weight: bold;
    font-size: 18px;
    background: #f8f8f8;
}

#faqAccordion .accordion-body {
    font-size: 14px;
}

/* ******************************adventure area************************ */
.flip-card {
    perspective: 1000px;
    margin: 15px;
}

.flip-card-inner {
    position: relative;
    width: 280px;
    height: 280px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 50%;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 50%;
    overflow: hidden;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.flip-card-back {
    background: #f8f9fa;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
    padding: 20px;
    border-radius: 10px;
}

.flip-card-back .h5,
.flip-card-back h5 {
    font-weight: bold;
    font-size: 30px;
}

.flip-card-back p {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 0;
}

/* **************************service list area********************* */
.serviceList {
    text-align: center;
    margin-inline: 20px;
    background: #fff;
    padding: 20px 10px;
    border-radius: 25px;
}

.serviceList .service-list-title {
    font-size: 25px;
    font-weight: bold;
    color: #000;
}

.serviceList ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.serviceList ul li a {
    color: #676767;
    font-size: 14px;
    letter-spacing: -0.01em;
    font-weight: 600;
}
.serviceList ul li a:hover{
    color: var(--theme-color);
}

/* ******************************footer*************************** */
footer {
    background-color: #222;
    color: #ddd;
    font-size: 15px;
}

footer .main-footer {
    padding: 50px 0;
}

.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

footer .h5 {
    color: var(--theme-color);
    font-weight: bold;
    margin-bottom: 20px;
}

footer p {
    line-height: 1.6;
}

footer .social-icons {
    display: flex;
    gap: 10px;
}

footer .social-icons img {
    width: 30px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

footer ul li a::before {
    position: relative;
    padding-right: 20px;
    content: "\f30b";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    font-size: 12px;
}

footer ul li a:hover {
    color: var(--theme-color);
}

footer .social-icons a {
    display: inline-block;
    margin: 0 8px 0 0;
    color: #ddd;
    font-size: 18px;
    transition: 0.3s;
}

footer .social-icons a:hover {
    color: var(--theme-color);
}

.footer-bottom {
    background: #1a1a1a;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom p {
    margin-bottom: 0;
}


/* *************************fixed social media************************* */
#ssb-container {
    position: fixed;
    top: 30%;
    z-index: 6;
    right: -105px;
    transition: 0.3s linear;
}

#ssb-container:hover {
    right: 0;
}


#ssb-container ul {
    padding: 0;
    margin: 0;
    background-color: var(--black);
}

#ssb-container ul li {
    list-style: none;
    margin: 0;
}

#ssb-container ul li {
    line-height: 45px;
}

#ssb-container ul li a {
    padding: 0 15px 0 0;
    display: block;
    line-height: 45px;
    text-align: left;
    white-space: nowrap;
    text-decoration: none;
    color: var(--theme-color);
}

#ssb-container ul li span {
    line-height: 45px;
    width: 50px;
    text-align: center;
    display: inline-block;
}

/* **************************************************************
*****************************about us****************************
************************************************************** */

/* Breadcrumbs */
.page-header {
    padding: 70px 0 70px 0;
    background: #f2f2f2;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-header .main-title {
    color: #fff;
    font-size: 40px;
}

.breadcrumbs {
    padding: 10px 0 0px;
    background: transparent;
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
    gap: 35px;
    padding: 0;
    align-items: center;
    margin-bottom: 0;
}

.breadcrumbs ul li a {
    color: var(--theme-color);
    position: relative;
    font-weight: 700;
}

.breadcrumbs ul li a::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: 12px;
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
}

.breadcrumbs ul li span {
    color: #fff;
}

/* ***************************about us*********************** */
.about-us-area img {
    width: 100%;
}

.about-content table th,
.about-content table td {
    padding: 13px 30px;
    border: 1px solid #e2e2e2;
}

.about-content .caption {
    color: #777777;
}

/* **********************************Team****************************** */
.team-area .custom-card {
    text-align: center;
}

.team-area .custom-card img {
    width: 250px;
    margin-bottom: 20px;
}

.team-area .custom-card .card-title {
    font-size: 28px;
    font-weight: bold;
}

/* *********************************************************************
*********************************Fare chart*****************************
********************************************************************** */
.booking-from-area .label {
    margin-top: 20px;
    color: #000;
}

.booking-from-area label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
    color: #000;
}

.booking-from-area label span {
    font-size: 20px;
    color: #ff0000;
}


/* **********************************taxi services page**************************** */
.taxiService-area img{
    margin-bottom: 20px;
    width: 70%;
}

header .container{
    max-width: 1250px;
}
.middle_image{
    max-width: 800px;
    text-align: center;
    margin-inline: auto;
}
.not_rouded .flip-card-front, .not_rouded .flip-card-back{
    border-radius: 15px;
}
.not_rouded .flip-card-front img, .not_rouded .flip-card-back img{
    border-radius: 14px;
}


.single-post .post.type-post {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.post-inner .post-meta-data {
  position: relative;
  padding: 17px 0;
  font-weight: bold;
  border-style: dashed;
  border-width: 0 0 1px 0;
  border-color: #dedede;
}
.post-inner .post-meta-data .date.updated {
  display: initial;
}
.post-inner .post-meta-data span.round-divider {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 3px 15px;
  background-color: #dedede;
  border-radius: 50%;
}
.post-inner .post-meta-data a {
  position: relative;
  color: #a5a5a5;
}
.post-inner .post-meta-data a:hover {
  color: #464646;
}
.post-inner .post-title {
  margin: 20px 0 15px 0;
}
.post-inner .post-title a {
  color: #464646;
  text-decoration: none;
}
.post-inner .post-title a:hover {
  color: #a2c046;
}
.post-inner .post-left-meta {
  float: left;
  padding-right: 20px;
  width: 100px;
}
.post-inner .post-left-meta .box {
  position: relative;
  padding: 15px 10px;
  margin-bottom: 20px;
  border: 2px solid #e6e6e6;
  border-radius: 1px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  border-radius: 1px;
}
.post-inner .post-left-meta .box::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 35px;
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  transform: rotate(-45deg);
  z-index: 2;
}
.post-inner .post-left-meta .box::after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #e6e6e6;
  border-width: 8px;
  margin-left: -8px;
}
.post-inner .post-left-meta .box.date span {
  display: block;
}
.post-inner .post-left-meta .box.date .day {
  font-size: 24px;
  line-height: 24px;
  color: var(--theme-color);
}
.post-inner .post-left-meta .box.date .month {
  padding: 2px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
  text-transform: uppercase;
}
.post-inner .post-left-meta .box.date .year {
  letter-spacing: 1px;
}
.post-inner p a{
    color: var(--theme-color);
    font-weight: 600;
}
.post-inner li a{
    color: var(--theme-color);
    font-weight: 600;
}
.post-inner .post-left-meta .stickylabel {
  font-size: 13px;
}
.post-inner .post-left-meta .stickylabel .fa {
  font-size: 20px;
  margin-bottom: 3px;
}
.post-inner .post-content {
  margin-left: 100px;
}
.post-inner .post-content.no-big-date {
  margin-left: 0;
}

.single .post-title {
  font-size: 36px;
  margin: 30px 0;
}
.single .post-content {
  margin-bottom: 50px;
}
.single .post-content {
  margin-left: 0;
}

/* Blog Grid Layout */
.blog-grid {
  clear: both;
  margin-bottom: 30px;
}
.blog-grid .post-inner {
  float: left;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .blog-grid .hentry {
    margin-bottom: 0;
}
.blog-grid[data-columns="2"] .post-inner {
    width: 50%;
}
.blog-grid[data-columns="3"] .post-inner {
    width: 33.333%;
}
.blog-grid[data-columns="4"] .post-inner {
    width: 25%;
}
}
.blog-grid .post-item .title {
  font-size: 22px;
}
.blog-grid .post-item .post-meta-data {
  padding: 15px 33px;
}
.blog-grid .post-item .post-meta-data span.round-divider {
  margin: 3px 10px;
}
.blog-grid .post-item .sticky .post-meta-data {
  padding: 15px 30px;
}
.blog-grid .post-item p:last-of-type {
  margin-bottom: 0;
}
.blog-grid .post-item.news {
  border: 1px solid #f2f2f2;
}

/* Share Buttons Blog Single */
body.single-post .social-sharing-buttons {
  margin: 0 0 50px 0;
}

.sidebar {
  margin-bottom: 60px;
}
.sidebar .widget {
  position: relative;
  margin-bottom: 35px;
}
.sidebar .widget.woocommerce ul {
  padding-left: 0;
}
.sidebar .widget ul {
  padding-left: 0;
  margin-bottom: 0;
}
.sidebar .widget ul li ul {
  margin-left: 0;
}
.sidebar .widget select {
  width: 100%;
  max-width: 100%;
}

.widget_recent_entries::before,
.widget_recent_comments::before,
.widget_archive::before,
.widget_categories::before,
.widget_meta::before,
.widget_rss::before,
.widget_pages::before,
.widget_calendar::before {
  display: none;
}
.widget_recent_entries ul,
.widget_recent_comments ul,
.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_rss ul,
.widget_pages ul,
.widget_calendar ul {
  padding-left: 0;
}
.widget_recent_entries ul li,
.widget_recent_comments ul li,
.widget_archive ul li,
.widget_categories ul li,
.widget_meta ul li,
.widget_rss ul li,
.widget_pages ul li,
.widget_calendar ul li {
  position: relative;
  padding-left: 30px;
  list-style: none;
}
.widget_recent_entries ul li::before,
.widget_recent_comments ul li::before,
.widget_archive ul li::before,
.widget_meta ul li::before,
.widget_rss ul li::before,
.widget_pages ul li::before,
.widget_calendar ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f30b";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 14px;
  color: #e6e6e6;
}
.widget_recent_entries ul li > ul,
.widget_recent_comments ul li > ul,
.widget_archive ul li > ul,
.widget_categories ul li > ul,
.widget_meta ul li > ul,
.widget_rss ul li > ul,
.widget_pages ul li > ul,
.widget_calendar ul li > ul {
  margin-left: 0;
}

.topbar .widget_recent_entries ul li::before,
.topbar .widget_recent_comments ul li::before,
.topbar .widget_archive ul li::before,
.topbar .widget_categories ul li::before,
.topbar .widget_meta ul li::before,
.topbar .widget_rss ul li::before,
.topbar .widget_pages ul li::before,
.topbar .widget_calendar ul li::before,
.footer .widget_recent_entries ul li::before,
.footer .widget_recent_comments ul li::before,
.footer .widget_archive ul li::before,
.footer .widget_categories ul li::before,
.footer .widget_meta ul li::before,
.footer .widget_rss ul li::before,
.footer .widget_pages ul li::before,
.footer .widget_calendar ul li::before {
  color: rgba(255, 255, 255, 0.1);
}

/* RSS Widget */
.widget_rss .widget-title a {
  color: #464646;
}

/* Calendar Widget */
.widget_calendar table {
  border-collapse: collapse;
  border-spacing: 0;
}
.widget_calendar #wp-calendar {
  width: 100%;
}
.widget_calendar caption {
  padding: 6px 0;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background-color: var(--theme-color);
}
.widget_calendar thead tr th {
  padding: 5px 0;
  text-align: center;
  border: 1px solid #dedede;
}
.widget_calendar tbody tr td {
  padding: 5px 0;
  text-align: center;
  border: 1px solid #dedede;
}
.widget_calendar tfoot tr td {
  padding: 5px;
  border-top: 1px solid #dedede;
}
.widget_calendar tfoot #next a {
  float: right;
}

/* Tagcloud Widget */
.widget_tag_cloud a {
  display: inline-block;
  padding: 10px 12px;
  margin-bottom: 4px;
  color: #a5a5a5;
  text-decoration: none;
  border-radius: 1px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.widget_tag_cloud a:hover {
  color: #999999;
  border-color: rgba(0, 0, 0, 0.2);
}

/* Category & Archive select field */
.widget_archive select,
.widget_categories select,
.widget_text select {
  height: 50px;
  max-width: 100%;
  padding: 0 20px;
  border: 1px solid #eeeeee;
  border-radius: 1px;
  background: #f9f9f9 url(assets/images/select-bg.png);
  background-position: right 20px center;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.widget_archive select:focus,
.widget_categories select:focus,
.widget_text select:focus {
  border-color: #cecece;
  outline: none;
}

/* Navigation widget */
.widget_nav_menu ul > li {
  display: block;
}
.widget_nav_menu ul > li > a {
  display: inline-block;
  margin: 3px 0;
}
.widget_nav_menu ul > li:first-of-type a {
  margin-top: 0;
}

/* Search Box Widget */
.search-form label,
.sidebar .widget_search label {
  float: left;
  width: 65%;
}

.search-field {
  height: 50px;
  padding: 0px 20px;
  font-size: 13px;
  font-weight: normal;
  width: 100%;
  outline: none;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: #e6e6e6;
  border-radius: 1px 0 0 1px;
}

.search-submit {
  height: 50px;
  border: none;
  width: 35%;
  cursor: pointer;
  border-radius: 0 1px 1px 0;
}
.search-submit:hover {
  background-color: #9ab83f;
}

/* Navigation Widget */
.sidebar .widget_nav_menu .menu,
.content .widget_nav_menu .menu {
  padding: 0;
}
.sidebar .widget_nav_menu .menu li:last-of-type > a,
.content .widget_nav_menu .menu li:last-of-type > a {
  border-bottom: none;
}
.sidebar .widget_nav_menu .menu li a,
.content .widget_nav_menu .menu li a {
  display: block;
  padding: 16px 30px;
  font-size: 15px;
  font-weight: bold;
  color: #a5a5a5;
  background-color: #f5f5f5;
}
.sidebar .widget_nav_menu .menu li a:hover,
.content .widget_nav_menu .menu li a:hover {
  color: #ffffff;
}
.sidebar .widget_nav_menu .menu li .fa,
.content .widget_nav_menu .menu li .fa {
  margin-right: 9px;
  font-size: 16px;
}
.sidebar .widget_nav_menu .menu li.current-menu-item,
.content .widget_nav_menu .menu li.current-menu-item {
  background-color: var(--theme-color);
}
.sidebar .widget_nav_menu .menu li.current-menu-item a,
.content .widget_nav_menu .menu li.current-menu-item a {
  position: relative;
  color: #ffffff;
}
.sidebar .widget_nav_menu .menu li.current-menu-item a::after,
.content .widget_nav_menu .menu li.current-menu-item a::after {
  position: absolute;
  right: 25px;
  top: calc(50% - 11px);
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 15px;
  color: #ffffff;
}
.sidebar .widget_nav_menu .menu li .sub-menu,
.content .widget_nav_menu .menu li .sub-menu {
  padding-left: 0;
}
.widget_recent_entries ul li a, .widget_recent_comments ul li a, .widget_archive ul li a, .widget_categories ul li a, .widget_meta ul li a, .widget_rss ul li a, .widget_pages ul li a, .widget_calendar ul li a{
    color: var(--theme-color);
    line-height: 1;
    margin-bottom: 14px;
    display: block;
    font-size: 14px;
    font-weight: 400;
}
.widget-title{
    margin-bottom: 20px;
}
.content.detailes .post-inner .post-content{
    margin-left: 0;
}
body.single-post .social-sharing-buttons {
  margin: 0 0 50px 0;
}


.social-sharing-buttons {
  display: inline-block;
  margin: 30px 0 50px 0;
}
.social-sharing-buttons span {
  position: relative;
  float: left;
  margin-right: 12px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  text-align: center;
  line-height: 45px;
  border: 2px solid #f2f2f2;
}
.social-sharing-buttons span::after, .social-sharing-buttons span::before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.social-sharing-buttons span::after {
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #ffffff;
  border-width: 5px;
  margin-top: -5px;
}
.social-sharing-buttons span::before {
  border-color: rgba(194, 225, 245, 0);
  border-left-color: #f2f2f2;
  border-width: 8px;
  margin-top: -8px;
}
.social-sharing-buttons a {
  float: left;
  height: 50px;
  padding: 0 17.5px;
  text-align: center;
  line-height: 50px;
  margin-right: 5px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 1px;
}
.social-sharing-buttons a .fa {
  position: relative;
  top: 2px;
  font-size: 20px;
}
.social-sharing-buttons a:hover, .social-sharing-buttons a:active, .social-sharing-buttons a:focus {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
}
.social-sharing-buttons a.facebook {
  background: rgba(59, 89, 152, 0.7);
}
.social-sharing-buttons a.facebook:hover {
  background: #3b5998;
}
.social-sharing-buttons a.twitter {
  background: rgba(0, 172, 237, 0.7);
}
.social-sharing-buttons a.twitter:hover {
  background: #00aced;
}
.social-sharing-buttons a.gplus {
  background: rgba(221, 75, 57, 0.7);
}
.social-sharing-buttons a.gplus:hover {
  background: #dd4b39;
}
.social-sharing-buttons a.linkedin {
  background: rgba(0, 123, 182, 0.7);
}
.social-sharing-buttons a.linkedin:hover {
  background: #007bb6;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
    font-weight: bold;
    font-size: 16px;
    color: #000;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background-color: var(--theme-color);
    transition: all 100ms ease-out;
}
.index_form .btn-theme{
    
}
section p a,
section p a.text-theme{
    font-weight: 600;
    color: #ffb000;
}
.blog_card{
    position: relative;
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 20px;
}
.blog_img{
    height: 310px;
    width: 100%;
    position: relative;
}
.blog_img img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.blog_content{
    padding: 25px 20px 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    position: relative;
    z-index: 3;
    border-radius: 40px 40px 25px 25px;
    margin-top: -39px;
}
.content_upper{
    display: flex
    ;
    align-items: center;
    color: #222;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}
.content_upper i{
    color: var(--theme-color);
}
.blog_content .h3 a{
    color: #000;
    font-weight: 600;
    font-size: 23px;
    line-height: 1.3;
    display: block;
    transition: 0.3s;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.blog_content p{
    line-height: 1.6;
}
.blog_content .h3 a:hover{
    color: var(--theme-color);
}
.blog_date{
    position: absolute;
    z-index: 1;
    bottom: 0px;
    right: 0;
    border-radius: 8px 2px 0 0;
    background-color: var(--theme-color);
    display: flex
    ;
    flex-direction: column;
    text-align: center;
    padding: 17px;
    line-height: 1;
    font-weight: 600;
    color: #000;
    font-size: 22px;
    padding-bottom: 50px;
    span{
        font-weight: 400;
    }
}
.btn-icons {
    background-color: var(--theme-color);
    padding: 6px 6px 6px 20px;
    transition: 0.3s linear;
    font-weight: bold;
    font-size: 19px;
    border: none;
    color: #000;
    border-radius: 50px;
    display: inline-flex
    ;
    align-items: center;
    transition: 0.4s;
    gap: 15px;
    font-weight: 500;

}
.btn-icons  i{
    width: 40px;
    transition: 0.4s;
    height: 40px;
    display: inline-flex
    ;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--theme-color);
    background: #000;
    border-radius: 50%;
}
.btn-icons:hover{
    background-color: #000;
    color: #Fff;
}
.btn-icons:hover i{
    background-color: var(--theme-color);
    color: #fff;
}
@media(max-width: 768px){
    .blog_content .h3 a{
        font-size: 20px;
    }
    .top-bar .contact-item:nth-child(1),
    .top-bar .contact-item:nth-child(2){
        display: none;
    }
    .form_button .btn-theme{
        padding: 15px 38px;
        font-size: 16px;
    }
    .area-title{
        text-align: center;
        font-size: 30px;
        line-height: 1.1;
    }
    .section-padding{
        padding: 30px 0;
    }
}
.pages___form .container__inner{
    background: #fff;
    border-radius: 25px;
    border: 2px solid var(--theme-color);
    padding: 25px;
    box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.3);
}
.index_form{
    background: #fff;
    border-radius: 20px;
    z-index: 5;
    border: 2px solid var(--theme-color);
    padding-inline: 10px;
    position: relative;
}
.service-list-section{
    overflow: hidden;
}
.content article img{
    object-fit: cover;
    border-radius: 20px;
}
.content.detailes article img{
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}
.blog_sidelist{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 10px;
}
.list__box{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #ddd;
    padding: 10px;
}
.list__box .image{
    height: 100px;
    width: 30%;
    overflow: hidden;
    border-radius: 12px;
}
.list__box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list__box .content{
    width: 65%;
    padding-left: 15px;
}
.list__box .content .icon{
    color: #000;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 600;
}

.list__box .content .icon i{
    color: var(--theme-color);
}
.list__box .content .title{
    font-size: 15px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}
aside.sidebar .widget_categories.tags ul li{
    display: inline-block;
    padding: 0;
}
aside.sidebar .widget_categories.tags ul li a{

    position: relative;
    display: inline-block;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    background: var(--theme-color);
    padding: 7px 15px 7px;
}
aside.sidebar .widget_categories.tags{
    border-radius: 20px;
    border: 1px solid #aeaeae;
    padding: 20px;
}
.widget-title{
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
}

.widget-title:before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--theme-color);
    content: "";
}
img{
    max-width: 100%;
    height: auto;
}

.widget-title:after{
    position: absolute;
    left: 36px;
    bottom: 0;
    width: 3px;
    height: 2px;
    background: #fff;
    content: "";
}
.blog_image{
    text-align: center;

}
.blog_image .wp-caption-text{
    font-size: 20px;
    margin-top: 10px;
    font-weight: 600;
}
    .booking-from-area form{
        position: relative;
        border: 1px solid var(--theme-color);
        padding: 20px;
        border-radius: 20px;
    }

.select_cab{
#chooseCar table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#chooseCar th,
#chooseCar td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: middle;
}

#chooseCar th {
  font-weight: 600;
  color: #333;
}

#chooseCar tr {
  border-bottom: 1px solid #eee;
}.
#chooseCar tr:last-child {
  border-bottom: none;
}

/* Radio button alignment */
#chooseCar input[type="radio"] {
  transform: scale(1.2);
  margin-right: 8px;
  cursor: pointer;
}

/* Images */
#chooseCar img {
  border-radius: 10px;
  transition: transform 0.3s ease;
        height: 100px;
        width: auto;
        object-fit: contain;
}

#chooseCar img:hover {
  transform: scale(1.05);
}

/* Subtotal / Discount / Total rows */
.coupon_trr {
  background: #f9f9f9;
}

#subtotal,
#discount,
#totalAmount {
  text-align: right;
  font-weight: bold;
  color: #444;
}

/* Coupon input + button */
#couponDiv {
  margin: 20px 0;
  display: flex;
  gap: 10px;
}

#couponCode {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  transition: border 0.2s ease;
}

#couponCode:focus {
  border-color: var(--theme-color);
}

#applyCouponBtn {
  padding: 10px 20px;
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

#applyCouponBtn:hover {
  background: #005ec2;
}

/* Coupon message */
#couponmsg {
  margin-top: 8px;
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}

/* Buttons (Back & Next) */
.btns {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.nxtBtn {
  padding: 12px 24px;
  background: #28a745;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nxtBtn:hover {
  background: #218838;
  transform: translateY(-2px);
}

#back1 {
  background: #6c757d;
}

#back1:hover {
  background: #5a6268;
}
/* Personal info form */
#personalInfo label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

#personalInfo input,
#personalInfo textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  height: 50px;
  font-size: 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  font-family: Arial, sans-serif;
  background: #fff;
}

#personalInfo input:focus,
#personalInfo textarea:focus {
  border-color: var(--theme-color);
  box-shadow: nont;
}

#personalInfo input,
#personalInfo textarea {
  border-left: 3px solid var(--theme-color);
  padding-left: 12px;
}

#personalInfo textarea {
  min-height: 100px;
  resize: vertical;
}

#personalInfo .col-md-12 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

}
#fourthForm{
    margin-top: 60px; display: flex; flex-direction: column; gap: 20px;
}

.main_detailes{
    /* Title */
.summary-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  border-left: 4px solid var(--theme-color);
  padding-left: 10px;
}

/* Card wrapper */
.summary-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Table */
.summary-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.summary-table th,
.summary-table td {
  padding: 12px 16px;
  text-align: left;
}

.summary-table th {
  background: #f8f9fa;
  color: #444;
  font-weight: 600;
  width: 40%;
}

.summary-table td {
  color: #333;
}

/* Row styling */
.summary-table tr:nth-child(even) td {
  background: #fcfcfc;
}

.summary-table tr.highlight th,
.summary-table tr.highlight td {
  background: #f0f6ff;
  font-weight: 600;
}

.summary-table tr.total-row th,
.summary-table tr.total-row td {
  background: var(--theme-color);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

/* Payment section */
#paymentDiv {
  margin-top: 20px;
  text-align: center;
}

.payment-actions {
  margin-top: 15px;
}

/* Submit button override */
#booking_sub {
  background: #28a745;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

#booking_sub:hover {
  background: #218838;
  transform: translateY(-2px);
}

}
.other-services-sec{
    position: relative;
    display: block !important;
    padding: 20px 0;
    margin-bottom: 0;
    margin-block: -px;
    list-style-type: none;
}
.other-services-sec li{
    display: inline-block;
    padding-inline: 8px;
}
/*.other-services-sec li:first-child{
    padding-left: 0;
}
.other-services-sec li:last-child{
    padding-right: 0;
}*/
.other-services-sec li a{
    color: #222;
    font-weight: 600;
    font-size: 13px;
}
.other-services-sec li a:hover{
    color: var(--theme-color);
}
.text-center img{
    border-radius: 20px;
    border: 1px solid #777777;
}
.navbar-toggle-text{
    display: none;
}
.navbar-toggler.btn-theme{
    font-size: 21px;
    padding: 15px;
}