html,
body {
    overflow-x: hidden;
}

input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}


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

.investors-hero-section img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* *************** Form Section *************** */

.investors-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    padding-bottom: 100px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    z-index: 2;
    position: relative;
    margin-bottom: 100px;
    margin-top: 100px;
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1050px;
    gap: 20px;
}

.form-column {
    padding: 20px;
    border-radius: 8px;
}

.sub-heading {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
}

.form-group {
    margin-bottom: 44px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding-bottom: 15px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 1rem;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row select {
    flex: 1;
    max-width: 120px;
}

.form-row input {
    flex: 2;
}

.submit-btn,
.download-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.divider {
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    align-self: stretch;
}

.downloads-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.downloads-list li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
    text-align: left;
    margin-bottom: 27px;
}

select,
select option {
    color: black;
}

input::placeholder {
    font-weight: 400;
}

@media (max-width: 990px) {
    .form-column {
        padding: 0px 15%;
    }

    .content-wrapper {
        flex-direction: column-reverse;
    }
}

@media (max-width: 470px) {
    .form-column {
        padding: 0px 5%;
    }

    .main-heading {
        font-size: 30px;
        margin-bottom: 50px;
        margin-top: 50px;
    }

}

@media (max-width: 330px) {
    .main-heading {
        font-size: 20px;
    }
}

/* Tablet and Desktop */
@media (min-width: 990px) {
    .content-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    .form-column {
        flex: 1;
        min-width: 0;
    }

    .divider {
        width: 2px;
        height: auto;
        min-height: 400px;
        margin: 0 20px;
        background: rgba(255, 255, 255, 0.5);
    }

    .form-row {
        gap: 15px;
    }

    .form-row select {
        max-width: 150px;
    }
}

/* popup code */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    overflow-y: auto;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background: #000;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.popup-text {
    color: #fff;
    margin-bottom: 30px;
}

.popup-close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    background: none;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 1001;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close-btn:hover {
    border-width: 4px;
    transform: scale(0.95);
}


.popup-form-column {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.popup-sub-heading {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
}

.popup-form-group {
    margin-bottom: 40px;
}

.popup-form-group input,
.popup-form-group select {
    width: 100%;
    padding-bottom: 15px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 1rem;
}

.popup-form-row {
    display: flex;
    gap: 10px;
}

.popup-form-row select {
    flex: 1;
    max-width: 120px;
}

.popup-form-row input {
    flex: 2;
}

.popup-submit-btn {
    width: 100%;
}

@media (min-width: 768px) {
    .popup-form-row {
        gap: 15px;
    }

    .popup-form-row select {
        max-width: 150px;
    }
}