  :root {
      --primary-color: #ff6b35;
      --secondary-color: #004e92;
      --accent-color: #ffd700;
      --dark-color: #2c3e50;
      --light-color: #ecf0f1;
  }


  .alert {
      padding: 12px 16px;
      border-radius: 5px;
      font-size: 14px;
  }

  .alert-success {
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
  }

  .alert-danger {
      background-color: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--dark-color);
  }

  /* Header Styles */
  .navbar {
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      padding: 1rem 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-brand {
      font-size: 1.8rem;
      font-weight: bold;
      color: white !important;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .nav-link {
      color: white !important;
      font-weight: 500;
      margin: 0 10px;
      transition: all 0.3s ease;
  }

  .nav-link:hover {
      color: var(--accent-color) !important;
      transform: translateY(-2px);
  }

  /* Hero Section */
  .hero {
      background: linear-gradient(rgba(0, 78, 146, 0.8), rgba(255, 107, 53, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%23e3f2fd"/><path d="M0,300 Q300,150 600,300 T1200,300 V600 H0 Z" fill="%23bbdefb"/><circle cx="200" cy="150" r="80" fill="%23ffcc02" opacity="0.8"/><path d="M100,400 Q150,350 200,400 T300,400" stroke="%2364b5f6" stroke-width="3" fill="none"/></svg>');
      background-size: cover;
      background-position: center;
      height: 100vh;
      display: flex;
      align-items: center;
      color: white;
      text-align: center;
  }

  .hero h1 {
      font-size: 3.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease-out;
  }

  .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease-out 0.3s both;
  }

  .btn-custom {
      background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
      color: white;
      padding: 12px 30px;
      border: none;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      display: inline-block;
      margin: 0 10px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }

  .btn-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
      color: white;
  }

  /* Services Section */
  .services {
      padding: 80px 0;
      background: var(--light-color);
  }

  .service-card {
      background: white;
      border-radius: 15px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
      border: none;
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .service-icon {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
  }

  /* About Section */
  .about {
      padding: 80px 0;
      background: white;
  }

  .about-content {
      display: flex;
      align-items: center;
      gap: 3rem;
  }

  .about-text h2 {
      color: var(--secondary-color);
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
  }

  .about-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #666;
  }

  .feature-list {
      list-style: none;
      padding: 0;
  }

  .feature-list li {
      padding: 0.5rem 0;
      color: #666;
  }

  .feature-list li i {
      color: var(--primary-color);
      margin-right: 10px;
  }

  /* Destinations Section */
  .destinations {
      padding: 80px 0;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
  }

  .destination-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
      max-height: 200px;
      height: 200px;
  }

  .destination-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.2);
  }

  .destination-card i {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--accent-color);
  }

  /* Booking Section */
  .booking {
      padding: 80px 0;
      background: var(--light-color);
  }

  .form-control {
      border-radius: 10px;
      border: 2px solid #e9ecef;
      padding: 12px 15px;
      transition: all 0.3s ease;
  }

  .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
  }

  .btn-submit {
      background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
      color: white;
      padding: 12px 40px;
      border: none;
      border-radius: 50px;
      font-weight: bold;
      transition: all 0.3s ease;
  }

  .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 78, 146, 0.3);
  }

  /* Contact Section */
  .contact {
      padding: 80px 0;
      background: white;
  }

  .contact-info {
      background: var(--secondary-color);
      color: white;
      padding: 2rem;
      border-radius: 15px;
      height: 100%;
  }

  .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
  }

  .contact-item i {
      font-size: 1.5rem;
      margin-right: 15px;
      color: var(--accent-color);
  }

  /* Footer */
  .footer {
      background: var(--dark-color);
      color: white;
      padding: 40px 0 20px;
  }

  .footer h5 {
      color: var(--accent-color);
      margin-bottom: 1rem;
  }

  .footer a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .footer a:hover {
      color: var(--accent-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 {
      transform: translateY(-3px);
      background: var(--accent-color);
  }

  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(50px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .fade-in {
      animation: fadeInUp 1s ease-out;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .hero h1 {
          font-size: 2.5rem;
      }

      .hero p {
          font-size: 1.1rem;
      }

      .about-content {
          flex-direction: column;
          text-align: center;
      }

      .navbar-nav {
          background: rgba(0, 78, 146, 0.9);
          border-radius: 10px;
          margin-top: 10px;
          padding: 10px;
      }
  }

  /* Custom Package Section */
  .custom-package {
      background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
      padding: 80px 0;
      text-align: center;
  }

  .package-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
  }

  .package-feature {
      background: rgba(255, 255, 255, 0.9);
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .package-feature i {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
  }

  /* Hero Section with Slider */
  .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* Slider Container */
  .slider-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
  }

  .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 2s ease-in-out;
  }

  .slide.active {
      opacity: 1;
  }

  /* Slide backgrounds with Indian destinations */
  .slide:nth-child(1) {
      background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1564507592333-c60657eea523?w=1920&h=1080&fit=crop');
  }

  .slide:nth-child(2) {
      background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1587474260584-136574528ed5?w=1920&h=1080&fit=crop');
  }

  .slide:nth-child(3) {
      background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1582510003544-4d00b7f74220?w=1920&h=1080&fit=crop');
  }

  .slide:nth-child(4) {
      background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1920&h=1080&fit=crop');
  }

  .slide:nth-child(5) {
      background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1548013146-72479768bada?w=1920&h=1080&fit=crop');
  }

  /* Hero Content */
  .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      color: white;
      max-width: 800px;
      padding: 0 20px;
      animation: fadeInUp 1.5s ease-out;
  }

  .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      background: linear-gradient(135deg, #fff, #f0f0f0);
      -webkit-background-clip: text;

  }

  .hero-content p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      opacity: 0.95;
  }

  /* Buttons */
  .btn-container {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn-custom {
      display: inline-block;
      padding: 15px 30px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      min-width: 180px;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .btn-custom:nth-child(1) {
      background: linear-gradient(135deg, #ff6b35, #ff8e35);
      color: white;
      box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  }

  .btn-custom:nth-child(2) {
      background: transparent;
      color: white;
      border: 2px solid white;
      box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  }

  .btn-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  }

  .btn-custom:nth-child(1):hover {
      background: linear-gradient(135deg, #ff8e35, #ff6b35);
  }

  .btn-custom:nth-child(2):hover {
      background: white;
      color: #333;
  }

  /* Navigation Dots */
  .slider-nav {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 10;
  }

  .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
  }

  .nav-dot.active {
      background: white;
      transform: scale(1.2);
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }

  .nav-dot:hover {
      background: rgba(255, 255, 255, 0.8);
      transform: scale(1.1);
  }

  /* Slide Labels */
  .slide-label {
      position: absolute;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 1.1rem;
      font-weight: 500;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: 10;
  }

  .slide.active+.slide-label,
  .slide-label.active {
      opacity: 1;
  }

  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(50px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }
  }

  .hero-content h1 {
      animation: fadeInUp 1.5s ease-out, pulse 4s ease-in-out infinite;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .hero-content h1 {
          font-size: 2.5rem;
      }

      .hero-content p {
          font-size: 1.1rem;
      }

      .btn-container {
          flex-direction: column;
          align-items: center;
      }

      .btn-custom {
          width: 100%;
          max-width: 280px;
      }
  }

  @media (max-width: 480px) {
      .hero-content h1 {
          font-size: 2rem;
      }

      .hero-content {
          padding: 0 15px;
      }
  }

  /* Loading Animation */
  .slide-transition {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
      transform: translateX(-100%);
      animation: slideTransition 2s ease-in-out;
      z-index: 5;
  }

  @keyframes slideTransition {
      0% {
          transform: translateX(-100%);
      }

      50% {
          transform: translateX(100%);
      }

      100% {
          transform: translateX(100%);
      }
  }