﻿@import"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial,sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        width: 180px;
        margin-right: 10px;
    }

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.logo-text .pro {
    color: #e80113;
    font-weight: bold;
}

.logo-text p {
    font-size: .75rem;
    color: #555;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

    .nav-links li a {
        text-decoration: none;
        color: #333;
        font-size: 1.2rem;
        transition: color .3s;
    }

        .nav-links li a:hover {
            color: #e80113;
        }

.nav-buttons {
    display: flex;
    gap: 1.2rem;
}

.btn-outline {
    border: 2px solid #333;
    background-color: transparent;
    color: #333;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color .3s,color .3s;
}

    .btn-outline:hover {
        background-color: #333;
        color: #fff;
    }

.btn-primary {
    background-color: #e80113;
    color: #fff;
    font-size: 1.2rem;
    font-weight: lighter;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color .3s;
}

    .btn-primary:hover {
        background-color: #000;
    }

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.background-image {
    position: absolute;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    z-index: -1;
}

.content {
    z-index: 1;
    padding: 0 1rem;
}

    .content h1 {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 2rem;
        color: #fff;
    }

    .content p {
        font-size: 2rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        color: #fff;
        font-weight: 300;
    }

.second {
    background-color: #f0f0f0;
    width: 100%;
    height: 350px;
    margin-top: 2rem;
    padding: 20px 0 20px 0;
}

h1 {
    text-align: center;
    font-size: 36px;
    font-family: Arial;
    margin-top: 4rem;
}

.box p {
    text-align: center;
    font-size: 16px;
    font-family: Arial;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    margin-top: 3rem;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .box .number {
        font-size: 40px;
        font-weight: bold;
        color: #e80113;   
    }

    .box .description {
        font-size: 30px;
        font-weight: 400;
    }

.container3 {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

    .container3 .head {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .container3 h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: #333;
    }

    .container3 p {
        font-size: 1rem;
        margin-bottom: 20px;
        color: #666;
        margin-top: .5rem;
    }

h4 {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 1rem;
    line-height: 1.3;
    color: #666;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
    margin-top: 20px;
}

.card1 {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    text-align: left;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000;
}

.card p {
    font-size: .9rem;
    color: #666;
}

.icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    background-size: cover;
    background-repeat: no-repeat;
}

.hotel {
    background-image: url("icon_1.png");
}

.flight {
    background-image: url("icon_2.png");
}

.packages {
    background-image: url("icon_3.png");
}

.car {
    background-image: url("icon_4.png");
}

.transfer {
    background-image: url("icon_5.png");
}

.sightseeing {
    background-image: url("icon_6.png");
}

.container4 {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

    .container4 h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: #000;
    }

    .container4 p {
        font-size: .9rem;
        margin-bottom: 20px;
        color: #666;
        margin-top: 1rem;
    }

    .container4 .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
        gap: 20px;
        margin-top: 20px;
    }

.card2 {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    text-align: center;
}

    .card2 p {
        font-size: .9rem;
        color: #555;
    }

    .card2 .icon {
        width: 70px;
        height: 50px;
        margin: 10px auto 10px;
        background-size: cover;
        background-repeat: no-repeat;
    }

.customer-assistance {
    background-image: url("icon_customer-assistance.png");
}

.live-deals {
    background-image: url("icon_live-deals.png");
}

.price-maximizer {
    background-image: url("icon_price-maximizer.png");
}

.zero-charges {
    background-image: url("icon_zero-charges.png");
}

.sso {
    background-image: url("icon_sso.png");
}

.alerts {
    background-image: url("icon_alerts.png");
}

.finance-portal {
    background-image: url("icon_finance-portal.png");
}

.payment-solutions {
    background-image: url("icon_payment-solutions.png");
}

.cta {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 1.25rem 2rem;
    font-size: 1.5rem;
    font-weight: lighter;
    margin-bottom: 2rem;
    border-radius: 10px;
    background-color: #e80113;
    color: #333;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    transition: background-color .3s ease;
}

    .button:hover {
        background-color: #000;
    }

.container5 {
    max-width: auto;
    margin-top: 50px;
    text-align: center;
    background-color: #f0f0f0;
    padding: 20px 0 20px 0;
}

    .container5 h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        margin-top: 4rem;
        color: #333;
    }

    .container5 p {
        font-size: 1rem;
        margin-bottom: 20px;
        color: #666;
    }

    .container5 .grid {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

.card3 {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    width: 300px;
    text-align: left;
}

    .card3 h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #000;
    }

    .card3 p {
        font-size: .9rem;
        color: #555;
        margin-bottom: 15px;
    }

    .card3 .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
        background-size: cover;
        background-repeat: no-repeat;
    }

.extranet {
    background-image: url("extranet-icon.png");
}

.api {
    background-image: url("api-icon.png");
}

.wls {
    background-image: url("white-label-soln.png");
}

.learn-more {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

    .learn-more:hover {
        text-decoration: underline;
    }

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e80113;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    transition: background-color .3s ease;
}

    .button:hover {
        background-color: #000;
    }

.container6 {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

    .container6 h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #333;
    }

    .container6 .grid {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

.card4 {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    text-align: center;
    width: 300px;
}

.office-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card4 p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.view-map {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

    .view-map:hover {
        text-decoration: underline;
    }

.container7 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.left-panel {
    width: 40%;
}

    .left-panel h1 {
        font-size: 2rem;
        margin-bottom: 10px;
        text-align: left;
    }

    .left-panel p {
        margin-bottom: 20px;
        color: #666;
        line-height: 24px;
    }

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step1 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border: 3px solid #ddd;
    border-radius: 10px;
}

.step2 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border: 0 solid #ddd;
    border-radius: 10px;
}

.container7 .icon {
    width: 40px;
    height: 40px;
    background-size: cover;
    background-repeat: no-repeat;
}

.general-info {
    background-image: url("step-1.png");
}

.company-details {
    background-image: url("step-2.png");
}

.right-panel {
    width: 55%;
}

form {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    margin-top: 4rem;
}
.form-section {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
  
}
.loginbutt {
    width: 30%;
    height: 41px;
    background: #f00;
    border: 1px solid #fff;
    border-radius: 38px;
    color: #fff !important;
    font-size: 17px;
    font-weight: 600;
    margin-top: 21px;
    margin-left: 32%;
    cursor: pointer;
    text-align:center;
    line-height:2.4;
}
.generatebutt {
    width: 30%;
    height: 41px;
    background: #f00;
    border: 1px solid #fff;
    border-radius: 38px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-top: 21px;
    margin-left:28px;
    cursor: pointer;
}
.generateLogin {
    display: flex;
}
p.title-tagline {
    margin: 13px 12px;
}
.page-title {
    color: #ff0000;
}
a.forgot-password {
    color: #ff0000;
}
label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f8f9fa;
}

textarea {
    resize: vertical;
    height: 80px;
}

.container7 button {
    width: 100%;
    padding: 10px;
    background-color: #e80113;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    transition: background-color .3s ease;
}

    .container7 button:hover {
        background-color: #000;
    }

.container7 h1 {
    margin-top: 4rem;
    text-align: left;
}

.login-link {
    text-align: center;
    margin-top: 10px;
    color: #666;
}

    .login-link a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
    }

        .login-link a:hover {
            text-decoration: underline;
        }

.footer {
    background-color: #4d4d4d;
    padding: 40px 20px;
    color: #fff;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 180px;
}

    .footer-section img {
        width: 180px;
    }

    .footer-section h1.logo {
        font-size: 1.8rem;
        margin-bottom: 10px;
        color: #fff;
    }

        .footer-section h1.logo span {
            color: #e80113;
        }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #fff;
    }

    .footer-section ul {
        list-style: none;
    }

        .footer-section ul li {
            margin-bottom: 5px;
        }

            .footer-section ul li a {
                color: #e80113;
                text-decoration: none;
            }

                .footer-section ul li a:hover {
                    text-decoration: underline;
                }

    .footer-section p {
        margin-bottom: 10px;
        color: #ddd;
        line-height: 1.6;
    }

        .footer-section p:last-child {
            margin-bottom: 0;
        }

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    backdrop-filter: blur(6px);
    z-index: 1000;
    animation: fadeIn .3s ease-out;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(.7);
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
    width: 90%;
    max-width: 635px;
    z-index: 1001;
    opacity: 0;
    transition: all .3s ease-out;
    background-image: radial-gradient(circle at 0% 0%,rgba(79,70,229,.03) 0%,transparent 50%),radial-gradient(circle at 100% 100%,rgba(124,58,237,.03) 0%,transparent 50%);
    border: 1px solid rgba(255,255,255,.1);
    height: auto;
}

    .popup.active {
        transform: translate(-50%,-50%) scale(1);
        opacity: 1;
    }

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(243,244,246,.8);
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6b7280;
    padding: 8px;
    line-height: 1;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .close-button:hover {
        background: #f3f4f6;
        color: #374151;
        transform: rotate(90deg);
    }

.popup-content {
    position: relative;
}

    .popup-content h2 {
        margin: 0 0 12px 0;
        color: #f00;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.2;
    }

    .popup-content p {
        color: #4b5563;
        font-size: 16px;
        line-height: 1.6;
    }

.form-group {
    margin-bottom: 24px;
    position: relative;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-color);
        font-weight: 500;
        font-size: 14px;
    }

    .form-group input {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 16px;
        transition: all .3s;
        box-sizing: border-box;
        background: #f9fafb;
    }

        .form-group input:focus {
            outline: none;
            border-color: #333;
            background: #fff;
/*            box-shadow: 0 0 0 4px rgba(79,70,229,.1);*/
        }

.submit-button {
    width: 100%;
    padding: 16px;
    background-image: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 12px rgba(79,70,229,.2);
    position: relative;
    overflow: hidden;
}

    .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(79,70,229,.3);
    }

    .submit-button::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg,transparent 0%,rgba(255,255,255,.1) 50%,transparent 100%);
        transform: rotate(45deg);
        transition: transform .5s;
    }

    .submit-button:hover::after {
        transform: rotate(45deg) translate(50%,50%);
    }

.otpButton {
    width: 30%;
    height: 41px;
    background: #f00;
    border: 1px solid #fff;
    border-radius: 38px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-top: 21px;
    margin-left: 32%;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-group {
    animation: slideUp .5s ease-out forwards;
    opacity: 0;
}

    .form-group:nth-child(1) {
        animation-delay: .2s;
    }

    .form-group:nth-child(2) {
        animation-delay: .3s;
    }

.decorative-shape {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg,rgba(79,70,229,.1),rgba(124,58,237,.1));
    z-index: -1;
}

.shape-1 {
    top: -20px;
    left: -20px;
}

.shape-2 {
    bottom: -20px;
    right: -20px;
    background: linear-gradient(45deg,rgba(59,130,246,.1),rgba(37,99,235,.1));
}

@media(max-width:640px) {
    .popup {
        padding: 32px;
        width: 95%;
    }

    .popup-content h2 {
        font-size: 24px;
    }
}
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin: 10px 0;
    }

    .buttons {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Mobile view */
@media (max-width: 480px) {
    .header {
        padding: 15px 20px;
    }

    .nav-links {
        display: none; /* Optional: hide on small devices or show as mobile menu */
    }

    .buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .login-btn, .register-btn {
        width: 100%;
    }
}

.input-validation-error ~ .error-massage {
    display: block;
}

.error-massage {
    display: none;
    color: #f00;
    font-family: "Poppins",sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    margin-bottom: 8px;
}

.single-field {
    position: relative;
}

.password-icon {
    position: absolute;
    right: 8px;
    top: 9px;
    padding-top: 6px;
    display: flex;
    align-items: center;
}

    .password-icon span {
        height: 12px;
        width: 15px;
    }

        .password-icon span.eye {
            display: none;
            background: url("/assets/DBDB2B/img/eye-on.svg") no-repeat;
        }

        .password-icon span.eye-off {
            background: url("/assets/DBDB2B/img/eye-off.svg") no-repeat;
            height: 12px;
        }
