/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}
a {
  text-decoration: none;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* HEADER */
.floating-glass-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  width: 90%;
  max-width: 1200px;
  background: rgba(87, 80, 80, 0.493);
  border-radius: 30px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.floating-glass-header .logo img {
  height: 40px;
  border-radius: 8px;
}

.nav-menu a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2451bb;
}

.book-now {  
  padding: 10px 20px;
  background: linear-gradient(135deg, #090a1a, #344e89, #a0c4ff );
  color: white;
  border-radius: 50px;
  font-weight: bold;
  margin-left: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.book-now:hover {
  background: linear-gradient(135deg, #a0c4ff, #344e89, #090a1a);
  transform: scale(1.05);
}

/* HERO SECTION */
.hero-section {
  height: 100vh; /* full screen */
  background-image: url(hero.jpg);
  background-size: cover;
  background-position: center;
  position: relative; /* important for overlay positioning */
}

.hero-content h1 {
  font-size: 50px;        /* bigger or smaller */
  color: #ffffff;  
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;       /* thicker font */
  margin-bottom: 1x;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5); /* optional glow/shadow */
}

.hero-content p {
  position: absolute;
  bottom: px;             /* distance below H1 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  margin: 0;
}

/* Keep hero overlay */
.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Cards container overlay on hero */
.cards-container {
  position: absolute; /* overlay hero */
  bottom: 30px;      /* distance from bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row; /* horizontal layout */
  flex-wrap: nowrap;  /* keep in one row */
  justify-content: center;
  align-items: flex-end;    
  z-index: 2;         /* above overlay */
  gap: 25px;
  backdrop-filter: blur(10px);        /* blur background behind cards */
  background: rgba(255,255,255,0.2); /* semi-transparent */
  padding: 15px 350px;
  border-radius: 16px;
}
html {
  scroll-behavior: smooth;
}

/* Each card inside overlay */
.cards-container .card {
  flex: 0 0 500%; /* fixed width */
  max-width: 230px;  /* reduce width */
  background: rgba(255,255,255,0.3); /* slightly transparent */
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  padding: 15px;
  transition: transform 0.3s ease;
}

.cards-container .card img {
  width: 100%;      /* smaller images */
  height: 100px;
  object-fit: cover;
}

.cards-container .card:hover {
  transform: translateY(-8px);
}

/*welcome area*/
.welcome-section {
  background: #ffffff;
  padding: 60px 0;            /* less side padding */
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-container {
  max-width: 900px;           /* narrower total width */
  display: flex;
  gap: 20px;                  /* smaller space between columns */
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}


.welcome-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

.single-welcome-img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  max-width: 500px;
  height: auto;
}

.welcome-text {
  flex: 1.2;
  max-width: 800px;
}

.welcome-text .tagline {
  font-size: px;
  color: #28a745;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.welcome-text .tagline span {
  color: #28a745;
}

.welcome-text h2 {
  font-size: 32px;
  color: #0d1b3d;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.welcome-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 15px;
}

/* Section styling */
.Domestic-packages {
  padding: 80px 20px;
  background: #f8f9fb;
  text-align: center;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 40px;
}

.section-tagline {
  color: #28a745;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 28px;
  color: #0d1b3d;
  margin-bottom: 10px;
}

.section-subtext {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* Grid layout */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 0;
}

/* Card */
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/*.destination-card .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

/*.destination-card:hover .overlay {
  transform: translateY(0);
}*/

/* Domestic package card style */
.domestic-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.domestic-card img {
  height: 220px;
  border-radius: 14px 14px 0 0;
}

.domestic-card .card-title {
  background: #e6e6e6;
  padding: 12px;
  font-weight: 600;
  font-size: 16px;
  color: #222;
  text-align: center;
  border-radius: 0 0 14px 14px;
}

/* Disable hover overlay for domestic */
.domestic-card .overlay {
  display: none;
}


/* Fade-in scroll animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

.cabs-section {
  padding: 40px 20px;
  background: #fff;
  position: relative;
}

.cabs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cabs-header h2 {
  font-size: 24px;
  color: #111;
}

.see-all {
  background: linear-gradient(to right, #2d6ecf, #98c93c);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.see-all:hover {
  transform: scale(1.05);
}

.cabs-carousel {
  display: flex;
  align-items: center;
  position: relative;
}

.cabs-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.cab-card {
  flex: 0 0 auto;
  width: 240px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s;
}

.cab-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.cab-card p {
  padding: 10px;
  font-size: 14px;
  color: #222;
}

.scroll-btn {
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 8px 12px;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.scroll-btn:hover {
  background-color: #f5f5f5;
}

.tour-packages {
  padding: 60px 20px;
  background-color: #fff;
}

.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.tour-header h2 {
  font-size: 28px;
  color: #1a1a5e;
}

.see-all-btn {
  padding: 10px 20px;
  background: linear-gradient(to right, #1a1a5e, #3a74ff);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.see-all-btn:hover {
  transform: scale(1.05);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive */
  gap: 20px;
}

.tour-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-card h3 {
  padding: 12px;
  font-size: 16px;
  color: #333;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/*why choose us*/
.why-choose {
  background: #f9fbfd;
  padding: 80px 20px;
  text-align: center;
}

.section-subtitle {
  color: #5cb85c;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.section-description {
  max-width: 900px;
  margin: 0 auto 50px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
}

.feature-box {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box img {
  height: 60px;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #060606;
}

.feature-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.why-choose {
  background: url("whychooseus.png") no-repeat top left;
  background-size: contain;
  background-position: center 50%; /*moves it down*/
  padding: 80px 20px;
  text-align: center;
  color: #ffffff; /* Optional: makes text white for contrast */
  position: relative;
}

.why-choose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.273); /* Dark overlay */
  z-index: 1;
}

.why-choose * {
  position: relative;
  z-index: 2;
}

/* === FOOTER === */
.main-footer {
  background-color: #3a5171;
  color: #f1f1f1;
  padding: 40px 20px 20px;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 280px;
}

.footer-column h3, .footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-address {
  position: relative;
}

.world-map {
  width: 120%;
  opacity: 0.15;
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 0;
}

.footer-address p {
  position: relative;
  z-index: 1;
  line-height: 1.6;
  color: #f1f1f1;
}

.newsletter-form {
  display: flex;
  align-items: center;
  margin: 10px 0 20px;
  gap: 10px;
}

.newsletter-form img {
  width: 20px;
  height: 20px;
}

.newsletter-form input[type="email"] {
  padding: 8px;
  width: 200px;
  border: none;
  outline: none;
  border: 1px solid #555;
  background: transparent;
  color: #fff;
}

.newsletter-form button {
  padding: 8px 16px;
  background-color: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons div {
  text-align: center;
}

.social-icons img {
  width: 30px;
  height: 30px;
  display: block;
  margin: auto;
}

.social-icons p {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #ddd;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.8rem;
  color: #ccc;
}

body {
    font-family: Arial, sans-serif;
    background: #f6f7fb;
    margin: 0;
    padding: 0;
}

.car-listings {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
    border-radius: 12px;
}

.car-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ececec;
    padding: 24px 0;
}

.car-item:last-child {
    border-bottom: none;
}

.car-item img {
    width: 140px;
    height: 85px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 28px;
}

.car-info {
    flex: 1;
}

.car-info h2 {
    margin: 0 0 6px 0;
    font-size: 1.2rem;
    color: #263252;
}

.car-info .service {
    color: #8a8888;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.car-info p {
    margin: 4px 0;
    font-size: 0.97rem;
}

.car-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 24px;
}

.price {
    font-size: 1.25rem;
    color: #31b54e;
    font-weight: 600;
    margin-bottom: 4px;
}

.package {
    font-size: 0.96rem;
    color: #888;
    margin-bottom: 10px;
}

.book-btn {
    background: #318bce;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.22s;
}

.book-btn:hover {
    background: #24699e;
}

@media (max-width: 700px) {
    .car-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .car-action {
        align-items: flex-start;
        margin-left: 0;
        margin-top: 14px;
    }
    .car-item img {
        margin-bottom: 12px;
    }
}

