        /* Custom CSS for styling and dark mode */
        body {
          font-family: 'Inter', sans-serif;
          /* Using Inter font as per instructions */
          transition: background-color 0.3s, color 0.3s;
          background-color: #f8f9fa;
          /* Light mode default background */
          color: #1a202c;
          /* Light mode default text color */
        }

        /* Hero section styling (now for carousel container) */
        .hero-carousel-container {
          position: relative;
          margin-bottom: 30px;
          border-radius: 0 0 15px 15px;
          overflow: hidden;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .carousel-bg {
          position: relative;
          height: 100vh;
          background-size: cover;
          background-position: center;
        }

        .carousel-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.55);
          z-index: 1;
        }

        .carousel-caption {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          z-index: 2;
          width: 90%;
          max-width: 700px;
          text-align: center;
          color: #fff;
          padding: 20px;
          border-radius: 15px;
        }

        .area-card {
          background: rgba(255, 255, 255, 0.95);
          color: #1a202c;
          border-radius: 12px;
          padding: 20px;
          margin-top: 20px;
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
          text-align: center;
        }

        .area-card h5 {
          font-weight: bold;
          font-size: 1.4rem;
          margin-bottom: 10px;
        }

        .area-card p {
          font-size: 0.95rem;
          line-height: 1.6;
          margin-bottom: 0;
        }

        /* List styling */
        .area-card p {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 0.5rem 1rem;
        }

        /* Responsive Text Sizes */
        .carousel-caption h5 {
          font-size: 1.8rem;
          margin-bottom: 1.5rem;
        }

        @media (max-width: 768px) {
          .carousel-caption h5 {
            font-size: 1.5rem;
          }

          .area-list li {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
          }

          .carousel-caption .bg-dark {
            padding: 1.2rem;
          }
        }

        @media (max-width: 576px) {
          .carousel-caption h5 {
            font-size: 1.4rem;
          }

          .area-list li {
            font-size: 0.9rem;
            line-height: 1.4;
          }

          .hero-btn {
            width: 100%;
            margin-bottom: 0.5rem;
            padding: 0.7rem 1rem;
            font-size: 0.95rem;
          }

          .carousel-caption .container {
            max-width: 100%;
          }
        }

        .hero-btn {
          transition: all 0.3s ease;
          padding: 0.8rem 1.5rem;
          border-radius: 50px;
        }

        .hero-btn:hover {
          transform: translateY(-3px) scale(1.05);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        @keyframes fadeIn {
          from {
            opacity: 0;
            transform: translateY(20px);
          }

          to {
            opacity: 1;
            transform: translateY(0);
          }
        }


        /* Action buttons below carousel */
        .hero-action-buttons {
          position: absolute;
          bottom: 30px;
          /* Adjust as needed */
          left: 50%;
          transform: translateX(-50%);
          z-index: 10;
          /* Ensure buttons are above carousel */
          width: 100%;
          display: flex;
          justify-content: center;
          gap: 20px;
          /* Space between buttons */
        }

        .hero-action-buttons .btn {
          padding: 15px 30px;
          font-size: 1.1rem;
          border-radius: 50px;
          /* Pill-shaped buttons */
          transition: transform 0.2s ease-in-out;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        .hero-action-buttons .btn:hover {
          transform: translateY(-3px);
        }

        /* Section common styling */
        .section-padding {
          padding: 80px 0;
        }

        .bg-light-grey {
          background-color: #f8f9fa;
        }

        .bg-medium-grey {
          background-color: #e9ecef;
        }


        /* Card styling for services/testimonials */
        .service-card,
        .testimonial-card {
          border-radius: 15px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease-in-out;
          height: 100%;
          /* Ensure cards in a row have same height */
        }

        .service-card:hover,
        .testimonial-card:hover {
          transform: translateY(-5px);
        }

        .service-card .card-body,
        .testimonial-card .card-body {
          padding: 30px;
        }

        .service-card .card-icon {
          font-size: 3rem;
          color: #007bff;
          margin-bottom: 20px;
        }

        body.dark-mode .service-card .card-icon {
          color: #66b3ff;
          /* Lighter blue for dark mode */
        }

        .testimonial-card img {
          width: 80px;
          height: 80px;
          object-fit: cover;
          border-radius: 50%;
          margin-bottom: 15px;
          border: 3px solid #007bff;
        }

        body.dark-mode .testimonial-card img {
          border-color: #66b3ff;
        }

        /* Form section styling */
        .booking-form-section {
          padding: 50px 0;
          background-color: #e9ecef;
          /* Light grey background for form section */
          border-radius: 15px;
          margin-bottom: 30px;
        }

        body.dark-mode .booking-form-section {
          background-color: #1a202c;
          /* Dark mode background for form section */
        }

        .form-control,
        .form-select {
          border-radius: 8px;
          padding: 12px;
          border: 1px solid #ced4da;
        }

        .form-label {
          font-weight: bold;
          margin-bottom: 8px;
        }

        .btn-primary {
          background-color: #007bff;
          border-color: #007bff;
          border-radius: 8px;
          padding: 12px 25px;
          font-size: 1.1rem;
        }

        .btn-primary:hover {
          background-color: #0056b3;
          border-color: #0056b3;
        }

        /* Dark mode toggle switch */
        .form-check-input:checked {
          background-color: #007bff;
          border-color: #007bff;
        }

        .form-check-input:focus {
          box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
        }

        /* Footer styling */
        footer {
          background-color: #343a40;
          color: white;
          padding: 20px 0;
          text-align: center;
          border-radius: 15px 15px 0 0;
          /* Rounded top corners */
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
          position: fixed;
          width: 60px;
          height: 60px;
          bottom: 40px;
          right: 40px;
          background-color: #25d366;
          color: #FFF;
          border-radius: 50px;
          text-align: center;
          font-size: 30px;
          box-shadow: 2px 2px 3px #999;
          z-index: 1000;
          /* Ensure it's above other content */
          display: flex;
          align-items: center;
          justify-content: center;
          transition: transform 0.3s ease-in-out, background-color 0.3s;
        }

        /* Style for HR TAXI brand name */
        /* Style for HR TAXI brand name (outside the box) */
        /* HR TAXI Brand Container */
        /* HR TAXI Brand Container */
        .hr-taxi-brand-container {
          position: absolute;
          top: 120px;
          left: 50%;
          /* Center horizontally */
          transform: translateX(-50%);
          /* Truly center the text */
          z-index: 15;
          font-size: 3rem;
          /* Make it larger */
          font-weight: 900;
          letter-spacing: 2px;
          color: #2c2c2c;
          text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
          display: flex;
          flex-direction: column;
          gap: 0.2rem;
          text-align: center;
          /* Center content inside container */
        }


        /* Responsive adjustments */
        @media (max-width: 768px) {
          .hr-taxi-brand-container {
            font-size: 2rem;
            top: 15px;
            left: 15px;
          }
        }

        @media (max-width: 576px) {
          .hr-taxi-brand-container {
            font-size: 2rem;
            top: 100px;
            left: 200px;
          }
        }

        .call-float {
          position: fixed;
          width: 60px;
          height: 60px;
          bottom: 105px;
          /* 👈 push it above WhatsApp */
          right: 40px;
          background-color: #007bff;
          color: #fff;
          border-radius: 50%;
          text-align: center;
          font-size: 28px;
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
          z-index: 1000;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .area-list li {
          transition: transform 0.3s ease, color 0.3s ease;
          cursor: pointer;
        }

        .area-list {
          display: grid;
          justify-content: center;
          text-align: center;
          gap: 10px 20px;
          /* row-gap and col-gap */
          padding: 0;
        }

        .grid-8 {
          grid-template-columns: repeat(8, auto);
        }

        .grid-7 {
          grid-template-columns: repeat(7, auto);
        }

        .area-list li:hover {
          transform: scale(1.05);
          color: #ffc107;
          /* bright gold for hover */
        }

        /* Buttons hover effect */
        .hero-btn {
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hero-btn:hover {
          transform: translateY(-3px) scale(1.05);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-float:hover {
          transform: scale(1.1);
          background-color: #128C7E;
          color: #FFF;
          /* Keep color white on hover */
        }

        .whatsapp-float i {
          margin-top: 0;
          /* Adjust icon vertical alignment */
        }

        body.dark-mode .booking-form-section {
          color: #f1f1f1;
        }

        /* Form labels */
        body.dark-mode .booking-form-section .form-label {
          color: #f1f1f1;
        }

        /* Form inputs, dropdowns */
        body.dark-mode .booking-form-section .form-control,
        body.dark-mode .booking-form-section .form-select {
          background-color: #2c2c2c;
          color: #f1f1f1;
          border: 1px solid #444;
        }

        /* Placeholder text */
        body.dark-mode .booking-form-section .form-control::placeholder {
          color: #bbb;
        }

        /* Text inside paragraph (e.g. form subtitle) */
        body.dark-mode .booking-form-section p,
        body.dark-mode .booking-form-section h2 {
          color: #f1f1f1;
        }

        footer a.text-white:hover {
          color: #ffc107;
          /* Bootstrap warning color */
          text-decoration: underline;
        }

        footer .fab {
          transition: color 0.3s ease;
        }

        footer .fab:hover {
          color: #ffc107;
        }

        #testimonials img:hover {
          transform: scale(1.1);
          transition: 0.3s ease;
          cursor: pointer;
        }

        #testimonials img {
          transition: transform 0.3s ease;
        }

        #testimonials img:hover {
          transform: scale(1.1);
        }

        #testimonials .card {
          background-color: var(--bs-light);
        }

        body.dark-mode #testimonials {
          background-color: #1a202c !important;
          color: #eee;
        }

        body.dark-mode #testimonials .card {
          background-color: #1a202c;
        }

        body.dark-mode #testimonials {
          background-color: #1a202c;
          color: #eee;
        }

        body.dark-mode #testimonials .card {
          background-color: #1a202c;
        }

        .testimonial-text {
          color: #6c757d;
          /* Bootstrap muted color */
        }

        /* Dark mode override */
        body.dark-mode .testimonial-text {
          color: #ccc;
          /* Lighter for better contrast */
        }

        /* Dark mode for testimonial carousel buttons */
        body.dark-mode #testimonials .btn-outline-secondary {
          color: #ddd;
          border-color: #666;
        }

        body.dark-mode #testimonials .btn-outline-secondary:hover {
          background-color: #ddd;
          color: #1a202c;
        }

        /* Dark mode avatar border tweaks */
        body.dark-mode #testimonials img.border-secondary {
          border-color: #555 !important;
        }

        body.dark-mode #testimonials img.border-warning {
          border-color: #ffc107 !important;
        }

        /* Aesthetic testimonial box styling */
        #testimonials .testimonial-box {
          background-color: #fdfdfd;
          border-left: 5px solid #ffc107;
          padding: 2rem;
          border-radius: 1rem;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          max-width: 600px;
          margin: 2rem auto 0;
          transition: background-color 0.3s ease, color 0.3s ease;
        }

        #testimonials .testimonial-box p {
          font-size: 1.1rem;
          font-style: italic;
          color: #495057;
        }

        #testimonials .testimonial-box small {
          display: block;
          margin-top: 1rem;
          color: #6c757d;
        }

        /* Dark mode testimonial box */
        body.dark-mode #testimonials .testimonial-box {
          background-color: #2c2c2c;
          border-left: 5px solid #f6c744;
        }

        body.dark-mode #testimonials .testimonial-box p {
          color: #ddd !important;
        }

        body.dark-mode #testimonials .testimonial-box small {
          color: #aaa !important;
        }

        .dark-mode .text-muted {
          color: #cccccc !important;
          /* Lighter gray for better visibility */
        }

        /* Responsive testimonial box spacing */
        @media (max-width: 576px) {
          .carousel-caption .container {
            padding-left: 0;
            padding-right: 0;
          }

          .carousel-caption .row {
            flex-direction: column;
            align-items: center;
            text-align: center;
          }

          .carousel-caption .col-6,
          .carousel-caption .col-md-3 {
            flex: 0 0 100%;
            max-width: 100%;
            margin-bottom: 0.75rem;
          }

          /* Fix icon alignment and spacing */
          .area-list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
          }

          .area-list li i {
            width: 16px;
            /* Ensures consistent icon size */
          }


          .area-list {
            margin-top: 1rem;
            font-size: 1.5rem;
          }

          #testimonials .testimonial-box {
            padding: 1.5rem;
          }

          #testimonials .testimonial-box p {
            font-size: 1rem;
          }
        }

        .testimonials-section {
          background-color: #e9ecef;
          padding: 30px;
          border-radius: 8px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          text-align: center;
        }

        .testimonials-section h2 {
          font-size: 2.2em;
          margin-bottom: 40px;
        }

        /* Testimonial Container */
        .testimonial-container {
          position: relative;
          /* Needed for absolute positioning of items */
          overflow: hidden;
          /* Hide overflowing testimonials */
          min-height: 250px;
          /* Adjust based on your content to prevent jumping */
          display: flex;
          justify-content: center;
          align-items: center;
        }

        /* Individual Testimonial Item */
        .testimonial-item {
          display: none;
          /* Hide all by default */
          flex-direction: column;
          align-items: center;
          text-align: center;
          padding: 20px;
          width: 100%;
          transition: opacity 0.8s ease-in-out;
          /* Smooth fade effect */
          opacity: 0;
          position: absolute;
          /* Position items over each other */
          top: 0;
          left: 0;
        }

        .testimonial-item.active {
          display: flex;
          /* Show the active testimonial */
          opacity: 1;
          position: relative;
          /* Make active item participate in flow */
        }

        .testimonial-text {
          font-size: 1.3em;
          line-height: 1.6;
          color: #555;
          margin-bottom: 25px;
          font-style: italic;
        }

        .testimonial-author {
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        .author-img {
          width: 70px;
          height: 70px;
          border-radius: 50%;
          object-fit: cover;
          margin-bottom: 10px;
          border: 3px solid #eee;
        }

        .author-name {
          font-size: 1.1em;
          font-weight: bold;
          margin-bottom: 5px;
        }

        .author-title {
          font-size: 0.9em;
          color: #777;
        }

        .areas-text {
          font-size: 1.25rem;
          /* bigger text */
          line-height: 1.6;
          /* better spacing */
        }

        /* Navigation Dots */
        .testimonial-navigation {
          margin-top: 30px;
          display: flex;
          justify-content: center;
          gap: 10px;
        }

        /* Basic Responsiveness */
        @media (max-width: 600px) {
          .carousel-caption .bg-dark {
            padding: 1.5rem 1rem;
          }

          .area-list li {
            font-size: 0.85rem;
          }

          .hero-btn {
            width: 100%;
            margin-bottom: 0.5rem;
          }

          .carousel-caption .container .row {
            justify-content: center;
          }

          .carousel-caption .container .col-6 {
            flex: 0 0 100%;
            max-width: 100%;
            text-align: center;
            margin-bottom: 0.75rem;
          }

          .testimonials-section {
            padding: 20px;
            width: 95%;
          }

          .testimonials-section h2 {
            font-size: 1.8em;
            margin-bottom: 30px;
          }

          .testimonial-text {
            font-size: 1.1em;
          }

          .author-img {
            width: 160px;
            height: 160px;
          }
        }


        @media (max-width: 576px) {
          .areas-text {
            font-size: 1.1rem;
            /* still readable on mobile */
          }

          .carousel-caption .bg-dark {
            padding: 1rem 0.8rem;
          }

          .area-list li {
            font-size: 1.15rem;
            line-height: 1.4;
          }

          .carousel-caption h5 {
            font-size: 1.4rem;
          }

          .hero-btn {
            width: 100%;
            margin-bottom: 0.5rem;
            padding: 0.7rem 1rem;
            font-size: 0.95rem;
          }

          input[type="date"],
          input[type="time"] {
            font-size: 16px;
            /* Prevent zoom on mobile */
          }
        }

        /* Responsive adjustments for the floating button */
        @media (max-width: 768px) {
          .carousel-caption {
            padding: 15px;
          }

          .grid-8 {
            grid-template-columns: repeat(2, 1fr);
          }

          .grid-7 {
            grid-template-columns: repeat(2, 1fr);
          }

          .area-list li {
            text-align: left;
          }

          .area-card h5 {
            font-size: 1.2rem;
          }

          .area-card p {
            font-size: 0.9rem;
          }

          .whatsapp-float,
          .call-float {
            width: 50px;
            height: 50px;
            font-size: 22px;
            right: 15px;
          }

          .whatsapp-float {
            bottom: 15px;
          }

          .call-float {
            bottom: 75px;
            /* keep same spacing, but tighter */
          }
        }



        .big-logo {
          width: 120px;
          height: 120px;
          border-radius: 50%;
          object-fit: cover;
        }

        .logo-img {
          width: 80px;
          height: 80px;
          border-radius: 50%;
          object-fit: cover;
        }

        .slogan-text {
          font-family: 'Times New Roman', serif;
          /* Closest match to logo's font */
          font-weight: bold;
          font-size: 16px;
          line-height: 1.1;
          letter-spacing: 1px;
          text-transform: uppercase;
          color: white;
          display: flex;
          flex-direction: column;
          justify-content: center;
          height: 80px;
          /* Match logo height for vertical alignment */
        }

        .custom-map-img {
          max-height: 200px;
          object-fit: cover;
          width: 100%;
        }

        /* Desktop height */
        .service-area-slide .carousel-bg {
          height: 650px;
        }

        /* Tablet view */
        @media (max-width: 992px) {
          .service-area-slide .carousel-bg {
            height: 450px;
          }
        }

        /* Mobile view */
        @media (max-width: 576px) {
          .carousel-caption {
            width: 95%;
            padding: 10px;
          }

          .area-card h5 {
            font-size: 1.1rem;
          }

          .area-card p {
            font-size: 0.85rem;
            line-height: 1.4;
          }

          .service-area-slide .carousel-bg {
            height: 320px;
          }
        }