:root,
[data-bs-theme=light] {
  --bs-blue: #EF1C25;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #EF1C25;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #1e1e1e;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-cards-bg: #fff0f0;

  --drp-bg: #ffffff;
  --drp-text: #000000;
  --drp-border: #dee2e6;
  --drp-hover: #fff0f0;
  --drp-active: #EF1C25;
  --drp-in-range: #ffe5e5;
}

[data-bs-theme="dark"] {
  --bs-body-bg: #1E1E1E;
  --bs-body-color: #ffffff;

  --bs-white: #1e1e1e;
  --bs-black: #ffffff;

  --bs-gray-100: #1e1e1e;
  --bs-gray-200: #2a2a2a;
  --bs-gray-300: #3a3a3a;
  --bs-gray-900: #f1f1f1;

  --bs-cards-bg: #2a2626;

  --bs-light: #1e1e1e;
  --bs-dark: #000000;

  --bs-primary: #EF1C25;

  --drp-bg: #1E1E1E;
  --drp-text: #ffffff;
  --drp-border: #3a3a3a;
  --drp-hover: #2a2626;
  --drp-active: #EF1C25;
  --drp-in-range: #2a2626;
}

.page-special {
  --bs-primary: #394596;
}

/* Main container */
.daterangepicker {
  background-color: var(--drp-bg) !important;
  color: var(--drp-text) !important;
  border: 1px solid var(--drp-border) !important;
  border-radius: 12px;
}

/* Calendar table */
.daterangepicker .calendar-table {
  background-color: var(--drp-bg) !important;
  color: var(--drp-text) !important;
  border-color: var(--drp-border) !important;
}

/* Header */
.daterangepicker .calendar-table th {
  color: var(--drp-text) !important;
}

/* Normal days */
.daterangepicker td {
  color: var(--drp-text) !important;
}

/* Hover */
.daterangepicker td:hover {
  background-color: var(--drp-hover) !important;
}

/* Selected range */
.daterangepicker td.in-range {
  background-color: var(--drp-in-range) !important;
}

/* Active (selected day) */
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: var(--drp-active) !important;
  color: #fff !important;
}

/* Disabled days */
.daterangepicker td.off {
  background-color: transparent !important;
  color: #777 !important;
}

/* Buttons */
.daterangepicker .drp-buttons .btn {
  background-color: var(--drp-active);
  border: none;
  color: #fff;
}

.daterangepicker .drp-buttons .btn.cancelBtn {
  background-color: transparent;
  color: var(--drp-text);
}

.daterangepicker .calendar-table span {
  border-color: var(--drp-text) !important;
}

/* [dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .navbar-nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-btns {
  justify-content: flex-end;
} */

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body[dir="rtl"] {
  font-family: 'Cairo', sans-serif;
}

body {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
  transition: all 0.3s;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  overflow-x: hidden;
}

section {
  overflow-x: hidden;
}

h1,
h2,
h3,
.heading {
  font-family: 'Cal Sans', sans-serif;
}

img {
  width: 100%;
}

/* Logo */
.logo {
  width: 90px;
}

.tagline {
  font-size: 12px;
  font-weight: 600;
  color: #8A684D;
}

.toggler-img {
  width: 35px;
}

.navbar {
  width: 100%;
  z-index: 2222;
  background-color: transparent;
  padding: 1.1rem 0;
  transition: all 0.3s ease-in-out;
}

.navbar.shrink {
  background-color: #ffffff6b;
  backdrop-filter: blur(10px);
  padding: .5rem 0;
  box-shadow: 0px 2px 5px #00000054;
}

/* Nav Links */
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--bs-body-color);
  padding: 2px 25px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffffff;
  background-color: var(--bs-primary);
  border-radius: 25px;
}

/* Get Started Button */
.solid-btn {
  background-color: var(--bs-primary);
  border: solid 1px var(--bs-primary);
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}


.solid-btn:hover {
  color: var(--bs-primary);
  background-color: #ffffff;
}

.solid-btn.nav-btn:hover {
  color: var(--bs-primary);
  background-color: transparent;
  border: solid 1px var(--bs-primary);
}

/* Get Started Button */
.sm-solid-btn {
  background-color: var(--bs-primary);
  border: none;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 14px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 .25rem rgb(253 13 13 / 25%);
  border-color: var(--bs-primary);
}

.form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 .25rem rgb(253 13 13 / 25%);
}

.sm-solid-btn .form-check {
  min-height: auto;
}


.sm-solid-btn:hover {
  color: #ffffff;
  background-color: #c8161f;
}

.light-outline-btn {
  background-color: transparent;
  border: 1px solid #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}


.light-outline-btn:hover {
  color: #000000;
  background-color: #ffffff;
}

.outline-btn {
  background-color: transparent;
  border: 1px solid var(--bs-primary);
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 16px;
  color: var(--bs-primary);
  transition: all 0.3s ease-in-out;
}


.outline-btn:hover {
  color: #ffffff;
  background-color: var(--bs-primary);
}


.hero-section {
  min-height: calc(100vh - 103px);
  background-color: #F1E5CF;
  background-position: center center;
  background-size: cover;
  position: relative;
}



.hero-image {
  position: relative;
}

.hero-image .img-fluid {
  max-width: 420px;
  z-index: 3;
  position: relative;
}

.hero-title {
  font-family: 'Cal Sans', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
}

.light-title {
  font-family: 'Cal Sans', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
}

.light-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  max-width: 450px;
  margin: 0;
}

.cta-section .light-subtitle {
  max-width: none;
}

.cta-section {
  overflow: hidden;
}

.services-section {
  overflow: hidden;
}

.hero-title span {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  max-width: 450px;
  margin: 0;
}

.hero-btn {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  border: none;
  padding: 4px 4px 4px 15px;
  border-radius: 30px;
  font-size: 16px;
}

.hero-btn img {
  margin-left: 8px;
  width: 30px;
}

.hero-btn:hover {
  background: #c4a77d;
}

.hero {
  position: relative;
  z-index: 5;
}

.dashboard {
  margin-top: -55px;
  position: relative;
  z-index: 0;
}

.partners-section {
  background-color: #FFF7EE;
}

.title-badge {
  font-size: 13px;
  font-weight: 600;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  border-radius: 30px;
  padding: 4px 12px;
  padding-left: 30px;
  border: solid 1px var(--bs-primary);
  position: relative;
}

.title-badge::before {
  content: "●";
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
  color: var(--bs-primary);
  position: absolute;
  top: 0;
  left: 10px;
}

.title-badge-light {
  font-size: 13px;
  font-weight: 600;
  background-color: transparent;
  color: #ffffff;
  border-radius: 30px;
  padding: 4px 12px;
  padding-left: 30px;
  border: solid 1px #ffffff;
  position: relative;
}

.title-badge-light::before {
  content: "●";
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 10px;
}

.title {
  font-family: 'Cal Sans', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--bs-body-color);
}

.title span {
  color: var(--bs-primary);
}

.title-description {
  font-size: 15px;
  font-weight: 500;
  color: var(--bs-body-color);
  /* margin-bottom: 0; */
}


.card {
  padding: 20px;
  border: solid 2px var(--bs-primary);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  background-color: var(--bs-primary);
  color: #ffffff;
}

.card p {
  font-size: 14px;
  font-weight: 600;
}

.brand-logos img {
  max-width: 130px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.brand-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.bg-dark {
  background-color: var(--bs-dark) !important;
  border-radius: 20px;
}

.border-box {
  border: solid 12px var(--bs-primary);
  padding: 20px;
}

.border-box .counter {
  margin-right: -35px;
  padding: 10px;
  background-color: var(--bs-body-bg);
}

.about-section .about {
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
}

.about-section {
  overflow: hidden;
}

.section-vision {
  background: var(--bs-primary);
  background: linear-gradient(90deg, rgba(239, 28, 37, 1) 30%, var(--bs-dark) 30%);
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-vision .title {
  color: #ffffff;
}

.section-vision .title-description {
  color: #ffffff;
}

.border-box .counter h2 {
  font-size: 60px;
  text-align: right;
}

.contact-content h5 {
  color: var(--bs-body-color);
  font-size: 16px;
  font-weight: 700;
}

.contact-content h5 span {
  color: var(--bs-primary);
}


.inventory-section {
  background-color: #FFF7EE;
}

.service-card {
  background-color: #ffffff;
  border-radius: 35px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card .badge-img {
  width: 80px;
  margin-bottom: 10px;
}

.sub-card {
  background-color: #FFF9EF;
  padding: 20px;
  border-radius: 20px;
  margin-top: auto;
}

.sub-card .title {
  font-size: 25px;
  background: linear-gradient(to right, #D6A54F, #8A684D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.percentage {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  font-weight: 300;
  margin-bottom: 0;
}

.arrow-sm {
  width: 40px;
}

.sub-card .title-description {
  margin-bottom: 50px;
}

.link {
  color: #734A00;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.card2 {
  background-color: transparent;
  border: solid 1px #734A00;
}

.card2 .title {
  color: #CEA146;
}

.card3 {
  background-color: #8A684D;
  background-image: url(/images/Logobg.svg);
  background-repeat: no-repeat;
  background-size: 270px;
  background-position: left bottom;
  padding: 0 30px;
}

.card3 .title {
  color: #ffffff;
}

.card3 .title-description {
  color: #ffffff;
  font-weight: 400;
}

.card3 .get-started-btn {
  background: #ffffff;
  font-weight: 600;
  margin-top: 30px;
}

.card3 .get-started-btn span {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.stat {
  background: transparent;
  padding: 15px;
  border-radius: 20px;
  border: solid 1px #734A00;
  /* transition: all 0.3s ease-in-out; */
}

.stat h3 {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

.stat p {
  margin-bottom: 0;
}

.stat:hover {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  border-color: transparent;

  h3 {
    background: linear-gradient(to right, #fff, #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  p {
    color: #ffffff;
  }
}


.testimonial-container {
  height: 100%;
  min-height: 300px;
  background-color: #f3e5ca;
  border-radius: 30px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon img {
  width: 60px;
}

.testimonial-text {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-top: -30px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info .name {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-family: 'Cal Sans', sans-serif;
}

.user-info .role {
  font-size: 12px;
  color: #999;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-buttons button {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 18px;
}

.nav-buttons button:hover {
  background: transparent;
  border: solid 1px #8C6A4D;
  color: #8C6A4D;
}

.testimonial-text,
.user-info {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.fade-out {
  opacity: 0;
}

.why-chose {
  background-color: #8A684D;
  color: #ffffff;
}

.why-chose .title {
  color: #ffffff;
}

.why-chose .title-description {
  color: #ffffff;
  max-width: 550px;
  margin: auto;
}

.why-card {
  background-color: #FFF9EF;
  height: 100%;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #8a6238;
  /* Soft brownish-golden */
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a0743f, #d4a462);
  /* Golden-brown gradient */
}

.why-chose .get-started-btn {
  background: #ffffff;
  font-weight: 600;
}

.why-chose .get-started-btn span {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card4 {
  background-color: #ffffff;
  background-image: url(/images/Logobg.svg);
  background-repeat: no-repeat;
  background-size: 270px;
  background-position: left bottom;
  padding: 0 30px;
}

.card4 .title-description {
  color: #8A684D;
  font-weight: 400;
}

.how-work {
  background-color: #ffffff;
}

.how-work .title-description {
  color: #8A684D;
  font-weight: 400;
}



.faq {
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 25px;
  padding: 30px;
}

.faq-item {
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  gap: 30px;
}

.faq-item.active {
  background-color: #ffffff;
}

.faq-item h5 {
  color: #8A684D;
  font-weight: 500;
  font-family: 'Cal Sans', sans-serif;
}

.faq-title {
  cursor: pointer;
  color: #8A684D;
  padding: 15px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Cal Sans', sans-serif;
  position: relative;
}

.faq-title::after {
  /* content: "+"; */
  content: "＋";
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 300;
  font-size: 35px;
  transition: transform 0.3s ease;
}

.faq-title.active::after {
  transform: rotate(45deg);
}

.faq-content {
  font-size: 15px;
  font-weight: 500;
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-content.open {
  padding: 15px;
  max-height: 300px;
  /* adjust as needed */
}


.pricing-section .title-description {
  max-width: 550px;
  margin: auto;
}


.pricing-card {
  border-radius: 20px;
  padding: 20px;
  border: solid 2px #8A684D;
}

.pricing-header {
  border-bottom: solid 1px #CEBFB2;
  font-family: 'Cal Sans', sans-serif;
  color: #8A684D;
  padding: 6px 0;
}

.pricing-card h1 {
  font-size: 40px;
  background: linear-gradient(to right, #D6A54F, #8A684D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin: 15px 0;
}

ul.checklist {
  list-style: none;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
}

ul.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #565656;
  font-size: 15px;
}

ul.checklist li:before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.3rem;
  background: linear-gradient(to right, #D6A54F, #8A684D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.choose-btn {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  width: 100%;
  transition: all 0.3s ease-in-out
}


.recommended-card {
  background: linear-gradient(to bottom, #D6A54F, #8A684D);
  color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}

.recommended-card .rec {
  background-color: #96714D;
  color: #ffffff;
  text-align: center;
  padding: 6px;
}

.wrapper {
  padding: 20px;
}

.recommended-card .pricing-header {
  color: #ffffff;
  border-bottom: solid 2px #E8BB76;
}

.recommended-card ul.checklist li:before {
  background: #ffffff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recommended-card ul li {
  color: #ffffff;
}

.recommended-card .choose-btn {
  background: #FFF9EF;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  width: 100%;
  transition: all 0.3s ease-in-out
}

.recommended-card .choose-btn span {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.recommended-card h1 {
  color: #ffffff;
  margin: 15px 0;
}






.contact-section {
  background: transparent;
  color: white;
}

.contact-wrapper {
  background-color: #8A684D;
  border-radius: 30px;
  padding: 20px;
}

/* Left Info Card */
.contact-info-card {
  /* background-color: #002040; */
  color: #ffffff;
}

.contact-title {
  color: #fff;
  font-weight: 500;
  font-size: 30px;
}

.contact-subtitle {
  color: #aaa;
  font-size: 14px;
}

/* Form Side */

.contact-info-card .list-unstyled img {
  width: 25px;
  margin-right: 15px;
}

.contact-form {
  background-color: #ffffff;
}

/* Input Fields */
.contact-form .form-control {
  background: transparent;
  border: none;
  border-bottom: 2px solid #8A684D;
  border-radius: 0;
  color: #8a684d82;
  font-size: 14px;
  padding-left: 0;
}

.contact-form .form-control::placeholder {
  color: #8a684d82;
}

.contact-form .form-control:focus {
  background: transparent;
  border-bottom: 2px solid #00000089;
  box-shadow: none;
  color: #8A684D;
}

/* Labels */
.contact-form .form-label {
  font-size: 14px;
  color: #8A684D;
  margin-bottom: 0.25rem;
}

/* Send Button */
.btn-send {
  background: linear-gradient(to right, #D6A54F, #8A684D);
  color: #ffffff;
  display: inline-flex;
  gap: 8px;
  border: none;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-send:hover {
  img {
    transform: rotate(45deg);
  }
}

/* Social Icons */
.social-icons img {
  width: 30px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.hero-section.inner {
  min-height: 45vh;
}

.cta-wrapper {
  background-image: url(/images/cta-bg.webp);
  background-size: cover;
  background-position: center center;
  border-radius: 30px;
  padding: 30px;
  min-height: 300px;
  display: grid;
}

.cta-wrapper .title-description {
  max-width: 550px;
  margin: auto;
}



footer {
  background-color: var(--bs-dark);
  color: #ffffff;
  padding-top: 50px;
  padding-bottom: 20px;
}

footer .title-description {
  color: #ffffff;
}

footer .logo {
  width: 90px;
}

.max-width-400 {
  max-width: 400px;
}

.footer-links h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 16px;
}

.footer-links ul li a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #D6A54F;
}

.footer-bottom {
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

.quick-links ul {
  display: flex;
  gap: 10px;
  justify-content: end;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.quick-links ul li a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
  padding: 5px 10px;
  background-color: var(--bs-primary);
  border-radius: 30px;
  display: inline-block;
}

.quick-links ul li a:hover {
  color: var(--bs-primary);
  background-color: #ffffff;
}

.border-line {
  margin-bottom: 20px;
  height: 1px;
  background: #e1e1e142;
  background: linear-gradient(90deg, rgb(22 22 22 / 0%) 15%, rgba(255, 255, 255, 1) 45%, rgba(255, 255, 255, 1) 55%, rgb(22 22 22 / 0%) 85%);
}

.border-gradient {
  border-right: 1px;
  border-left: 0;
  border-style: solid;
  border-image:
    linear-gradient(to bottom, #fff9ef3f, #8a684dbf, #fff9ef3f) 1 100%;
}

.counter {
  text-align: start;
}

.counter h2 {
  font-size: 40px;
  margin-bottom: 0;
}

.counter p {
  font-size: 18px;
  color: #8A684D;
  font-weight: 700;
}

.hero-btns {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
}

/* --------------------------------------- Responsive ---------------------------------------- */

@media (max-width: 1200px) {
  .why-card {
    padding: 10px 15px;
    border-radius: 15px;
  }

  .custom-list li {
    padding-left: 25px;
    margin-bottom: 2px;
    font-size: 14px;
  }

  .light-title {
    font-size: 36px;
  }
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .get-started-btn {
    font-size: 13px;
    /* padding: 6px 16px; */
  }

  .dropdown-menu {
    background-color: transparent;
    border: 0 !important;
    padding-left: 20px;
    color: #000;
  }

  .tagline {
    display: none;
  }

  .navbar {
    position: absolute;
    background-color: #ffffff6b;
    backdrop-filter: blur(10px);
    padding: .5rem 0;
    box-shadow: 0px 2px 5px #00000054;
  }

  .hero-section {
    min-height: 100vh;
    padding-top: 100px;
  }

  .navbar .nav-btn {
    display: none;
  }

  .why-card {
    padding: 10px 15px;
    border-radius: 12px;
  }

  .custom-list li {
    padding-left: 25px;
    margin-bottom: 2px;
    font-size: 12px;
  }

  .title-description {
    font-size: 13px;
  }

  .hero-title {
    font-size: 35px;
  }

  .light-title {
    font-size: 30px;
  }

  .light-subtitle {
    font-size: 14px;
  }

  .custom-breadcrumb {
    margin-top: 100px;
  }

  .dropdown-menu .dropdown-item {
    border-radius: 30px;
    margin-bottom: 4px;
  }

  .main-cards-section {
    padding-top: 100px;
  }
}

/* Adjustments */
@media (min-width: 992px) {
  .navbar .menu-btn {
    display: none;
  }
}

/* Adjustments */
@media (max-width: 720px) {
  .hero-title {
    font-size: 45px;
  }

  .dashboard {
    margin-top: 10px;
  }

  .card3 {
    padding: 0 10px;
  }

  .card4 {
    padding: 0 10px;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-vision {
    background: var(--bs-dark);
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .quick-links ul {
    justify-content: center;
  }

  .footer-bottom p {
    text-align: center;
  }

}

/* Mobile Adjustments */
@media (max-width: 500px) {
  .faq {
    padding: 10px;
  }

  .faq-item {
    gap: 6px;
  }

  .faq-title {
    font-size: 16px;
  }

  .faq-content {
    font-size: 13px;
  }

  .faq-title::after {
    font-size: 30px;
  }

  .hero-section {
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .cta-section img {
    display: none;
  }
}


/* slider */

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.item {
  flex: 0 0 auto;
}

.item img {
  width: 180px;
  padding: 0 30px;
  display: block;
}

.slider:hover .slider-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* hero moving objects */

.wrapper {
  position: relative;
  width: 200px;
}

.moving-img {
  position: absolute;
  width: 35px;
  /* adjust as needed */
  animation: squareMove 6s linear infinite;
}

@keyframes squareMove {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(0, -40px);
    /* up */
  }

  50% {
    transform: translate(-40px, -40px);
    /* left */
  }

  75% {
    transform: translate(-40px, 0);
    /* down */
  }

  100% {
    transform: translate(0, 0);
    /* right back to start */
  }
}


.zoom-img {
  width: 35px;
  /* base size */
  animation: zoomPulse 4s ease-in-out infinite;
}

@keyframes zoomPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
    /* zoom in */
  }

  100% {
    transform: scale(1);
    /* zoom out */
  }
}

.zoom-img.circle {
  position: absolute;
  bottom: 0px;
  right: 0%;
  z-index: 0;
  width: 65px;
}

.polygon-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;

  /* 🔑 hang from top-left corner */
  transform-origin: 50% 0%;

  animation: pendulum 2.5s ease-in-out infinite;
}

@keyframes pendulum {
  0% {
    transform: rotate(-25deg);
  }

  50% {
    transform: rotate(25deg);
  }

  100% {
    transform: rotate(-25deg);
  }
}


/* FILTER BOX */
.filter-box {
  background: var(--bs-cards-bg);
  padding: 20px;
  border-radius: 12px;
  font-size: 14px;
}

.filter-box .date-range .form-control {
  font-size: 13px;
  min-width: auto;
}

/* CARD */
.location-card {
  background: var(--bs-cards-bg);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease;
  padding: 10px;
}

.location-card:hover {
  transform: translateY(-4px);
}

.location-card .img-wrapper:hover,
.location-card .card-body:hover {
  cursor: pointer;
}


.img-wrapper {
  position: relative;
}

.img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
}

.quick-view-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: red;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  transition: 0.3s;
}

.location-card:hover .quick-view-btn {
  opacity: 1;
}


.card-body {
  font-size: 14px;
}

.custom-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
}

.custom-breadcrumb a {
  color: #000;
  text-decoration: none;
}

.custom-breadcrumb .separator {
  color: #ff0000;
  font-weight: 600;
}

.custom-breadcrumb .active {
  color: #ff0000;
  font-weight: 600;
}






/* MODAL WRAPPER */
.quickview-modal {
  border-radius: 20px;
  padding: 10px;
}

/* CLOSE BUTTON */
.quickview-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}

/* IMAGES */
.quickview-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/2;
}

.img-main {
  margin-bottom: 12px;
}


/* DETAILS */
.section-title {
  color: var(--bs-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.detail-block {
  margin-bottom: 16px;
}

.detail-block p {
  margin-bottom: 4px;
  font-size: 14px;
}

.detail-block p span {
  color: var(--bs-primary);
}

/* AVAILABILITY */
.availability {
  display: flex;
  align-items: center;
  gap: 6px;
  color: green;
  font-weight: 600;
}

.availability .dot {
  width: 10px;
  height: 10px;
  background: green;
  border-radius: 50%;
}

/* MAP */
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 14px;
}

/* MOBILE TWEAKS */
@media (max-width: 768px) {
  .img-main {
    height: 180px;
  }

  .img-map {
    height: 180px;
  }

  .map-embed iframe {
    height: 220px;
  }
}



.circle-pagination {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.circle-pagination ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.circle-pagination li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  background: #fff;
  transition: all 0.2s ease;
}

.circle-pagination li:hover {
  background: #ffecec;
  border-color: red;
  color: red;
}

/* ACTIVE */
.circle-pagination li.active {
  background: red;
  color: #fff;
  border-color: red;
}

/* DISABLED */
.circle-pagination li.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.clf {
  border-radius: 30px;
  border: solid 1px #000000;
  font-size: 14px;
}

.clf:hover {
  border: solid 1px #000000;
}



/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Optional: remove arrow animation delay */
.dropdown-toggle::after {
  margin-left: 6px;
}

.dropdown-menu {
  border-radius: 12px;
  border: solid 1px var(--bs-primary);
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--bs-primary);
  color: #ffffff;
}

.loader {
  background-color: #ffffffa2;
  backdrop-filter: blur(10px);
  width: 100vw;
  height: 100vh;
  margin: auto;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

.wrapper-loader {
  position: relative;
  width: 80px;
  height: 80px;
  margin: auto;
}

.loader-logo {
  width: 50px;
  position: absolute;
  top: 37%;
  left: 32%;
}

.loader-circle {
  width: 100px;
  animation: l25 1s infinite linear;
}

@keyframes l25 {
  100% {
    transform: rotate(1turn)
  }
}

#servicesSubmenu {
  padding-left: 20px;
}

#servicesSubmenu .nav-link {
  border-radius: 30px;
  color: #565656;
  font-size: 15px;
}

/* Booking Calendar Styles */
.booking-timeline {
  max-height: 300px;
  overflow-y: auto;
}

.booking-item {
  transition: all 0.3s ease;
}

.booking-item.active {
  background-color: #ffe6e6;
  border-left: 4px solid #dc3545 !important;
}

.booking-item.upcoming {
  background-color: #fff9e6;
  border-left: 4px solid #ffc107 !important;
}

.booking-item:hover {
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Available periods styling */
.list-unstyled.text-success li {
  padding: 8px 12px;
  background-color: #d4edda;
  border-radius: 4px;
  margin-bottom: 8px;
  border-left: 3px solid #28a745;
}

/* Badge positioning on cards */
.location-card {
  position: relative;
  overflow: hidden;
}

.location-card .badge {
  z-index: 10;
  font-size: 0.7rem;
  padding: 5px 10px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Badge animations based on status */
.location-card .badge.bg-danger {
  animation: pulse 2s infinite;
}

.location-card .badge.bg-warning {
  animation: subtle-pulse 3s infinite;
}

.location-card .badge.bg-success {
  animation: none;
  /* No animation for fully available */
}

@keyframes subtle-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}

/* Enhanced Availability Status Alerts */
.alert.py-3 {
  text-align: center;
  border: none;
  border-radius: 12px;
  padding: 20px !important;
}

.alert.py-3 i.fs-4 {
  font-size: 2.5rem !important;
  margin-bottom: 10px;
}

.alert-danger.py-3 {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 5px solid #dc3545;
}

.alert-success.py-3 {
  background: linear-gradient(135deg, #f0fff4 0%, #e6f9ed 100%);
  border-left: 5px solid #28a745;
}

.alert.py-3 strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
}

.alert.py-3 span {
  font-size: 0.95rem;
  color: #666;
}

.alert.py-3 .text-muted {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

/* Status indicators */
.alert-danger.py-2,
.alert-success.py-2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

/* Filter date range styling */
.date-range .form-control {
  font-size: 0.85rem;
}

.date-range label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 2px;
}


/* Timeline connector effect */
.booking-timeline .booking-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc3545;
  transform: translateY(-50%);
}

.booking-timeline .booking-item.upcoming::before {
  background: #ffc107;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .booking-timeline {
    max-height: 200px;
  }

  .location-card .badge {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .booking-item .d-flex {
    flex-direction: column;
    gap: 8px;
  }

  .alert.py-3 {
    padding: 15px !important;
  }

  .alert.py-3 i.fs-4 {
    font-size: 2rem !important;
  }

  .alert.py-3 strong {
    font-size: 1rem;
  }
}

/* Animation for availability status */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Success/Error animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert.py-3 {
  animation: slideIn 0.4s ease-out;
}

/* Filter box enhancements */
.filter-box {
  position: sticky;
  top: 20px;
}

.filter-box .btn {
  transition: all 0.3s ease;
}

.filter-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Date filter info alert */
.alert-info {
  border-left: 4px solid #0dcaf0;
  background-color: #e7f6fd;
}



.theme-toggle {
  display: inline-block;
}

.toggle-pill {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-main);
  border-radius: 50px;
  padding: 6px;
  width: 130px;
  height: 45px;
  cursor: pointer;
  box-shadow: 0 0 20px rgb(255 0 0 / 20%);
}

[dir="rtl"] .toggle-pill {
  flex-direction: row-reverse;
}

/* Options */
.toggle-option {
  flex: 1;
  text-align: center;
  z-index: 2;
  font-weight: 500;
  font-size: 13px;
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.toggle-option.active {
  color: #fff;
}

/* Icons */
.toggle-option .icon {
  font-size: 14px;
}

/* Slider */
.toggle-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  background: var(--bs-primary);
  border-radius: 50px;
  transition: all 0.35s ease;
  z-index: 1;
}

/* Move slider to right */
.toggle-pill.dark-active .toggle-slider {
  left: calc(50%);
}

/* Glow effect */
.toggle-pill.dark-active {
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}