@charset "UTF-8";
@keyframes glowPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}
@keyframes iconBounce {
  0%, 100% {
    transform: translateX(8px) rotate(0deg);
  }
  25% {
    transform: translateX(12px) rotate(-5deg);
  }
  75% {
    transform: translateX(6px) rotate(5deg);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
  background-color: transparent;
  font-family: "Chivo", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  scroll-behavior: smooth;
}
body.blackbg {
  background-color: #000;
}

.container-fluid {
  padding: 0 150px;
}

.container {
  width: 100%;
  max-width: 1325px;
  padding: 0 15px;
  margin: 0px auto;
}

@media (max-width: 1399px) {
  .container {
    max-width: 1170px !important;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px !important;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px !important;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px !important;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100% !important;
  }
}
ul {
  margin-bottom: 0px !important;
}

ul li {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0 !important;
}

p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.32px;
  margin-bottom: 0 !important;
}

h2 {
  color: #000;
  font-size: 40px !important;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  padding-bottom: 20px;
}

h3 {
  color: #000;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  padding-bottom: 20px;
}

button:focus {
  outline: none !important;
}

.cuscol {
  margin-bottom: 30px;
}

.pt_70 {
  padding-top: 70px;
}

.pb_70 {
  padding-bottom: 70px;
}

.pt_40 {
  padding-top: 40px;
}

.pb_40 {
  padding-bottom: 40px;
}

.mb_70 {
  margin-bottom: 70px;
}

.mt_70 {
  margin-top: 70px;
}

.topbar {
  background-color: #c7b15f;
  padding: 10px 0;
}
.topbar ul {
  display: flex;
  justify-content: right;
}
.topbar ul li {
  display: flex;
  align-items: center;
  padding-right: 15px;
}
.topbar ul li .circle {
  min-width: 35px;
  min-height: 35px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  font-size: 18px;
  color: #fff;
}
.topbar ul li a {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.32px;
  padding-left: 10px;
  color: #1e1e1e;
}

/*========================================
    Header Css Begin 
==========================================*/
._header {
  padding: 10px 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 9;
  background-color: transparent;
}

.logo {
  display: flex;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding: 0;
  width: 15%;
}

.logo img {
  width: 100%;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-toggler-icon {
  height: auto;
}

.navbar-toggler-icon:focus,
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.navbar-toggler-icon .bar {
  height: 3px;
  width: 30px;
  background: #000;
  margin-bottom: 5px;
}

.navbar-toggler-icon .bar:last-child {
  margin-bottom: 0;
}

.change .bar-1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.change .bar-2 {
  opacity: 0;
}

.change .bar-3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

._mob-menu-hdr {
  display: block;
  padding: 10px 15px;
  background: #1e1e1e;
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

._mob-menu-hdr img {
  width: 100%;
}

.navbar-collapse {
  position: fixed;
  background: #ee0c0d;
  left: 0;
  top: 0;
  height: 100%;
  width: 280px;
  z-index: 2;
  display: block;
  transition: transform 0.5s;
  transform: translateX(-100%);
}

.navbar-collapse.show {
  transform: translateX(0%);
}

.collapse.show {
  display: block;
}

.clickD {
  right: 3px;
  background-position: center;
  top: 17px;
  position: absolute;
  transition: transform 0.5s;
  color: #000;
  font-size: 12px;
  transition: 0.5s;
  cursor: pointer;
}

.clickD i::before {
  content: "\f107";
}

.navbar .navbar-nav > li:hover .clickD {
  color: #000;
}

.navbar .navbar-nav > li .clickD.toggled {
  transform: rotate(0deg);
}

.sub-menu {
  position: relative;
  opacity: 1;
  visibility: visible;
  display: none;
  width: 100%;
  padding: 10px 0;
  border-radius: 5px;
  z-index: 99;
}

.sub-menu li a {
  display: block;
}

.clickD.toggled ~ .sub-menu,
.toggled .sub-menu {
  display: block;
  top: 0;
  background: #252981;
}

._overHidden {
  overflow: hidden;
}

.navbar .navbar-nav > li {
  padding: 11px 0;
  position: relative;
}

.navbar .navbar-nav > li.active a {
  color: #000;
}

.navbar .navbar-nav > li:last-child {
  border-bottom: none;
}
.navbar .navbar-nav > li:last-child::after {
  display: none;
}
.navbar .navbar-nav > li:last-child .sub-menu {
  width: 40px;
  margin-left: 0;
  top: 25px;
  left: 2px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
}
.navbar .navbar-nav > li:last-child .sub-menu li {
  padding: 10px 12px;
  transition: 0.5s;
}
.navbar .navbar-nav > li:last-child .sub-menu li a {
  border: 0;
}
.navbar .navbar-nav > li:last-child .sub-menu li a img {
  border-radius: 3px;
}
.navbar .navbar-nav > li:last-child .sub-menu li:hover {
  background-color: #000;
}

.navbar li a {
  position: relative;
  color: #000;
  display: block;
  font-size: 15px;
  padding: 0 12px;
  text-decoration: none;
  transition: 0.5s;
  font-weight: 400;
  text-transform: capitalize;
}

.navbar li a.ride {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 5px 30px;
  margin-left: 50px;
  color: #fff;
}
.navbar li a.ride::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.navbar li a.ride::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.navbar li a.ride i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.navbar li a.ride:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.navbar li a.ride:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.navbar li a.ride:hover::after {
  left: 150%;
}
.navbar li a.ride:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.navbar li a.ride:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.navbar li a.ride:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.navbar li a.ride:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.navbar li a.ride:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.navbar li a.ride:disabled:hover::before {
  opacity: 0;
}
.navbar li a.ride:disabled:hover::after {
  left: -100%;
}
.navbar li a.ride:disabled:hover i {
  transform: translateX(0);
}
.navbar li a.ride:hover {
  background-color: #fff;
  color: #fff;
}

.navbar li.active a {
  color: #c7b15f;
}

.navbar-collapse.collapse:not(.show) {
  display: block;
}

.navbar .navbar-nav > li a::after {
  position: absolute;
  width: 100%;
  bottom: -32px;
  height: 3px;
  border-radius: 8px 8px 0 0;
  content: "";
  transition: all 0.5s ease 0s;
  background-color: #c7b15f;
  left: 50%;
  transform: translate(-50%) scale(0);
}

.navbar .navbar-nav > li a:hover::after {
  transform: translate(-50%) scale(1);
}

.navbar .navbar-nav > li a.active::after {
  transform: translate(-50%) scale(1);
}

.labo {
  width: 130px;
  height: 100%;
}
.labo img {
  width: 100%;
}

@media (max-width: 991px) {
  .navbar .navbar-nav > li.active a {
    color: #ba8f2a;
  }
  .clickD i {
    display: block;
  }
  .navbar li a i {
    display: none;
  }
}
ul.ml-auto {
  margin-left: auto !important;
  align-items: center;
  justify-content: right;
  padding-right: 100px;
}

.navbar li a:hover {
  color: #c7b15f;
}

.navbar li a.active {
  color: #c7b15f;
}

.navbar-toggler {
  padding: 0;
  border: 0;
}

.navbar .navbar-nav > li.tgle::after {
  display: none;
}
.navbar .navbar-nav > li.tgle a .openbtn:hover {
  color: #000;
}

ul.mbl_side {
  display: flex;
  align-items: center;
}
ul.mbl_side li.ctbtn a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 15px;
  border-color: transparent;
}
ul.mbl_side li.ctbtn a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
ul.mbl_side li.ctbtn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
ul.mbl_side li.ctbtn a i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
ul.mbl_side li.ctbtn a:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
ul.mbl_side li.ctbtn a:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
ul.mbl_side li.ctbtn a:hover::after {
  left: 150%;
}
ul.mbl_side li.ctbtn a:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
ul.mbl_side li.ctbtn a:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
ul.mbl_side li.ctbtn a:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
ul.mbl_side li.ctbtn a:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
ul.mbl_side li.ctbtn a:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
ul.mbl_side li.ctbtn a:disabled:hover::before {
  opacity: 0;
}
ul.mbl_side li.ctbtn a:disabled:hover::after {
  left: -100%;
}
ul.mbl_side li.ctbtn a:disabled:hover i {
  transform: translateX(0);
}
ul.mbl_side li.ctbtn a.trans {
  background: transparent;
  border: 1px solid #fff;
  color: #000;
}
ul.mbl_side li.ctbtn a:hover {
  color: #fff !important;
}

ul.mbl_side li {
  margin-right: 10px;
}

ul.mbl_side li:nth-child(2) {
  width: 131px;
}

ul.mbl_side li:last-child {
  width: 162px;
}

.navbar .navbar-nav > li.mobibk:hover::after {
  display: none;
}

.navbar .navbar-nav > li.mobibk a {
  background-color: #000;
  border-radius: 4px;
  text-transform: capitalize;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 24px;
  font-weight: 500;
  transition: 0.5s;
  padding: 10px 25px;
}

.navbar .navbar-nav > li.mobibk:hover a {
  color: #000;
}

/* SideBar */
.btn_side::after {
  display: none;
}

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99999999;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}
.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.sidebar a:hover {
  color: #f1f1f1;
}
.sidebar .side_conarea {
  padding-left: 20px;
  padding-right: 20px;
}
.sidebar .side_conarea .sidelogo {
  padding-bottom: 20px;
  padding-left: 0;
  border-bottom: 1px solid #fff;
}
.sidebar .side_conarea p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.32px;
  color: #fff;
  padding-top: 15px;
}
.sidebar .side_conarea h6 {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 10px;
}
.sidebar .side_conarea ul.sidecont {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}
.sidebar .side_conarea ul.sidecont li {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
}
.sidebar .side_conarea ul.sidecont li a {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.32px;
  color: #fff;
  font-weight: 600;
  padding: 0;
}
.sidebar .side_conarea ul.sidecont li a i {
  padding-right: 8px;
}
.sidebar .side_conarea ul.sidecont li.side_add {
  display: flex;
  align-items: flex-start;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.32px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.sidebar .side_conarea ul.sidecont li.side_add i {
  padding-right: 15px;
  padding-top: 5px;
}
.sidebar .side_conarea .sidemap {
  height: 190px;
}
.sidebar .side_conarea .sidefb {
  padding-top: 15px;
}
.sidebar .side_conarea .sidefb ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar .side_conarea .sidefb ul li {
  padding: 0 15px;
}
.sidebar .side_conarea .sidefb ul li a {
  min-width: 40px;
  min-height: 40px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #000;
  font-weight: 500;
  padding: 0;
}
.sidebar .side_conarea .sidefb a.sdebknow {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  color: #000;
  font-weight: 700;
}
.sidebar .side_conarea .sidefb a.sdebknow::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.sidebar .side_conarea .sidefb a.sdebknow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.sidebar .side_conarea .sidefb a.sdebknow i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.sidebar .side_conarea .sidefb a.sdebknow:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.sidebar .side_conarea .sidefb a.sdebknow:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.sidebar .side_conarea .sidefb a.sdebknow:hover::after {
  left: 150%;
}
.sidebar .side_conarea .sidefb a.sdebknow:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.sidebar .side_conarea .sidefb a.sdebknow:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.sidebar .side_conarea .sidefb a.sdebknow:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.sidebar .side_conarea .sidefb a.sdebknow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.sidebar .side_conarea .sidefb a.sdebknow:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.sidebar .side_conarea .sidefb a.sdebknow:disabled:hover::before {
  opacity: 0;
}
.sidebar .side_conarea .sidefb a.sdebknow:disabled:hover::after {
  left: -100%;
}
.sidebar .side_conarea .sidefb a.sdebknow:disabled:hover i {
  transform: translateX(0);
}
.sidebar .side_conarea .sidefb a.sdebknow:hover {
  background-color: #fff;
}
.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: transparent;
  color: white;
  padding: 0px 10px;
  border: none;
}

#main {
  transition: margin-left 0.5s;
  padding: 16px;
  margin-left: 0 !important;
}

.login {
  display: flex;
  margin-left: auto;
}
.login li {
  padding-right: 15px;
}
.login li a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: #000;
  font-weight: 400;
  color: #fff;
}
.login li a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.login li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.login li a i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.login li a:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.login li a:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.login li a:hover::after {
  left: 150%;
}
.login li a:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.login li a:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.login li a:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.login li a:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.login li a:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.login li a:disabled:hover::before {
  opacity: 0;
}
.login li a:disabled:hover::after {
  left: -100%;
}
.login li a:disabled:hover i {
  transform: translateX(0);
}
.login li a.lgin {
  background: transparent;
  color: #000;
}

/* SideBar */
@media (min-width: 992px) {
  ._mob-menu-hdr {
    display: none;
  }
  .navbar-collapse {
    position: unset;
    transform: translate(0);
    background: transparent;
    border: none;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
  }
  .navbar-nav {
    flex-direction: row;
    padding-left: 50px;
    width: 100%;
  }
  .navbar-toggler {
    display: none;
  }
  .clickD i {
    display: none;
  }
  .sub-menu {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    width: 350px;
    background: #fff;
    box-shadow: -7.794px 4.5px 20px rgba(17, 79, 160, 0.17);
    top: 110%;
    padding: 10px 0;
    border-radius: 5px;
    z-index: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
    -ms-transition: all 0.4s;
    opacity: 0;
    padding-top: 0;
    left: 0;
  }
  .sub-menu h3 {
    width: 100%;
    padding: 10px 20px;
    border-bottom: 1px solid #c7b15f;
    margin-bottom: 20px !important;
  }
  .sub-menu::before {
    position: absolute;
    content: "";
    background-image: url(../images/Icon-2.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top right;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
  }
  .sub-menu.SUB li {
    padding: 7px 15px 0px 10px;
  }
  .sub-menu.SUB li:last-child {
    padding: 5px 15px 7px 10px;
  }
  .sub-menu.SUB li:hover {
    background-color: #de544a;
  }
  .sub-menu.SUB li:hover a {
    color: #fff;
  }
  .sub-menu.SUB li a:hover {
    border-bottom: 0px;
  }
  .sub-menu li {
    list-style: none;
    width: 50%;
    padding-right: 10px;
  }
  .sub-menu li:hover {
    color: #000;
  }
  .navbar .navbar-nav > li .sub-menu li.active a {
    color: #000;
  }
  .navbar .sub-menu li:last-child a {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .sub-menu li:hover a {
    border-color: #000;
  }
  .navbar .sub-menu li:hover a {
    color: #c7b15f;
    border-color: #c7b15f;
  }
  .navbar .sub-menu li:hover a::after {
    display: none;
  }
  .navbar .sub-menu li a {
    color: #000;
    padding: 10px 10px;
    border-bottom: 1px solid #1a1a1a;
    border-bottom-style: dotted;
    transition: 0.5s;
    text-transform: capitalize;
  }
  .navbar .sub-menu li a::after {
    display: none;
  }
  .navbar .sub-menu li a.active {
    color: #c7b15f;
  }
  .menu-item-has-children .clickD.toggled ~ .sub-menu {
    display: block;
    top: 100%;
    visibility: visible;
    opacity: 1;
    background: #fff;
  }
  ._header._menu_fixed {
    position: fixed;
    z-index: 99999999 !important;
    width: 100%;
    top: 0;
    transition: top 0.3s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: #fff;
    -webkit-backdrop-filter: blur(7.5999999046px);
    backdrop-filter: blur(7.5999999046px);
  }
  ._header._menu_fixed .clickD {
    color: #fff;
    top: 45%;
  }
  ._header._menu_fixed .navbar li:hover .clickD {
    color: #000;
  }
  ._header._menu_fixed .nav_soal ul li:hover a {
    color: #fff;
  }
  ._header._menu_fixed .navbar li a:hover {
    color: #c7b15f;
  }
  ._header._menu_fixed .navbar li a.ride:hover {
    color: #fff;
    background-color: #fff;
  }
  ._header._menu_fixed .navbar li a.active {
    color: #c7b15f;
  }
  ._header._menu_fixed .navbar .sub-menu li a {
    color: #000;
  }
  ._header._menu_fixed .navbar .sub-menu li:hover a {
    color: #c7b15f;
  }
  .menu-item-has-children:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
    z-index: 5;
  }
  ._header._menu_fixed .menu-item-has-children:hover .sub-menu {
    top: 64px;
  }
  .menu-item-has-children .bknow {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 15px 35px;
    color: #fff;
    border-radius: 30px;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .menu-item-has-children .bknow::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .menu-item-has-children .bknow::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
  }
  .menu-item-has-children .bknow i {
    padding-left: 18px;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(0) rotate(0deg);
    display: inline-block;
  }
  .menu-item-has-children .bknow:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
    color: #000;
  }
  .menu-item-has-children .bknow:hover::before {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
  }
  .menu-item-has-children .bknow:hover::after {
    left: 150%;
  }
  .menu-item-has-children .bknow:hover i {
    transform: translateX(8px) rotate(0deg);
    animation: iconBounce 0.6s ease;
  }
  .menu-item-has-children .bknow:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
  }
  .menu-item-has-children .bknow:focus {
    outline: none;
    box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
  }
  .menu-item-has-children .bknow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    filter: grayscale(0.5);
  }
  .menu-item-has-children .bknow:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  }
  .menu-item-has-children .bknow:disabled:hover::before {
    opacity: 0;
  }
  .menu-item-has-children .bknow:disabled:hover::after {
    left: -100%;
  }
  .menu-item-has-children .bknow:disabled:hover i {
    transform: translateX(0);
  }
  .menu-item-has-children .bknow:hover {
    background: #fff;
    color: #000;
  }
  .menu-item-has-children .bknow:hover::after {
    background-color: transparent;
  }
}
@media (max-width: 1024px) {
  .main_head .navbar-nav .clickD {
    position: absolute;
    right: -5px;
    top: 50%;
    width: 10px;
    height: 5px;
    border-top: 5px solid #fff;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    cursor: pointer;
    display: block;
    background-size: 10px;
    z-index: 9999;
    transform: translateY(-50%);
  }
  .main_head ul.navbar-nav li .clickD + .sub-menu {
    opacity: 0;
    visibility: hidden;
  }
  .main_head ul.navbar-nav li .clickD.toggled + .sub-menu {
    position: absolute;
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
/*========================================
  Header Css End
  ==========================================*/
/*********************************
    Banner section start
*********************************/
.banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 100px 0;
}
.banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(269.98deg, rgba(0, 0, 0, 0) 0.01%, #000000 111.34%);
}
.banner .leftcap {
  width: 95%;
  position: relative;
}
.banner .leftcap h1 {
  font-size: 56px;
  padding-bottom: 30px;
  color: #fff;
  font-weight: 700;
}
.banner .leftcap h1 span {
  color: #c7b15f;
}
.banner .leftcap p {
  color: #fff;
}
.banner .leftcap ul {
  display: flex;
  align-items: center;
}
.banner .leftcap ul li {
  margin-right: 14px;
}
.banner .leftcap ul li a {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.32px;
  text-transform: none;
  color: #fff;
}
.banner .leftcap ul.twobtn {
  margin-top: 10px;
  flex-direction: row;
}
.banner .leftcap ul.twobtn li {
  margin-right: 20px;
}
.banner .leftcap ul.twobtn li a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #fff;
}
.banner .leftcap ul.twobtn li a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.banner .leftcap ul.twobtn li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.banner .leftcap ul.twobtn li a i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.banner .leftcap ul.twobtn li a:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.banner .leftcap ul.twobtn li a:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.banner .leftcap ul.twobtn li a:hover::after {
  left: 150%;
}
.banner .leftcap ul.twobtn li a:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.banner .leftcap ul.twobtn li a:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.banner .leftcap ul.twobtn li a:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.banner .leftcap ul.twobtn li a:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.banner .leftcap ul.twobtn li a:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.banner .leftcap ul.twobtn li a:disabled:hover::before {
  opacity: 0;
}
.banner .leftcap ul.twobtn li a:disabled:hover::after {
  left: -100%;
}
.banner .leftcap ul.twobtn li a:disabled:hover i {
  transform: translateX(0);
}
.banner .leftcap ul.twobtn li a.trabs {
  background: transparent;
  border: 1px solid #fff;
}
.banner .leftcap ul.twobtn li a.trabs:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.banner .leftcap ul.bnrcon {
  padding-bottom: 20px;
}
.banner .leftcap ul.bnrcon li {
  padding-right: 10px;
}
.banner .leftcap ul.bnrcon li a {
  position: relative;
  padding-left: 20px;
}
.banner .leftcap ul.bnrcon li a::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #c7b15f;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.banner .leftcap .fa-arrow-down-long {
  position: absolute;
  bottom: -45%;
  left: 0;
  font-size: 50px;
  color: #fff;
}

/*********************************
    Banner section end
*********************************/
p.cenp {
  color: #000;
  text-align: center;
  margin: 0px auto;
}

.commshadow {
  border-radius: 30px;
  background-color: #c7b15f;
  padding: 10px 15px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
  line-height: 141px;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #c7b15f 10, transparent);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-block;
  background: #c7b15f;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title span {
  color: #c7b15f;
  position: relative;
  display: inline-block;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 30px;
}

.btn-primary-custom {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}
.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.btn-primary-custom::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.btn-primary-custom i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.btn-primary-custom:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.btn-primary-custom:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.btn-primary-custom:hover::after {
  left: 150%;
}
.btn-primary-custom:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.btn-primary-custom:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.btn-primary-custom:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.btn-primary-custom:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.btn-primary-custom:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.btn-primary-custom:disabled:hover::before {
  opacity: 0;
}
.btn-primary-custom:disabled:hover::after {
  left: -100%;
}
.btn-primary-custom:disabled:hover i {
  transform: translateX(0);
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Services Section */
.services-section {
  padding: 60px 0;
  background: #ffffff;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  transition: all 0.5s ease;
}

.service-card:hover::before {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.service-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}

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

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  color: white;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #c7b15f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(360deg);
}

.service-title {
  color: #fff;
}

/* Stats Section */
.stats-section {
  background-color: #000;
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #c7b15f 20, transparent);
  border-radius: 50%;
  top: -200px;
  left: -100px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  position: relative;
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  color: #c7b15f;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

/* Fleet Section */
.fleet-section {
  background: #f8f9fa;
}

.fleet-card {
  background: #fff;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.fleet-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.05);
}

.fleet-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #c7b15f;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}

.fleet-body {
  padding: 30px;
}

.fleet-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.fleet-text {
  font-size: 14px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 20px;
}

.fleet-features {
  display: none;
  gap: 15px;
  margin-bottom: 20px;
}

.fleet-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #000;
}

.fleet-feature i {
  color: #c7b15f;
}

.btn-outline-custom {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}
.btn-outline-custom::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.btn-outline-custom::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.btn-outline-custom i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.btn-outline-custom:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.btn-outline-custom:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.btn-outline-custom:hover::after {
  left: 150%;
}
.btn-outline-custom:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.btn-outline-custom:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.btn-outline-custom:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.btn-outline-custom:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.btn-outline-custom:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.btn-outline-custom:disabled:hover::before {
  opacity: 0;
}
.btn-outline-custom:disabled:hover::after {
  left: -100%;
}
.btn-outline-custom:disabled:hover i {
  transform: translateX(0);
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background: white;
}

.benefit-card {
  padding: 40px 30px;
  background: white;
  border-radius: 15px;
  border-left: 4px solid #c7b15f;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  margin-bottom: 30px;
}

.benefit-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
  border-left-width: 6px;
}

.benefit-number {
  font-size: 48px;
  font-weight: 800;
  color: #c7b15f;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 15px;
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.benefit-text {
  font-size: 14px;
  color: #000;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section h2 {
  color: #000;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  padding: 20px 40px;
  height: 100%;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 48px;
  color: #c7b15f;
  /* margin-bottom: 20px; */
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 10px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c7b15f, #b8941f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: #c7b15f;
}

/* Partners Section */
.partner-logo {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: all 0.3s ease;
  height: 120px;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo img {
  max-width: 150px;
  max-height: 80px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: url("../images/chauffeur-service-in-London.webp") center/cover no-repeat;
  position: relative;
  color: white;
}
.cta-section h2 {
  color: #fff;
  font-weight: 700;
}
.cta-section p {
  color: #fff;
  padding-bottom: 30px;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(212, 175, 55, 0.3));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.btn-cta {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}
.btn-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.btn-cta i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.btn-cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.btn-cta:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.btn-cta:hover::after {
  left: 150%;
}
.btn-cta:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.btn-cta:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.btn-cta:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.btn-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.btn-cta:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.btn-cta:disabled:hover::before {
  opacity: 0;
}
.btn-cta:disabled:hover::after {
  left: -100%;
}
.btn-cta:disabled:hover i {
  transform: translateX(0);
}

/* FAQ Section */
.faq-accordion .card {
  border: none;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-accordion .card-header {
  background: white;
  border: none;
  padding: 0;
}

.faq-accordion .btn-link {
  width: 100%;
  text-align: left;
  padding: 25px 30px;
  color: #000;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-accordion .btn-link:hover {
  color: #c7b15f;
}

.faq-accordion .btn-link i {
  transition: all 0.3s ease;
  color: #c7b15f;
}

.faq-accordion .btn-link.collapsed i {
  transform: rotate(0deg);
}

.faq-accordion .btn-link:not(.collapsed) i {
  transform: rotate(180deg);
}

.faq-accordion .card-body {
  padding: 0 30px 25px 30px;
  color: #000;
  line-height: 1.8;
}

.markdiv h2 {
  text-align: center;
}

.scrolling-ticker-box {
  --gap: 18px;
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: var(--gap);
  align-items: center;
}

.scrolling-content {
  flex-shrink: 0;
  display: flex;
  /* gap: var(--gap); */
  min-width: 100%;
  animation: scroll 40s linear infinite;
}

.scrolling-content span {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  color: #000;
  vertical-align: middle;
  position: relative;
  padding: 0 30px;
  border-right: 1px solid rgb(148, 148, 148);
  width: 235px;
  height: 120px;
}
.scrolling-content span img {
  width: 95%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
/* Responsive */
@media (max-width: 768px) {
  .stat-number {
    font-size: 48px;
  }
  .cta-title {
    font-size: 36px;
  }
  .about-image {
    transform: none;
    margin-top: 40px;
  }
  .service-card {
    height: 350px;
  }
}
/* Hero Section */
.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text {
  flex: 1;
}

.hero-description {
  font-size: 16px;
  line-height: 1.8;
}

/* Why Choose Section */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.accordion-container {
  display: flex;
  gap: 40px;
}

.accordion-column {
  flex: 1;
}

.custom-accordion {
  background: transparent;
}

.accordion-item {
  background: #f8f9fa;
  border: none;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.accordion-item.active {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
}

.accordion-button {
  width: 100%;
  padding: 20px 30px;
  background-color: transparent !important;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
.accordion-button::after {
  display: none;
}

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

.accordion-number {
  font-size: 20px;
  font-weight: 700;
  margin-right: 15px;
  color: #000;
  min-width: 30px;
}

.accordion-item.active .accordion-number {
  color: #c7b15f;
}

.accordion-title-text {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.accordion-icon {
  width: 30px;
  height: 30px;
  background: #c7b15f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-icon i {
  color: white;
  font-size: 12px;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-body {
  padding: 15px;
  font-size: 15px;
  line-height: 1.7;
}

/* Process Steps */
.process-section {
  padding: 80px 0;
}

.process-container {
  background: white;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, #c7b15f, #c7b15f);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 90px;
  height: 90px;
  background: white;
  border: 3px solid #c7b15f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  font-weight: 700;
  color: #c7b15f;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.process-step:hover .step-number {
  background: #c7b15f;
  color: white;
  transform: scale(1.1);
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.step-arrow {
  position: absolute;
  right: -30px;
  top: 34px;
  font-size: 24px;
  color: #c7b15f;
  z-index: 2;
}

.process-step:last-child .step-arrow {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .accordion-container {
    flex-direction: column;
  }
  .process-steps {
    flex-direction: column;
    gap: 0;
  }
  .process-steps::before {
    display: none;
  }
  .step-arrow {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hero-image img {
    height: 350px;
  }
  .process-container {
    padding: 30px 20px;
  }
}
/* Left Side - Scrollable Content */
.content-left {
  padding-right: 20px;
}

.event-services-section {
  padding-top: 70px;
}

.event-services-section p {
  padding-bottom: 15px;
}

.event-image {
  display: flex;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  /* width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
}

img.aorport {
  width: 100%;
  padding-bottom: 30px;
}

/* Features Grid */
.features-section {
  margin-top: 60px;
}

.features-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #000;
}
.feature-item a {
  color: #000;
}

.feature-item i {
  color: #c7b15f;
  font-size: 18px;
  margin-top: 3px;
}

/* FAQ Section */
.faq-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.faq-item {
  background: rgba(247, 227, 121, 0.1254901961);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #c7b15f;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.faq-item.active {
  background: #c7b15f;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  transition: all 0.3s ease;
}
.faq-question.toursingfq {
  color: #fff;
}

.faq-item.active .faq-question {
  color: #000;
}

.disc ul li {
  list-style: disc !important;
  padding-bottom: 10px;
}

.faq-icon {
  font-size: 14px;
  transition: all 0.3s ease;
  color: #fff;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 25px;
}
.faq-answer ul.list {
  padding-left: 30px;
}
.faq-answer ul.list li {
  list-style-type: disc !important;
  padding-bottom: 10px;
}

.faq-item.active .faq-answer {
  max-height: 100%;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  color: #000;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.faq-item.active .faq-answer p {
  color: #000;
}

.termsPage h3 {
  padding: 15px 0;
}
.termsPage p {
  padding-bottom: 15px;
}
.termsPage .disc ul {
  padding-left: 30px;
}

/* Right Side - Fixed Sidebar */
.content-right {
  position: sticky;
  top: 0;
  /* padding-top: 115px; */
  scrollbar-width: none;
}

.services-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.service-link {
  display: block;
  padding: 18px 25px;
  background: #c7b15f;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.3s ease;
  z-index: 0;
}

.service-link:hover::before {
  left: 0;
}

.service-link span {
  position: relative;
  z-index: 1;
}

.service-link:hover {
  color: #000;
}

.call-center-box {
  background: #c7b15f;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
}

.call-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.call-icon i {
  color: #000;
  font-size: 24px;
}

.call-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.call-number {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.call-number:hover {
  color: white;
}

.sightsenimg {
  position: relative;
  height: 100%;
  display: block;
}
.sightsenimg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(235deg, rgb(23, 23, 23) 0, rgba(247, 227, 121, 0.5) 100%);
}
.sightsenimg img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  padding-bottom: 0;
}
.sightsenimg .cap {
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.sightsenimg .cap h3 {
  color: #fff;
  padding-bottom: 10px;
}
.sightsenimg .cap p {
  color: #fff;
}

/* About Main Section */
.aboutmain_new {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.aboutmain_new::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #c7b15f 5, transparent);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  z-index: 0;
}

.aboutmain_new .container {
  position: relative;
  z-index: 1;
}

.feature-card {
  background: #fff;
  padding: 30px 30px;
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c7b15f, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #c7b15f, #f0d478);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.feature-icon i {
  font-size: 32px;
}

/* Why Choose Us Section */
.why-choose-image {
  width: 100%;
  height: 100%;
  min-height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.image-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #c7b15f 30, transparent);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  z-index: 0;
}

.image-wrapper {
  position: relative;
}

.accordion-modern {
  background: transparent;
}

.accordion-item-modern {
  background: #f8f9fa;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.accordion-item-modern.active {
  background: white;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.accordion-header-modern {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header-modern:hover {
  background: rgba(212, 175, 55, 0.05);
}

.accordion-title-modern {
  font-size: 20px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.accordion-toggle-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-toggle-icon i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.accordion-item-modern.active .accordion-toggle-icon {
  transform: rotate(0);
}

.accordion-content-modern {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item-modern.active .accordion-content-modern {
  max-height: 500px;
}

.accordion-body-modern {
  padding: 0 30px 30px 30px;
  font-size: 15px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-image {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  .feature-icon i {
    font-size: 28px;
  }
  .accordion-title-modern {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .accordion-header-modern {
    padding: 20px;
  }
  .accordion-body-modern {
    padding: 0 20px 20px 20px;
  }
}
.tourmainOutr h2 {
  text-align: center;
}

.tourcard {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  height: 100%;
}

.tourcard:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.tourcard-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.tourcard-image .carousel {
  height: 100%;
}

.tourcard-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.tourcard:hover .tourcard-image img {
  transform: scale(1.1);
}

.tourcard-body {
  padding: 15px 20px;
}
.tourcard-body p {
  padding-bottom: 15px;
}

.tourcard-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #636e72;
}

.tourcard-info i {
  color: #000;
  margin-right: 10px;
  font-size: 16px;
}

.tourcard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
  margin-top: 20px;
}

.tourcard-price {
  display: flex;
  align-items: center;
}

.price-label {
  font-size: 13px;
  color: #636e72;
}

.price-amount {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  line-height: 1;
  padding-left: 15px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tourcard:hover .carousel-control-prev,
.tourcard:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

@media (max-width: 768px) {
  .tourcard-title {
    font-size: 20px;
  }
  .price-amount {
    font-size: 28px;
  }
  .section-title {
    font-size: 32px;
  }
}
.homefrmsec {
  /* intl-tel-input custom styling */
  /* Loading state */
}
.homefrmsec p {
  padding-bottom: 30px;
}
.homefrmsec a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}
.homefrmsec a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.homefrmsec a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.homefrmsec a i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.homefrmsec a:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.homefrmsec a:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.homefrmsec a:hover::after {
  left: 150%;
}
.homefrmsec a:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.homefrmsec a:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.homefrmsec a:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.homefrmsec a:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.homefrmsec a:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.homefrmsec a:disabled:hover::before {
  opacity: 0;
}
.homefrmsec a:disabled:hover::after {
  left: -100%;
}
.homefrmsec a:disabled:hover i {
  transform: translateX(0);
}
.homefrmsec .contact-form-container {
  padding: 30px;
  border: 0.5px solid rgb(248, 215, 48);
  background: linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 1px) calc(100% - 1px) no-repeat, linear-gradient(90deg, #ccab54 0%, #f4e980 100%);
  box-sizing: content-box;
  width: 85%;
  margin-left: auto;
}
.homefrmsec .contact-form-container h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  text-align: left;
}
.homefrmsec .form_group {
  margin-bottom: 20px;
}
.homefrmsec .form_group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.homefrmsec .form_input,
.homefrmsec .form_select,
.homefrmsec .form_textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: white;
  transition: border-color 0.3s ease;
}
.homefrmsec .form_input:focus,
.homefrmsec .form_select:focus,
.homefrmsec .form_textarea:focus {
  outline: none;
  border-color: #daa520;
  box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.1);
}
.homefrmsec .form_textarea {
  resize: vertical;
  min-height: 100px;
}
.homefrmsec .submit_btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 0;
  outline: none;
}
.homefrmsec .submit_btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.homefrmsec .submit_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.homefrmsec .submit_btn i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.homefrmsec .submit_btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.homefrmsec .submit_btn:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.homefrmsec .submit_btn:hover::after {
  left: 150%;
}
.homefrmsec .submit_btn:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.homefrmsec .submit_btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.homefrmsec .submit_btn:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.homefrmsec .submit_btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.homefrmsec .submit_btn:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.homefrmsec .submit_btn:disabled:hover::before {
  opacity: 0;
}
.homefrmsec .submit_btn:disabled:hover::after {
  left: -100%;
}
.homefrmsec .submit_btn:disabled:hover i {
  transform: translateX(0);
}
.homefrmsec .submit_btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.homefrmsec .error {
  border-color: #ff4444 !important;
}
.homefrmsec .error-message {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
}
.homefrmsec .iti {
  width: 100%;
}
.homefrmsec .iti__flag-container {
  border-right: 1px solid #ddd;
}
.homefrmsec .loading {
  position: relative;
}
.homefrmsec .loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #c7b15f;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

.rideoverview {
  background-color: #000;
}

.rideoverview h2 {
  color: #fff;
  display: flex;
  align-items: center;
}

.rideoverview p {
  padding-bottom: 15px;
  color: #fff;
}

.rideoverview .inclided ul li {
  padding: 0 30px;
}

.rideoverview .inclided ul:first-child {
  border-right: 1px solid #fff;
}

.rideoverview .inclided ul.red li {
  margin-left: 30px;
}

.rideoverview .inclided h2 i.grenn {
  padding-right: 20px;
  color: #27c840;
}

.rideoverview .inclided h2 i.red {
  padding-right: 20px;
  color: #b3261e;
}

.rideoverview .inclided ul li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  padding-bottom: 15px;
  margin-left: 60px;
}

.rideoverview .inclided ul li::before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  top: 0;
  left: 0;
  color: #27c840;
  font-size: 16px;
}

.rideoverview .inclided ul.secnd li::before {
  content: "\f057";
  color: #b3261e;
}

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

.highlight .lightcard .imgsec {
  height: 180px;
}
.highlight .lightcard .imgsec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.highlight .lightcard .capsec {
  padding: 15px;
}
.highlight .lightcard .capsec h3 {
  text-align: center;
}
.highlight .lightcard .capsec p {
  text-align: center;
}

/* Blog Section */
.blog-section {
  background: transparent;
}

.blog-header {
  margin-bottom: 60px;
}

.blog-main-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.blog-subtitle {
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper {
  position: relative;
  height: 225px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #c7b15f;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 13px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-title {
  color: #c7b15f;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c7b15f;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.read-more i {
  transition: all 0.3s ease;
}

.blog-card:hover .read-more i {
  transform: translateX(5px);
}

.read-more-btn {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}
.read-more-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.read-more-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.read-more-btn i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.read-more-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.read-more-btn:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.read-more-btn:hover::after {
  left: 150%;
}
.read-more-btn:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.read-more-btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.read-more-btn:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.read-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.read-more-btn:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.read-more-btn:disabled:hover::before {
  opacity: 0;
}
.read-more-btn:disabled:hover::after {
  left: -100%;
}
.read-more-btn:disabled:hover i {
  transform: translateX(0);
}

.load-more-container {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}
.load-more-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.load-more-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.load-more-btn i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.load-more-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.load-more-btn:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.load-more-btn:hover::after {
  left: 150%;
}
.load-more-btn:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.load-more-btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.load-more-btn:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.load-more-btn:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.load-more-btn:disabled:hover::before {
  opacity: 0;
}
.load-more-btn:disabled:hover::after {
  left: -100%;
}
.load-more-btn:disabled:hover i {
  transform: translateX(0);
}

.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.end-message {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  display: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.end-message.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.end-message i {
  font-size: 16ox;
  color: #000;
  margin-bottom: 15px;
}

.end-message p {
  color: #666;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-item {
  display: none;
}

.blog-item.visible {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-card-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card-body {
  padding: 30px;
}

.mainBlogsec h2 {
  text-align: center;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  color: #888;
  font-size: 0.9rem;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: #c7b15f;
}

@media (max-width: 768px) {
  .blog-card-body {
    padding: 20px;
  }
}
/* Responsive */
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-main-title {
    font-size: 36px;
  }
}
.prevPost {
  /* Responsive Design */
}
.prevPost .article-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.prevPost .nav-item {
  flex: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}
.prevPost .nav-item:hover .nav-title {
  color: #34495e;
}
.prevPost .nav-label {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2c3e50;
  margin-bottom: 10px;
}
.prevPost .nav-label i {
  margin-right: 8px;
}
.prevPost .nav-item.next .nav-label {
  justify-content: flex-end;
}
.prevPost .nav-item.next .nav-label i {
  margin-right: 0;
  margin-left: 8px;
}
.prevPost .nav-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.prevPost .nav-item.next .nav-title {
  text-align: right;
}
@media (max-width: 768px) {
  .prevPost .article-nav {
    flex-direction: column;
    gap: 30px;
  }
  .prevPost .nav-item.next .nav-label,
  .prevPost .nav-item.next .nav-title {
    justify-content: flex-start;
    text-align: left;
  }
  .prevPost .nav-item.next .nav-label i {
    margin-left: 0;
    margin-right: 8px;
    order: -1;
  }
  .prevPost .share-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .prevPost .share-label {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .prevPost .nav-title {
    font-size: 16px;
  }
  .prevPost .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

.blogsingcont p {
  padding-bottom: 15px;
}
.blogsingcont p a {
  color: #000;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
}
.blogsingcont p a:hover {
  color: #c7b15f;
}

.iti--allow-dropdown input[type=tel] {
  padding: 6px 15px !important;
}

.commentfromArea .inerfrmarea {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.commentfromArea .form-fields {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.commentfromArea .form-fields > div {
  flex: 1;
}
.commentfromArea .submit-btn {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}
.commentfromArea .submit-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.commentfromArea .submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.commentfromArea .submit-btn i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.commentfromArea .submit-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.commentfromArea .submit-btn:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.commentfromArea .submit-btn:hover::after {
  left: 150%;
}
.commentfromArea .submit-btn:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.commentfromArea .submit-btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.commentfromArea .submit-btn:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.commentfromArea .submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.commentfromArea .submit-btn:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.commentfromArea .submit-btn:disabled:hover::before {
  opacity: 0;
}
.commentfromArea .submit-btn:disabled:hover::after {
  left: -100%;
}
.commentfromArea .submit-btn:disabled:hover i {
  transform: translateX(0);
}

.mainconus .contact-header {
  text-align: center;
  animation: fadeInDown 0.8s ease;
}
.mainconus .contact-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}
.mainconus .info-section {
  background-color: #c7b15f;
  color: white;
  padding: 50px 40px;
  height: 100%;
}
.mainconus .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.mainconus .info-item:hover {
  transform: translateX(10px);
}
.mainconus .info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.mainconus .info-content h5 {
  font-size: 18;
  padding-bottom: 10px;
  font-weight: 600;
}
.mainconus .info-content p {
  color: #fff;
}
.mainconus .info-content p a {
  display: block;
  color: #fff;
}
.mainconus .form-section {
  padding: 50px 40px;
}
.mainconus .form-section .subtitle {
  padding-bottom: 15px;
}
.mainconus .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.mainconus .form-control,
.mainconus .form-control:focus {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.mainconus .form-control:focus {
  border-color: #c7b15f;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}
.mainconus textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.mainconus .submit-btn {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  margin-left: auto;
  display: table;
}
.mainconus .submit-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.mainconus .submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.mainconus .submit-btn i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.mainconus .submit-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.mainconus .submit-btn:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.mainconus .submit-btn:hover::after {
  left: 150%;
}
.mainconus .submit-btn:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.mainconus .submit-btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.mainconus .submit-btn:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.mainconus .submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.mainconus .submit-btn:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.mainconus .submit-btn:disabled:hover::before {
  opacity: 0;
}
.mainconus .submit-btn:disabled:hover::after {
  left: -100%;
}
.mainconus .submit-btn:disabled:hover i {
  transform: translateX(0);
}
.mainconus .social-links {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.mainconus .social-links h5 {
  padding-bottom: 20px;
  font-size: 20;
}
.mainconus .social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}
.mainconus .social-icon:hover {
  background: white;
  color: #667eea;
  transform: translateY(-5px);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .mainconus .info-section {
    padding: 40px 30px;
  }
  .mainconus .form-section {
    padding: 40px 30px;
  }
}
@media (max-width: 576px) {
  .mainconus .info-section,
  .mainconus .form-section {
    padding: 30px 20px;
  }
}

.stickytourfrm {
  position: sticky;
  top: 0;
  padding-top: 115px;
  scrollbar-width: none;
}

.commcntctus {
  padding: 30px;
  background-color: #c7b15f;
}
.commcntctus .btn.btn-submit {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 35px;
  color: #fff;
  border-radius: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}
.commcntctus .btn.btn-submit::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.commcntctus .btn.btn-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.commcntctus .btn.btn-submit i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotate(0deg);
  display: inline-block;
}
.commcntctus .btn.btn-submit:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #D4B962 0%, #E5C76A 100%);
  color: #000;
}
.commcntctus .btn.btn-submit:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.commcntctus .btn.btn-submit:hover::after {
  left: 150%;
}
.commcntctus .btn.btn-submit:hover i {
  transform: translateX(8px) rotate(0deg);
  animation: iconBounce 0.6s ease;
}
.commcntctus .btn.btn-submit:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(203, 176, 91, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.commcntctus .btn.btn-submit:focus {
  outline: none;
  box-shadow: 0 12px 35px rgba(203, 176, 91, 0.5), 0 0 0 4px rgba(203, 176, 91, 0.3);
}
.commcntctus .btn.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}
.commcntctus .btn.btn-submit:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(203, 176, 91, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #CBB05B 0%, #D4B962 100%);
}
.commcntctus .btn.btn-submit:disabled:hover::before {
  opacity: 0;
}
.commcntctus .btn.btn-submit:disabled:hover::after {
  left: -100%;
}
.commcntctus .btn.btn-submit:disabled:hover i {
  transform: translateX(0);
}

.banner.inrbnr {
  background-position: center center;
}
.banner.inrbnr .leftcap h1 {
  text-align: center;
}
.banner.inrbnr .leftcap p {
  text-align: center;
  margin: 0px auto;
  width: 80%;
}
.banner.inrbnr .leftcap ul.twobtn {
  justify-content: center;
}

.iti {
  width: 100%;
  padding-left: 40px;
}

.four_0_four {
  background-color: #000;
  position: relative;
}

.four_0_four h1 {
  font-weight: 400;
  font-size: 690px;
  text-align: center;
  background: linear-gradient(180deg, #898989 0%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.four_0_four .cap44 {
  position: absolute;
  width: 80%;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.four_0_four .cap44 h2 {
  text-align: center;
  color: #fff;
}

.four_0_four img.thnkimg {
  margin: 0px auto;
  display: block;
  width: 70%;
}

.four_0_four h2 {
  color: #1e1e1e;
  font-size: 48px !important;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 20px;
  text-align: center;
  color: #263238;
  padding-bottom: 12px;
}

.four_0_four h2::after {
  display: none;
}

.four_0_four a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 40px;
  color: #fff;
  border-radius: 8px;
  border: 0.5px solid #fff;
  background: linear-gradient(45deg, #cbb05b 0%, #cbb05b 50%, #e9dbad 50%, #e9dbad 100%);
  background-size: 200% 100%;
  background-position: left;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  margin: 0px auto;
  display: table;
  transition: 0.5s;
}

.four_0_four a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.four_0_four a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.four_0_four a i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(0);
}

.four_0_four a:hover {
  background-position: right;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.four_0_four a:hover::before {
  left: 100%;
}

.four_0_four a:hover::after {
  width: 300px;
  height: 300px;
}

.four_0_four a:hover i {
  color: #fff;
  transform: translateX(5px);
}

.four_0_four a:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.four_0_four a:active::after {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.15);
}

.four_0_four a:focus {
  outline: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.four_0_four a:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.four_0_four a:disabled:hover {
  transform: none;
  background-position: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.four_0_four a:disabled:hover::before {
  left: -100%;
}

.thanku {
  background-color: #000;
}

.thanku h1 {
  font-weight: 400;
  font-size: 340px;
  text-align: center;
  background: linear-gradient(180deg, #898989 0%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thanku h2 {
  text-align: center;
  color: #fff;
}

.thanku img.thnk {
  width: 50%;
  margin: auto;
  display: block;
}

.thanku a.backhme {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 15px 40px;
  color: #fff;
  border-radius: 8px;
  border: 0.5px solid #fff;
  background: linear-gradient(45deg, #cbb05b 0%, #cbb05b 50%, #e9dbad 50%, #e9dbad 100%);
  background-size: 200% 100%;
  background-position: left;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 0px auto;
  display: table;
  margin-top: 20px;
}

.thanku a.backhme::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.thanku a.backhme::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.thanku a.backhme i {
  padding-left: 18px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(0);
}

.thanku a.backhme:hover {
  background-position: right;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.thanku a.backhme:hover::before {
  left: 100%;
}

.thanku a.backhme:hover::after {
  width: 300px;
  height: 300px;
}

.thanku a.backhme:hover i {
  color: #fff;
  transform: translateX(5px);
}

.thanku a.backhme:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.thanku a.backhme:active::after {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.15);
}

.thanku a.backhme:focus {
  outline: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.thanku a.backhme:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.thanku a.backhme:disabled:hover {
  transform: none;
  background-position: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.thanku a.backhme:disabled:hover::before {
  left: -100%;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
  color: white;
  font-size: 32px;
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #25d366;
}

.whatsapp-sticky:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .whatsapp-btn i {
    font-size: 26px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}
.footer-main {
  background-color: #1e1e1e;
  padding: 60px 0 40px;
}

.footer-logo {
  width: 200px;
  filter: brightness(0) invert(1);
  height: auto;
  margin-bottom: 20px;
}

.footer-description {
  color: #fff;
}

.footer-title {
  color: #fff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list li a {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.32px;
  color: #fff;
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.footrmap {
  height: 100%;
}
.footrmap iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-list li a:hover {
  color: #c7b15f;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-contact-item i {
  font-size: 18px;
  color: #c7b15f;
  min-width: 40px;
  min-height: 40px;
  background-color: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  border: 1px solid #fff;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #c7b15f;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.footer-social a {
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #fff;
  color: #c7b15f;
  border-radius: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.footer-social a i {
  font-size: 18px;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #1e1e1e;
  padding: 20px 0;
  border-top: 1px solid #fff;
}

.footer-copyright {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  text-align: center;
}
.footer-copyright.powerd {
  display: flex;
  justify-content: center;
}
.footer-copyright.powerd a.logi {
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px;
  }
  .footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 30px;
  }
  .footer-description {
    font-size: 13px;
  }
  .footer-list li a {
    font-size: 14px;
  }
  .footer-contact-item {
    font-size: 14px;
  }
}
/*****************************
    Scroll to top css start
*****************************/
.scrollTop {
  position: fixed;
  right: 2%;
  bottom: 10px;
  padding: 0px;
  opacity: 0;
  z-index: 3;
  transition: all 0.4s ease-in-out 0s;
}
.scrollTop span a {
  width: 62px;
  height: 62px;
  border-radius: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 7px solid #fff;
}

.bottToparrow {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.bottToparrow img {
  padding-bottom: 3px;
  stroke: #000;
  fill: transparent;
  stroke-width: 1px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite;
}

@keyframes arrow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.bottToparrow img.bottompath1 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s; /* Safari 和 Chrome */
}

.bottToparrow img.bottompath2 {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s; /* Safari 和 Chrome */
}

.bottToparrow img.bottompath3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s; /* Safari 和 Chrome */
}

/*****************************
    Scroll to top css end
*****************************//*# sourceMappingURL=style.css.map */

/* Blog single banner */
.post-meta {
  display: flex;
  gap: 40px;
  align-items: center;
  color: #fff;
  justify-content: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meta-icon i {
  color: #fff;
  font-size: 18px;
}

.meta-text {
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 1.2;
}

.meta-label {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.7;
  text-transform: uppercase;
}

.meta-text strong {
  font-size: 18px;
  font-weight: 700;
}

.meta-item:hover .meta-icon {
  background: rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .post-meta {
    flex-direction: column;
    gap: 15px;
  }
  .meta-text strong {
    font-size: 16px;
  }
}
