
h1 {
    text-align: center;
    color: #ffffff;
}
.form-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.form-row {
    display: flex;
    margin-bottom: 15px;
}
.form-group {
    flex: 1;
    margin-right: 10px;
}
.form-group:last-child {
    margin-right: 0;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input, select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
button {
    /* background-color: #4CAF50; */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 20px auto 0;
}
button:hover {
    background-color: #45a049;
}
.error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}
.admin-link {
    text-align: right;
    margin-top: 20px;
}

/* pAackeg */

.divider {
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto;
    border-radius: 3px;
}

.tour-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .card-img-top img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.discount-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #777;
    display: block;
}

.card-body {
    padding: 25px;
}

.tour-header {
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.location i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.duration .badge {
    background-color: var(--primary-color);
    padding: 5px 10px;
    font-weight: 500;
    font-size: 0.85rem;
}

.destinations {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.destinations i {
    margin-right: 5px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.feature-item {
    font-size: 0.85rem;
    color: #555;
}

.feature-item i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.card-footer {
    background: transparent;
    border-top: none;
    padding: 0 25px 25px;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-book i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-book:hover i {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-body {
        padding: 20px;
    }
}


/* contact us */

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1586016413664-864c0dd76f53?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background: rgba(58, 90, 120, 0.1);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-card p {
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Booking css */
 
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
    
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
}

.booking-container {
  width: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
}

/* Red Car Icon (right to left) */
.moving-car {
  position: absolute;
  top: 20px;
  right: -100px;
  font-size: 48px;
  animation: driveRightToLeft 8s linear infinite;
  z-index: 1;
  color: #ff3333; /* Red color */
  filter: drop-shadow(0 0 5px rgba(255,0,0,0.5));
}

@keyframes driveRightToLeft {
  0% { transform: translateX(100px); }
  100% { transform: translateX(calc(-100vw - 100px)); }
}

/* Blurred Content Card */
.booking-card {
  max-width: 800px;
  margin: 20px auto 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.2);
}

.booking-image {
  flex: 1;
  min-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid white;
}

.booking-image img {
  width: 100%;
  height: auto;
  display: block;
}

.booking-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: left;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Button */
.book-btn {
  display: inline-block;
  padding: 16px 45px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-card {
    flex-direction: column;
  }
  
  .booking-content {
    text-align: center;
  }
}

/* Booking cab */
.form-container {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}
.form-header {
    background-color: #4285f4;
    color: white;
    padding: 2rem;
}
.form-title {
    font-size: 1.8rem;
    font-weight: 500;
}
.form-description {
    opacity: 0.9;
    font-size: 1rem;
}
.google-form-embed {
    min-height: 500px;
    border: none;
}
.progress-container {
    height: 5px;
    background-color: #e0e0e0;
}
.progress-bar {
    background-color: #4285f4;
    width: 33%;
}
.form-footer {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}
/* service */

.services-container {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }
  
  .subtitle {
    color: #666;
    margin-bottom: 30px;
  }
  
  
    .service-cards {
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping */
        justify-content: flex-start;
        gap: 30px;
        overflow-x: auto; /* Enable horizontal scroll if needed */
        padding-bottom: 10px;
  }
  
  .service-cards::-webkit-scrollbar {
    display: none;
  }
  
  .service-cards {
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */
  }
  .service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  
  .service-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
  }
  
  .service-card h3 {
    color: #333;
    margin: 20px 15px 10px;
    font-size: 1.3rem;
  }
  
  .service-card p {
    color: #666;
    margin: 0 15px 20px;
    min-height: 60px;
  }
  
  .info-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin: 0 15px 20px;
    width: calc(100% - 30px);
    transition: all 0.3s;
  }
  
  .info-button:hover {
    background-color: #3e8e41;
    transform: scale(1.02);
  }
  /* button */
  .call-now-button-right {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    padding: 10px;
  }

  .call-animate {
    animation: pulse 1.5s infinite;
    font-size: 1.3rem;
    padding: 12px 25px;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    }
  }


  /* call icon */
  .rotate-right {
    transform: rotate(90deg);
    display: inline-block;
  }