html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background-color: #061517;
    font-family: "Poppins", system-ui, sans-serif;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(8px);
}

.fade-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 21, 23, 0) 0%,
        rgba(6, 21, 23, 1) 100%
    );
    pointer-events: none;
}

h1 {
    font-family: "Poppins", system-ui, sans-serif;
    margin: 40px 20px 10px;
    color: white;
    font-weight: 700;
}

h2 {
    font-family: "Poppins", system-ui, sans-serif;
    margin: 0 20px 20px;
    color: white;
    font-weight: 700;
}

p {
    font-family: "Poppins", system-ui, sans-serif;
    margin: 0 20px 40px;
    color: white;
    opacity: 0.85;
}

hr {
    color: rgba(0, 0, 0, 0.116)
}

padding {
    padding: 20px;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    color: white;
    font-family: "Poppins", system-ui, sans-serif;
}

.navbar {
    position: fixed;

    width: 100%;
    z-index: 100;
    padding: 10px 20px;

    display: flex;
    align-items: center;      
    justify-content: flex-start; 

    backdrop-filter: blur(0px);
    background-color: rgba(0, 0, 0, 0);

    transition: background-color 0.25s ease, backdrop-filter 0.25s ease;
}

.navbar.top {
    background-color: rgba(6, 21, 23, 0);
    backdrop-filter: blur(0px);
}

.navbar.bottom {
    background-color: rgba(6, 21, 23, .95);
    backdrop-filter: blur(8px);
}

.lang-btn {
    padding: 10px 14px;
    border-radius: 7px; 

    background-color: rgba(2, 2, 2, 0.171);
    border: none;
    color: white;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition: background-color 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover {
    background-color: rgba(24, 24, 24, 0.3);
    transform: translateY(-1px);
}

.lang-btn:active {
    transform: translateY(0px);
}

.flag-icon {
    width: 20px;
    height: 14px;
    margin-right: 8px;
    object-fit: cover;
    border-radius: 3px;
    vertical-align: middle;
}

.arrowdown {
    display: inline-block;
    margin-left: 5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    vertical-align: middle;
}

.profile-button {
    border-radius: 10000px;
    max-width: 32px;
    max-height: 32px;
    cursor: pointer;
}

/* Modal styles */

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 30px;
    border-radius: 12px;
    background: #0d2326;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #2d4d52;
    background: #10292d;
    color: white;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.modal-button {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: white 1px solid;
    color: white;
    cursor: pointer;
    background-color: #0d2326;
}

.pricing-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.pricing-card {
    padding: 20px;
    width: 250px;
    text-align: center;
    color: white;
    margin-bottom: 0px;
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container .modal-input {
    width: 100%;
    box-sizing: border-box;
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: white;
    z-index: 1;
    margin-top: -5px;
}

.modal-input {
    width: 100%;
    padding-right: 40px;
}

/* Loader styles */

.loader {
    width: 24px;
    height: 24px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 