* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
}



/* Offer Time Bar */
.offer-bar {
  background: #ff4b2b;
  color: white;
  text-align: center;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
}


.offer-bar {
  background: #ff4b2b;
  color: white;
  text-align: center;
  padding: 14px 15px;   /* height बढ़ा दी */
  font-size: 16px;      /* थोड़ा बड़ा font */
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}


/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav .logo {
  font-size: 22px;
  font-weight: 700;
  color: #0077ff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #0077ff;
}

.menu-toggle {
  display: none;
  font-size: 25px;
  cursor: pointer;
}

/* Hero Section */
/* Hero Section */
.hero {
  height: 75vh; /* height kam ki */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Background slideshow */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  animation: slideShow 20s infinite;
  z-index: -1;
  filter: brightness(0.6);
}

@keyframes slideShow {
  0%   { background-image: url("image/5.jpg"); }
  25%  { background-image: url("./image/6.avif"); }
  50%  { background-image: url("./image/2.png"); }
  75%  { background-image: url("./image/4.jpg"); }
  100% { background-image: url("./image/4.jpg"); }
}


.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  padding: 15px;
}

/* Booking Box */
.booking-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  text-align: left;
}

.row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}

.booking-box input, 
.booking-box select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.search-btn {
  padding: 12px;
  border: none;
  background: #0077ff;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  width: 30%;
  display: block;        
  margin: 0 auto;        
}



.search-btn:hover {
  background: #005ecc;
}

/* Travel Modes */
.travel-modes {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.travel-modes button {
  flex: 1;
  padding: 10px;
  border: none;
  background: #eee;
  color: #333;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.travel-modes button:hover,
.travel-modes button.active {
  background: #0077ff;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .row {
    grid-template-columns: 1fr;
  }
  .hero {
    height: auto;
    padding: 30px 0;
  }
}

/* pop */
.popup {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    animation: popupAnim 0.3s ease;
}
.popup-content h2 {
    color: #0077ff;
    margin-bottom: 15px;
}
.popup-content p {
    font-size: 16px;
    margin-bottom: 10px;
}
.popup-content button {
    padding: 12px 20px;
    background: #ff4b2b;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}
.popup-content button:hover {
    background: #e63c1a;
}
.close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 22px;
    cursor: pointer;
}
@keyframes popupAnim {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* Why Choose Us */
.why-us {
  padding: 50px 20px;
  background: #f8f9fa;
  text-align: center;
}

.why-us h2 {
  font-size: 28px;
  color: #0077ff;
  margin-bottom: 30px;
}

.why-us .features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* Customer Reviews */
.reviews {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.reviews h2 {
  font-size: 28px;
  color: #0077ff;
  margin-bottom: 30px;
}

.reviews .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.reviews .review {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.reviews .review p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.reviews .review span {
  font-weight: 600;
  color: #333;
}

/* Travel Blog */
.blog {
  padding: 50px 20px;
  background: #f8f9fa;
  text-align: center;
}

.blog h2 {
  font-size: 28px;
  color: #0077ff;
  margin-bottom: 30px;
}

.blog .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.blog .card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.blog .card:hover {
  transform: translateY(-5px);
}

.blog .card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.blog .card p {
  font-size: 14px;
  color: #555;
}

/* Booking Process */
.process {
  padding: 50px 20px;
  background: #fff5f5;
  text-align: center;
}

.process h2 {
  font-size: 28px;
  color: #ff4b2b;
  margin-bottom: 30px;
}

.process .steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* Newsletter */
.newsletter {
  padding: 50px 20px;
  background: #0077ff;
  color: white;
  text-align: center;
}

.newsletter h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  width: 250px;
}

.newsletter button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: #ff4b2b;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

.newsletter button:hover {
  background: #e63c1a;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    padding: 50px 20px 20px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff4b2b;
}

.footer-about p,
.footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ccc;
}

/* Newsletter */
.newsletter {
    display: flex;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border-radius: 6px 0 0 6px;
    border: none;
    outline: none;
    font-size: 14px;
}

.newsletter button {
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    border: none;
    background: #ff4b2b;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #e63c1a;
}

/* Footer Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ff4b2b;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  font-size: 24px;
}

.social-icons a {
  color: #0077ff; /* icon color */
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff6600; /* hover color */
  filter: brightness(0) invert(0.5) sepia(1) saturate(5) hue-rotate(340deg);
}



/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #888;
}

/* Responsive */
@media(max-width:900px){
    .footer-container{
        flex-direction: column;
        gap: 20px;
    }
    .newsletter{
        flex-direction: column;
    }
    .newsletter input, .newsletter button{
        border-radius: 6px;
        margin-bottom: 10px;
    }
}


/* Hero section variations */
.destinations-hero::before {
  background-image: url("images/destinations-bg.jpg");
}
.bookings-hero::before {
  background-image: url("images/bookings-bg.jpg");
}

/* Destinations Grid */
.destinations {
  padding: 50px;
  text-align: center;
}
.destinations .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.destinations .card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.destinations .card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.destinations .card h3 {
  padding: 15px;
}

/* Booking Form */
.booking-form {
  padding: 50px;
  background: #f8f9fa;
}
.booking-form h2 {
  text-align: center;
  margin-bottom: 20px;
}
.booking-form form {
  max-width: 900px;
  margin: auto;
}
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.form-row input,
.form-row select,
.form-row button {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.form-row button {
  background: #ff4b2b;
  color: white;
  border: none;
  cursor: pointer;
}
.form-row button:hover {
  background: #e63c1a;
}



/* Hero background for Service */
.service-hero::before {
  background-image: url("images/services-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

/* Hero background for Offers */
.offers-hero::before {
  background-image: url("images/offers-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

/* Service & Offer Grid */
.services .grid, .offers .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px;
}

.services .card, .offers .card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.services .card:hover, .offers .card:hover {
  transform: translateY(-8px);
}

/* Contact Hero */
.contact-hero {
  background: url("images/contact-bg.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

/* Contact Section */
.contact {
  padding: 50px 20px;
  background: #f9f9f9;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background: #ff5722;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e64a19;
}

.contact-info {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
  margin-top: 15px;
  color: #ff5722;
}
