* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #2d2d2d;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

/* Header Styles */
.header-top-bar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 12px 0;
  font-size: 14px;
}

.header-top-bar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin: 0 15px;
  transition: all 0.3s;
}

.header-top-bar a:hover {
  color: #ffd700;
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}

.navbar.scrolled {
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a !important;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.navbar-brand:hover {
  color: #ff6b6b !important;
}

.navbar-brand i {
  color: #ff6b6b;
  font-size: 32px;
}

.nav-link {
  color: #2d2d2d !important;
  font-weight: 500;
  margin: 0 8px;
  padding: 8px 16px !important;
  transition: all 0.3s;
  position: relative;
  font-size: 15px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
  transition: width 0.3s;
}

.nav-link:hover {
  color: #ff6b6b !important;
}

.nav-link:hover::after {
  width: 70%;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.btn-book-now {
  /* background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%); */
  background: linear-gradient(90deg, #ff7a18 0%, #ffb347 100%);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  background: linear-gradient(90deg, #ff7a18 0%, #ffb347 100%);
  color: white;
}

/* Hero Section */
.hero-section {
  background:
    linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.9) 0%,
      rgba(45, 45, 45, 0.8) 100%
    ),
    url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?w=1920")
      center/cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.btn-hero {
  background: linear-gradient(90deg, #ff7a18 0%, #ffb347 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
  color: white;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: #ffffff;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s;
  height: 100%;
  background: #f8f9fa;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #ff6b6b;
  background: white;
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: white;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 18px;
  color: #666;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
  height: 350px;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.9) 0%,
    rgba(255, 215, 0, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  text-align: center;
  color: white;
}

.portfolio-overlay-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.stat-item {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 80px 0 30px;
}

.footer h5 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 22px;
  position: relative;
  padding-bottom: 15px;
}

.footer h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-size: 15px;
}

.footer ul li a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.footer .contact-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer .contact-info i {
  color: #ff6b6b;
  margin-top: 5px;
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
}

.social-links a:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
  transform: translateY(-5px);
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
@media (max-width: 480px) {
  .title-box {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .stat-number {
    font-size: 42px;
  }
}

.page-header h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
}
.page-header p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-section {
  padding: 100px 0;
  background: #f8f9fa;
}
.contact-form {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-size: 15px;
}
.form-control {
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s;
}
.form-control:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
  outline: none;
}
.btn-submit {
  background: linear-gradient(90deg, #ff7a18 0%, #ffb347 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  width: 100%;
}
.btn-submit:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #ff7a18 0%, #ffb347 100%);
  color: white;
}

.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}
.contact-details h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.contact-details p {
  color: #666;
  font-size: 16px;
  margin: 0;
}
.contact-details a {
  color: #ff6b6b;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-details a:hover {
  color: #ff5252;
}

.map-section {
  padding: 0;
  height: 500px;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}

.about-section {
  padding: 100px 0;
}
.about-content {
  padding: 40px 0;
}
.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a1a1a;
}
.about-content p {
  font-size: 17px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-section {
  padding: 100px 0;
  background: #f8f9fa;
}
.value-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  transition: all 0.4s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.value-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: white;
  transition: all 0.3s;
}
.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}
.value-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}
.value-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.team-section {
  padding: 100px 0;
}
.team-card {
  text-align: center;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.team-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-image img {
  transform: scale(1.1);
}
.team-info {
  padding: 30px;
}
.team-info h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.team-info p {
  color: #666;
  font-size: 16px;
  margin-bottom: 15px;
}
.team-social {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.team-social a {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}
.team-social a:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
  color: white;
  transform: translateY(-3px);
}
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Common button style */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: blink 1.5s infinite;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Primary Color */
.float-btn.whatsapp {
  background-color: #25d366;
}

/* Phone Primary Color */
.float-btn.phone {
  background-color: #ff6600; /* your primary color */
}

/* Blink Animation */
@keyframes blink {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile friendly */
@media (max-width: 768px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

.page-header {
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  color: #fff;
  border-radius: 12px;
  margin: 5px;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
}

.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-description {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
}
@media (max-width: 580px) {
  .page-header h1 {
    font-size: 19px;
  }

  .page-header p {
    font-size: 11px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .page-title {
    font-size: 22px;
  }

  .page-description {
    font-size: 14px;
    padding: 0 10px;
  }

  .page-header {
    padding: 50px 0;
  }
}

.slider {
  overflow: hidden;
}

.slide-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.slide {
  width: 200px;
  margin: 0 20px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.slider {
  overflow: hidden;
  width: 100%;
}

.slide-track {
  display: flex;
  align-items: center;
}

.slide {
  width: 150px; /* control logo box size */
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  border: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.slide img {
  width: 271px;
  height: 167px;
  object-fit: contain;
}

/* ===== Content Section ===== */
.service-content-section {
  padding: 40px 0;
}

.service-content {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #dedede29;
  border: 2px solid #dedede29;
  padding: 12px;
  border-radius: 12px;
}

.service-content.expanded {
  max-height: 5000px;
}

/* Button */
.view-more-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 15px;
}

.view-more-btn:hover {
  background: #444;
}

/* Mobile view */
@media (max-width: 768px) {
  .service-content {
    max-height: 200px;
  }
}

/* ===== SERVICE SECTION ===== */

.service-taxi-col {
  margin-bottom: 30px;
}

/* Card Design */
.blogbox .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Hover Effect */
.blogbox .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Image */
.card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blogbox .card:hover .card__image img {
  transform: scale(1.08);
}

/* Content */
.card__content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card__article h2 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blogbox .card:hover h2 {
  color: #ff6b00; /* Brand Orange */
}

/* Remove link underline */
.blogbox a {
  text-decoration: none;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

@media (max-width: 992px) {
  .card__image {
    height: 200px;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 21px;
  }
}

@media (max-width: 768px) {
  .card__image {
    height: 180px;
  }

  .card__article h2 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .card__image {
    height: 160px;
  }

  .service-taxi-col {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ===== BREADCRUMB SECTION ===== */

.bred_crumb {
  position: relative;
  padding: 22px 15px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #090e3c 0%, #0b062f 50%, #1b266b 100%);
  overflow: hidden;
}

/* Optional Light Overlay Pattern Effect */
.bred_crumb::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.bred_crumb::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

/* Heading */
.bred_crumb h1 {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Breadcrumb Text */
.bred_crumb h4 {
  font-size: 16px;
  font-weight: 500;
}

.bred_crumb h4 a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.bred_crumb h4 a:hover {
  opacity: 0.8;
}

.bred_crumb i {
  margin: 0 8px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .bred_crumb {
    padding: 80px 15px;
  }

  .bred_crumb h1 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .bred_crumb {
    padding: 60px 15px;
  }

  .bred_crumb h1 {
    font-size: 26px;
  }

  .bred_crumb h4 {
    font-size: 14px;
  }
}

.faq-section {
  background: #f9f9f9;
}

.faq-card {
  background: #fff;
  border-radius: 15px;
  padding: 9px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 6px solid #ffc107;
  height: 100%;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.faq-question span {
  color: #ffc107;
  font-size: 22px;
  margin-right: 10px;
}

.faq-answer {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
  }
  .faq-answer {
    font-size: 14px;
  }
}
