 .form-container {
     background: #fff;
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     max-width: 400px;
     margin: auto;
 }

 .input-group {
     display: flex;
     align-items: center;
     background: #f2f2f2;
     padding: 10px 12px;
     border-radius: 8px;
     margin-bottom: 12px;
 }

 .input-group span {
     flex-shrink: 0;
     /* Prevents the icon from shrinking */
     margin-right: 10px;
     font-size: 16px;
     display: flex;
     align-items: center;
 }

 .input-group input {
     flex: 1;
     /* Makes the input take up remaining space */
     border: none;
     background: transparent;
     outline: none;
     font-size: 14px;
 }

 .date-time {
     display: flex;
     gap: 10px;
 }

 .date-time .input-group {
     flex: 1;
 }

 .btn {
     display: inline-block;
     background: black;
     color: white;
     padding: 10px 20px;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     font-size: 14px;
     margin-top: 10px;
 }

 .btn:hover {
     background: #333;
 }

 .header-button a.btn {
     background-color: #1A355E;
     /* dark blue */
     color: #FFFFFF;
     /* white text */
     padding: 6px 16px;
     border-radius: 6px;
     font-size: 16px;
     font-weight: 500;
     text-decoration: none;
     display: inline-block;
     margin-left: 8px;
     transition: background-color 0.3s ease, color 0.3s ease;
 }

 .header-button a.btn:hover {
     background-color: #00B6B2;
     /* aqua green on hover */
     color: #1A355E;
     /* dark blue text on hover */
 }

 .footer-text {
     color: #fff
 }


 .mobile-auth-links a {
     display: block;
     margin: 8px auto;
     width: 80%;
     padding: 10px 0;
     font-weight: 600;
     border-radius: 6px;
     text-align: center;
     color: #FFFFFF;
     text-decoration: none;
     transition: background-color 0.3s ease;
 }

 .mobile-auth-links a.btn-login {
     background-color: #1A355E;
 }

 .mobile-auth-links a.btn-login:hover {
     background-color: #142846;
 }

 .mobile-auth-links a.btn-register {
     background-color: #00B6B2;
 }

 .mobile-auth-links a.btn-register:hover {
     background-color: #009e9a;
 }

 /* see price */

 .form-container-home {
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        animation: fadeInUp 0.8s ease-out;
        max-width: 500px;
        width: 100%;
    }

    @keyframes fadeInUp {
        from {
            transform: translateY(30px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .form-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 25px;
        color: #1e1e2f;
        text-align: center;
    }

    .form-group {
        position: relative;
        margin-bottom: 25px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px 15px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 10px;
        background: #f9f9f9;
        transition: 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus {
        border-color: #2d8eff;
        background-color: #fff;
        box-shadow: 0 0 0 2px rgba(45, 142, 255, 0.2);
    }

    .form-group label {
        position: absolute;
        top: -10px;
        left: 15px;
        background: #fff;
        font-size: 14px;
        padding: 0 5px;
        color: #666;
    }

    .form-group .icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        color: #bbb;
    }

    .see-prices-btn {
        background: linear-gradient(to right, #2d8eff, #1b68e4);
        color: #fff;
        font-weight: 600;
        border: none;
        padding: 12px 20px;
        width: 100%;
        border-radius: 10px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .see-prices-btn:hover {
        background: linear-gradient(to right, #1b68e4, #0f52b9);
    }

    @media screen and (max-width: 768px) {
        .form-container-home {
            padding: 20px;
        }

        .form-title {
            font-size: 20px;
        }
    }

    .tripbg {
        background-color: var(--theme-color) !important;
    }

    .tripsubtitle {
        color: var(--theme-color) !important;
    }

    .partnerbg {
        background-color: var(--theme-color2) !important;
    }

    .partnersubtitle{
         color: var(--theme-color2) !important;
    }

    .homeModal{
        position: fixed;
        z-index: 9999; /* Should be higher than your header/navbar */
    }
 