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

:root {

  /* Colors */

  --theme-color: #fff;
  --theme-color-second: #DEA537;

  /* Fonts */

  --heading-font: "heading";
  --paragraph-font: "Poppins", sans-serif;
  --span-font: "Urbanist", sans-serif;

  /* Shadows */

  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);

}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;

}

body {
  margin: 0;
  padding: 0;
  outline: none;
  font-size: 17px;
  color: #fff;
  background-color: #171717;
  overflow-x: hidden;
  font-family: var(--paragraph-font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: color 0.3s ease;

}

@font-face {
  font-family: "heading";
  src: url(../fonts/times.ttf);
}

a:hover {
  text-decoration: none;
  transition: color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  font-family: var(--heading-font);
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 35px;
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}



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




.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}



.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: #171717;
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop>div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 146px;
}


.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  background: #DEA537;
  background: linear-gradient(182deg, rgba(222, 165, 55, 1) 0%, rgba(247, 216, 81, 1) 50%, rgba(222, 165, 55, 1) 100%);
  color: #000;
  display: inline-block;
  font-size: 14px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 13rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  border: 2px solid var(--theme-color-second);
}

a.comon-btn:hover {
  background: var(--theme-color-second);
  background: #DEA537;
  background: linear-gradient(182deg, rgba(247, 216, 55, 1) 0%, rgba(222, 165, 55, 1) 50%, rgba(222, 165, 55, 1) 100%);
  color: #000000;
}

a.btn-transparent {
  background: #DEA537;
  background: linear-gradient(182deg, rgba(222, 165, 55, 0) 0%, rgba(247, 216, 81, 0) 50%, rgba(222, 165, 55, 0) 100%);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: var(--theme-color);
  font-size: 14px;
  text-transform: capitalize;
  padding: 29px 13px;
  display: inline-block;
  font-weight: 500;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #000 !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #171717 !important;
  z-index: 9999;
}

#main_header .hd_info {
  flex-wrap: nowrap;
}

/* ================= Banner ================= */
.banner_sec {
  padding: 60px 0 250px;
  background-position: bottom !important;
}

.banner_sec h1,
.banner_sec p {
  text-shadow: 1px 1px 1px #000;
}

/* ================= Section 1 ================= */
.home_sec_1 {
  background-position-x: 0% !important;
}

.home_sec_1 .custom-font-box {
  background-color: #171717;
  color: #fff;
}

.home_sec_1 form ::placeholder {
  color: #fff;
}

/* Heading arrows */
.home_sec_1 .heading .title-head {
  position: relative;
}

.home_sec_1 .heading .title-head::before,
.home_sec_1 .heading .title-head::after {
  content: "";
  position: absolute;
  top: 11px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.home_sec_1 .heading .title-head::before {
  border-right: 12px solid #f4a000;
  left: 0;
}

.home_sec_1 .heading .title-head::after {
  border-left: 12px solid #f4a000;
  right: 0;
}

/* ================= Form Styling ================= */

.home_sec_1 form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #ced4da;
  letter-spacing: 1px;
}

.home_sec_1 form input,
.home_sec_1 form select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background-color: #171717;
  border: 1px solid rgba(202, 174, 104, 0.2);
  border-radius: 0.5rem;
  color: hsl(var(--foreground));
  transition: all 0.25s ease;
}

/* Input Hover + Focus */
.home_sec_1 form input:hover,
.home_sec_1 form select:hover {
  border-color: #DEA537;
}

.home_sec_1 form input:focus,
.home_sec_1 form select:focus {
  outline: none;
  border-color: #F7D851;
  box-shadow: 0 0 0 2px rgba(247, 216, 81, 0.15);
}

/* ================= Button ================= */

.home_sec_1 form button {
  width: 100%;
  background: linear-gradient(182deg,
      rgba(222, 165, 55, 1) 0%,
      rgba(247, 216, 81, 1) 50%,
      rgba(222, 165, 55, 1) 100%);
  color: #000;
  font-size: 14px;
  padding: 12px 6px;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--theme-color-second);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Button Hover */
.home_sec_1 form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(222, 165, 55, 0.35);
}

/* Button Click */
.home_sec_1 form button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(222, 165, 55, 0.25);
}

/* ================= Section 2 Cards ================= */

.home_sec_2 .content {
  background: #0a0a0a;
  box-shadow: 0 0 13px rgba(56, 56, 56, 0.6);
  border-radius: 35px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;

  color: #fff;

}

/* Card Hover Effect */
.home_sec_2 .content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

/* Optional subtle glow line on hover */
.home_sec_2 .content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      #DEA537,
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home_sec_2 .content:hover::after {
  opacity: 1;
}

/* ================= Typography ================= */

.home_sec_2 .content h4 {
  font-size: 26px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.home_sec_2 .content:hover h4 {
  color: #F7D851;
}

/* ================= Images ================= */

.home_sec_2 .content a img {
  width: 45px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.home_sec_2 .content:hover a img {
  transform: scale(1.08);
}

.home_sec_2 .content .top_img img {
  width: 100px;
  margin: -70px auto 28px;
}

.home_sec_2 .top_header img {
  width: 25px;
}

.top_header img {
  width: 25px;
}

.home_sec_2 .service-box {
  border-radius: 20px;
}


/* ================= Section 4 ================= */

.home_sec_4 {
  background-position: top !important;
  background-position-x: 100% !important;
}

/* Content Box */

.home_sec_4 .content-box {
  border: 1px solid #ededed;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;

}

/* Hover Effect (subtle professional lift) */

.home_sec_4 .content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  border-color: #DEA537;
}

/* Text */

.home_sec_4 .content-box h4 {
  font-size: 20px;
  margin-bottom: 6px;

  transition: color 0.3s ease;
}

.home_sec_4 .content-box:hover h4 {
  color: #DEA537;
}

.home_sec_4 .content-box p {
  margin-bottom: 0;
  line-height: 1.6;

}

/* Image */

.home_sec_4 .content-box img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  flex-shrink: 0;

  transition: transform 0.3s ease;
}

.home_sec_4 .content-box:hover img {
  transform: scale(1.08);
}

/* Responsive Improvement */

@media (max-width: 576px) {
  .home_sec_4 .content-box {
    gap: 15px;
    padding: 16px;
  }

  .home_sec_4 .content-box img {
    width: 55px;
    height: 55px;
  }

  .home_sec_4 .content-box h4 {
    font-size: 18px;
  }
}

/* ================= Section 5 ================= */

.home_sec_5 .car-box {
  border-radius: 10px;
  padding: 20px;
  height: 100%;

  background: linear-gradient(182deg,
      rgba(123, 84, 18, 1) 0%,
      rgba(210, 150, 47, 1) 20%,
      rgba(123, 84, 18, 1) 100%);

  position: relative;
  overflow: hidden;

  transition: all 0.35s ease;
}

/* Hover Effect */

.home_sec_5 .car-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Title */

.home_sec_5 .car-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Badge */

.home_sec_5 .car-box p.badge-area {
  display: inline-block;
  padding: 5px 16px;
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 25px;

  transition: all 0.3s ease;
}

.home_sec_5 .car-box:hover p.badge-area {
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

/* Image */

.home_sec_5 .car-box img {
  height: 200px;
  width: 100%;
  object-fit: contain;

  transition: transform 0.35s ease;
}



/* Content */

.home_sec_5 .car-box .content-car {
  margin-top: 15px;
}

.home_sec_5 .car-box .content-car h5 {
  margin-bottom: 0;
  font-size: 25px;

}

.home_sec_5 .car-box .content-car p {
  margin-bottom: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Optional subtle shine effect */

.home_sec_5 .car-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
  transition: all 0.6s ease;
}

.home_sec_5 .car-box:hover::before {
  left: 125%;
}

/* Responsive */

@media (max-width: 768px) {
  .home_sec_5 .car-box img {
    height: 170px;
  }

  .home_sec_5 .car-box h3 {
    font-size: 22px;
  }

  .home_sec_5 .car-box .content-car h5 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .home_sec_5 .car-box {
    padding: 18px;
  }

  .home_sec_5 .car-box img {
    height: 150px;
  }
}

/* ================= Section 6 - Reviews ================= */

.home_sec_6 .review-box .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: orange;
}

/* Scrollable Content */

.home_sec_6 .review-box .content {
  height: 150px;
  margin-bottom: 35px;

  overflow-y: auto;
  padding-right: 6px;

  /* Smooth scrolling */
  scroll-behavior: smooth;

  /* Hide scrollbar (Firefox) */
  scrollbar-width: none;
}

/* Hide scrollbar (Chrome / Edge / Safari) */

.home_sec_6 .review-box .content::-webkit-scrollbar {
  display: none;
}

/* Optional hover scroll visibility (professional UX) */

.home_sec_6 .review-box:hover .content::-webkit-scrollbar {
  display: block;
  width: 6px;
}

.home_sec_6 .review-box:hover .content::-webkit-scrollbar-thumb {
  background: #DEA537;
  border-radius: 10px;
}

/* Author Section */

.home_sec_6 .auther {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Author Name */

.home_sec_6 .auther h5 {
  font-family: var(--paragraph-font);
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Author Icon */

.home_sec_6 .auther img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Optional Review Box Hover */

.home_sec_6 .review-box {
  transition: all 0.3s ease;
}

.home_sec_6 .review-box:hover {
  transform: translateY(-4px);
}

/* ================= Section 7 - Owl Dots ================= */

.home_sec_7 .owl-dots {
  background-color: rgba(255, 255, 255, 0.34);
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 320px;
  margin: 10px auto 0;

  border-radius: 999px;

}

/* Dot base */

.home_sec_7 .owl-dots .owl-dot span {
  width: 45px;
  height: 6px;
  display: block;

  border-radius: 60px;


  transition: all 0.3s ease;
}

/* Active dot */

.home_sec_7 .owl-dots .owl-dot.active span {
  background-color: #fff;
  transform: scaleY(1.2);
}

/* Hover effect */

.home_sec_7 .owl-dots .owl-dot:hover span {
  background-color: #ffffffcc;
}

/* Responsive */

@media (max-width: 576px) {

  .home_sec_7 .owl-dots {
    width: 240px;
  }

  .home_sec_7 .owl-dots .owl-dot span {
    width: 32px;
    height: 5px;
  }

}

/* ================= Section 8 Accordion ================= */

.home_sec_8 .accordion-item {
  background: linear-gradient(182deg,
      rgba(222, 165, 55, 1) 0%,
      rgba(247, 216, 81, 1) 50%,
      rgba(222, 165, 55, 1) 100%);

  border: none;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

/* Button */

.home_sec_8 .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
  transition: all 0.3s ease;
  color: #000 !important;
}

/* Remove default Bootstrap focus glow */

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

/* Hover effect */


/* Plus / Minus Icon */

.home_sec_8 .accordion-button::after {
  content: "+";
  width: 30px;
  height: 30px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #966d1a;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  background-image: none !important;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

/* Open state */

.home_sec_8 .accordion-button:not(.collapsed)::after {
  content: "-";
  transform: rotate(180deg);
}

/* Body */

.home_sec_8 .accordion-body {

  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.6;
}

/* Optional smooth collapse animation */

.home_sec_8 .accordion-collapse {
  transition: height 0.3s ease;
}

/* Mobile tuning */

@media (max-width: 576px) {

  .home_sec_8 .accordion-button {
    font-size: 15px;
    padding: 14px 16px;
  }

  .home_sec_8 .accordion-button::after {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

}

.home_sec_9 {
  padding: 180px 0 80px;
}

/* ================= Footer ================= */

.footer {
  padding: 80px 0;
  background-position: bottom !important;
}

/* Contact Box */

.footer .contact-box {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  border: 2px solid #fff;
  padding: 25px;
  transition: all 0.3s ease;
}

.footer .contact-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* Heading */

.footer .contact-box h5 {
  font-family: var(--paragraph-font);
  font-size: 26px;
  margin-bottom: 20px;
}

/* ================= Contact List ================= */

.footer .contact-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .contact-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

/* Icon */

.footer .contact-list li a i {
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid #fff;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer .contact-list li a:hover i {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
}

/* ================= Footer Links Section ================= */

.footer .ft-heading h5 {
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

/* Link List */

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

.footer .ft-heading .ft-link li {
  margin-bottom: 14px;
}

/* Links */

.footer .ft-heading .ft-link a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

/* Hover underline animation */

.footer .ft-heading .ft-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 0;
  height: 2px;

  background: #F7D851;
  transition: width 0.3s ease;
}

.footer .ft-heading .ft-link a:hover {
  color: #F7D851;
}

.footer .ft-heading .ft-link a:hover::after {
  width: 100%;
}

/* ================= Responsive ================= */

@media (max-width: 768px) {

  .footer .contact-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

}

@media (max-width: 576px) {

  .footer {
    padding: 60px 0;
  }

  .footer .contact-box h5 {
    font-size: 22px;
  }

  .footer .ft-heading h5 {
    font-size: 20px;
  }

  .footer .contact-list li a i {
    width: 40px;
    height: 40px;
  }

}

/* =========================
   Contact Page
========================= */

.contact-info-content {
  background: transparent;
  padding: 30px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 3px solid var(--theme-color-second);
}

/* Icon */
.contact-info-content .icon {
  width: 60px;
  height: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #966d1a;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
}

/* Icon Info */
.contact-info-content .icon-info {
  margin-top: 20px;
}

.contact-info-content .icon-info h4 {
  color: var(--theme-color-third);
  font-weight: 400;
  margin-bottom: 4px;
}

.contact-info-content .icon-info p {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 400;
  word-break: break-word;
}

.contact-info-content .icon-info a {
  color: var(--theme-color);
  font-size: 19px;
  font-weight: 400;
  text-decoration: none;
}

/* Required field note */
.contact-info span {
  color: #cb1818;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.6px;
}

/* Form Heading */
.contact-page-form h2 {
  color: var(--theme-color-third);
  font-size: 40px;
}

/* Map */
.map {
  line-height: 0;
}

.map iframe {
  width: 100%;
}

/* =========================
   Form Fields (Unified)
========================= */

.contact-info input,
.contact-info select,
.contact-info textarea {
  width: 100%;
  padding: 15px 8px;
  border-radius: 3px;
  border: 1px solid var(--theme-color);
  background: #fff;
  color: var(--theme-color-third);
  font-weight: 400;
  outline: none;
  box-shadow: none;
}

/* Focus State */
.contact-info input:focus,
.contact-info select:focus,
.contact-info textarea:focus {
  border-color: var(--theme-color);
  box-shadow: none;
}

/* Button */
.contact-info button {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-radius: 3px;
  background: var(--theme-color-second);
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.contact-info button:hover {
  opacity: 0.9;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: baseline;
  padding-left: 0;
}

.form-check input {
  width: 25px;
}


/* =========================
   Blog Page 28-04-2026
========================= */

.blog_sec .blog-box {
  border: 1px solid var(--theme-color-second);
  padding: 10px;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.blog_sec .blog-box:hover {
  transform: translateY(-10px);
}


.blog_sec .blog-box p {
  margin-bottom: 0;
}


.blog_sec .blog-box .img-box {
  border-radius: 15px;
  overflow: hidden;
}

.blog_sec .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
}

.blog_sec .pagination .page.active {
  background: var(--theme-color-second);
  color: #fff;
}

.blog_sec .pagination .page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 15px;
  text-decoration: none;
  color: #000;
  border: 1px solid var(--theme-color-second);
  border-radius: 6px;
  transition: .3s ease;
}


/* =========================
   Inner Blog Left
========================= */
.inner-blog-left-sec {
  padding: 15px 19px 35px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .41);
}

.inner-blog-left-sec p {
  color: rgba(17, 17, 17, .67);
}

.inner-blog-left-sec h3 {
  font-weight: 600;
  margin-bottom: 18px;
}

.inner-blog-left-sec img {
  width: 100%;
  border-radius: 5px;
}

/* Blog Heading */
.inner-blog-left-sec .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .blog-head p {
  margin-bottom: 12px;
  color: #606060;
}

.inner-blog-left-sec .blog-head i {
  font-size: 16px;
  margin-right: 3px;
  color: var(--theme-color);
}

/* Share Section */
.inner-blog-left-sec .share-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(28, 28, 28, .17);
}

.inner-blog-left-sec .share-sec ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.inner-blog-left-sec .share-sec a {
  color: rgba(17, 17, 17, .35);
}

.inner-blog-left-sec .share-sec i {
  font-size: 17px;
  color: var(--theme-color);
}

/* =========================
   Navigation Cards
========================= */
.inner-blog-left-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation a,
.inner-blog-left-sec .navigation i {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .blog-contain {
  height: 100%;
  padding: 25px 18px;
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(149, 157, 165, .2);
}

.inner-blog-left-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .blog-content h3 {
  color: #000;
}

.inner-blog-left-sec .blog-content p {
  color: rgba(17, 17, 17, .67);
}

.inner-blog-left-sec .blog-content strong {
  color: rgba(17, 17, 17, .35);
}

.inner-blog-left-sec .blog-content .blog-head {
  justify-content: space-between;
}

/* =========================
   Comment Form
========================= */
.inner-blog-comment .contact-form {
  padding: 20px 25px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  border: 1px solid rgba(69, 69, 70, .2);
  box-shadow: 0 8px 24px rgba(149, 157, 165, .2);
}

.inner-blog-comment input,
.inner-blog-comment textarea {
  width: 100%;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid rgba(28, 28, 28, .23);
  outline: none;
}

.inner-blog-comment button {
  width: 100%;
  padding: 15px 20px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  border-radius: 8px;
  transition: .5s;
}

.inner-blog-comment button:hover {
  background: rgba(28, 28, 28, .23);
  border-color: rgba(28, 28, 28, .23);
  color: #000;
}

/* =========================
   Admin Section
========================= */
.inner-blog-left-sec .admin-sec p {
  color: rgba(17, 17, 17, .67);
}

.inner-blog-left-sec .admin-info-content {
  padding: 10px 20px;
  border-top: 1px solid rgba(28, 28, 28, .23);
  border-bottom: 1px solid rgba(28, 28, 28, .23);
}

.inner-blog-left-sec .admin-info-content ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.inner-blog-left-sec .admin-info-content i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-info-content a {
  color: rgba(17, 17, 17, .67);
}

/* =========================
   Right Sidebar
========================= */
.inner-blog-right-sec {
  padding: 35px 21px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .41);
}

/* Search */
.inner-blog-right-sec .blog-search form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 5px;
  border: 1px solid rgba(28, 28, 28, .23);
}

.inner-blog-right-sec input {
  width: 100%;
  border: 0;
  outline: 0;
}

.inner-blog-right-sec button {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  color: #111;
}

/* Popular Posts */
.inner-blog-right-sec .popular-cards1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 0;
  border-top: 1px solid rgba(28, 28, 28, .23);
}

.inner-blog-right-sec .popular-cards1 img {
  width: 130px;
}

.inner-blog-right-sec .popular-cards1 a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(17, 17, 17, .67);
}

.inner-blog-right-sec .popular-cards1 p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(17, 17, 17, .67);
}

.inner-blog-right-sec .heading {
  width: 100%;
}

/* =========================
   Policies Section
========================= */
.polioyies_sec h1 {
  font-size: 40px;
  text-transform: capitalize;
}

.polioyies_sec h2 {
  font-size: 35px;
}

.polioyies_sec h3 {
  font-size: 30px;
}

.polioyies_sec h4 {
  font-size: 25px;
}


.polioyies_sec ul {
  list-style: disc;
  padding-left: 20px;
}

.polioyies_sec li {
  margin-bottom: 15px;
}

/* =========================
   Service Page 28-04-2026
========================= */

.service_psec_1 img {
  border-radius: 20px;
}

/* =========================
   About Page 28-04-2026
========================= */

.about_psec_1 img {
  border-radius: 20px;
}

.about_psec_1 .counter-box {
  /* border: 1px solid red; */
  display: flex;
  align-items: center;
  gap: 10px;
}

.about_psec_1 .number {
  display: flex;
  flex-direction: column;
}

.about_psec_1 .number span {
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
}

.about_psec_1 .counter-box .icon {
  background-color: #fff5e2;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 10px;
  color: var(--theme-color-second);
}

.about_psec_2 .value_box {
  border: 1px solid var(--theme-color-second);
  padding: 25px;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
}

.about_psec_2 .value_box .icon {
  background-color: #fff5e2;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--theme-color-second);
  margin-bottom: 20px;
}


.about_psec_2 .value_box:hover {
  background-color: var(--theme-color-second);
  border: 1px solid var(--theme-color-second);
  transform: translateY(-10px);
}


#grad-sec {
  background-position: top !important;
  position: relative;
}

#grad-sec .container {
  position: relative;
  z-index: 111;
}

#grad-sec::before {
  content: "";
  background: #EDF2F5;
  background: linear-gradient(300deg, rgba(237, 242, 245, 0) 0%, rgba(0, 0, 0, 1) 76%);
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}


.our_luxuries_fleet .tabs-wrapper {
  position: relative;
}


.our_luxuries_fleet .tabs-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

}

.our_luxuries_fleet .custom-tabs {
  flex-wrap: nowrap;
  gap: 15px;
  padding-bottom: 20px;
}

.our_luxuries_fleet button.nav-link {
  color: #fff;
  font-size: 14px;
  border: none;
}

.our_luxuries_fleet .nav-tabs .nav-item.show .nav-link,
.our_luxuries_fleet .nav-tabs .nav-link.active {
  color: #fff;
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
}

.our_luxuries_fleet .tabs-scroll::-webkit-scrollbar {
  display: none;
}

.our_luxuries_fleet .tabs-scroll .nav {
  flex-wrap: nowrap;
}

.our_luxuries_fleet .tabs-scroll .nav-item {
  flex: 0 0 auto;
}

.our_luxuries_fleet .tab-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: #fff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.our_luxuries_fleet .tab-arrow.left {
  left: -10px;
}

.our_luxuries_fleet .tab-arrow.right {
  right: -10px;
}

.our_luxuries_fleet .tab-arrow i {
  font-size: 20px;
  color: #000;
}

/* Optional: hide arrows on mobile if you want */
@media (max-width: 576px) {
  .our_luxuries_fleet .tab-arrow {
    display: none;
  }
}

.our_luxuries_fleet .fleet-box .price {
  color: var(--theme-color-second);
  font-size: 25px;
}

.img-fluid {
  width: 100%;
}

.our_luxuries_fleet .fleet-box .passenger-info{
  display: flex;
gap: 10px;
color: var(--theme-color-second);
}

#car-book.home_sec_1 .custom-font-box {
    background-color: #00000057;
    color: #fff;
}
#car-book.home_sec_1 form label {
   
    color: #ffffff;
    
}
/* Main Menu */
#Mobile-menu{
    list-style: none;
    padding: 0;
    margin: 0;
}

#Mobile-menu > li{
    position: relative;
}

/* Main Links */
#Mobile-menu > li > a{
    display: inline-block;
    text-transform: capitalize;
    text-decoration: none;
}

/* Active Menu */
#Mobile-menu .current-menu-item > a{
    color: #c59d5f; /* change according to design */
}

/* Dropdown Parent */
#Mobile-menu li.menu-item-has-children{
    position: relative;
    padding-right: 20px;
}

/* Arrow Icon */
#Mobile-menu li.menu-item-has-children::after{
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 3px;
    font-size: 14px;
}

/* Sub Menu */
#Mobile-menu .sub-menu{
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: none;
}

#Mobile-menu .sub-menu li{
    margin-bottom: 8px;
}

#Mobile-menu .sub-menu li a{
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
}
#Mobile-menu li{
    position: relative;
}

#Mobile-menu .dropdown-icon{
    position: absolute;
    right: 0;
    top: 5px;
    cursor: pointer;
    font-size: 14px;
}

#Mobile-menu .sub-menu{
    display: none;
}
form p{
	margin-bottom: 0px;
}
/* Hide Older posts / Newer posts buttons */
.nav-previous,
.nav-next {
    display: none !important;
}

/* Show only page numbers */
.nav-links .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    margin: 0 4px;
}

.nav-links .page-numbers.current {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.nav-links .page-numbers:hover {
    background-color: #000;
    color: #fff;
}

.nav-links {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
form p br {
    display: none;
}