    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
        }
        
        :root {
            --primary-blue: #1a73e8;
            --dark-blue: #0d47a1;
            --orange: #ff9800;
            --yellow: #ffc107;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --text-dark: #333333;
            --text-light: #6c757d;
        }
        
           body {
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
             font-family: 'Quicksand', cursive;
  font-weight: 400;
  font-style: normal; 
        }


        
     
p{
   font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
       
a{
   font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

h3{font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;}


   
   .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark-blue);line-height: 100%;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-orange {
            background: linear-gradient(135deg, var(--orange), var(--yellow));
        }
        


            @media (max-width: 768px) {
              .h2{font-size: 18px;}
              .h3{font-size: 16px;}
            }


        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../Assets/heroimg.webp');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
        }
        
        .hero-content {
            max-width: 600px;
            margin-left: 50px;
        }
        
        .hero h1 { line-height: 100%;
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
      @media (max-width: 768px) {
              .hero h1 { line-height: 100%;
            font-size: 30px;
            margin-bottom: 20px;
        }
            }
        
      
    
        
        /* Destinations Section */
       .destinations {
  position: relative;
  padding: 80px 20px;
  color: black;
}

.destinations h2 { 
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: bold; 
}

.intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;

  opacity: 0.9;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 25px;
}

.destination-card {
    display: flex;

  color: #333;
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover; 
  border-radius: 20px;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0056b3;
}

.card-content p {
  font-size: 12px;
  margin-bottom: 5px;
  color: #555;
}

.price { display: none;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  color: #007BFF;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  background: #007BFF;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0056b3;
}


  @media (max-width: 768px) {
.destination-card {
    display: flex; flex-direction: column;
  }
  .destinations-grid {
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 
}

.card-img {
  
  height: 150px;

}
  }


    @media (max-width: 768px) {

  .destinations-grid {
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 
}

.destinations h2 { 
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold; 
}

.intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6; ;
  opacity: 0.9;
}


  }


        
        /* Offers Section */
   .services {
  padding: 80px 20px;
  background: #66a8ea; /* Travel Blue */
  text-align: center;
  color: #fff;
}

.services h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.intro-text {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 50px;
  color: black;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.service-item {
  padding: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-item i {
  font-size: 50px;
  color: black; /* Golden accent */
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: black;
}

.service-item p {
  font-size: 15px;
  color: black;
  line-height: 1.5;
}

.service-item:hover i {
  transform: scale(1.2);
  /* color: #ffd166; Lighter gold on hover */
}




.service-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.service-item.visible {
  opacity: 1;
  transform: translateY(0);
}


        
        /* Why Choose Us Section */
        .features {
            background-color: var(--light-bg);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .feature {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .feature:hover {
            transform: translateY(-5px);
        }
        
        .feature i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        .feature h3 {
            margin-bottom: 15px;
            color: var(--dark-blue);
        }

        /* Initial hidden state */
.feature {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When visible */
.feature.show {
  opacity: 1;
  transform: translateY(0);
}

        
        /* Testimonials Section */
        .testimonials {
            background-color: var(--white);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-content {
            margin-bottom: 20px; line-height: 100%;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .author-info h4 {
            color: var(--dark-blue);
        }
        
        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark-blue), #051937);
            color: var(--white);
            padding: 70px 0 20px; font-family: ;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--orange);
        }
        
        .footer-column p, .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--orange);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--orange);
            transform: translateY(-3px);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background: var(--orange);
            color: var(--white);
            border: none;
            padding: 0 15px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }






        
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-content {
                margin-left: 0;
                text-align: center;
                padding: 0 20px;
            }
            
             .hero h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .search-form {
                flex-direction: column;
            }
        }




        /* explore with us  */
.travel-gallery {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  overflow: hidden;
}

.travel-gallery h2 {
  /* font-size: 2rem; */
  color: #0056b3;
  margin-bottom: 40px;
  letter-spacing: 1px; line-height: 100%;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}
 @media (max-width: 768px) {
  .travel-gallery h2 {
  font-size: 22px; line-height: 100%;}
  .photo-grid {

  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));

}
 }


.photo {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.8);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo:hover img {
  transform: scale(1.1);
}

.photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* When visible (on scroll) */
.photo.visible {
  opacity: 1;
  transform: scale(1);
  transition: transform 0.8s ease, opacity 0.8s ease;
}
      
/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background 0.3s;
}

.floating-btn:hover {
  background-color: #0056b3;
}

/* Contact Options */
.contact-options {
  position: fixed;
  bottom: 90px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 998;
}

.contact-options.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-options a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.contact-options a:nth-child(1) { background: #ea4335; } /* Mail - red */
.contact-options a:nth-child(2) { background: #25d366; } /* WhatsApp - green */
.contact-options a:nth-child(3) { background: #34b7f1; } /* Call - blue */

