
      

  :root {
  --primary-color: #FF6B35;      /* Vibrant Rajasthani Orange (desert sunset) */
  --secondary-color: #E67E22;    /* Deep Saffron (traditional turbans) */
  --accent-color: #F39C12;       /* Golden Yellow (sandstone palaces) */
  --dark-color: #000000;        /* Rich Terracotta (earthenware) */
  --light-bg: #FFF8F0;          /* Warm Ivory (marble floors) */
  --text-dark: #3E2723;         /* Dark Chocolate (wood carvings) */
  --text-light: #FFFFFF;        /* Pure White (palace walls) */
  --highlight: #D35400;         /* Deep Orange (traditional fabrics) */
  --earth: #A0522D;             /* Rustic Brown (village walls) */
  --gold: #FFD700;              /* Royal Gold (palace domes) */
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
        }
        /* Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--secondary-color) !important;
        }
        .navbar-brand i {
            color: var(--primary-color);
        }
        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        /* Banner Slider Styles */
        .banner-slider {
            position: relative;
            height: 600px;
            overflow: hidden;
        }
        .carousel-item {
            height: 600px;
        }
        .carousel-item img {
            object-fit: cover;
            height: 100%;
            filter: brightness(0.7);
        }
        .carousel-caption {
            bottom: 50px;
            background: rgba(0, 0, 0, 0.5);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            max-width: 600px;
            text-align: left;
        }
        .carousel-caption h1 {
            font-size: 3rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .carousel-caption p {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        .btn-custom {
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-custom:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        /* Fixed Enquiry Form */
        .fixed-enquiry {
            position: absolute;
            top: 55%;
            right: 5%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 15px;
            width: 350px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 10;
        }
        .fixed-enquiry h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: bold;
            text-align: center;
        }
        .fixed-enquiry .form-control {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 12px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        .fixed-enquiry .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
        }
        .fixed-enquiry .btn-submit {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            width: 100%;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .fixed-enquiry .btn-submit:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        .fixed-enquiry .form-label {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 5px;
        }
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        .about-content h2 {
            color: var(--secondary-color);
            font-weight: bold;
            margin-bottom: 30px;
        }
        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        .about-features {
            margin-top: 40px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .feature-item i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 15px;
        }
        /* Tour Packages Section */
        .packages-section {
            padding: 80px 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 2.5rem;
        }
        .section-title p {
            color: #666;
            font-size: 1.1rem;
            margin-top: 10px;
        }
        .package-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        .package-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .package-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .package-content h3 {
            color: var(--secondary-color);
            font-weight: bold;
            margin-bottom: 15px;
        }
        .package-duration {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 10px;
        }
        .package-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        .package-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .package-features li {
            padding: 5px 0;
            color: #666;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .package-features li i {
            color: var(--primary-color);
        }
        /* Package Actions - Three Buttons in Same Line */
        .package-actions {
            display: flex;
            gap: 8px;
            margin-top: auto;
        }
        .btn-package {
            flex: 1;
            padding: 10px 12px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            font-size: 0.85rem;
            white-space: nowrap;
        }
        .btn-read-more {
            background: var(--primary-color);
            color: white;
            border: none;
        }
        .btn-read-more:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .btn-enquiry {
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
        }
        .btn-enquiry:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        .btn-call {
            background: #28a745;
            color: white;
            border: none;
        }
        .btn-call:hover {
            background: #218838;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
        }
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        .accordion-button {
            background: white;
            color: var(--secondary-color);
            font-weight: 600;
            box-shadow: none;
            border: 1px solid #e0e0e0;
        }
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: white;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        .accordion-body {
            color: #666;
            line-height: 1.8;
        }
        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background: white;
        }
        .testimonial-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .testimonial-content {
            margin-bottom: 20px;
            position: relative;
        }
        .testimonial-content::before {
            content: '"';
            font-size: 5rem;
            color: var(--primary-color);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: -10px;
        }
        .testimonial-content p {
            font-style: italic;
            color: #555;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .author-info h5 {
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        .author-info p {
            color: #666;
            margin: 0;
            font-size: 0.9rem;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        .footer-widget h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: bold;
        }
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        .footer-widget ul li {
            margin-bottom: 10px;
        }
        .footer-widget ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-widget ul li a:hover {
            color: var(--primary-color);
        }
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .carousel-caption h1 {
                font-size: 2rem;
            }
            
            .banner-slider,
            .carousel-item {
                height: 400px;
            }
            
            .fixed-enquiry {
                position: static;
                transform: none;
                width: 90%;
                margin: 20px auto;
                right: auto;
            }
            
            .about-section,
            .packages-section,
            .faq-section,
            .testimonials-section {
                padding: 50px 0;
            }
            
            .package-actions {
                flex-wrap: wrap;
            }
            
            .btn-package {
                flex: 1 1 calc(50% - 4px);
                margin-bottom: 8px;
            }
        }

        @media (max-width: 480px) {
            .btn-package {
                flex: 1 1 100%;
            }
        }
    