@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Our Start Style Start */
:root {
  /* Primary Colors */
  --primary-color: #ddc19a;
  --white-color: #fff;
  --black-color: #000;

}

* {
  font-family: "Inter", Arial, sans-serif;
}

select.custom-select option[value=""]::after {
  content: " *";
  color: red;
}
.skip-link {
	position: absolute;
	top: -40px;
	left: 10px;
	background: #000;
	color: #fff;
	padding: 8px 12px;
	z-index: 10000;
	text-decoration: none;
	border-radius: 4px;
}

.skip-link:focus {
	top: 10px;
}

/*==================================== Start Typography Styles =======================================*/
.heading-1 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.heading-2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.heading-3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.heading-4 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .heading-1 {
    font-size: 3rem;
  }

  .heading-2 {
    font-size: 2.25rem;
  }

  .heading-3 {
    font-size: 1.25rem;
  }

}

/* Small screens (mobiles) */
@media (max-width: 768px) {
  .heading-1 {
    font-size: 2.75rem;
  }

  .heading-2 {
    font-size: 2rem;
  }

  .heading-3 {
    font-size: 1.25rem;
  }


}

/* Extra small screens (phones) */
@media (max-width: 480px) {
  .heading-1 {
    font-size: 1.5rem;
  }

  .heading-2 {
    font-size: 2rem;
  }

  .heading-3 {
    font-size: 1rem;
  }

  .paragraph {
    font-size: 0.875rem !important;
  }

  .hero-media {
    min-height: 250px !important;
  }
}

.space-up {
  padding-top: 4%;
}

@media (min-width: 1800px) {
  .space-up {
    padding-top: 4% !important;
  }
}

@media (min-width: 1440px) {
  .space-up {
    padding-top: 6%;
  }
}

@media (max-width: 480px) {
  .space-up {
    padding-top: 21% !important;
  }
}

@media (max-width: 1024px) {
  .space-up {
    padding-top: 7%;
  }
}

.admin-bar .space-up {
  padding-top: calc(1% + 29px);
}

@media (max-width: 782px) {
  .admin-bar .space-up {
    padding-top: calc(1% + 42px);
  }
}

@media (min-width: 1800px) {
  .space-up {
    padding-top: 4% !important;
  }

  .admin-bar .space-up {
    padding-top: calc(1% + 38px) !important;
  }
}

@media (max-width: 480px) {
  .space-up {
    padding-top: 21% !important;
  }

  .admin-bar .space-up {
    padding-top: calc(1% + 42px) !important;
  }
}

.space {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (max-width: 480px) {
  .space {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
}

#content {
  margin-top: 80px;
}

.navigation-section {
  z-index: 1030;
}

.paragraph {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;

}

.nav-link {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.button-text {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}


.italic-style {
  font-style: italic;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .insights-section .row .col-md-6:nth-child(3) {
    display: none;
  }
}

.btn-primary {
  align-items: center;
  background-color: #ddc19a;
  border: 1px solid #ddc19a;
  border-radius: 4.8rem;
  color: #181818;
  display: flex;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  transition: background-color .3s ease;
  padding: 15px 8px;
  font-family: "Inter", Arial, sans-serif;
}

.btn-primary:hover {
  background-color: #af9772;
  border: 1px solid #af9772;
  transition: background-color .3s ease;
  color: #181818;
}

.btn-secondary {
  align-items: center;
  background-color: transparent;
  border: 1px solid #fff;
  font-family: "Inter", Arial, sans-serif;
  border-radius: 4.8rem;
  color: #fff;
  display: flex;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  transition: background-color .3s ease;
  padding: 10px 18px;
}

.btn-secondary:hover {
  background-color: #fff !important;
  border: 1px solid #fff !important;
  transition: background-color .3s ease;
  color: #181818;
}

.btn-secondary:focus {
  background-color: #fff !important;
  border: 1px solid #fff !important;
  transition: background-color .3s ease;
  color: #181818;
}

.black-color {
  background-color: #000;
}

.btn-primary-green {
  background-color: #3e5641;
  border: none;
  color: #fff;
  justify-content: center;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.125rem;
  margin: 0;
  padding: 10px 18px;
  border-radius: 3.7rem !important;
}

.btn-primary-green:hover {
  background-color: #1f2920;
  border: none;
  color: #fff;
  justify-content: center;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.125rem;
  margin: 0;

  border-radius: 3.7rem !important;
}

.btn-outline {
  align-items: center;
  background-color: transparent;
  border: 1px solid #000;
  font-family: "Inter", Arial, sans-serif;
  border-radius: 4.8rem;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  transition: background-color .3s ease;
  padding: 15px 25px;
}

.btn-outline:hover {
  align-items: center;
  background-color: #000;
  border: 1px solid #000;
  font-family: "Inter", Arial, sans-serif;
  border-radius: 4.8rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  transition: background-color .3s ease;
  padding: 15px 25px;
}

/*==================================== End Typography Styles =======================================*/

/*==================================== Global Header Styling =============================================*/
/* Critical CSS - Load this in head */


.navbar-main {
  background: linear-gradient(180deg, #000, transparent);
  color: white;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  box-shadow: 0 4px 15.8px -2px rgba(0, 0, 0, 0.1);
}

.mega-menu-link {
  font-family: "Poppins", sans-serif !important;
}

.navbar-main.scrolled {
  background: linear-gradient(180deg, #000, transparent);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15.8px -2px rgba(0, 0, 0, 0.1);
}

.navbar-brand,
.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 0px 25px;
}

@media (max-width: 768px) {

  .navbar-brand,
  .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1rem;
    font-weight: 500;
    margin-right: 0px;
  }

  .globle-vision {
    padding-bottom: 0px !important;
  }
}

.nav-link {
  padding: 0px 20px !important;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
  padding: 0px 15px !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}

@media (max-width: 480px) {

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
  }

  .navbar-brand,
  .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 0px 5px;
  }
}

.carousel-control-prev-icon {
  mask: url('data:image/svg+xml,<svg fill="black" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M11 1L3 8l8 7"/></svg>') no-repeat center / contain;
  -webkit-mask: url('data:image/svg+xml,<svg fill="black" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M11 1L3 8l8 7"/></svg>') no-repeat center / contain;
}

.carousel-control-next-icon {
  mask: url('data:image/svg+xml,<svg fill="black" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M5 1l8 7-8 7"/></svg>') no-repeat center / contain;
  -webkit-mask: url('data:image/svg+xml,<svg fill="black" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M5 1l8 7-8 7"/></svg>') no-repeat center / contain;
}


.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 15px;
  height: 15px;
  padding: 0;
  margin: 0 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: transparent;
  border: 3px solid #fff !important;
  background-clip: padding-box;
  border: 0;
  border-radius: 50px !important;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 2rem;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators .active {
  background-color: #fff;
  border: 3px solid #fff;
  opacity: 1;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas {
  background-color: white !important;
  color: white;
}

.offcanvas-backdrop.fade {
  background-color: #fff !important;
  opacity: 10 !important;
}

.offcanvas .nav-link {
  color: white !important;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.offcanvas .nav-link:hover {
  color: #f0f0f0 !important;
}

.offcanvas-header .btn-close {
  color: var(--blue-800) !important;
}

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

.dropdown-anchor {
  background: #fff;
  border: 1px solid #ddd;
}

@media (max-width: 767px) {
  .anchor-nav-row .btn {
    padding: 10px 12px;
    font-size: 14px;
  }
}

/* Force mega menu to full viewport width */
#mega-menu-wrap-primary {
  position: static !important;
}

/* Full width dropdown */
#mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu {
  width: 100vw !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  max-width: 100vw !important;
}

/* Prevent Bootstrap container limiting width */
.navbar-collapse {
  position: static !important;
}

#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu>ul.mega-sub-menu {
  padding: 15px;
}

/*==================================== Global Header Styling =============================================*/

.primary-blue {
  color: var(--primary-blue) !important;
}

.grey-light {
  color: #8B8B8B;
}

.bg-blue-01 {
  background: var(--blue-100);
}

.text-blue-100 {
  color: var(--blue-100);
}

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

.background-color {
  background: #f8f8f8;
}

/*======================================= Start Footer Styles================================================ */
.footer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.footer-services li {
  display: inline-flex;
}

.footer-services li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-family: "Inter", Arial, sans-serif;
  transition: color 0.3s ease;
}

.footer-services li a:hover {
  color: #cccccc;
}


.footer-title {
  text-decoration: underline;
}

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

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

.copy-right-text {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
}


.social-icons-footer {
  color: var(--white-color) !important;
  margin: 0 8px;
  text-decoration: none;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 1px solid var(--white) !important;
  line-height: 2;
  justify-content: center;
}

.social-icons-footer i {
  font-size: 24px;
}

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

.contact-list li {
  display: flex;
  padding: 8px 0;
}

.contact-list a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  display: flex;
  gap: 20px;
}

.contact-list i {
  color: white;
  font-size: 32px;
}

/*======================================= End Footer Styles================================================ */



/*====================================== Start Button Styles ===========================================*/
.primary-btn {
  position: relative !important;
  display: inline-block !important;
  padding: 12px 40px !important;
  color: #fff !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  border: none !important;
  background: var(--gradient-02) !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  z-index: 1 !important;
  transition: color 0.4s ease !important;

}

.primary-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: var(--blue-400) !important;
  z-index: -1 !important;
  transition: all 0.6s ease !important;
  border-radius: 0 0 50% 50% !important;
  transform: translateY(0) scaleY(0.5) !important;
}

.primary-btn:hover::before {
  top: 0 !important;
  border-radius: 0 !important;
  transform: translateY(0) scaleY(1) !important;
}

.primary-btn span {
  display: block !important;
  position: relative !important;
  transition: transform 0.5s ease !important;
}

.primary-btn:hover {
  color: #fff !important;
}

.secondary-btn {
  position: relative !important;
  display: inline-block !important;
  padding: 12px 20px !important;
  color: var(--primary-blue) !important;
  font-family: "Poppins", sans-serif;
  font-weight: 500 !important;
  cursor: pointer !important;
  background: transparent !important;
  border-radius: 6px !important;
  border: none !important;
  z-index: 1 !important;
  width: auto !important;
  transition: background 0.3s ease-in-out;
}

.secondary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(270deg, #3E8AF9 0%, #0D2476 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.secondary-btn:hover {
  background: linear-gradient(270deg, #3E8AF9 0%, #0D2476 100%) !important;
  color: var(--white) !important;
  transition: background 0.3s ease, color 0.3s ease;
}


.circle-btn {
  width: 46px;
  height: 46px;
  border-radius: 50px;
  background: var(--primary-blue);
  color: var(--white);
}

.circle-btn:hover {
  color: var(--white);
}

.submit-btn {
  width: 100%;
}

/*====================================== End Button Styles ===========================================*/


/* ================================
   Home Page Styles
================================ */

.our-range-section .carousel {
  position: relative;
  padding-bottom: 90px;
}

.our-range-section .carousel-controls-row {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.our-range-section .custom-indicators {
  position: static;
  margin: 0;
  display: flex;
  gap: 3px;
}

.our-range-section .custom-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #000 !important;
  border: none;
  opacity: 1;
}

.our-range-section .custom-indicators button.active {
  background: #000;
  border: 1px solid #000;
}

.our-range-section .custom-controls {
  display: flex;
  gap: 12px;
}

.our-range-section .carousel-control-prev,
.our-range-section .carousel-control-next {
  position: static;
  opacity: 1;
}

.our-range-section .custom-controls button {
  box-shadow: 0 6px 25px rgba(0, 0, 0, .1);
  height: 4rem;
  transition: background-color .3s ease;
  width: 4rem;
  border-radius: 50px;
  color: #000;
}

.our-range-section .custom-controls button:hover {
  opacity: .5;
  border: 1px solid #a6a6a8;
}

.our-range-section .vehicle-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.our-range-section .vehicle-card img {
  min-height: 220px;
  object-fit: contain;
}

.our-range-section .card-body {
  padding: 22px;
  min-height: 14rem;
}

.our-range-section .card-title {
  font-size: 1.15rem;
  font-weight: 600;
}

.our-range-section .nav-tabs {
  border-bottom: none;
  gap: 12px;
}

.our-range-section .nav-tabs .nav-link {
  border: none;
  background: transparent;
  color: #666;
  font-weight: 500;
  padding: 10px 22px;
  font-size: 1.25rem;
  font-family: "Inter", Arial, sans-serif;
  margin-bottom: 5px;
}

.our-range-section .nav-tabs .nav-link.active {
  color: #181818;
  border-bottom: 5px solid #ddc19a;
}

@media (max-width: 991px) {
  .our-range-section .carousel {
    padding-bottom: 110px;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;

  overflow: hidden;
  /* important for image fit */
  background: #fff;
}

/* Image wrapper */
.news-image {
  width: 100%;
  /* aspect-ratio: 384 / 352; */
  overflow: hidden;
  border-radius: 12px;
  /* optional */
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* key property */
  display: block;
}

/* Content alignment */
.news-content {
  text-align: left;
}

/* Remove default link styling */
.news-feed a {
  text-decoration: none;
  color: inherit;
}

.news-feed a:hover {
  text-decoration: none;
  color: inherit;
}

.hero-section {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.design-section-banner-01 {
  width: 100%;
  height: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.design-section-banner-01 .banner-image {
  width: 100%;
  height: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
}

.design-section-banner-01 .banner-heading {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section h1,
.hero-section p {
  margin: 0;
}

.hero-overlay {
  z-index: 1;
}

.hero-overlay,
.section-overlay,
.overlay {
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

#anchor-navbar {
  background-color: #EDE5DA !important;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  #anchor-navbar {
    display: none;
  }
}

#anchor-navbar.fixed-top {
  position: fixed;
  top: 0;
  width: 100%;
}

#anchor-navbar .anchor-nav .nav-link {
  color: #333;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  padding: 0rem !important;

  border-bottom: 3px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.anchor-nav {
  gap: 0 2rem !important;
}

#anchor-navbar .anchor-nav .nav-link:hover {
  color: #000;
  border-bottom-color: #333;
}

#anchor-navbar .anchor-nav .nav-link.active {
  color: #000;
  font-weight: 600;
  border-bottom-color: #333;

}

.usp-item {
  gap: 12px;
}

.usp-icon {
  align-items: center;
  border-radius: 1rem;
  box-shadow: 0 4px 54.8px rgba(0, 0, 0, .06);
  display: flex;
  flex-shrink: 0;
  height: 75px;
  justify-content: center;
  text-align: center;
  width: 75px;
}

.usp-icon img {
  max-width: 48px;
}

.usp-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: "Inter", Arial, sans-serif;
}

.usp-description {
  font-size: 1.35rem;
  color: #555;
  font-family: "Inter", Arial, sans-serif;
}

.option-img {
  border-radius: 15px;
}

@media (max-width: 576px) {
  .usp-item {
    align-items: flex-start;
  }

  .gallery-section img {
    object-fit: cover;
    height: 300px !important;
    width: 100%;
    border-radius: 1.6rem;
  }
}

/* ================= Gallery Image ================= */
.gallery-section img {
  object-fit: cover;
  height: 700px;
  width: 100%;
  border-radius: 1.6rem;
}

/* ================= Carousel Wrapper ================= */
.gallery-section .carousel {
  position: relative;
  padding-bottom: 90px;
}

/* ================= Controls Row ================= */
.gallery-section .carousel-controls-row {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-section .custom-indicators {
  justify-self: center;
  display: flex;
  gap: 6px;
}

@media (max-width: 768px) {
  .gallery-section .custom-indicators {
    display: none;
  }

  .gallery-section .carousel-controls-row {
    justify-content: center !important;
  }
}

/* ================= Indicators ================= */
.gallery-section .carousel-controls-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 2rem;
}


.gallery-section .custom-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #000 !important;
  opacity: 1;
}

.gallery-section .custom-indicators button.active {
  background-color: #000;
}

/* ================= Controls ================= */
.gallery-section .custom-controls {
  display: flex;
  gap: 12px;
}

.gallery-section .carousel-control-prev,
.gallery-section .carousel-control-next {
  position: static;
  opacity: 1;
  width: auto;
}

/* Control Buttons */
.gallery-section .custom-controls button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-section .custom-controls button:hover {
  background-color: #f5f5f5;
  border-color: #a6a6a8;
}


.colour-configurator {
  transition: background-color 0.4s ease;
}

.colour-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #fff;
  cursor: pointer;
  background: transparent;
  margin: 0 2px;
}

.colour-dot.active {
  box-shadow: 0 0 0 2px #fff;
}

.pricing-card {
  background: #fff;
  border: 1px solid #ede5da;
  border-radius: 15px !important;
}

.pricing-content {
  height: 250px;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.about-img {
  border-radius: 1.6rem;
}

.usp-section {
  background-color: #f8f9fa;
}


/* ---------- HERO ---------- */
.news-archive-hero {
  min-height: 500px;
  /* increased height */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.news-archive-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* decreased opacity (lighter overlay) */
  background: linear-gradient(to top, rgba(0, 0, 0, .38), rgba(0, 0, 0, .10));
}

.news-archive-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
}

.news-archive-title {
  color: #fff;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 500;
  margin: 0;
}

/* ---------- SEARCH ---------- */
.news-controls {
  padding: 36px 0 10px;
}

.search-row {
  display: flex;
  gap: 18px;
}

.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 14px 16px;
}

.search-box input {
  border: 0;
  outline: none;
  width: 100%;
}

.btn-search {
  min-width: 180px;
  border: 0;
  border-radius: 8px;
  background: #d7b98c;
  font-weight: 500;
}

/* ---------- FILTER TABS ---------- */
.news-tabs-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 22px 0 10px;
}

.news-tabs {
  display: flex;
  gap: 60px;
}

.news-tab,
.news-tab:hover,
.news-tab:focus,
.news-tab:active {
  color: #000 !important;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
}

.news-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: #d7b98c;
}

.filter-by {
  display: flex;
  gap: 10px;
  font-weight: 500;
}

/* ---------- LIST ---------- */
.results-meta {
  font-size: 14px;
  color: #666;
  padding: 18px 0;
}

.news-list {
  border-top: 1px solid #ededed;
}

.news-item {
  padding: 52px 0;
  border-bottom: 1px solid #ededed;
}

.news-item-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

/* title hover only */
.news-item-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color .25s ease;
}

.news-item-title:hover,
.news-item-title:focus,
.news-item-title:active {
  color: #c3a06d;
  text-decoration: none;
}

.news-item-date {
  margin-bottom: 16px;
  display: block;
}

.news-item-excerpt {
  max-width: 720px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.read-more {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.read-more:hover {
  color: #c3a06d;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  gap: 10px;
}

.news-item-media {
  border-radius: 18px;
  overflow: hidden;
}

.news-item-media img {
  width: 100%;
  /* aspect-ratio: 16/10; */
  object-fit: cover;
  transition: transform .35s ease;
}

.news-item:hover img {
  transform: scale(1.06);
}

/* ---------- PAGINATION ---------- */
.news-pagination {
  display: flex;
  justify-content: center;
  padding: 36px 0;
}

.page-numbers {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  color: #000;
  text-decoration: none;
}

.page-numbers.current {
  background: #111;
  color: #fff;
}

.page-numbers.next {
  width: 54px;
  height: 54px;
  background: #f3f3f3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.page-numbers.prev {
  display: none;
}

@media(max-width:992px) {
  .news-item-inner {
    grid-template-columns: 1fr;
  }
}


.test-drive-form input,
.test-drive-form select,
.test-drive-form textarea,
.wpcf7 input[type=text],
.wpcf7 input[type=tel],
.wpcf7 input[type=email] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.test-drive-form label {
  font-weight: 600;
  margin-bottom: 15px;

}

.test-drive-form input[type="submit"] {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px;
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
}

.test-drive-form .wpcf7 input[type=submit]:hover {
  background: #0000008e !important;
  color: #fff;
  border: none;
  padding: 14px;
  cursor: pointer;
}

.test-drive-form input[type="submit"]:hover {
  background: #0000008e !important;
}

.contact-detail {
  background-color: #000;
  border-radius: 12px;
}

.accordion-item:first-of-type .accordion-button {
  background: transparent;
  color: #000;
}

.accordion-item:first-of-type .accordion-button:focus,
.accordion-item:first-of-type .accordion-button:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.accordion-item {
  border: none;
  background-color: transparent;
}