 <style>
        body {
            font-family: 'Open Sans', sans-serif;
            top: 0 !important;
        }
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #0A2463 0%, #1E2761 100%);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            background: linear-gradient(145deg, #D4AF37 0%, #FFD700 100%);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }
        .testimonial-card {
            transition: all 0.4s ease;
            border-left: 4px solid #0A2463;
        }
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            border-left: 4px solid #D4AF37;
        }
        .driver-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .chat-widget {
            transition: all 0.3s ease;
        }
        .chat-widget:hover {
            transform: scale(1.1);
        }
        .booking-form {
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .animate-pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .gold-gradient {
            background: linear-gradient(145deg, #D4AF37 0%, #FFD700 100%);
        }
        .button-glow:hover {
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
        }
        .nav-pill {
            position: relative;
            overflow: hidden;
        }
        .nav-pill:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #FFD700;
            transition: width 0.3s ease;
        }
        .nav-pill:hover:after {
            width: 80%;
        }
        .card {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
/* Google Translate container styling */
.translate-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f9fafb; /* soft background */
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', 'Open Sans', sans-serif;
}

/* Icon styling */
.translate-container i.fas.fa-globe {
  color: #374151; /* dark gray */
  font-size: 16px;
}

/* Dropdown styling */
.goog-te-combo {
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: white;
  color: black;
  cursor: pointer;
}

/* Hide Google branding (if not already) */
.goog-logo-link,
.goog-te-gadget > span > span,
.goog-te-gadget > span > img {
  display: none !important;
}

/*-- Google Translate Styling */

  #google_translate_element select,
  #google_translate_element_mobile select {
    padding: 4px 8px;
    font-size: 0.875rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  /*--- New nav---*/
 /* Logo and Navbar Scroll Animation */
.nav-default {
  transition: all 0.3s ease-in-out;
}

.nav-scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.logo-default {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

.logo-scrolled {
  width: 32px;
  height: 32px;
}

    </style>