
        /* Global Styles */
        body {
            font-family: 'DM Sans', sans-serif;
            background-color: #FFD700;
        }

        /* Navbar */
        .navbar {
            background-color: #FFD700;
        }

        .navbar-brand {
            font-weight: bold;
            color: black !important;
        }

        .navbar-toggler {
            border: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Login Container */
        .login-container {
            background-image: url('images/imgbgds.png');
            background-size: cover;
            background-position: top center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        /* Login and Signup Boxes */
        .login-box,
        .signup-box {
            background: #FFD700;
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .login-box h1,
        .signup-box h1 {
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }

        .form-control {
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 15px;
        }

        .btn-custom {
            background-color: #0056b3;
            color: white;
            border: none;
            border-radius: 10px;
            padding: 12px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .btn-custom:hover {
            background-color: #004494;
        }

        .btn-light {
            background-color: white;
            color: black;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 12px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }

        .btn-light:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .google-icon {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }

        .guest-button {
            background-color: white;
            font-size: 1rem;
            font-weight: bold;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }

        .guest-button:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        /* Testimonial Section */
        .testimonial-section {
            background-color: #000;
            background-image: url('images/imgbg.png');
            background-size: cover;
            background-repeat: no-repeat;
            color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .rating {
            font-size: 24px;
            font-weight: bold;
        }

        .stars {
            color: #FFC107;
            font-size: 20px;
        }

        .trusted-text {
            font-size: 14px;
            opacity: 0.9;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px;
            margin-top: 15px;
        }

        .profile {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }

        .profile img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .profile-info {
            display: flex;
            flex-direction: column;
        }

        .highlight {
            color: #FFC107;
            font-weight: bold;
        }

        /* Footer */
        .footer {
            background: black;
            color: white;
            padding: 40px 0;
        }

        .footer h4,
        .footer h5 {
            font-weight: bold;
        }

        .footer ul {
            padding: 0;
        }

        .footer ul li {
            list-style: none;
            margin-bottom: 5px;
        }

        .footer p {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .footer .bi {
            font-size: 18px;
            cursor: pointer;
        }

        .footer .bi:hover {
            color: #FFD700;
        }

        /* Responsive Fixes */
        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
                padding: 20px;
            }

            .testimonial-section {
                margin-top: 20px;
            }

            .login-box,
            .signup-box {
                padding: 20px;
            }

            .d-flex.gap-2 {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .login-box h1,
            .signup-box h1 {
                font-size: 1.5rem;
            }
            .login-container {
              padding: 15px;
            }
            .d-flex.gap-2 button {
              width: 100%;
            }
            .form-control {
                padding: 10px;
            }

            .btn-custom,
            .btn-light {
                padding: 10px;
            }
        }
    .offcanvas.offcanvas-end {
          width: 250px;           /* Fixed width for all devices; adjust as needed */
          height: auto;           /* Auto height to fit content */
          top: 0;                 /* Start at the top */
          bottom: auto;           /* Do not anchor to bottom */
          max-height: 100vh;      /* Never exceed viewport height */
          overflow-y: auto;       /* Enable vertical scroll if content is too tall */
      }
      @media (max-width: 768px) {
        .login-box .d-flex.gap-2 .btn,
        .signup-box .d-flex.gap-2 .btn {
          width: 50% !important; /* Buttons side by side, each half width */
        }
        .login-box .d-flex.gap-2,
        .signup-box .d-flex.gap-2 {
          flex-direction: row !important;
        }
      }  