/* Reset and Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0; /* Light grey background for the body */
}

/* Navbar Styling */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #343a40; /* Dark grey for the navbar */
    padding: 15px 30px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-logo {
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-menu a:hover {
    background-color: #d62839; /* Darker grey on hover */
    border-radius: 5px;
}

.navbar-login {
    background-color: #007bff; /* Blue for login button */
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.navbar-login:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px;
    transition: 0.4s;
}

/* Hero Section Styling */
.hero {
    background-image: url('path/to/your/banner-image.jpg');
    background-size: cover;
    background-position: center;
    height:  40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for better text visibility */
}

.hero-content {
    z-index: 1;
    max-width: 1300px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Search Bar Styling */
.search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}


.search-bar input {
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px 0 0 5px; /* LEFT rounded */
    width: 260px;
    outline: none;
}

.search-bar button {
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 0 5px 5px 0; /* RIGHT rounded */
    background-color: #007bff;
    color: white;
    cursor: pointer;
}


.search-bar button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #0056b3;
}


/* Featured Packages Section Styling */
.featured-packages {
    padding: 50px 20px;
    text-align: center;
    background-color: #e9ecef; /* Light grey for featured hotels section */
}

.featured-packages h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.package-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.package-card {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-card h3 {
    margin: 15px;
    font-size: 20px;
    color: #333; /* Dark grey for hotel card title */
}

.package-card p {
    margin: 0 15px 15px;
    font-size: 14px;
    color: #666; /* Medium grey for hotel card text */
}

.package-card button {
    margin: 15px;
    padding: 10px;
    width: calc(100% - 30px);
    border: none;
    background-color: #007bff; /* Blue for buttons */
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.package-card button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Testimonials Section Styling */
.testimonials {
    padding: 50px 20px;
    background-color: #343a40; /* Dark grey for testimonials */
    color: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.testimonial-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.testimonial-card {
    background-color: #495057; /* Slightly lighter grey for testimonial cards */
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    text-align: left;
}

.testimonial-card p {
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonial-card h4 {
    font-size: 14px;
    color: #ccc; /* Light grey for testimonial author */
}

/* Special Offers Section Styling */
.special-offers {
    padding: 50px 20px;
    text-align: center;
    background-color: #e9ecef; /* Light grey for special offers */
}

.special-offers h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.offers {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.offer {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.offer h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #495057; /* Grey for offer titles */
}

.offer button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff; /* Blue for buttons */
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.offer button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Footer Styling */
footer {
    background-color: #343a40; /* Dark grey for footer */
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #007bff; /* Blue for footer links */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #343a40;
        width: 100%;
        text-align: center;
        z-index: 1000;
    }

    .navbar-menu a {
        padding: 15px 0;
        border-bottom: 1px solid #495057;
    }

    .navbar-menu.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .search-bar {
        flex-direction: column;
        gap: 10px;
    }

    .search-bar input,
    .search-bar button {
        width: 100%;
    }

    .package-card {
        width: 100%;
        max-width: 300px;
    }

    .testimonial-cards,
    .offers {
        flex-direction: column;
        gap: 10px;
    }

    .testimonial-card,
    .offer {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .package-card h3 {
        font-size: 18px;
    }

    .package-card p {
        font-size: 12px;
    }

    .search-bar button {
        font-size: 14px;
    }

    .offer h3 {
        font-size: 16px;
    }

    .testimonial-card p {
        font-size: 14px;
    }
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff; /* White text */
    background-color: #007bff; /* Blue background */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-content {
    text-align: center;
    padding: 50px 20px; /* Adjust padding as necessary */
  }
  
 
 
  .search-wrapper {
  position: relative;
  display: inline-block;
}



/* Mobile search bar rounded corners */
@media (max-width: 768px) {
  .search-bar {
    background: #ffffff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    width: 90%;
    margin: 0 auto;
  }
@media (max-width: 768px) {
  .search-bar input {
    border-radius: 8px 8px 0 0;
  }

  .search-bar button {
    border-radius: 8px 8px 0 0;
  }
}
/* Mobile input outline */
@media (max-width: 768px) {
  .search-bar input {
    border: 3px solid #007bff; /* soft professional outline */
    outline: none;
  }

  .search-bar input:focus {
    border-color: #007bff;       /* brand blue on focus */
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
  }
}

.search-bar input {
  text-align: center;          /* horizontal centering */
  height: 44px;                /* consistent height */
  line-height: 44px;           /* vertical centering for text */
}
@media (max-width: 768px) {
  .search-bar input {
    text-align: center;
    height: 44px;
    line-height: 44px;
  }
}
.search-bar input,
.search-bar button {
  height: 48px;              /* SAME height */
  line-height: 48px;
  padding: 0 16px;
  font-size: 16px;
  border-radius: 8px;
  box-sizing: border-box;
}
.search-bar button {
  padding: 0 24px;           /* horizontal only */
}

/* SEARCH BAR CONTEXT */
.search-bar {
  position: relative;
}
.search-bar input {
    border-radius: 8px 0 0 8px; /* left corners rounded only */
    margin: 0;                  /* remove any margin */
    border-right: none;         /* remove border between input and button */
}

.search-bar button {
    border-radius: 0 8px 8px 0; /* right corners rounded only */
    margin: 0;                  /* remove any margin */
    border-left: none;          /* remove border between input and button */
}
.search-bar input,
.search-bar button {
    height: 48px;      /* same height */
    line-height: 48px; /* vertical centering */
    display: inline-block;
    font-size: 16px;
}

/* HERO SECTION */
.hero {
    background: #9b9b9b;
    padding: 60px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* SEARCH BAR */
.search-bar {
    display: flex;
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    gap: 0; /* removes gap */
}

.search-bar input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 15px;
    outline: none;
}

.search-bar button {
    padding: 12px 18px;
    border: none;
    background: #0d6efd;
    color: #fff;
    font-size: 15px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

/* 📱 MOBILE VIEW */
@media (max-width: 576px) {
    .search-bar {
        flex-direction: column;
        gap: 10px;
    }

    .search-bar input {
        width: 100%;
        height: 100%;
        border-radius: 8px;
        border-right: 1px solid #ccc;
    }

    .search-bar button {
        width: 100%;
                height: 100px;
        border-radius: 6px;
    }
}

.search-bar button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 44px;

    background-color: #0d6efd;
    color: #fff;

    font-size: 15px;
    font-weight: 500;

    border: none;
    border-radius: 6px;

    cursor: pointer;
    padding: 0; /* VERY IMPORTANT */
}
.search-bar input {
    width: 100%;
    height: 44px;

    padding: 0 12px;
    font-size: 14px;

    border-radius: 6px;
    border: 1px solid #ccc;
}
.search-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Navbar brand container */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

}

/* OUTER WRAPPER */
/* ===== HORIZONTAL TAXI BOOKING BAR ===== */
.booking-wrapper {
  background: #f1f3f5;
  padding: 15px;
}

.booking-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  max-width: 2000px;
  margin: auto;
}

.booking-bar input,
.booking-bar select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 18px;
  outline: none;
  min-width: 100px;
}

.booking-bar input:focus,
.booking-bar select:focus {
  border-color: #0b5ed7;
  box-shadow: 0 0 0 2px rgba(11,94,215,0.15);
}

.booking-bar button {
  background: #0b5ed7;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 18px;
  white-space: nowrap;
}

.booking-bar button:hover {
  background: #084298;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .booking-bar {
    flex-wrap: wrap;
  }

  .booking-bar input,
  .booking-bar select,
  .booking-bar button {
    flex: 1 1 45%;
  }

  .booking-bar button {
    flex: 1 1 100%;
  }
}



