  
    :root {
      --primary-color: #292a70;
      --secondary-color: #573535;
      --accent-color: #00a71c;
      --light-bg: #f9f9f9;
      --dark-text: #333;
      --light-text: #777;
      --white: #fff;
      --border-radius: 8px;
      --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark-text);
      line-height: 1.6;

    }
    
    /* Header Styles */
    .tour-header {
      text-align: center;
      padding: 30px 20px;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://www.rajasthancab.com/uploads/1743488243-67eb84f3ada4a.webp');
      background-size: cover;
      background-position: center;
      color: var(--white);
    }
    
    .tour-header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
    
    .tour-header .tour-meta {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 15px;
    }
    
    .tour-header .tour-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    /* Main Container */
    .logic_container {
      max-width: 1200px;
      margin: 30px auto;
      padding: 0 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;


            background-color: #f5f5f5;
    }
    
    .main-content {
      flex: 2;
      min-width: 300px;
    }
    
    .sidebar {
      flex: 1;
      min-width: 300px;
    }
    
    /* Card Styles */
    .card {
      background: var(--white);

      /* box-shadow: var(--box-shadow); */
      padding: 25px;
      margin-bottom: 30px;
    }
    
    /* Gallery Section */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
      margin: 20px 0;
    }
    
    .gallery-item {
      border-radius: var(--border-radius);
      overflow: hidden;
      height: 350px !important;
      position: relative;
      cursor: pointer;
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 30px !important;
      transition: transform 0.3s;
    }
    
    .gallery-item:hover img {
      transform: scale(1.05);
    }
    
    /* Overview Section */
    .overview-text {
      line-height: 1.7;
      color: var(--dark-text);
      overflow: hidden;
      max-height: 120px;
      transition: max-height 0.5s ease;
    }
    
    .overview-text.expanded {
      max-height: 1000px;
    }
    
    .see-more {
      color: var(--primary-color);
      font-weight: 600;
      cursor: pointer;
      display: inline-block;
      margin-top: 10px;
    }
    
    /* Highlights Section */
    .highlight-list {
      list-style: none;
    }
    
    .highlight-item {
      padding: 10px 0;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    
    .highlight-item i {
      color: var(--accent-color);
      margin-top: 3px;
    }
    
    /* Itinerary Accordion */
    .accordion-item {
      margin-bottom: 15px;
      border-left: 3px dotted var(--primary-color);
      padding-left: 15px;
      position: relative;
    }
    
    .day-tag {
      position: absolute;
      left: -20px;
      top: 10px;
      background: var(--primary-color);
      color: var(--white);
      font-size: 12px;
      font-weight: bold;
      padding: 5px 15px;
      border-radius: 50%;
      width: 60px;
      text-align: center;
    }
    
    .accordion-toggle {
      display: none;
    }
    
    .accordion-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--light-bg);
      padding: 15px 20px;
      font-weight: 600;
      cursor: pointer;
      border-radius: var(--border-radius);
      transition: all 0.3s;
    }
    
    .accordion-label:hover {
      background: #e8e8e8;
    }
    
    .accordion-label::after {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      transition: transform 0.3s;
    }
    
    .accordion-toggle:checked + .accordion-label::after {
      transform: rotate(180deg);
    }
    
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding-left: 15px;
    }
    
    .accordion-toggle:checked + .accordion-label + .accordion-content {
      max-height: 500px;
      padding: 15px 0 10px 15px;
    }
    
    /* Inclusions/Exclusions */
    .inclusion-list, .exclusion-list {
      list-style: none;
    }
    
    .inclusion-list li, .exclusion-list li {
      padding: 8px 0;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    
    .inclusion-list i {
      color: var(--accent-color);
    }
    
    .exclusion-list i {
      color: #d9534f;
    }
    
    /* Reviews Section */
    .reviews-summary {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin: 20px 0;
    }
    
    .rating-summary {
      flex: 1;
      min-width: 200px;
      text-align: center;
      background: var(--light-bg);
      padding: 20px;
      border-radius: var(--border-radius);
    }
    
    .rating-score {
      font-size: 32px;
      font-weight: 700;
      color: var(--primary-color);
    }
    
    .rating-stars {
      color: #ffc107;
      letter-spacing: 3px;
      margin: 8px 0;
    }
    
    .rating-bars {
      flex: 2;
      min-width: 300px;
    }
    
    .rating-bar {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .bar-label {
      width: 80px;
    }
    
    .bar-container {
      flex: 1;
      height: 8px;
      background: #eee;
      border-radius: 4px;
      overflow: hidden;
      margin: 0 10px;
    }
    
    .bar-fill {
      height: 100%;
      background: var(--accent-color);
    }
    
    .bar-count {
      width: 40px;
      text-align: right;
    }
    
    /* Booking Form */
    .booking-form .form-group {
      margin-bottom: 15px;
    }
    
    .booking-form label {
      display: block;
      margin-bottom: 5px;
      font-weight: 500;
    }
    
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: var(--border-radius);
      font-family: inherit;
    }
    
    .booking-form textarea {
      min-height: 100px;
      resize: vertical;
    }
    
    .btnss {
      display: inline-block;
      padding: 20px 15px;
      background: var(--primary-color);
      color: var(--white);
      border: none;
      border-radius: var(--border-radius);
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      font-size: 21px;
      transition: background 0.3s;
      text-decoration: none;
      width: 100%;
    }
    
    .btnss:hover {
      background: #9e9a9d;
    }
    
    .btnss-whatsapp {
      background: #098b39;
      margin-top: 10px;
    }
    
    .btnss-whatsapp:hover {
      background: #1da851;
    }
    
    /* Price Box */
    .price-box {
      text-align: center;
      padding: 20px;
      border: 2px solid var(--primary-color);
      border-radius: var(--border-radius);
      margin-bottom: 20px;
    }
    
    .price-label {
      font-size: 14px;
      color: var(--light-text);
    }
    
    .current-price {
      font-size: 28px;
      font-weight: 700;
      color: var(--primary-color);
      margin: 5px 0;
    }
    
    .old-price {
      text-decoration: line-through;
      color: var(--light-text);
    }
    
    .discount-badge {
      display: inline-block;
      background: var(--accent-color);
      color: var(--white);
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      margin-top: 10px;
    }
    
    /* Contact Card */
    .contact-card {
      padding: 20px;
      background: var(--white);
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }
    
    .contact-item i {
      color: var(--primary-color);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }
      
      .gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      }
      
      .day-tag {
        left: -15px;
      }
    }
    
    /* Lightbox Styles */
    .lightbox-container {
      width: 100vw;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    
    .lightbox-container.active {
      opacity: 1;
      pointer-events: all;
    }
    
    .lightbox-image-wrapper {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }
    
    .lightbox-image {
      max-width: 100%;
      max-height: 80vh;
      display: block;
      margin: 0 auto;
    }
    
    .lightbox-btn {
      position: absolute !important;
      top: 50% !important;
      transform: translateY(-50%);
      color: white;
      font-size: 40px;
      cursor: pointer;
      background: rgba(0,0,0,0.5);
      width: 50px !important;
      height: 50px !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      z-index: 10;
    }
    
    #prev {
      left: 20px !important;
    }
    
    #next {
      right: 20px;
    }
    
    #close {
      position: absolute;
      top: 20px;
      right: 20px;
      color: white;
      font-size: 30px;
      cursor: pointer;
      z-index: 10;
    }
  

          
    * {
      box-sizing: border-box;
    }
    

    
    /* Header Styles */
    .car-header {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1502877338535-766e1452684a');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 60px 20px;
      text-align: center;
    }
    
    .car-header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
    
    .car-header p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto;
    }
    
    /* Main Container */
    .logic_container {
      display: flex;
justify-content: center;

      max-width: 1200px;
      margin: 30px auto;
      padding: 20px;
      gap: 30px;
    }
    

    
    .right {
      flex: 1;
      min-width: 300px;

    }
    
    /* Car Info Card */
    .car-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      padding: 25px;
      margin-bottom: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;

      width: 100% !important;
    }
    
    .car-info {
      flex: 1;
      min-width: 250px;
    }
    
    .car-title {
      font-size: 1.8rem;
      color: #222;
      margin-bottom: 10px;
    }
    
    .car-meta {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      flex-wrap: wrap;
    }
    
    .car-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.9rem;
      color: #555;
    }
    
    .car-features {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin: 20px 0;
    }
    
    .feature {
      background: #f8f8f8;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .car-price {
      flex: 0 0 200px;
      text-align: right;
    }
    
    .price-label {
      font-size: 0.9rem;
      color: #777;
    }
    
    .price-value {
      font-size: 1.8rem;
      color: #2a7f62;
      font-weight: bold;
    }
    
    .price-note {
      font-size: 0.8rem;
      color: #999;
    }
    
    /* Gallery Styles */
    .gallery {
      width: 100%;
      margin: 20px 0;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
    }
    
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      cursor: pointer;
      height: 180px;
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }
    
    .gallery-item:hover img {
      transform: scale(1.05);
    }
    
    /* Details Section */
    .details-section {
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      padding: 25px;
      margin-bottom: 30px;

      margin-top: 50px;
    }
    
    .section-title {
      font-size: 1.5rem;
      color: #222;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #f0f0f0;
    }
    
    .overview-text {
      line-height: 1.6;
      color: #555;
      overflow: hidden;
      transition: height 0.3s ease;
    }
    
    .overview-text.collapsed {
      height: 100px;
    }
    
    .overview-text.expanded {
      height: auto;
    }
    
    .see-more {
      color: #2a7f62;
      cursor: pointer;
      font-weight: 600;
      display: inline-block;
      margin-top: 10px;
    }
    
    /* Features & Specs */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
    }
    
    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
      background: #f9f9f9;
      border-radius: 5px;
    }
    
    /* Booking Form */
    .booking-form {

      border-radius: 10px;

      padding: 25px;
      position: sticky;
      top: 20px;
  

    }
    
    .form-title {
      font-size: 1.5rem;
      color: #222;
      margin-bottom: 20px;
      text-align: center;
    }
    
    .form-group {
      margin-bottom: 15px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 5px;
      font-weight: 600;
      color: #444;
    }
    
    .form-group input,
    .form-group select {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
    }
    
    .form-row {
      display: flex;
      gap: 6px;
box-sizing: border-box;
justify-content: center;
align-items: center;
flex-wrap: wrap;
    }
    
    .form-row .form-group {
      flex: 1;
    }
    
    .submit-btn {
      width: 100%;
      padding: 15px;
      background:#13357b;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
    }
    
    .submit-btn:hover {
      background: #5b6496;
    }
    
    /* Contact Card */
    .contact-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      padding: 25px;
      margin-top: 30px;

    }
    
    .contact-title {
      font-size: 1.3rem;
      color: #222;
      margin-bottom: 15px;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
      color: #444;
    }
    
    .contact-item i {
      color: #2a7f62;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }
      
      .car-card {
        flex-direction: column;
      }
      
      .car-price {
        text-align: left;
      }
    }
    
    /* Lightbox Styles */
    .lightbox-container {
      width: 100vw;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: all 0.4s ease-in-out;
      padding: 20px;
    }
    
    .lightbox-container.active {
      opacity: 1;
      pointer-events: all;
    }
    
    .lightbox-image-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      padding: 20px;
      position: relative;
      transform: scale(0);
      transition: all 0.4s ease-in-out;
      box-sizing: border-box;
    }
    
    .lightbox-image {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      width: auto;
      object-fit: contain;
      display: block;
      margin: auto;
    }
    
    .lightbox-container.active .lightbox-image-wrapper {
      transform: scale(1);
    }
    
    .lightbox-btn,
    #close {
      color: white;
      position: absolute;
      font-size: 40px;
      cursor: pointer;
      z-index: 10000;
      user-select: none;
    }
    
    .left {
      left: 10px;
    }
    
    .rights {
      right: 10px;
      padding: 9px;


    }
    
    #close {
      top: 20px;
      right: 20px;
    }
    
    .slideleft {
      animation: slideleft 0.5s ease;
    }
    
    .sliderights {
      animation: slideright 0.5s ease;
    }
    
    @keyframes slideleft {
      0% {
        transform: translateX(0);
        opacity: 1;
      }
      50% {
        transform: translateX(-300px);
        opacity: 0;
      }
      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }
    
    @keyframes slideright {
      0% {
        transform: translateX(0);
        opacity: 1;
      }
      50% {
        transform: translateX(300px);
        opacity: 0;
      }
      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }


    .section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;

    display: none;


}


.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;


display: none;}
  


            .car-plans {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      max-width: 1250px;
      margin: 50px auto;
    }

    .car-card {
      background: #1a1a1a0d;
      border-radius: 12px;

      width: 100%;

      padding: 25px;
      position: relative;
      transition: transform 0.3s ease;
    }

    .car-card:hover {
      transform: translateY(-5px);
    }

    .car-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: #28a745;
      color: white;
      padding: 4px 10px;
      font-size: 12px;
      border-radius: 20px;
      font-weight: bold;
    }

    .car-card img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 10px 0 20px;
    }

    .car-title {
      font-size: 28px;
      font-weight: 700;
      color: #003049;
    }

    .car-subtitle {
      font-size: 16px;
      color: #444;
      margin-bottom: 20px;
    }

    .car-features {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
    }

    .car-features li {
      margin: 10px 0;
      color: #333;
      font-size: 15px;
    }

    .car-features i {
      color: #728596;
      margin-right: 10px;
    }

    .book-btn {
      background: #13357b;
      color: white;
      border: none;
      padding: 12px 20px;
      font-size: 15px;
      border-radius: 8px;
      cursor: pointer;
      width: 100%;
      transition: background 0.3s ease;
    }

    .book-btn:hover {
      background: #cbcfd1;
    }

    @media (max-width: 768px) {
      .car-card {
        max-width: 90%;
      }

      html,body{
        overflow-x: hidden;
      }
    }
    
    
    
    
    /*tour category css*/
    
    
    
    

   .locations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 60px auto;
    }

    .location-card {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      border-right: 1px solid red;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .location-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .location-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .location-content {
      padding: 15px;
      text-align: center;
    }

    .location-name {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-bottom: 12px;
    }

    .btn-more {
      background-color: #13357b;
      color: white;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 20px;
      border: none;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn-more i {
      margin-left: 6px;
    }

    .btn-more:hover {
      background-color: #a9181c;
    }

    @media (max-width: 500px) {
      .location-name {
        font-size: 16px;
      }
    }
