/* ========================================
   CSS Variables - Color Scheme & Fonts
   ======================================== */
:root {
  /* Main Colors */
  --primary-color: #0b1f3a;
  --secondary-color: #e85d04;
  --light-color: #f8f9fa;
  --white-color: #ffffff;

  /* Gradient */
  --gradient-primary: linear-gradient(135deg, #0b1f3a 0%, #1d3557 100%);

  --gradient-secondary: linear-gradient(
    135deg,
    #ff6a00 0%,
    #ffb703 50%,
    #d00000 100%
  );
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(11, 31, 58, 0.9) 0%,
    rgba(232, 93, 4, 0.85) 100%
  );

  /* Typography */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;
  /* Spacing */
  --section-padding: 40px 0;
  --transition: all 0.3s ease;
}

/* ========================================
   Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-color);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

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

.section-padding {
  padding: var(--section-padding);
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
  background: var(--gradient-secondary);
  padding: 5px 0;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.635),
    transparent
  );

  transform: skewX(-20deg);
  animation: shineMove 2.5s infinite;
}

@keyframes shineMove {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}

.top-contact {
  margin-top: 2px;
}

.top-contact a {
  color: var(--light-color);
  margin-right: 25px;
  display: inline-block;
}

.top-contact a i {
  margin-right: 5px;
  color: var(--primary-color);
}

.top-contact a:hover {
  color: var(--primary-color);
}

.top-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white-color);
  margin-left: 8px;
  transition: var(--transition);
}

.top-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  background: #fffffff0;
  padding: 3px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 5px 0;
}

.navbar-brand {
  max-width: 211px;
}

.navbar-brand img {
  width: 100%;
}

.navbar-nav .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  /* padding: 3px 10px !important; */
  font-size: 14px;
  margin: 0 5px;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ef8902;
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

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

.navbar .dropdown-menu {
  border: 1px solid rgba(13, 110, 253, 0.12);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(12, 48, 120, 0.14);
  top: 50;
}

.navbar .dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 500;
}

.navbar .dropdown-item:hover {
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary-color);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 8px 25px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(240, 211, 69, 0.3);
  border: 1px solid var(--secondary-color);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(231, 130, 6, 0.4);
  background: #fff;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.btn-outline-primary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

.btn-outline-light {
  border: 2px solid var(--white-color);
  color: var(--white-color);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-primary a {
  text-decoration: none !important;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  margin-bottom: 40px;
}

.section-subtitle {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 18px;
  font-family: cursive;
  position: relative;
  text-align: center;
  margin-bottom: 0px;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  width: 50px;
  height: 2px;
  background: #ff7a00;
  transform: translateY(-50%);
}

.section-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -60px;
  width: 50px;
  height: 2px;
  background: #ff7a00;
  transform: translateY(-50%);
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.section-title span {
  color: var(--secondary-color);
  font-family: cursive;
}

.section-description {
  font-size: 18px;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
  Hero Section
   ======================================== */
/* HERO MAIN */
.home-hero {
  position: relative;
  height: calc(100vh - 150px);
  background: url("../images/hero-bg .png") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.1) 70%,
    transparent 100%
  );
}

.home-hero-content {
  position: relative;
  z-index: 2;
  margin-bottom: 100px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.home-hero-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}

.home-hero-subtitle {
  font-size: 16px;
  margin: 15px 0 25px;
  opacity: 0.9;
}

.home-hero-search {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.home-hero-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
}

.home-hero-search-field i {
  margin-right: 8px;
  color: #05244c;
}

.home-hero-search-field input {
  border: none;
  outline: none;
  width: 100%;
}

/* BUTTON */
.home-hero-search-btn {
  background: #05244c;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.home-hero-search-btn:hover {
  background: #02152d;
}

/* New Form Section */
.hero-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-form-box {
  background: #ffffff66;
  padding: 15px;
  border-radius: 12px;
  width: 100%;
  border: 1px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-form-title {
  text-align: center;
  font-weight: 800;
  color: #2d0f00;
}

.hero-form-input {
  border-radius: 8px !important;
  padding: 10px;
}

.hero-form-input:focus {
  border-color: #ff6600;
  box-shadow: none;
}

.hero-form-btn {
  background: #e85d06;
  border: none;
  border-radius: 8px;
  padding: 5px 40px;
  font-weight: 600;
  transition: 0.3s;
  color: #fff;
  display: flex;
  margin: 0 auto;
}

.hero-form-btn:hover {
  background: #e65c00;
}

/* ========================================
  Booking Modal
   ======================================== */
.booking-modal-premium .modal-dialog {
  max-width: 620px;
}

.booking-modal-compact {
  padding: 14px;
}

.booking-modal-premium .modal-content {
  border: none;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(8, 24, 46, 0.22);
}

.booking-modal-premium .modal-header {
  padding: 22px 22px 10px;
  border-bottom: none;
  align-items: center;
  background: #ffffff;
}

.booking-title-wrap {
  max-width: 440px;
}

.booking-modal-premium .modal-title {
  margin-bottom: 4px;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--primary-color);
}

.booking-subtitle {
  margin-bottom: 0;
  color: #667085;
  font-size: 14px;
}

.booking-modal-premium .btn-close {
  margin: 0 0 0 auto;
  border-radius: 50%;
  opacity: 1;
  box-shadow: none;
}

.booking-modal-premium .modal-body {
  padding: 0 22px 22px;
  background: #ffffff;
}

.booking-form-inquiry {
  padding: 6px 0 0;
}

.booking-form-inquiry .form-control,
.booking-form-inquiry .form-select {
  min-height: 48px;
  border: 1px solid #d8e0ea;
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 14px;
  color: #56606f;
  background: #fbfcfe;
  box-shadow: none;
}

.booking-form-inquiry textarea.form-control {
  min-height: 82px;
  resize: vertical;
}

.booking-form-inquiry .form-control::placeholder,
.booking-form-inquiry .form-select {
  color: #6b7280;
}

.booking-form-inquiry .form-control:focus,
.booking-form-inquiry .form-select:focus {
  border-color: #ffb703;
  box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.14);
}

.booking-form-inquiry .btn {
  min-height: 50px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  background: var(--gradient-secondary);
  box-shadow: 0 12px 24px rgba(232, 93, 4, 0.22);
}

/* ========================================
  Tour Card Section  
   ======================================== */
.tour-card-hm {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s ease;
}

.tour-card-hm-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.tour-card-hm-img {
  position: relative;
  height: 270px;
}

.tour-card-hm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card-hm-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.tour-card-hm-tag {
  position: absolute;
  top: 12px;
  left: 0px;
  background: #ffcc00;
  padding: 3px 10px;
  border-radius: 0px 20px 20px 0px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-card-hm-days {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgb(45 15 0 / 62%);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  z-index: 2;
}

.tour-card-hm-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  z-index: 2;
}

.tour-card-hm-overlay h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-hm-overlay p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 0px;
  line-height: 1.3;
}

.tour-card-hm-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px 10px 10px;
  background: #feac1a21;
  border-radius: 0px 0px 20px 20px;
  border: 1px solid #dcd6d6bf;
}

.tour-card-hm-bottom h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.tour-card-hm-off {
  font-size: 11px;
  color: #ff7a00;
  background: #fff;
  border: 1px solid #ff7a00;
  padding: 3px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.tour-card-hm-btn {
  width: 38px;
  height: 38px;
  background: #00204a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.tour-card-hm-btn:hover {
  background: #ff7a00;
}

/* ========================================
    Doemstic and Internation Card Section
   ======================================== */
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

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

.destination-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);

  z-index: 1;
}

.destination-card.large {
  height: 100%;
  max-height: 390px;
}

.destination-card:not(.large) {
  height: 190px;
}

.destination-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  transition: 0.4s ease;
}

.destination-card:hover .overlay {
  background: linear-gradient(
    to top,
    rgba(255, 115, 0, 0.78),
    rgba(255, 140, 0, 0)
  );
}

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

.destination-card .content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  color: #fff;
}

.destination-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
}

.destination-card span {
  font-size: 14px;
  letter-spacing: 2px;
}
/* ========================================
    Testimonial Section
   ======================================== */
.hm_enh_testi_section {
  background: #f8fafc;
}

.hm_enh_testi_card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
}

.hm_enh_testi_light {
  background: #fff;
  color: #333;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hm_enh_testi_dark {
  background: #001f3f;
  color: #fff;
}

.hm_enh_testi_quote {
  font-size: 40px;
  color: #3b82f6;
}

.hm_enh_testi_stars {
  color: #fbbf24;
  font-size: 12px;
  margin-bottom: 1 5px;
}

.hm_enh_testi_text {
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2px;
  color: #475569;
}

.hm_enh_testi_read {
  margin-top: 0px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  justify-content: end;
}

.hm_enh_testi_user img {
  width: 45px !important;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
}

.hm_enh_testi_user h6 {
  margin: 0;
  font-weight: 600;
}

.hm_enh_testi_user span {
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
}

.hm_enh_testi_user span i {
  color: #fff;
}

.hm_testi_check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  background: #0c70f3;
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
}

/* ========================================
   Video Story  Section
   ======================================== */
.jf-video iframe {
  width: 100%;
  height: 400px;
  border-radius: 15px;
}

.jf-card {
  width: 100%;
  cursor: pointer;
  border-radius: 12px;
  transition: 0.3s;
}

.jf-card img {
  width: 100%;
}

.jf-card.active {
  border: 3px solid #ff7a00;
}

/* CONTENT */
.jf-content {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* TAG */
.jf-tag {
  color: #ff7a00;
  font-weight: 600;
}

/* TITLE */
.jf-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
}

.jf-content h3 span {
  color: #ff7a00;
}

/* QUOTE */
.jf-desc {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

/* AUTHOR CARD */
.jf-author {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f9fafb;
  padding: 15px;
  border-radius: 12px;
  position: relative;
}

/* IMAGE */
.jf-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

/* TEXT */
.jf-author-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.jf-author-info span {
  font-size: 13px;
  color: #777;
}

.jf-location {
  font-size: 12px;
  color: #999;
}

/* VERIFIED BADGE */
.jf-badge {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #ff7a00;
  font-size: 18px;
}

/* BUTTON */
.jf-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(135deg, #ff7a00, #ff9f2f);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.jf-btn:hover {
  transform: translateY(-2px);
}

/* ========================================
   Rajasthan Tour Card 
   ======================================== */
.rajasthan-tour-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
}

.rajasthan-tour-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.rajasthan-tour-card-badge {
  position: absolute;
  top: 10px;
  padding: 0px 10px;
  border-radius: 0px 30px 30px 0px;
  background: linear-gradient(135deg, #ff9a00, #ff0058);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.rajasthan-tour-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 10px;
  color: #fff;

  /* background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    transparent 100%
  ); */
  background: linear-gradient(
    to top,
    rgb(0 0 0) 0%,
    rgb(0 0 0) 40%,
    rgb(0 0 0 / 39%) 70%,
    #0000002b 100%
  );
}

.rajasthan-tour-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0px;
  letter-spacing: 0.5px;
}

.rajasthan-tour-card-subinfo {
  font-size: 13px;
  margin-bottom: 2px;
  line-height: 1.3;
}

.rajasthan-tour-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.rajasthan-tour-card-right {
  height: 100%;
  border-radius: 15px;
  max-height: 488px;
}

.rajasthan-tour-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* ========================================
   Home Blog Section 
   ======================================== */
.hm-blogs-section {
  background: #f5f7fa;
}

.hm-blogs-section a {
  text-decoration: none;
  color: #00214a;
}

.hm-blogs-section a:hover {
  text-decoration: none;
  color: green;
}

.hm-blogs-featured {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.hm-blogs-featured-img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.hm-blogs-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  width: 100%;
  color: #fff;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.2),
    transparent
  );
}

.hm-blogs-date {
  margin-bottom: 5px;
}

.hm-blogs-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* RIGHT */
.hm-blogs-card {
  background: #fff;
  border-radius: 14px 0px 0px 14px;
  padding: 0px 10px;
  border: 1px solid #e4f5ee;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: 0.3s;
  position: relative;
  border: 1px solid #e4f5ee;
}

.hm-blogs-card::after {
  content: "";
  position: absolute;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #16a085, #2ecc71);
  border-radius: 4px;
}

.hm-blogs-card :hover {
}

.hm-blogs-card-img {
  min-width: 110px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.hm-blogs-tag {
  font-size: 11px;
  font-weight: 600;
  color: #16a085;
}

.hm-blogs-card-title {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hm-blogs-date-small {
  font-size: 13px;
  color: #777;
}

/* NUMBER BADGE */
.hm-blogs-number {
  position: absolute;
  right: 15px;
  top: 5px;
  background: #16a085;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  padding: 2px 5px;
}
/* ========================================
   Home About Section 
   ======================================== */
.home-about-section {
  background: #f7f9fc;
}

/* IMAGES */
.home-about-images {
  position: relative;
}

.home-about-img-main {
  width: 100%;
  border-radius: 20px;
  height: 400px;
  object-fit: cover;
}

.home-about-img-small {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  border: 6px solid #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* CONTENT */
.home-about-content {
  max-width: 500px;
}

.home-about-tag {
  background: var(--primary-color);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

.home-about-title {
  font-size: 34px;
  font-weight: 700;
  margin: 15px 0;
}

.home-about-text {
  color: #666;
  line-height: 1.6;
}

/* STATS */
.home-about-stats {
  display: flex;
  gap: 30px;
  margin: 25px 0;
}

.home-about-stat h3 {
  color: var(--secondary-color);
  font-size: 25px;
  margin-bottom: 5px;
}

.home-about-stat p {
  font-size: 14px;
  color: #777;
}

/* BUTTON */
.home-about-btn {
  background: var(--gradient-overlay);
  color: #fff;
  border: none;
  padding: 6px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.home-about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Premium Card Styling 
   ======================================== */
/* Premium Card Styling */
.premimum_hm_card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  font-family: sans-serif;
}

/* IMAGE */
.premimum_hm_card_img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* BADGE */
.premimum_hm_card_badge {
  position: absolute;
  top: 12px;
  left: 0px;
  background: #ffcc00;
  color: #000;
  padding: 1px 12px;
  border-radius: 0px 20px 20px 0px;
  font-size: 13px;
}

/* OVERLAY */
.premimum_hm_card_overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.6),
    transparent
  );
}

.premimum_hm_card_subtitle {
  font-size: 16px;
  margin-bottom: 0px;
  font-weight: 700;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.premimum_hm_card_route {
  display: inline-block;
  border-radius: 20px;
  font-size: 14px;
}

.premimum_hm_card_info {
  display: flex;
  gap: 15px;
  font-size: 14px;
  margin-bottom: 4px;
}

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

.premimum_hm_card_bottom h3 {
  margin: 0;
  font-size: 13px;
  max-width: 120px;
  font-weight: 600;
}

.premimum_hm_card_rating {
  color: #000;
  font-weight: 600;
  font-size: 12px;
  background: #fff;
  border-radius: 5px;
  padding: 1px 6px;
  min-width: 70px;
}
/* ========================================
   Contact Section
   ======================================== */
.contact-section {
  background: var(--light-color);
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding: 20px 15px;
  background: var(--white-color);
  border-radius: 15px;
  border: 1px solid var(--secondary-color);
  transition: var(--transition);
}

.contact-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 15px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 24px;
  color: var(--white-color);
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-item p {
  color: #6c757d;
  margin: 0;
  font-size: 15px;
}

.contact-form-wrapper {
  background: var(--white-color);
  padding: 40px 15px;
  border-radius: 20px;
  border: 1px dashed var(--secondary-color);
  box-shadow: 0 5px 20px rgba(234, 163, 21, 0.199);
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 15px;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

/* ========================================
   Best Rajasthan Tour Packages Card
   ======================================== */
.home-all-tour-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.home-all-tour-main-content {
  display: flex;
  gap: 20px;
}

.home-all-tour-img-box {
  position: relative;
  width: 35%;
  border-radius: 15px;
  overflow: hidden;
  height: 296px;
}

.home-all-tour-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-all-tour-duration {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #e67e22;
  color: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.home-all-tour-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.home-all-tour-details {
  width: 65%;
}

.home-all-tour-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.home-all-tour-tag-rating {
  background: #fff5e6;
  color: #e67e22;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  border: 1px solid #ffcc80;
}

.home-all-tour-tag-popular {
  background: #e6ffef;
  color: #27ae60;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  border: 1px solid #a2f2c1;
}

.home-all-tour-title {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 10px 0;
}

.home-all-tour-location {
  font-size: 13px;
  color: #e67e22;
  margin-bottom: 5px;
  font-weight: 600;
}

.home-all-tour-amenities {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  padding: 10px 0;
  margin-bottom: 5px;
}

.home-all-tour-icon-item {
  text-align: center;
}

.home-all-tour-icon-item img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

.home-all-tour-icon-item p {
  font-size: 10px;
  margin-top: 5px;
  color: #7f8c8d;
}

.home-all-tour-cta-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-all-tour-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 55%;
  text-align: center;
}

.home-all-tour-btn-talk {
  background: #fff;
  border: 1px solid #e67e22;
  color: #333;
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.home-all-tour-btn-whatsapp {
  background: #2ecc71;
  border: none;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.home-all-tour-pricing {
  text-align: right;
  border-left: 1px dashed #ccc;
  padding-left: 15px;
}

.home-all-tour-pax {
  font-size: 12px;
  color: #2980b9;
  font-weight: 700;
}

.home-all-tour-price {
  font-size: 22px;
  color: #e67e22;
  font-weight: 800;
  margin: 0;
}

.home-all-tour-footer-btns {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  text-align: center;
}

.home-all-tour-footer-inquire {
  flex: 1;
  background: #fff;
  border: 1px solid #e67e22;
  color: #000;
  padding: 4px;
  border-radius: 4px;
  font-weight: 600;
}

.home-all-tour-footer-details {
  flex: 1;
  background: linear-gradient(90deg, #e67e22, #8e44ad);
  border: none;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  font-weight: 600;
}

/* ========================================
   Navigating FAQ Section Start
   ======================================== */

.navigating-faq-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.faq-accordion {
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-green);
}

.faq-item.active {
  border-color: var(--accent-green);
  box-shadow: 0 5px 25px rgba(238, 124, 10, 0.15);
}

.faq-question {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}

.faq-item.active .faq-question {
  background: #efdec3c4;
}

.faq-question:hover {
  background: #f5e7cf6e;
}

.faq-question h5 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  flex: 1;
  padding-right: 20px;
  line-height: 1.5;
}

.faq-question i {
  font-size: 1rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px;
}

.faq-answer p {
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.faq-hero-img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* ========================================
   Fleet Section
   ======================================== */
.fleet-section {
  background: var(--light-color);
}

.fleet-card {
  background: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #dadada;
  height: 100%;
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.fleet-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-secondary);
  color: var(--white-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.fleet-badge.luxury {
  background: var(--gradient-primary);
}

.fleet-content {
  padding: 5px 15px 15px 15px;
}

.fleet-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.fleet-description {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 10px;
}

.fleet-features {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
  flex-wrap: wrap;
  justify-content: space-around;
}

.fleet-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6c757d;
}

.fleet-features span i {
  color: var(--primary-color);
}

.fleet-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  border-top: 1px solid #e9ecef;
}

.fleet-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.fleet-price .price {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-color);
}

.fleet-price .per-km {
  font-size: 14px;
  color: #6c757d;
}

.estimated-price-tag {
  color: var(--primary-color);
  font-size: 14px;
}

.fleet-hm-btns {
  display: flex;
  gap: 5px;
}

.fleet-hm-btns a {
  flex: 1;
  padding: 4px;
  font-size: 13px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-hm-btns--view {
  background: #0d6efd;
  color: #fff;
}

.fleet-hm-btns--enquiry {
  background: #ff6b35;
  color: #fff;
}

.fleet-hm-btns--whtasaap {
  background: #25d366;
  color: #fff;
  max-width: 40px;
}

.fleet-hm-btns a:hover {
  opacity: 0.9;
}

/* ========================================
    Navigating FAQ Section End 
   ======================================== */

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #03204b;
  color: var(--light-color);
  padding: 40px 0 0;
}

.footer-logo-warpper img {
  width: 211px;
  padding: 5px;
}

.footer-widget h2,
.footer-widget h4 {
  color: var(--white-color);
}

.footer-brand {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-brand span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white-color);
  transition: var(--transition);
}

.footer-social a:hover {
  background: green;
  transform: translateY(-5px);
}

.footer-widget h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.footer-widget h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 3px;
  background: linear-gradient(to right, #ff6b35, #ff9a6b);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(236, 76, 17, 0.727);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}
.footer-bottom {
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* ========================================
  Tour Cattegory Page
   ======================================== */
/* hero section */
.tour-category-hero-banner {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.tour-category-hero-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.tour-category-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 15, 35, 0.92) 0%,
    rgba(5, 15, 35, 0.7) 35%,
    rgba(5, 15, 35, 0.2) 100%
  );
}

.tour-category-hero-content {
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 15px;
  z-index: 2;

  padding: 28px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-category-hero-title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0px;
}

.tour-category-hero-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  max-width: 700px;
  margin-bottom: 24px;
}

.tour-category-section {
  background: #f3f6fb;
}

.yatra-card {
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
}

.yatra-image {
  width: 32%;
  position: relative;
  overflow: hidden;
}

.yatra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badge */
.trip-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff7a00;
  color: #fff;
  padding: 2px 16px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Center Content */
.yatra-content {
  width: 43%;
  padding: 10px 10px;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(11, 33, 77, 0.97) 0%,
    rgba(16, 52, 120, 0.96) 50%,
    rgba(8, 27, 66, 0.98) 100%
  );
}

/* Top Glow */
.yatra-content::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 153, 0, 0.15);
  filter: blur(20px);
}

/* Bottom Design */
.yatra-content::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  transform: rotate(15deg);
}

.yatra-content .yatra-card-title {
  position: relative;
  z-index: 2;
}

.yatra-content .yatra-card-title::after {
  content: "";
  width: 70px;
  height: 4px;
  border-radius: 20px;
  margin-top: 8px;
  display: block;
  background: linear-gradient(to right, #ff8c00, #ffd089);
}

.yatra-content > * {
  position: relative;
  z-index: 2;
}

.yatra-card-feature-box {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.yatra-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 15px;
}

.yatra-title span {
  color: #ff9d00;
}

/* Info */
.tour-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-item i {
  width: 25px;
  height: 25px;
  background: #fff;
  color: #ff7a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-item h6 {
  margin: 0;
  font-size: 15px;
  color: #ffb347;
  font-weight: 700;
}

.info-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Features */
.feature-box {
  margin-top: 15px;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  background: rgb(255 255 255 / 63%);
  backdrop-filter: blur(14px);
  border: 1px solid rgb(255 255 255);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 25%;
}

.feature-item i {
  font-size: 18px;
  color: #0c2d68;
}

.feature-item span {
  color: #222;
  font-size: 13px;
  font-weight: 700;
}

/* Right Box */
.yatra-price-box {
  width: 25%;
  background: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yatra-price-box h6 {
  color: #555;
  font-size: 15px;
}

.yatra-price-box h3 {
  font-size: 16px;
  font-weight: 800;
  color: #ff6b00;
  margin: 5px 0;
}

.yatra-price-box p {
  color: #666;
}

.yatra-button-dt {
  gap: 8px;
  margin-top: 12px;
}

.yatra-button-dt a {
  text-align: center;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.yatra-button-dt .enquiry-btn {
  background: var(--secondary-color);
  color: #fff;
}

.yatra-button-dt .details-btn {
  background: var(--primary-color);
  color: #fff;
}

.yatra-button-dt a:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* right side common sidebar */
.common-side-sticky {
  position: sticky;
  top: 68px;
}

.common-side-card {
  background: linear-gradient(145deg, #0d2f6f, #17479d);
  border-radius: 20px;
  overflow: hidden;
  padding: 20px 15px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.common-side-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -80px;
  right: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.common-side-top {
  position: relative;
  z-index: 2;
}

.common-side-tag {
  background: #ff7b00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 14px;
}

.common-side-title {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.common-side-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 20px;
}

.common-side-button-wrap {
  display: flex;
  /* flex-direction: column; */
  gap: 5px;
  margin-bottom: 20px;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.common-side-btn {
  border-radius: 5px;
  padding: 7px 16px;
  font-size: 12px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s ease;
  flex: 1;
}

.common-side-btn:hover {
  transform: translateY(-2px);
}

.common-side-btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.common-side-btn-call {
  background: #ff7b00;
  color: #fff;
}

.common-side-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.common-side-feature {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.common-side-feature i {
  color: #ffd26f;
}

.common-side-social-card {
  margin-top: 20px;
  padding: 24px 15px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #eef4ff);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.common-side-social-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgb(255 123 0 / 27%);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

.common-side-social-top {
  position: relative;
  z-index: 2;
}

.common-side-social-tag {
  display: inline-block;
  background: #0d2f6f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.common-side-social-title {
  font-size: 18px;
  font-weight: 800;
  color: #0d2f6f;
  line-height: 1.2;
}

.common-side-social-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 22px;
}

.common-side-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
  z-index: 2;
}

.common-side-social-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.common-side-social-icon:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
}

.common-side-social-facebook {
  background: #1877f2;
}

.common-side-social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.common-side-social-youtube {
  background: #ff0000;
}

.common-side-social-whatsapp {
  background: #25d366;
}

/* Details Page csss */
.tour-category-info {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tour-category-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tour-category-item i {
  font-size: 24px;
  color: #fff;
  line-height: 1;
}

.tour-category-item span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .tour-category-info {
    gap: 15px;
  }

  .tour-category-item i {
    font-size: 18px;
  }

  .tour-category-item span {
    font-size: 16px;
  }
}

/* Privacy and Policy  Page*/
.privacy-policy-section {
  background: #f8f9fa;
}

.privacy-policy-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-policy-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.privacy-policy-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
}

.privacy-policy-content p,
.privacy-policy-content li {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

.privacy-policy-content ul {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .privacy-policy-content {
    padding: 25px;
  }

  .privacy-policy-content h1 {
    font-size: 30px;
  }

  .privacy-policy-content h3 {
    font-size: 20px;
  }
}
