﻿/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #0f2c3e;
    --dark: #2c3e50;
    --light: #555;
    --white: #fff;
    --accent: #ffd03d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
}

h1 {
    font-size: 45px;
    font-weight: 800;
    color: var(--dark);
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
}

h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark);
}

p {
    font-size: 18px;
    font-weight: 500;
    color: var(--light);
}

.description {
    font-size: 18px;
    font-weight: 400;
    color: var(--light);
}

h4 {
    color: var(--white);
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #00234d;
    padding: 15px 40px;
    color: var(--white);
    font-size: 16px;
}

    .top-header .contact-info {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .top-header .contact-info i {
            margin-right: 5px;
        }

    .top-header .social-icons {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .top-header .social-icons a {
            color: var(--white);
            font-size: 18px;
            text-decoration: none;
        }

            .top-header .social-icons a:hover {
                color: var(--accent);
            }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-size: 18px;
        font-weight: 500;
    }

        .nav-links a:hover {
            color: #317BF2;
        }

.auth-buttons {
    display: flex;
    gap: 15px;
}

.login-btn {
    background: var(--white);
    padding: 10px 25px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    font-size: 17px;
    cursor: pointer;
}

    .login-btn:hover {
        background: linear-gradient(90deg,#009FE3,#255CB8,#E13BA6);
        color: var(--white);
        border: none;
    }

.register-btn {
    background: linear-gradient(90deg,#00C6FF,#317BF2,#FF45BB);
    padding: 10px 25px;
    color: var(--white);
    border-radius: 5px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

    .register-btn:hover {
        opacity: .9;
    }

.hero-section img {
    width: 100%;
    height: auto;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    gap: 30px;
}

.content {
    flex: 1;
}

    .content h1 {
        font-size: 40px;
    }

.image-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

    .image-gallery img {
        width: 100%;
        border-radius: 8px;
        height: auto;
    }

        .image-gallery img.large {
            grid-column: span 2;
            height: 250px;
            object-fit: cover;
        }

.container1 {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-section {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    text-align: center;
}

.button {
    background: var(--white);
    color: var(--primary);
    padding: 10px 35px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}

    .button:hover {
        background: var(--accent);
    }

.container2 {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.services {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.service {
    text-align: left;
}

    .service img {
        width: 50px;
        margin-bottom: 10px;
    }

.container3 {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
}*/

/* RESPONSIVE */

/*@media (max-width:1024px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .container1 {
        flex-direction: column;
    }

    .services {
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        font-size: 36px;
    }
}

@media (max-width:768px) {
    .top-header {
        flex-direction: column;
        gap: 10px;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .services {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 32px;
    }

    .content-section {
        padding: 25px;
    }
}

@media (max-width:480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    p, .description {
        font-size: 16px;
    }

    .navbar {
        padding: 10px 20px;
    }
}


.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: #00234d;
        margin-top: 5vh;
        min-height: 16em;
        padding-left: 5%;
    }

.col-first {
    width: 30%;
}

.col-sec {
    width: 30%;
    margin-left: 5%;
}

.Quick {
    color: #fff;
}

.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: linear-gradient(90deg, #00C6FF 0%, #317BF2 50%, #FF45BB 100%);
    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;
    }*/


/*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: #00234d;
}

.form-content-header > p {
    font-size: 14px;
    color: #000;
    padding: 10px 10px 10px 0px;
}

.form-button-wrapper button {
    background: linear-gradient(90deg, #00C6FF 0%, #317BF2 50%, #FF45BB 100%);
    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%;
    }
}*/




@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;900&display=swap');

:root {
    --primary: #0f2c3e;
    --dark: #0f2c3e;
    --text: #555;
    --white: #fff;
    --accent: #ffd03d;
    --h1-size: 45px;
    --h1-weight: 900;
    --h2-size: 33px;
    --h2-weight: 700;
    --h3-size: 24px;
    --h3-weight: 600;
    --body-size: 18px;
    --body-weight: 500;
    --desc-size: 18px;
    --desc-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
/*    color: var(--text);*/
}

body {
    line-height: 1.6;
}

/* TYPOGRAPHY */
h1 {
    font-size: var(--h1-size);
    font-weight: var(--h1-weight);
    color: var(--dark);
}

h2 {
    font-size: var(--h2-size);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

h3 {
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
    color: #fff;
}

p, a, span, li {
    font-size: var(--body-size);
    font-weight: 300;
}

.description {
    font-size: var(--desc-size);
    font-weight: var(--desc-weight);
}

h4 {
    color: var(--white);
}

/* RESPONSIVE TYPOGRAPHY */
@media (max-width:768px) {
    :root {
        --h1-size: 32px;
        --h2-size: 24px;
        --h3-size: 20px;
        --body-size: 16px;
        --desc-size: 16px;
    }
}

@media (max-width:480px) {
    :root {
        --h1-size: 28px;
        --h2-size: 22px;
        --h3-size: 18px;
        --body-size: 15px;
        --desc-size: 15px;
    }
}

/* UNIVERSAL CONTAINER PADDING */
.container,
.container1,
.container2,
.container3 {
    padding: 20px;
}

/* TOP HEADER */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #00234d;
    padding: 15px 40px;
    color: var(--white);
    font-size: 16px;
}

    .top-header .contact-info {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .top-header .contact-info i {
            margin-right: 5px;
        }

    .top-header .social-icons {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .top-header .social-icons a {
            color: var(--white);
            font-size: 18px;
            text-decoration: none;
        }

            .top-header .social-icons a:hover {
                color: var(--accent);
            }

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-size: 18px;
        font-weight: 500;
    }

        .nav-links a:hover {
            color: #317BF2;
        }

.auth-buttons {
    display: flex;
    gap: 15px;
}

.login-btn {
    background: var(--white);
    padding: 10px 25px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    font-size: 17px;
    cursor: pointer;
}

    .login-btn:hover {
        background: linear-gradient(90deg,#009FE3,#255CB8,#E13BA6);
        color: var(--white);
        border: none;
    }

.register-btn {
    background: linear-gradient(90deg,#00C6FF,#317BF2,#FF45BB);
    padding: 10px 25px;
    color: var(--white);
    border-radius: 5px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

    .register-btn:hover {
        opacity: .9;
    }

/* HERO */
.hero-section img {
    width: 100%;
    height: auto;
}

/* MAIN */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 30px auto;
    gap: 30px;
}

.content {
    flex: 1;
}

.image-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

    .image-gallery img {
        width: 100%;
        border-radius: 8px;
    }

        .image-gallery img.large {
            grid-column: span 2;
            height: 250px;
            object-fit: cover;
        }

/* SECTION 1 */
.container1 {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-section {
    flex: 1;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

    .content-section p{
        color:white !important;
        font-size:30px;
    }
    /* BUTTON */
    .button {
        background: var(--white);
        color: var(--primary);
        padding: 10px 35px;
        font-size: 16px;
        border-radius: 5px;
        font-weight: 600;
        margin-top: 10px;
    }

    .button:hover {
        background: var(--accent);
    }

/* SECTION 2 */
.container2 {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 63px;
}

.service {
    text-align: left;
    padding: 8px;
    /*    box-shadow: 0px 1px 10px #0000000d;*/
}

    .service:hover {
        box-shadow: 0px 1px 10px #0000000d;
    }



    .service img {
        width: 50px;
        margin-bottom: 10px;
    }

/* SECTION 3 */
.container3 {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
}

/* NEWS */
.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;
}

    .news-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.news-content {
    padding: 15px;
}

    .news-content h2 {
        font-size: 1.2rem;
        color: #0f2c3e;
    }

    .news-content p {
        font-size: 0.9rem;
    }

.news-meta {
    font-size: 0.85rem;
    color: #888;
}

/* FOOTER */
footer {
    width: 100%;
}

    footer .column {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #00234d;
        margin-top: 5vh;
        min-height: 16em;
        padding-left: 5%;
    }

.col-first {
    width: 30%;
}

.col-sec {
    width: 30%;
    margin-left: 5%;
}

.add {
    color: var(--white);
}

/* POPUP */
.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;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: white;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 480px;
    opacity: 0;
    transition: all 0.3s ease-out;
}

    .popup.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    font-size: 20px;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
}

footer {
    width: 100%;
}

    footer .column {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #00234d;
        margin-top: 5vh;
        min-height: 16em;
        padding-left: 5%;
    }

.col-first {
    width: 30%;
}

.col-sec {
    width: 30%;
    margin-left: 5%;
}

.Quick {
    color: #fff;
}

.link a {
    text-decoration: none;
    color: white;
}

.col-third {
    margin-right: 5%;
}

.add {
    color: white;
}

.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: linear-gradient(90deg, #00C6FF 0%, #317BF2 50%, #FF45BB 100%);
    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;
    }

.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;
}

   text-align: center;
}

@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;
    }
}

.container-pad {
    padding: 30px 48px;
}

.form-content-header h1 {
    color: #fff;
    font-size: 18px;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: #00234d;
}

.form-content-header > p {
    font-size: 14px;
    color: #000;
    padding: 10px 10px 10px 0px;
}

.form-button-wrapper button {
    background: linear-gradient(90deg, #00C6FF 0%, #317BF2 50%, #FF45BB 100%);
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}



/* RESPONSIVE */
@media (max-width:1024px) {
    .container,
    .container1 {
        flex-direction: column;
        text-align: center;
    }

    .services {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:768px) {
    .nav-links {
        flex-direction: column;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:480px) {
    .navbar {
        padding: 10px 20px;
    }
}
