      html, body {
          height: 100%;
          margin: 0;
          scroll-snap-type: y mandatory;
          overflow-y: scroll;
          background-color: #ffcc00;
          /* Taxi Yellow */
          font-family: 'Arial', sans-serif;
      }

      .card-section {
          margin: auto;
          background: #fff;
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
          overflow: hidden;
      }

      .header {
          background-color: #ffcc00;
          text-align: center;
          padding: 14px 15px;
      }


      .header-logo {
          max-width: 280px;
          /* For mobile */
          height: auto;
      }

      @media (min-width: 768px) {

          /* Tablet & above */
          .header-logo {
              max-width: 380px;
          }
      }

      @media (min-width: 1200px) {

          /* Large desktop */
          .header-logo {
              max-width: 450px;
          }
      }

      .header p {
          margin: 0;
          font-size: 1.1rem;
          color: #333;
      }

      .btn-action {
          width: 100%;
          margin-bottom: 15px;
          font-weight: bold;
      }

      .services {
          text-align: center;
          font-size: 1.1rem;
          font-weight: 500;
      }

      .car-img {
          width: 100%;
          border-radius: 8px;
      }

      .footer {
          text-align: center;
          padding: 20px;
          background: #f8f9fa;
      }

      .social-icon {
          display: inline-block;
          width: 60px;
          height: 60px;
          line-height: 60px;
          border-radius: 50%;
          font-size: 28px;
          margin: 10px;
          color: #fff;
      }

      .social-name {
          font-size: 0.9rem;
          margin-top: 5px;
          font-weight: 500;
          color: #000;
      }

      .qr {
          max-width: 120px;
      }

      /* Colors for each icon */
      .facebook {
          background: #1877f2;
      }

      .instagram {
          background: #e4405f;
      }

      .twitter {
          background: #1da1f2;
      }

      .youtube {
          background: #ff0000;
      }

      .tags-section {
          text-align: center;
          padding: 40px 20px;
          background: #f8fafc;
      }

      .section-title {
          font-size: 26px;
          margin-bottom: 10px;
          color: #222;
      }

      .section-subtitle {
          font-size: 16px;
          margin-bottom: 25px;
          color: #555;
      }

      .tags-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
          gap: 20px;
      }

      .tag-card {
          background: #fff;
          border: 2px solid #ddd;
          border-radius: 15px;
          padding: 20px;
          cursor: pointer;
          transition: all 0.3s ease;
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
      }

      .tag-card i {
          font-size: 40px;
          color: #007bff;
          margin-bottom: 10px;
      }

      .tag-card h3 {
          margin-bottom: 5px;
          font-size: 18px;
      }

      .tag-card p {
          font-size: 14px;
          color: #666;
      }

      .tag-card.active {
          border-color: #007bff;
          background: #e6f0ff;
          box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
      }

      :root {
          --accent: #0ea5e9;
          --accent-2: #22c55e;
          --glass-bg: rgba(255, 255, 255, 0.16);
          --glass-br: rgba(255, 255, 255, 0.28);
          --text-on: #ffffff;
      }

      @media (prefers-color-scheme: dark) {
          :root {
              --glass-bg: rgba(20, 20, 20, 0.45);
              --glass-br: rgba(255, 255, 255, 0.08);
          }
      }

      /* Container */
      .action-dock {
          position: fixed;
          bottom: calc(16px + env(safe-area-inset-bottom));
          right: 16px;
          z-index: 9999;
          display: flex;
          align-items: flex-end;
          gap: 10px;
      }

      /* Glass dock */
      .dock {
          display: flex;
          gap: 12px;
          padding: 10px;
          border-radius: 999px;
          background: var(--glass-bg);
          border: 1px solid var(--glass-br);
          backdrop-filter: saturate(160%) blur(14px);
          box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
          transition: transform .25s ease, opacity .25s ease;
      }

      /* Buttons */
      .dock-btn {
          position: relative;
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 12px 16px;
          border-radius: 999px;
          border: 0;
          cursor: pointer;
          color: var(--text-on);
          font-weight: 600;
          text-decoration: none;
          line-height: 1;
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22), 0 8px 16px rgba(0, 0, 0, .22);
          transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
      }

      .dock-btn i {
          font-size: 1.15rem;
      }

      /* Gradient fills */
      .btn-call {
          background: linear-gradient(135deg, #22c55e, #16a34a);
      }

      .btn-share {
          background: linear-gradient(135deg, #0ea5e9, #6366f1);
      }

      /* Hover/active */
      .dock-btn:hover {
          transform: translateY(-2px);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .34), 0 14px 30px rgba(0, 0, 0, .28);
      }

      .dock-btn:active::after {
          content: "";
          position: absolute;
          inset: 0;
          border-radius: inherit;
          background: radial-gradient(circle at center, rgba(255, 255, 255, .44), transparent 60%);
          animation: ripple .6s ease forwards;
      }

      @keyframes ripple {
          from {
              opacity: .6;
              transform: scale(.9);
          }

          to {
              opacity: 0;
              transform: scale(1.6);
          }
      }

      /* Subtle attention pulse on Call */
      .btn-call::before {
          content: "";
          position: absolute;
          inset: -6px;
          border-radius: inherit;
          background: radial-gradient(circle, rgba(34, 197, 94, .28) 40%, transparent 42%);
          filter: blur(8px);
          opacity: .0;
          animation: pulse 2.4s ease-in-out infinite;
      }

      @keyframes pulse {
          0% {
              opacity: .0;
              transform: scale(.92);
          }

          50% {
              opacity: .35;
          }

          100% {
              opacity: 0;
              transform: scale(1.15);
          }
      }

      /* Mobile compact mode */
      @media (min-width: 577px) {
          .dock-btn span {
              display: none;
          }

          .dock-btn {
              width: 54px;
              height: 54px;
              padding: 0;
              justify-content: center;
          }

          .fab-toggle {
              display: flex;
          }

          /* Speed-dial collapse by default */
          .dock {
              opacity: 0;
              pointer-events: none;
              transform: translateY(8px) scale(.96);
          }

          .action-dock.open .dock {
              opacity: 1;
              pointer-events: auto;
              transform: translateY(0) scale(1);
          }
      }

      /* Speed-dial FAB */
      .fab-toggle {
          display: none;
          width: 56px;
          height: 56px;
          border-radius: 50%;
          background: linear-gradient(135deg, var(--accent), #6366f1);
          color: #fff;
          border: 0;
          box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
          align-items: center;
          justify-content: center;
          font-size: 1.25rem;
          transition: transform .2s ease, box-shadow .2s ease;
      }

      .fab-toggle:hover {
          transform: translateY(-2px);
          box-shadow: 0 16px 34px rgba(0, 0, 0, .3);
      }

      .action-dock.open .fab-toggle {
          transform: rotate(45deg);
      }

      /* Copy toast */
      .toast-copy {
          position: absolute;
          right: 8px;
          bottom: 76px;
          background: rgba(0, 0, 0, .8);
          color: #fff;
          padding: 8px 12px;
          font-size: 13px;
          border-radius: 12px;
          opacity: 0;
          transform: translateY(6px);
          transition: .25s;
          pointer-events: none;
      }

      .toast-copy.show {
          opacity: 1;
          transform: translateY(0);
      }

      /* Overlay */
      .popup-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.6);
          display: none;
          justify-content: center;
          align-items: center;
          z-index: 9999;
      }

      /* Popup Card */
      .popup-card {
          background: #fff;
          width: 90%;
          max-width: 380px;
          padding: 20px;
          border-radius: 15px;
          text-align: center;
          position: relative;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          animation: fadeInUp 0.6s ease;
      }

      /* Close Button */
      .popup-close {
          position: absolute;
          top: 10px;
          right: 15px;
          font-size: 22px;
          cursor: pointer;
          color: #555;
      }

      /* Image */
      .popup-img {
          width: 100%;
          max-height: 180px;
          object-fit: cover;
          border-radius: 10px;
          margin-bottom: 15px;
      }

      /* Status */
      .status {
          font-size: 16px;
          font-weight: 600;
      }

      .online {
          color: green;
      }

      /* Text */
      .popup-text {
          font-size: 14px;
          color: #666;
          margin: 10px 0 15px;
      }

      /* Button */
      .book-btn {
          background: #ff5722;
          color: #fff;
          border: none;
          padding: 10px 18px;
          border-radius: 8px;
          cursor: pointer;
          font-size: 15px;
          font-weight: 600;
          transition: 0.3s;
      }

      .book-btn:hover {
          background: #e64a19;
      }

      /* Animation */
      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(30px);
          }

          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      /* Popup background */
      #ridePopup {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.6);
          justify-content: center;
          align-items: center;
          z-index: 9999;
          animation: fadeIn 0.3s ease-in-out;
      }

      .RIDEPOPUPP {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.6);
          display: flex;
          justify-content: center;
          align-items: center;
      }

      /* Popup box */
      #ridePopup div {
          background: #ffffff;
          padding: 25px;
          border-radius: 15px;
          width: 360px;
          max-width: 90%;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
          position: relative;
          font-family: "Segoe UI", sans-serif;
          animation: slideUp 0.4s ease-in-out;
      }

      /* Title */
      #ridePopup h3 {
          margin-top: 0;
          text-align: center;
          color: #222;
          font-size: 22px;
          margin-bottom: 15px;
          font-weight: 600;
          border-bottom: 2px solid #eee;
          padding-bottom: 10px;
      }

      /* Labels */
      #ridePopup label {
          display: block;
          font-size: 14px;
          color: #333;
          margin-bottom: 5px;
          font-weight: 500;
      }

      /* Inputs & textarea */
      #ridePopup input,
      #ridePopup select,
      #ridePopup textarea {
          width: 100%;
          padding: 10px;
          margin-bottom: 12px;
          border: 1px solid #ccc;
          border-radius: 8px;
          font-size: 14px;
          transition: all 0.3s;
      }

      #ridePopup input:focus,
      #ridePopup select:focus,
      #ridePopup textarea:focus {
          border-color: #28a745;
          box-shadow: 0 0 6px rgba(40, 167, 69, 0.4);
          outline: none;
      }

      /* Buttons */
      #ridePopup button {
          padding: 10px 15px;
          border: none;
          border-radius: 8px;
          font-size: 14px;
          cursor: pointer;
          transition: all 0.3s;
      }

      #ridePopup button[type="submit"] {
          background: #28a745;
          color: #fff;
          width: 100%;
          margin-bottom: 10px;
      }

      #ridePopup button[type="submit"]:hover {
          background: #218838;
      }

      #ridePopup #closePopup {
          background: #dc3545;
          color: #fff;
          width: 100%;
      }

      #ridePopup #closePopup:hover {
          background: #b52a37;
      }

      /* Animations */
      @keyframes fadeIn {
          from {
              opacity: 0;
          }

          to {
              opacity: 1;
          }
      }

      @keyframes slideUp {
          from {
              transform: translateY(50px);
              opacity: 0;
          }

          to {
              transform: translateY(0);
              opacity: 1;
          }
      }

      /* Footer Styling */
      .visiting-card-footer {
        
          /* Dark blue/grey */
          color: #ecf0f1;
          /* Light off-white */
          padding: 30px 20px;
          text-align: center;
          font-size: 0.9em;
      }

      .footer-content {
          display: flex;
          flex-wrap: wrap;
          /* Allows sections to wrap on smaller screens */
          justify-content: space-around;
          gap: 20px;
          /* Space between sections */
          max-width: 1200px;
          margin: 0 auto;
          margin-bottom: 20px;
      }

      .footer-section {
          flex: 1;
          /* Each section takes equal space */
          min-width: 200px;
          /* Minimum width before wrapping */
          margin: 10px;
      }

      .footer-section h3, .footer-section h4 {
          color: #3498db;
          /* A lighter blue for headings */
          margin-bottom: 15px;
          font-weight: bold;
      }

      .footer-section p {
          margin-bottom: 8px;
          line-height: 1.6;
      }

      .footer-section i {
          margin-right: 8px;
          color: #95a5a6;
          /* Icon color */
      }

      /* Social Icons */
      .social-icons a {
          color: #ecf0f1;
          font-size: 1.5em;
          margin: 0 10px;
          transition: color 0.3s ease;
      }

      .social-icons a:hover {
          color: #3498db;
          /* Hover effect for social icons */
      }

      .footer-bottom {
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          padding-top: 20px;
          margin-top: 20px;
          font-size: 0.8em;
          color: #bdc3c7;
          /* Lighter text for copyright */
      }

      /* Responsive adjustments for smaller screens */
      @media (max-width: 768px) {
          .footer-content {
              flex-direction: column;
              /* Stack sections vertically on small screens */
              align-items: center;
          }

          .footer-section {
              min-width: unset;
              /* Remove min-width for stacking */
              width: 100%;
              /* Take full width */
          }

          .footer-section:not(:last-child) {
              margin-bottom: 30px;
              /* Add more space between stacked sections */
          }
      }