@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    line-height: 1.6;
}

h4 {
    color: #fff;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007bff;
    padding: 10px 50px;
    color: #fff;
    font-size: 16px;
}

    .top-header .contact-info {
        display: flex;
        align-items: center;
    }

        .top-header .contact-info span {
            margin-right: 20px;
            display: inline-flex;
            align-items: center;
            font-size: 14px;
        }

        .top-header .contact-info i {
            margin-right: 5px;
        }

    .top-header .social-icons {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

        .top-header .social-icons a {
            color: #fff;
            text-decoration: none;
            margin-left: 15px;
            font-size: 18px;
        }

            .top-header .social-icons a:hover {
                color: #ffd03d;
            }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffd03d;
}

/* Navigation Links Styling */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

    .nav-links a {
        text-decoration: none;
        color: #000;
        font-weight: 500;
        font-size: 16px;
    }

        .nav-links a:hover {
            color: #007bff;
        }

/* Button Styling */
.auth-buttons {
    display: flex;
    gap: 20px;
}

.login-btn {
    background-color: #fff;
    border: 2px solid #007bff;
    padding: 0px 25px;
    color: #007bff;
    font-weight: 500;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

    .login-btn:hover {
        background-color: #007bff;
        color: #fff;
    }

.register-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 4px 20px;
    font-weight: 500;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

    .register-btn:hover {
        opacity: 0.9;
    }

.hero-section img {
    height: auto;
    width: 100%;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.content {
    flex: 1;
    padding-right: 30px;
}

    .content h1 {
        font-size: 2.5rem;
        color: #2c3e50;
    }

        .content h1 span {
            font-weight: bold;
            color: #000;
        }

    .content p {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
        margin-top: 20px;
    }

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex: 1;
}

    .image-gallery img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        .image-gallery img.large {
            grid-column: span 2;
            height: 250px;
            object-fit: cover;
        }

.container1 {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 50px auto;
}

.image-section {
    flex: 1;
}

    .image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.content-section {
    flex: 1;
    background-color: #0f2c3e;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

    .content-section h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: .9;
    }

.button {
    display: inline-block;
    margin-top: 20px;
    background-color: #fff;
    color: #0f2c3e;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    top: -10px;
}

    .button:hover {
        background-color: #ffd03d;
    }

.container2 {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

    .container2 h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #2c3e50;
        /* text-decoration: underline; */
    }

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.service {
    text-align: left;
    padding: 20px;
}

    .service img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .service h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #0f2c3e;
    }

    .service p {
        font-size: 0.95rem;
        color: #555;
    }

.container3 {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
    padding: 20px;
}

    .container3 h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #2c3e50;
    }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
}

    .news-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.news-content {
    padding: 15px;
}

    .news-content h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #0f2c3e;
    }

    .news-content p {
        font-size: 0.9rem;
        color: #555;
    }

.news-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

footer {
    width: 100%;
}



    footer .column {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #686564;
        margin-top: 5vh;
        min-height: 16em;
        padding-left: 5%;
    }

.col-first {
    width: 30%;
}

.col-sec {
    width: 30%;
    margin-left: 5%;
}

.Quick {
    color: #FAD253;
}

.link a {
    text-decoration: none;
    color: white;
}

.col-third {
    margin-right: 5%;
}

.add {
    color: white;
}

/*loginpop css*/
/*end loginform*/
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 480px;
    z-index: 1001;
    opacity: 0;
    transition: all 0.3s ease-out;
    background-image: radial-gradient(circle at 0% 0%, rgba(79, 70, 229, 0.03) 0%, transparent 50%), radial-gradient(circle at 100% 100%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .popup.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(243, 244, 246, 0.8);
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6B7280;
    padding: 8px;
    line-height: 1;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .close-button:hover {
        background: rgba(243, 244, 246, 1);
        color: #374151;
        transform: rotate(90deg);
    }

.popup-content {
    position: relative;
}

    .popup-content h2 {
        margin: 0 0 12px 0;
        color: #000;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.2;
    }

    .popup-content p {
        color: #4B5563;
        font-size: 16px;
        line-height: 1.6;
    }

.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 0.3s;
    box-sizing: border-box;
    background: #F9FAFB;
}

    .form-group input:focus {
        outline: none;
        border-color: #4F46E5;
        background: white;
        box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    }

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    position: relative;
    overflow: hidden;
}

    .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(79, 70, 229, 0.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, 0.1) 50%, transparent 100% );
        transform: rotate(45deg);
        transition: transform 0.5s;
    }

    .submit-button:hover::after {
        transform: rotate(45deg) translate(50%, 50%);
    }

.error-massage {
    font-size: 11px;
    color: red;
    display: none;
}

#emailValidationMessage {
    font-size: 11px;
    color: red !important;
}

.input-validation-error ~ .error-massage {
    display: block;
}

@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 0.5s ease-out forwards;
    opacity: 0;
    margin-bottom: 15px;
    position: relative;
}

.forgot-password {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

    .forgot-password > a {
        color: #000;
    }

.form-group:nth-child(1) {
    animation-delay: 0.2s;
}

.form-group:nth-child(2) {
    animation-delay: 0.3s;
}

.password-icon span.eye {
    display: none;
    background: url(/assets/TRCB2B/img/eye-on.svg) no-repeat;
    filter: brightness(0.5);
}

.password-icon span.eye-off {
    background: url(/assets/TRCB2B/img/eye-off.svg) no-repeat;
}

.password-icon {
    position: absolute;
    right: 8px;
    top: 40%;
    display: flex;
    align-items: center;
    z-index: 99;
}

    .password-icon span {
        height: 12px;
        width: 15px;
    }
/* Decorative elements */
/*.decorative-shape {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    z-index: -1;
}

.shape-1 {
    top: -20px;
    left: -20px;f
}

.shape-2 {
    bottom: -20px;
    right: -20px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
}*/

/*agent-register*/
.user-information .from-title, .company-details .from-title {
    display: flex;
    gap: 9px;
    align-items: center;
    margin: 25px 0 15px 0;
}

.user-information .form-section-title, .company-details .form-section-title {
    font-size: 16px;
    margin: 0;
}

.textfield-outlined {
    margin-bottom: 21px;
}

    .textfield-outlined select {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #E5E7EB;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s;
        box-sizing: border-box;
        background: #F9FAFB;
    }

.registr .from-row {
    display: flex;
    gap: 30px;
}

.registr .form-field {
    width: calc(50% - 30px);
}

.registr .textfield-outlined {
    font-size: 14px;
}

.registr .form-group input {
    font-size: 14px;
}

span.term-cles {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 1024px) {
    a, span, p {
        font-size: 12px !important;
    }

    h2, h3 {
        font-size: 18px !important;
    }

    .nav-links {
        gap: 20px;
        float: left;
        padding: 8px;
    }

    .navbar > div > div:first-child {
        align-items: center;
        display: flex;
    }

    .nav-links a {
        font-size: 14px !important;
    }

    .auth-buttons {
        gap: 12px;
    }

    .login-btn, .register-btn {
        font-size: 12px !important;
    }

    .service-item {
        margin-bottom: 0;
        width: auto;
    }

    .top-header, .navbar {
        padding: 12px 25px;
        align-items: center;
    }

    .address {
        padding: 0px 24px;
    }

    .tours-section {
        padding: 22px 24px;
    }

    .services-section h1 {
        margin-bottom: 10px;
    }

    .btn-new {
        padding: 8px 18px;
    }

    .Quick .link {
        padding: 0px 0;
    }

    .user-information .from-title span.form-count {
        font-size: 16px !important;
    }

    .company-details span {
        font-size: 18px !IMPORTANT;
    }
}


/*forgot-password*/
.container-pad {
    padding: 30px 48px;
}

.form-content-header h1 {
    color: #fff;
    font-size: 18px;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: #ff8d2a;
}

.form-content-header > p {
    font-size: 14px;
    color: #000;
}

.form-button-wrapper button {
    background-color: #ff8d2a;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
/*agent-register*/
.user-information .from-title, .company-details .from-title {
    display: flex;
    gap: 9px;
    align-items: center;
    margin: 25px 0 15px 0;
}

.user-information .form-section-title, .company-details .form-section-title {
    font-size: 16px;
    margin: 0;
}

.textfield-outlined {
    margin-bottom: 21px;
}

    .textfield-outlined select {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #E5E7EB;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s;
        box-sizing: border-box;
        background: #F9FAFB;
    }

.registr .from-row {
    display: flex;
    gap: 30px;
}

.registr .form-field {
    width: calc(50% - 30px);
}

.registr .textfield-outlined {
    font-size: 14px;
}

.registr .form-group input {
    font-size: 14px;
}

span.term-cles {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 1024px) {
    a, span, p {
        font-size: 12px !important;
    }

    h2, h3 {
        font-size: 18px !important;
    }

    .nav-links {
        gap: 20px;
        float: left;
        padding: 8px;
    }

    .navbar > div > div:first-child {
        align-items: center;
        display: flex;
    }

    .nav-links a {
        font-size: 14px !important;
    }

    .auth-buttons {
        gap: 12px;
    }

    .login-btn, .register-btn {
        font-size: 12px !important;
    }

    .service-item {
        margin-bottom: 0;
        width: auto;
    }

    .top-header, .navbar {
        padding: 12px 25px;
        align-items: center;
    }

    .address {
        padding: 0px 24px;
    }

    .tours-section {
        padding: 22px 24px;
    }

    .services-section h1 {
        margin-bottom: 10px;
    }

    .btn-new {
        padding: 8px 18px;
    }

    .Quick .link {
        padding: 0px 0;
    }

    .user-information .from-title span.form-count {
        font-size: 16px !important;
    }

    .company-details span {
        font-size: 18px !IMPORTANT;
    }
}

@media (max-width: 767px) {
    .tours-section h1 {
        font-size: 25px;
    }

    .top-header .contact-info {
        justify-content: center;
        margin-bottom: 10px;
        flex-direction: column;
    }

    .top-header .social-icons {
        justify-content: center;
    }

        .top-header .social-icons a {
            margin-left: 0px;
            margin-right: 17px;
        }

    .navbar > div > div:first-child {
        width: 50%;
        flex: auto;
        order: -1;
    }

    .navbar > div > div:last-child {
        order: -1;
        width: 50%;
    }

    .navbar .logo img {
        width: 45%;
    }

    .navbar .login-btn, .navbar .register-btn {
        font-size: 10px !important;
    }

    .nav-links {
        float: initial;
        padding: 0;
        padding-top: 10px;
        justify-content: center;
        gap: 12px;
    }

        .nav-links a {
            font-size: 12px !important;
        }

    .content h1 {
        font-size: 25px;
    }

    .tours-section h1 {
        margin: 0;
    }

    .services-section h1 {
        margin-bottom: 6px;
        font-size: 25px;
    }

    .footer-logo img {
        margin-bottom: 10px;
    }

    .container-pad {
        padding: 30px 24px;
    }

    .form-button-wrapper button {
        font-size: 14px;
        width: 100%;
    }

    .form-content-header h1 {
        font-size: 16px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input {
        padding: 14px 16px;
        font-size: 12px;
    }

    .user-information .from-title span.form-count {
        font-size: 14px !important;
    }

    .user-information .form-section-title, .company-details .form-section-title {
        font-size: 14px;
        margin: 0;
    }

    .user-information .from-title, .company-details .from-title {
        margin: 7px 0 8px 0;
    }

    .registr .from-row {
        gap: 0;
        flex-direction: column;
    }

    .registr .form-field {
        width: 100%;
    }

    .company-details .textfield-outlined select {
        font-size: 12px;
    }

    .registr .textfield-outlined {
        margin-bottom: 14px;
    }

    span.term-cles {
        display: flex;
    }

    .close-button {
        top: 16px;
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 640px) {

    .popup {
        width: 90%;
        padding: 33px 22px;
    }

        .popup.active {
            transform: translate(-52%, -50%) scale(1);
        }

    .popup-content h2 {
        font-size: 24px;
    }
}

@media (max-width:425px) {
    .navbar .logo img {
        width: 50%;
    }
}
