/* General Styles */

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9fafb;
  /* Soft light gray */
  color: #1f2937;
  /* Deep neutral gray for text */
  line-height: 1.6;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
}

body,
html {
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Premium look for all paragraph text */
p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.075rem;
  /* slightly larger for readability */
  line-height: 1.8;
  /* generous line spacing */
  color: #2e2e2e;
  /* dark, professional text */
  font-weight: 400;
  /* clean and modern */
  margin-bottom: 1.2rem;
  /* clear separation between paragraphs */
  letter-spacing: 0.2px;
  text-shadow: 0.3px 0.3px 0 rgba(0, 0, 0, 0.03);
  /* subtle depth */
  transition: all 0.3s ease;
}

/* Optional hover effect for sections like testimonials or about */
p:hover {
  color: #1e40af;
  /* rich blue on hover */
  transform: scale(1.01);
}

.main-heading {
  font-size: 1.5rem;
  /* Similar to <h1> size */
  font-weight: bold;
  /* Make it bold */
  margin-bottom: 1rem;
  /* Add spacing below */
  color: #ffffff;
  /* Dark gray/black */
  line-height: 1.2;
}


/* Header Styling */
header {
  background:
    linear-gradient(135deg, rgba(21, 94, 117, 0.95), rgba(22, 78, 99, 0.95)),
    url('https://www.transparenttextures.com/patterns/pw-maze-white.png');

  background-blend-mode: overlay;
  backdrop-filter: blur(8px);
  background-size: cover;
  background-repeat: repeat;

  padding: 15px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.header-title {
  max-width: 100%;
  padding: 10px;
  text-align: center;
}

.flip-header {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 30px 0;
  perspective: 1000px;
  /* This is required */
  overflow: hidden;
  /* Prevents overflow bleed */
}

.flip-inner {
  width: 100%;
  height: 100px;
  /* FIXED height for consistency */
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  animation: flipAuto 8s infinite;
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Safari fallback */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.8rem;
}

.flip-front {
  transform: rotateY(0deg);
  z-index: 2;
}

.flip-back {
  transform: rotateY(180deg);
  z-index: 1;
}

/* Flip animation */
@keyframes flipAuto {

  0%,
  40% {
    transform: rotateY(0deg);
  }

  50%,
  90% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}


/* Logo */
.logo {
  height: 60px;
  transition: var(--transition-normal);
}

.logo:hover {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.4));
}

/* Header Title */
.header-title {
  text-align: center;
  flex-grow: 1;
}

.header-title h1 {
  font-size: 26px;

  font-weight: bold;
  color: #f0f2f9;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.header-title .slogan {
  font-size: 14px;
  color: #ff9900;
  font-weight: 500;
  margin-top: 5px;
  font-family: 'Poppins', sans-serif;
}

/* Before */
header {
  backdrop-filter: blur(8px);
}

/* After (with Safari support) */
header {
  -webkit-backdrop-filter: blur(8px);
  /* for Safari 9+ */
  backdrop-filter: blur(8px);
  /* for modern browsers */
}

/* Navigation Bar */


.nav-links {
  list-style: none;
  padding: 0;
}

.nav-links li {
  display: inline;
  margin: 0 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.nav-links a.active {
  font-weight: bold;
  text-decoration: underline;
  z-index: 10000;
}

.nav-container {
  position: relative;
  z-index: 10000;
}

.nav-button {
  background: linear-gradient(135deg, #f59e0b, #FFD700);
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 12px;
  padding: 10px 6px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  width: 100px;
  text-align: center;
}

.nav-button:hover {
  background: linear-gradient(135deg, #e89b00, #facc15);
  transform: scale(1.05);
}


.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 100;
  backdrop-filter: blur(5px);
  padding: 10px 0;
}

.nav-dropdown.active {
  display: block;
}

.nav-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-dropdown ul li {
  padding: 12px 20px;
  text-align: left;
}

.nav-dropdown ul li a i {
  margin-right: 8px;
  /* adds space between icon and text */
}

.nav-dropdown ul li a {
  text-decoration: none;
  color: #2d3748;
  font-size: 16px;
  display: block;
  transition: all 0.3s ease;

}

.nav-dropdown ul li a:hover {
  color: #0066ff;
  background: #edeaeaa5;
  border-radius: 8px;
  transform: translateX(+6px);
  /* shifts left on hover */
}

/* Hero Section */
/* Hero Section */
.hero-section {
  background: url('assets/hero.avif') no-repeat center center/cover;
  min-height: 90vh;
  /* Or another appropriate value like 600px or 100vh */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(24, 115, 151, 0.7);
  /* #1e40af with transparency */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #e0f2fe;
  /* Light blue tone */
}

.hero-buttons a {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 2rem;
  margin: 0 0.5rem;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #22c55e;
  /* Emerald Green */
  color: white;
}

.btn-primary:hover {
  background-color: #16a34a;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background-color: white;
  color: #1e40af;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons a {
    display: block;
    margin: 0.5rem auto;
  }

  .typewriter {
    overflow: hidden;
    border-right: 0.15em solid #3eacc5;
    white-space: nowrap;
    animation: typing 4s steps(60, end), blink-caret 0.75s step-end infinite;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #1e293b;
  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: #3eacc5
    }
  }


}

/* About Section */
.about-content {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 25px;
  background: #fdfefe;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.about-content h2 {
  font-size: 32px;
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .about-content {
    padding: 30px 15px;
    margin: 40px 15px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 16px;
  }
}

/* Bridge Section */
.bridge-content {
  background: linear-gradient(to bottom, #f7fafd, #e0f7fa);
  /* Soft gradient */
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #e0f7fa;
  /* Clean boundary */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  /* Light shadow for elegance */
  position: relative;
}

.bridge-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.bridge-text h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 20px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.bridge-text p {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 28px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.bridge-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 0;
  margin: 40px 0;
}

.bridge-features li {
  background: #e8f7fa;
  /* Subtle background */
  padding: 20px;
  border-radius: 15px;
  font-weight: 500;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.bridge-features li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.bridge-features i {
  font-size: 1.6rem;
  color: #22c55e;
  /* Emerald green icons */
  margin-right: 12px;
}

.cta-btn {
  background: linear-gradient(to right, #f59e0b, #FFD700);
  color: #1f2937;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: left 0.5s ease;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}


.cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 165, 0, 0.4);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bridge-content {
  animation: fadeInDown 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bridge-text h2 {
    font-size: 2.3rem;
  }

  .bridge-text p {
    font-size: 1rem;
  }

  .bridge-features {
    grid-template-columns: 1fr;
  }
}

/* Booking Section */
.booking-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  max-width: 1000px;
  margin: auto;
  flex-direction: column;
}

.booking-form {
  background-color: #fff3c8;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  transition: transform 0.3s ease;
}

.booking-form:hover {
  transform: translateY(-5px);
}

.booking-form h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.booking-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

.booking-form input {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.booking-form input:focus {
  border-color: #00aaff;
  outline: none;
}

.booking-form button {
  margin-top: 20px;
  padding: 12px;
  background: linear-gradient(135deg, #1e3a8a, #00aaff);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  transition: background 0.3s, transform 0.3s;
}

.booking-form button:hover {
  background: linear-gradient(135deg, #162b68, #0088cc);
  transform: scale(1.05);
}

.booking-form input::placeholder {
  font-style: italic;
  color: #888;
}

.booking-success-message {
  margin-top: 20px;
  padding: 20px;
  background-color: #d1fae5;
  border: 2px solid #10b981;
  border-radius: 10px;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

.success-icon {
  font-size: 36px;
  color: #10b981;
}

.success-text {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  color: #000;
}

.success-subtext {
  font-size: 16px;
  margin-top: 8px;
  color: #000;
}

.success-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.action-button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  background: linear-gradient(135deg, #1e3a8a, #00aaff);
  color: white;
  transition: background 0.3s ease;
}

.action-button:hover {
  background: linear-gradient(135deg, #162b68, #0088cc);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background-color: #e68900;
}

/* Booking Message */
/* .booking-message {
    text-align: center;
    margin-bottom: 30px;
} */


.booking-message h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e293b;
}

.booking-message p {
  font-size: 1.125rem;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
}
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none; /* Removes native dropdown arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group select:focus {
  border-color: var(--primary-color); /* Or your theme's primary color */
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  outline: none;
}

.form-group select option {
  padding: 0.5rem;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '\f078'; /* Font Awesome down arrow */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
}


/* Bridge Content */
.bridge-content {
  background: linear-gradient(to bottom, #e0f7fa, #a3bffa);
  padding: 80px 20px;
}

.bridge-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  text-align: center;
  color: #1e293b;
}

.bridge-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 20px;
}

.bridge-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #475569;
}

.bridge-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #64748b;
}

.bridge-features li {
  font-size: 16px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.bridge-features li:nth-child(1) {
  animation-delay: 0.2s;
}

.bridge-features li:nth-child(2) {
  animation-delay: 0.4s;
}

.bridge-features li:nth-child(3) {
  animation-delay: 0.6s;
}

.bridge-features li:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section */
.services {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  color: #1e3a8a;
  margin-bottom: 40px;
}

.service-box {
  display: inline-block;
  width: 300px;
  background: rgba(224, 231, 235, 0.95);
  padding: 15px;
  margin: 11px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 22px;
  color: #f59e0b;
  margin: 10px 0;
}

.service-box p {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 20px;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.overlay-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

.service-box:hover .overlay-link {
  opacity: 1;
}

.service-box:hover img {
  filter: brightness(0.7);
}

.testimonials {
  background: #f8fafc;
  padding: 60px 20px;
  text-align: center;
  border-top: 5px solid #8db7c1;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.testimonials .section-title {
  font-size: 2.2rem;
  color: #1e40af;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.testimonials .section-caption {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials .elfsight-app {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  /* Customize to make sure the widget fits within your layout */
  display: block;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #ffffff;
  /* Make sure the widget background is white */
}

.testimonials .cta-text {
  font-size: 1rem;
  color: #1e293b;
  margin-top: 40px;
  font-family: 'Poppins', sans-serif;
}

.testimonials .cta-text a {
  color: #3eacc5;
  text-decoration: none;
  font-weight: 600;
}

.testimonials .cta-text a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.cta-text {
  margin-top: 20px;
  font-size: 18px;
  color: #444;
  font-weight: 500;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cta-text a {
  color: #25d366;
  font-weight: 600;
  text-decoration: none;
  padding: 0 5px;
  transition: color 0.3s ease;
}

.cta-text a:hover {
  color: #1e3a8a;
  text-decoration: underline;
  text-shadow: 0 0 5px rgba(30, 58, 138, 0.5);
}

.cta-text:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Feedback Section */
.feedback {
  background: url('https://www.transparenttextures.com/patterns/crisp-paper-ruffles.png');
  /* Texture from Transparent Textures */
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 800px;
  font-family: 'Roboto', sans-serif;
  /* Apply Roboto font */
}

.feedback h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.feedback p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.feedback .btn {
  background-color: #007bff;
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-weight: 500;
  /* Add font weight for the button text */
}

.feedback .btn:hover {
  background-color: #0056b3;
}

.feedback .btn i {
  margin-right: 10px;
  font-size: 1.3em;
}

.cta-text {
  margin-top: 30px;
  font-size: 1.1em;
  color: #444;
}

.cta-text a {
  color: #25D366;
  /* WhatsApp color */
  font-weight: bold;
  text-decoration: none;
}

.cta-text a:hover {
  text-decoration: underline;
}


blockquote {
  font-style: italic;
  margin: 20px auto;
  width: 60%;
}

/* Contact */
.contact {
  text-align: center;
  padding: 40px;
}

/* Page Title Section */
.page-title {
  background:
    linear-gradient(to right, #3eacc5, #87ceeb),
    url('https://www.transparenttextures.com/patterns/xv.png');
  background-blend-mode: overlay;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-size: auto;
  /* or try cover / contain for different effects */
}



.page-title-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-title-description strong {
  color: #fff;
  font-weight: bold;
}

.page-title-description em {
  color: #ffd700;
  /* gold color for emphasis */
  font-style: italic;
}

.highlight-text {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  color: #ffcc00;
  font-weight: bold;
  text-transform: uppercase;
}

.highlight-text:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* Vehicle Types Section */
.vehicle-types,
.special-services {
  text-align: center;
  padding: 50px 20px;
  background-image: url('https://www.transparenttextures.com/patterns/bright-squares.png');
  background-repeat: repeat;

}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #007bff;
}

.vehicle-list,
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Vehicle Cards */
.vehicle,
.service {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 280px;
  transition: transform 0.3s ease-in-out;
}

.vehicle:hover,
.service:hover {
  transform: scale(1.05);
}

.vehicle img,
.service img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.5);
  /* Slightly dimmed by default */
  transition: filter 0.3s ease;
}

.vehicle:hover img,
.service:hover img {
  filter: brightness(1.1);
  /* Brightens on hover */
}

.vehicle h3,
.service h3 {
  font-size: 22px;
  margin: 15px 0;
  color: #333;
}

.vehicle p,
.service p {
  padding: 0 15px 15px;
  font-size: 16px;
  color: #666;
}

.premium-scroll-link .cta-image {
  width: 250px;
  /* Adjust image width */
  height: auto;
  border-radius: 12px;
  /* Optional: Round the corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Soft shadow for a premium feel */
  transition: transform 0.3s ease;
}

.premium-scroll-link .cta-image:hover {
  transform: scale(1.05);
  /* Slight zoom effect on hover */
}

/* vehicals and cards hover effect */
/* .vehicle:hover img, .service:hover img {
    filter: brightness(-0.8);
} */
.vehicle:hover h3,
.service:hover h3 {
  color: #007bff;
}

.vehicle:hover p,
.service:hover p {
  color: #333;
}

.vehicle:hover,
.service:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* WhatsApp Left (Home Page) */
.floating_btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4),
    0 0 10px rgba(37, 211, 102, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.floating_btn1 {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4),
    0 0 10px rgba(37, 211, 102, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.floating_btn1 a,
.floating_btn a,
.chatbot_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.floating_btn1 img,
.floating_btn img,
.chatbot_btn img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.floating_btn1:hover,
.floating_btn:hover,
.chatbot_btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5),
    0 0 15px rgba(37, 211, 102, 0.4),
    inset 0 0 8px rgba(255, 255, 255, 0.4);
}

.floating_btn1:hover img,
.floating_btn:hover img,
.chatbot_btn:hover img {
  transform: scale(1.1);
}

/* WhatsApp Right (Other Pages) */
.floating_btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  /* rest same as above */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.hidden {
  display: none;
}

.view-more {
  background-color: #1e40af;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-more:hover {
  background-color: #3eacc5;
}


.floating_btn {
  animation: pulse 2s infinite;
}


/* Contact Section */
.contact-intro {
  background: url('https://www.transparenttextures.com/patterns/pw-maze-white.png'), #f4f8fb;
  /* Light texture */
  padding: 80px 40px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  /* Softer shadow for elegance */
  position: relative;
}

.contact-heading {
  font-size: 2.5rem;
  color: #1e40af;
  /* Deep blue for a trust-building feel */
  font-weight: 800;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-lead {
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  opacity: 0.85;
  /* Slight transparency for softness */
}

.contact-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  opacity: 0.8;
  /* Slight transparency for cohesion */
}

.contact-intro p {
  margin: 0 0 20px;
  padding: 0;
}

.contact-intro .container {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-heading {
    font-size: 2rem;
  }

  .contact-lead {
    font-size: 1.1rem;
  }

  .contact-text {
    font-size: 1rem;
  }
}

/* Hover Effect on Paragraphs */
.contact-lead:hover,
.contact-text:hover {
  color: #1e40af;
  transition: color 0.3s ease-in-out;
}

/* Animation on Entry (Slide-Up) */
.contact-intro {
  animation: slideUp 1s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Trust Section */
.why-trust-us {
  background: #f4f8fd;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.why-trust-us .container {
  max-width: 1100px;
  margin: auto;
}

.why-trust-us h2 {
  font-size: 30px;
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.why-trust-us p {
  font-size: 17px;
  color: #444;
  text-align: center;
  margin-bottom: 25px;
}

.why-trust-us ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: auto;
}

.why-trust-us li {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 16px;
  color: #333;
}

.why-trust-us li strong {
  color: #1e40af;
}


/* FAQ Section */
.faq-section {
  background: #f9fafb;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.faq-section h2 {
  font-size: 2rem;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 20px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e0e7ff;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e3a8a;
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: #1e3a8a;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  display: none;
  margin-top: 12px;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}


.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to right, #e0f7fa, #f0f4ff);
  padding: 4rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  position: relative;
}

.contact-section {
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.9);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.corner-badge {
  position: fixed;
  top: 20px;
  right: -45px;
  transform: rotate(45deg);
  background: #2563eb;
  color: white;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.separator {
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, #2563eb, #60a5fa);
  margin: 2rem auto;
}

.contact-section {
  background: linear-gradient(to right, #e0f7fa, #f0f4ff);
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  background-size: 200px;
}

.blur-bg {
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, #1e3a8a33 0%, transparent 70%);
  z-index: 0;
  filter: blur(120px);
  pointer-events: none;
}

.contact-section {
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #1e3a8a;
  margin: 0.5rem auto 0;
  border-radius: 4px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  /* align-items: center; */
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
}

.modern-card:hover {
  transform: translateY(-6px);
}

.contact-form h3,
.map-card h3 {
  font-size: 1.8rem;
  color: #1e3a8a;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
  outline: none;
}

.map-card iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 15px;
  margin-top: 1rem;
}

/* Contact Icons */
/* .contact-icons {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  } */
/* .contact-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 900px;
    margin: 20m auto 0;
  } */




.modern-card.contact-form {
  background: linear-gradient(145deg, #1b1313, #0d2a59);
  background-image: url('https://www.transparenttextures.com/patterns/fabric-of-squares.png');
  background-blend-mode: soft-light;
  background-size: 150px;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(200, 200, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s ease-in-out;
  width: 100%;
  max-width: 800px;
}

.modern-card1 {
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
  background-image: url('https://www.transparenttextures.com/patterns/white-wall-3.png');
  background-blend-mode: soft-light;
  background-size: 200px;
  padding: 2rem 2rem;
  border-radius: 24px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(180, 200, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  max-width: 1000px;
  margin: 2rem auto;
}

.modern-card.contact-form:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.contact-form h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.primary-btn {
  background: linear-gradient(to right, #2563eb, #4f46e5);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: linear-gradient(to right, #1e3a8a, #4338ca);
  transform: scale(1.03);
}

.success-icon {
  font-size: 2rem;
  color: #10b981;
}

.success-text {
  font-weight: bold;
  margin-bottom: 1rem;
}

.success-buttons {
  margin-top: 1rem;
  display: flex;
  gap: 12px;
}

.action-button {
  background: #1e40af;
  color: white;
  padding: 6px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.action-button:hover {
  opacity: 0.9;
}

iframe {
  width: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

.hidden {
  display: none !important;
}


.contact-details h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-details .social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-details .social-icons>div {
  text-align: center;
  max-width: 120px;
}

.contact-details img {
  border-radius: 10px;
  width: 45px;
  height: 45px;
}

.contact-details p {
  margin: 6px 0;
  font-weight: bold;
  font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
  text-align: center;
  padding: 50px 20px;
  background-image: url('https://www.transparenttextures.com/patterns/hexellence.png');
  background-repeat: repeat;
  background-color: #f9fafb;
  /* fallback background */
  color: #333;

}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.trust-section a.trust {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
}

.trust-section a.trust:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trust {
  background: white;
  border-radius: 16px;
  padding: 25px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.trust img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
  object-fit: cover;
}

.trust h3 {
  font-size: 20px;
  color: #1e40af;
  margin-bottom: 10px;
  font-weight: 600;
}

.trust p {
  font-size: 16px;
  color: #555;
}

/* Core layout */
.footer {
  background: linear-gradient(to right, #1e3a8a, #2563eb);
  color: #f1f5f9;
  font-family: 'Poppins', sans-serif;
  padding-top: 2rem;
  /* Reduced padding */
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05), transparent 70%);
  opacity: 0.2;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 1.5rem;
  /* Reduced padding */
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  /* Reduced gap */
  margin-bottom: 1rem;
  /* Reduced margin */
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Brand section */
.footer-brand {
  text-align: center;
  /* Center for mobile as per screenshot */
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-brand .logo {
  height: 70px;
  margin-bottom: var(--space-4);
}

.logo {
  height: 60px;
  transition: var(--transition-normal);
}

.logo:hover {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.4));
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-shrish {
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc2626;
  /* Red for "ShRish" */
  position: relative;
}

.logo-shrish::after {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background: #22c55e;
  /* Green swoosh */
  border-radius: 5px;
}

.logo-travels {
  font-size: 1.5rem;
  font-weight: 700;
  color: #facc15;
  /* Yellow for "TRAVELS" */
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand p {
  text-align: center;
  /* Center as per screenshot */
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}

/* Social icons */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  text-align: left;
}

/* Ensure the entire container (icon + preview) is the hover area */
.insta-hover-container,
.youtube-hover-container,
.whatsapp-hover-container {
  position: relative;
  display: inline-block;
}

/* ICON STYLE */
.footer-socials a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #facc15;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 1;
  position: relative;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* == INSTAGRAM == */
.insta-preview {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10;
  width: 300px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: white;
  pointer-events: auto;
}

.insta-hover-container:hover .insta-preview,
.insta-preview:hover {
  opacity: 1;
  visibility: visible;
}

/* == YOUTUBE == */
.youtube-preview {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: auto;
}

.youtube-preview iframe {
  width: 280px;
  height: 158px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  background: #000;
}

.youtube-hover-container:hover .youtube-preview,
.youtube-preview:hover {
  opacity: 1;
  visibility: visible;
}

/* == WHATSAPP == */
.whatsapp-tooltip {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #25d366;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 100;
  /* pointer-events: auto; */
}

.whatsapp-hover-container:hover .whatsapp-tooltip,
.whatsapp-tooltip:hover {
  opacity: 1;
  visibility: visible;
}

.developer-hover-container {
  position: relative;
  display: inline-block;
}

.developer-link {
  text-decoration: none;
  color: #888;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.developer-link strong {
  font-size: 0.85rem;
}

.developer-hover-container:hover .developer-link {
  color: #facc15;
}

.developer-preview {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.developer-hover-container:hover .developer-preview,
.developer-preview:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.developer-preview iframe {
  width: 360px;
  height: 215px;
  border: none;
  border-radius: 10px;
}


/* Links and Headings */
.footer h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #facc15;
  /* Yellow headings */
  margin-bottom: 1rem;
  position: relative;
  text-align: left;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: #facc15;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #d1d5db;
  text-align: left;
}

.footer-links a {
  color: #f1f5f9;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #facc15;
  padding-left: 0.5rem;
}

/* Contact Info */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact p {
  margin: 0;
  font-weight: 600;
  color: #f1f5f9;
  font-size: 0.9rem;
  text-align: left;
}

.footer-contact a,
.footer-contact address {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

.footer-contact a:hover {
  color: #facc15;
}

.footer-contact i {
  font-size: 1.1rem;
  color: #facc15;
  margin-top: 0.25rem;
  text-align: left;
}

.footer-contact-item {
  align-items: left;
}

/* Footer bottom bar */
.footer-bottom {
  background: #0f172a;
  padding: 1rem 0;
  /* Reduced padding */
  text-align: left;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
  color: #d1d5db;
  font-size: 0.8rem;
  margin: 0;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .footer-brand {
    text-align: left;
    /* Restore left alignment for desktop */
  }

  .footer-brand p {
    text-align: left;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-icons .icon-box {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  /* background: #fff; */
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Soft shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icons .icon-box:hover {
  transform: translateY(-5px);
  /* Lift effect on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  /* Enhanced shadow */
}

.contact-icons .icon-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.contact-icons .icon-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.contact-icons .icon-box img.blogger-icon {
  width: 28px;
  height: 28px;
}

.contact-icons .icon-box:hover img {
  transform: scale(1.1);
  /* Subtle zoom for icon */
}

/* Premium Tooltip */
.contact-icons .icon-box a::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -50px;
  /* Position above icon */
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  /* Start slightly scaled down */
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);
  /* Blue gradient for travel vibe */
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  /* Glow effect */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

.contact-icons .icon-box a:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  /* Scale to full size */
}

/* Tooltip Arrow */
.contact-icons .icon-box a::before {
  content: '';
  position: absolute;
  top: -14px;
  /* Align with tooltip bottom */
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #1e3a8a transparent transparent;
  /* Match gradient start */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

.contact-icons .icon-box a:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-icons {
    gap: 15px;
  }

  .contact-icons .icon-box {
    width: 40px;
    height: 40px;
  }

  .contact-icons .icon-box img {
    width: 24px;
    height: 24px;
  }

  .contact-icons .icon-box a::after {
    font-size: 12px;
    padding: 6px 10px;
    top: -45px;
  }

  .contact-icons .icon-box a::before {
    top: -12px;
    border-width: 6px 6px 0;
  }
}



footer p {
  margin: 20px 0 0;
  text-align: left;
  /* font-size: 14px; */
  /* color: #dbeafe; */
}

/* .contact-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
} */

/* .icon-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 100px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
} */

.icon-box:hover {
  /* background-color: rgba(255, 255, 255, 0.15); */
  transform: scale(1.05);
}

/* .icon-box img {
  width: 30px;
  height: 30px;
  filter: brightness(95%);
  transition: transform 0.3s ease;
}

.icon-box:hover img {
  transform: scale(1.15);
} */

@media (max-width: 600px) {
  .contact-icons {
    gap: 20px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
  }

  .icon-box img {
    width: 24px;
    height: 24px;
  }
}

/* py folder */

.page-content {
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}

.contact-icons {
  text-align: center;
  margin-top: 2rem;
}

.icon-btn {
  display: inline-block;
  font-size: 2.2rem;
  margin: 0 1rem;
  transition: transform 0.3s, color 0.3s;
  color: #003366;
  text-decoration: none;
}

.icon-btn:hover {
  transform: scale(1.3);
  color: #007BFF;
}

.why-trust-us li i {
  margin-right: 0.6rem;
  padding-left: 0;
  color: #007BFF;
}

.comfort-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.destination-info h2,
.comfort-section h2 {
  color: #003366;
}

.why-trust-us ul li a {
  text-decoration: none;
  color: inherit;
  /* inherit text color */
  font-weight: 600;
  /* slightly bolder for clarity */
  transition: color 0.3s ease;
}

.why-trust-us ul li a:hover,
.why-trust-us ul li a:focus {
  color: #007BFF;
  /* highlight color on hover/focus */
  text-decoration: underline;
  /* subtle underline on hover */
  outline: none;
  cursor: pointer;
}


.destination-info h2,
.comfort-section h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}


.call-to-action p {
  font-size: 1.25rem;
  font-weight: 60;
  color: #222;
}

.call-to-action a {
  color: #007BFF;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

.call-to-action a:hover,
.call-to-action a:focus {
  border-bottom: 2px solid #007BFF;
  outline: none;
}

/* FAQ Section */
.faq-container details {
  background: #f9f9f9;
  border-left: 4px solid #007BFF;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.faq-container summary {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  outline: none;
}

.faq-container details[open] summary {
  color: #007BFF;
}

/* Routes */
/* Routes Grid Section */
.routes-grid {
  padding: 2rem 1rem;
  background: linear-gradient(180deg, #f1f5f9, #e2e8f0);
}

.routes-grid .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
  font-size: 1rem;
  color: #475569;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.route-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.route-card:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.route-card.featured {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.route-card.featured .route-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.route-card.featured>* {
  position: relative;
  z-index: 2;
}

.route-card.compact {
  min-height: 150px;
  background: rgba(255, 255, 255, 0.95);
}

.route-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.route-card.featured .route-title {
  font-size: 1.5rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.route-title i {
  margin-right: 0.5rem;
  color: #3b82f6;
}

.route-card.featured .route-title i {
  color: #60a5fa;
}

.route-desc {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1rem;
}

.route-card.featured .route-desc {
  color: #e2e8f0;
}

.route-links {
  display: flex;
  gap: 0.5rem;
}

.route-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.route-link.view-page {
  background: rgba(255, 255, 255, 0.2);
  color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.route-card.featured .route-link.view-page {
  color: white;
}

.route-link.view-page:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  border: #000;
  /* Slight lift effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.route-link.book-now {
  background: #2563eb;
  color: white;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.route-link.book-now:hover {
  background: #1d4ed8;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .routes-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.875rem;
  }

  .route-card.featured {
    min-height: 200px;
    padding: 1rem;
  }

  .route-card.featured .route-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .routes-grid {
    padding: 1.5rem 0.5rem;
  }

  .route-card {
    padding: 0.75rem;
  }

  .route-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .route-link {
    width: 100%;
    padding: 0.5rem;
  }
}

/* slider */


.ticker-wrapper {
  overflow: hidden;
  background: #f0f0f0;
  padding: 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
}

.ticker {
  display: flex;
  align-items: center;
  animation: ticker-slide 40s linear infinite;
}

.prefix {
  font-weight: bold;
  color: #333;
  margin-right: 30px;
  flex-shrink: 0;
}

/* 
.routes {
  display: flex;
  gap: 30px;
  flex-shrink: 0;
}

.route {
  font-weight: bold;
  color: #333;
  cursor: default;
  user-select: none;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-3px); }
  40%, 80% { transform: translateX(3px); }
} */

/* .route:hover {
  animation: shake 0.5s ease-in-out;
  color: #ff0015; 
  cursor: pointer;
} */

/* Animation */
/* @keyframes ticker-slide {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
} */

/* Pause on hover */
.ticker-wrapper:hover .ticker {
  animation-play-state: paused;
}

header {
  height: 60px;
  /* fix your header height */
  /* your existing header styles */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* other styles */
}

.fixed-slider {
  position: fixed;
  top: 90px;
  /* right below header */
  left: 0;
  width: 100%;
  background: #f0f0f0;
  padding: 20px 20px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  z-index: 9999;
  /* stays on top of everything except header */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.route:hover {
  animation: glow 1.5s infinite alternate;
  color: #0077cc;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #658f9c;
  }

  to {
    text-shadow: 0 0 15px #cabb14, 0 0 25px #d2d60d;
  }
}

.footer-brand .logo {
  height: 70px;
  margin-bottom: var(--space-4);
}

.logo {
  height: 60px;
  transition: var(--transition-normal);
}

.logo:hover {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.4));
}

/* Tariff Page Styles */
/* General Reset and Base Styles */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Container Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3c6d;
  text-align: center;
  margin-bottom: 20px;
  padding: 20px 0;
}

.section-title i {
  color: #ff6f00;
  margin-right: 10px;
}

.sub-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a3c6d;
  margin-bottom: 20px;
}

.sub-section-title i {
  color: #ff6f00;
  margin-right: 8px;
}

/* Tariff Intro Section */
.tariff-intro-section {
  background-color: #fff;
  padding: 40px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-title-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px;
}

/* Tariff Details Section */
.tariff-details-section {
  padding: 40px 0;
}

.table-responsive {
  overflow-x: auto;
  margin-bottom: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

th {
  background-color: #1a3c6d;
  color: #fff;
  font-weight: 600;
}

th i {
  margin-right: 8px;
}

td {
  font-size: 1rem;
  color: #333;
}

tr:nth-child(even) {
  background-color: #f8f8f8;
}

tr:hover {
  background-color: #f1f1f1;
}

/* Notes Section */
.notes-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a3c6d;
  margin: 20px 0;
}

.tariff-notes {
  list-style: none;
  margin-bottom: 20px;
}

.tariff-notes li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.tariff-notes li i {
  color: #ff6f00;
  margin-right: 10px;
}

.tariff-note {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}

.tariff-note i {
  color: #ff6f00;
  margin-right: 8px;
}

/* Why Choose Tariff Section */
.why-choose-tariff-section {
  background-color: #fff;
  padding: 40px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 2rem;
  color: #ff6f00;
  margin-bottom: 10px;
}

.feature-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a3c6d;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.95rem;
  color: #555;
}

/* Contact CTA Section */
/* .contact-cta-section {
  background-color: #1a3c6d;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.contact-cta-section .section-title {
  color: #fff;
}

.contact-cta-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: #ff6f00;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-btn i {
  margin-right: 8px;
}

.cta-btn:hover {
  background-color: #e65a00;
}

.whatsapp-btn {
  background-color: #25D366;
}

.whatsapp-btn:hover {
  background-color: #20b358;
}

.call-btn {
  background-color: #007bff;
}

.call-btn:hover {
  background-color: #0056b3;
} */

/* Responsive Design */
@media (max-width: 768px) {
  /* .section-title {
    font-size: 2rem;
  }

  .sub-section-title {
    font-size: 1.5rem;
  } */

  .table-responsive {
    font-size: 0.9rem;
  }

  th,
  td {
    padding: 10px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-links h3 {
    display: none;
  }

  .footer-links ul {
    display: none;
  }
}

/* @media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .sub-section-title {
    font-size: 1.3rem;
  }

  .page-title-description,
  .tariff-notes li,
  .tariff-note,
  .feature-item p {
    font-size: 0.9rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
} */

/* AOS Animation Overrides */
[data-aos] {
  transition-duration: 0.8s;
}

[data-aos="fade-up"] {
  transform: translateY(20px);
  opacity: 0;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="fade-right"] {
  transform: translateX(-20px);
  opacity: 0;
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos="fade-left"] {
  transform: translateX(20px);
  opacity: 0;
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
  opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

/* Tariff Warning Pop-up Styles */
/* Floating Warning Popup */
.floating-warning {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff8e1;
  border: 2px solid #f59e0b;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  max-width: 300px;
  font-family: sans-serif;
}

.floating-warning h3 {
  margin-top: 0;
  font-size: 18px;
  color: #d97706;
}

.floating-warning p {
  margin: 8px 0;
  font-size: 14px;
}

.floating-warning-actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.floating-warning-btn {
  width: 45px;
  height: 45px;
  background: #f59e0b;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.3s;
}

/* Blue color for Call button */
.call-btn {
  background: #0b32f5;
}

/* Push the last icon to the right */
.spacer {
  flex: 1;
}

/* Optional hover styles */
.floating-warning-btn:hover {
  opacity: 0.9;
}


.floating-warning-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 20px;
  color: #000000;
  cursor: pointer;
}

/* Blinking Icon */
.floating-warning-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  /* background-color: #ffffff; */
  color: rgb(255, 153, 0);
  padding: 14px;
  /* border-radius: 50%; */
  font-size: 22px;
  cursor: pointer;
  z-index: 9999;
  animation: blink 1.2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* General Main Container for Hiring Page */
.hiring-main-container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  background: #f4f7f6;
  /* background color */
  color: #333;
  position: relative;
}

/* Style iframe separately */
.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
}


/* Section Styling */
.hiring-main-container section {
  margin-bottom: 50px;
  background: #ffffff;
  padding: 40px;
  /* Increased padding */
  border-radius: 16px;
  /* Slightly less rounded */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.08);
  /* More pronounced shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Add transition for hover */
}

/* Optional: Add a subtle hover effect to sections */
.hiring-main-container section:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15), 0 12px 12px rgba(0, 0, 0, 0.1);
}


/* Hero Section Specifics */
.hero-section-wrapper h1.main-hero-title {
  font-size: 2.8rem;
  /* Slightly larger */
  margin-bottom: 15px;
  color: #1e3a8a;
  /* Darker blue */
  text-align: center;
  font-weight: 700;
  /* Bold */
}

.hero-section-wrapper p.hero-subtitle-text {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.hero-section-wrapper .primary-cta-button {
  display: block;
  /* Make button block for centering */
  width: fit-content;
  /* Fit content width */
  margin: 0 auto;
  /* Center the button */
  background-color: #2563eb;
  /* Primary blue */
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-section-wrapper .primary-cta-button:hover {
  background-color: #1a56cc;
  /* Darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}


/* Section Titles */
.hiring-main-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1e3a8a;
  /* Darker blue */
  text-align: center;
  font-weight: 700;
}

/* Benefits Section */
.benefits-showcase-section ul.benefits-list-container {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  /* Adjusted min-width */
  gap: 20px;
  /* Increased gap */
}

.benefits-showcase-section ul.benefits-list-container li.benefit-item-wrapper {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  /* Subtle gradient */
  border: 1px solid #93c5fd;
  /* Subtle border */
  padding: 25px;
  /* Increased padding */
  border-radius: 10px;
  font-weight: 500;
  display: flex;
  /* Use flexbox for icon and text */
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  /* Subtle shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefits-showcase-section ul.benefits-list-container li.benefit-item-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Reduce horizontal padding of container inside application form section */
.application-form-section .container {
  padding-left: 5px;
  /* smaller than default, e.g., 15-20px */
  padding-right: 5px;

}

/* Increase max-width or remove margin to let form expand */
.application-form-section form.driver-application-form {
  max-width: 100%;
  /* instead of 800px */
  margin-left: auto;
  /* center horizontally */
  margin-right: auto;
  padding-left: 5px;
  /* optional: small padding inside form */
  padding-right: 5px;
  box-sizing: border-box;
  /* ensure padding doesn’t break width */
}


.benefits-showcase-section ul.benefits-list-container li.benefit-item-wrapper i {
  color: #2563eb;
  /* Primary blue icon color */
  font-size: 1.5rem;
  /* Larger icon */
  margin-right: 15px;
  /* Space between icon and text */
}

.benefits-showcase-section ul.benefits-list-container li.benefit-item-wrapper strong.benefit-title-text {
  font-weight: 600;
  color: #1f2937;
  /* Darker text */
}


/* Form Section */
.application-form-section form.driver-application-form {
  display: grid;
  gap: 25px;
  /* Increased gap */
  max-width: 800px;
  /* Increased max-width */
  margin: 10px auto 0 auto;
  /* Center the form */
  padding: 30px;
  background: #f8f8f8;
  /* Slightly different background for form */
  border-radius: 12px;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
  /* Inset shadow for depth */
}

.application-form-section .form-row-container {
  display: grid;
  grid-template-columns: 1fr;
  /* Stack columns by default */
  gap: 20px;
}

@media (min-width: 600px) {

  /* Two columns on larger screens */
  .application-form-section .form-row-container {
    grid-template-columns: 1fr 1fr;
  }

  /* Reduce horizontal padding of container inside application form section */
  .application-form-section .container {
    padding-left: 10px;
    /* smaller than default, e.g., 15-20px */
    padding-right: 10px;
  }

  /* Increase max-width or remove margin to let form expand */
  .application-form-section form.driver-application-form {
    max-width: 100%;
    /* instead of 800px */
    margin-left: auto;
    /* center horizontally */
    margin-right: auto;
    padding-left: 5px;
    /* optional: small padding inside form */
    padding-right: 5px;
    box-sizing: border-box;
    /* ensure padding doesn’t break width */
  }

}


.application-form-section .input-field-wrapper {
  display: flex;
  flex-direction: column;
}

.application-form-section .form-input-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.application-form-section input.text-input-field,
.application-form-section textarea.text-input-field,
.application-form-section select.select-dropdown-field {
  padding: 14px 15px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  /* Lighter border */
  width: 100%;
  box-sizing: border-box;
  /* Include padding and border in element's total width and height */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.application-form-section input.text-input-field:focus,
.application-form-section textarea.text-input-field:focus,
.application-form-section select.select-dropdown-field:focus {
  outline: none;
  border-color: #2563eb;
  /* Primary blue border on focus */
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  /* Subtle focus ring */
}

.application-form-section textarea.text-input-field {
  resize: vertical;
  /* Allow vertical resizing */
  min-height: 100px;
}


.application-form-section button.form-submit-button {
  background-color: #1a56cc;
  /* Primary blue */
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 30px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: auto;
  /* Auto width */
  margin-top: 10px;
  /* Space above button */
  justify-self: center;
  /* Center button in grid */
}

.application-form-section button.form-submit-button:hover {
  background-color: #1e40af;
  /* Darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.application-form-section button.form-submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Testimonials Section */
.testimonial-display-section blockquote.driver-testimonial-quote {
  font-style: italic;
  color: #444;
  padding: 20px 30px;
  /* Increased padding */
  border-left: 5px solid #2563eb;
  /* Primary blue border */
  margin: 20px auto;
  /* Center and add margin */
  max-width: 800px;
  /* Limit width */
  background: #eef2ff;
  /* Lighter blue background */
  border-radius: 10px;
  position: relative;
  /* Needed for pseudo-elements */
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Add quote icons for a premium touch */
.testimonial-display-section blockquote.driver-testimonial-quote::before {
  content: "\201C";
  /* Left double quote */
  font-size: 3em;
  color: #2563eb;
  position: absolute;
  left: 10px;
  top: 10px;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-display-section blockquote.driver-testimonial-quote::after {
  content: "\201D";
  /* Right double quote */
  font-size: 3em;
  color: #2563eb;
  position: absolute;
  right: 10px;
  bottom: 10px;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-display-section blockquote.driver-testimonial-quote .testimonial-author-info {
  display: block;
  /* New line for author */
  margin-top: 15px;
  font-weight: 600;
  color: #1e3a8a;
  /* Darker blue */
  text-align: right;
  font-style: normal;
  /* Remove italic from cite */
}

/* Final CTA Section */
.final-cta-section {
  text-align: center;
}

.final-cta-section .cta-section-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1e3a8a;
  font-weight: 700;
}

.final-cta-section .cta-description-text {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.final-cta-section .secondary-cta-button {
  display: inline-block;
  background-color: transparent;
  /* Light background */
  color: #2563eb;
  /* Primary blue text */
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #2563eb;
  /* Blue border */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.final-cta-section .secondary-cta-button:hover {
  background-color: #2563eb;
  /* Primary blue on hover */
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.12);
}

.final-cta-section .secondary-cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* In style.css */
#route-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #eaeaea;
  /* Consider using a CSS variable if this color is part of a theme */
  padding: 10px;
  font-weight: bold;
  color: #333;
  /* Ensure good contrast */
  font-family: sans-serif;
  /* Consider using a more specific font stack from your design */
}

.iframe-no-border {
  border: none;
}

.iframe-no-border-overflow-hidden {
  border: none;
  overflow: hidden;
}

.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

#hiring-float-icon {
  position: fixed;
  top: 150px;
  left: 20px;
  width: 100px;
  height: auto;
  z-index: 9999;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease, filter 0.3s ease;
  pointer-events: none;
  filter: invert(1);
}

#hiring-float-icon.visible {
  opacity: 0.5;
  pointer-events: auto;
}

#hiring-float-icon.visible:hover {
  filter: invert(0) drop-shadow(0 0 5px rgba(0, 0, 255, 0.6));
  opacity: 1;
  /* add gradient overlay via background if needed */
  background: linear-gradient(45deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  background-clip: svg;
  -webkit-text-fill-color: transparent;
}

