*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    width: 100%;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.background{
    width: 500px;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.logo{
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.logo img{
    width: 100%;
    max-width: 200px;
    height: 100%;
    object-fit: cover;
}
.models{
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: start;
}
.models img{
    width: 100%;
    max-width: 290px;
    height: 100%;
    object-fit: cover;
}
.rectangle{
    position: absolute;
    top: 23%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: end;

}
.rectangle img{
    width: 100%;
    max-width: 260px;
    height: 100%;
    object-fit: cover;
}
.title{
    position: absolute;
    top: 22%;
    left: 44.5%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: end;
}
.title img{
    width: 100%;
    max-width: 200px;
    height: 100%;
    object-fit: cover;
}
.opensaccount{
    position: absolute;
    top: 65%;
    left: 44%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: end;
    flex-direction: column;
    gap: 10px;
}
.opensaccount img{
    width: 100%;
    max-width: 200px;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.rectangle2{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rectangle2 img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.title2{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title2 img{
    width: 100%;
    max-width: 350px;
    height: 100%;
    object-fit: cover;
}
.button{
    position: absolute;
    top: 24.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.button img{
    width: 100%;
    max-width: 190px;
    object-fit: cover;
    cursor: pointer;
}
.icons{
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.icons img{
    width: 100%;
    max-width: 90px;
    height: 100%;
    object-fit: cover;
}
.titleicons{
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.titleicons img{
    width: 100%;
    max-width: 120px;
    height: 100%;
    object-fit: cover;
}
.icons2{
    position: absolute;
    top: 71%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.icons2 img{
    width: 100%;
    max-width: 90px;
    height: 100%;
    object-fit: cover;
}
.titleicons2{
    position: absolute;
    top: 85.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.titleicons2 img{
    width: 100%;
    max-width: 130px;
    height: 100%;
    object-fit: cover;
}

/* Popup Modal Styles */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-in-out;

}

.popup-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.popup-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo-img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.popup-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.popup-content p {
        height: 100;
        color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.popup-btn-img {
    width: 250px;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    z-index: 1000;
}


/* @media (max-width: 768px) {
    .background {
        width: 100%;
    }
    .background img{
        width: 100%;
        object-fit: cover;
    }
    
    .logo img {
        max-width: 200px;
    }
    .models{
        top: 28%;
    }
    .models img {
        max-width: 400px;
    }
    
    .rectangle img {
        max-width: 300px;
    }
    
    .title img {
        max-width: 250px;
    }
    .opensaccount{
        top: 28%;
    }
    .opensaccount img {
        max-width: 200px;
    }
    .rectangle2{
        top: 70%;
    }
    
    .rectangle2 img {
        max-width: 630px;
    }
    .title2{
        top: 45%;
    }
    
    .title2 img {
        max-width: 400px;
    }

    .button{
        top: 54.5%;
    }
    .button img {
        max-width: 230px;
    }

    .icons{
        top: 67%;
        max-width: 400px;
    }
    .icons img {
        max-width: 120px;
    }
    .titleicons{
        top: 76%;
        max-width: 370px;
    }
    
    .titleicons img {
        max-width: 100px;
    }

    .icons2{
        top: 85%;
        max-width: 400px;
    }
    
    .icons2 img {
        max-width: 120px;
    }

    .titleicons2{
        top: 94%;
        max-width: 400px;
    }
    
    .titleicons2 img {
        max-width: 100px;
    }
    
    .popup-content {
        margin: 10% auto;
        padding: 40px;
        width: 100%;
        max-width: 500px;
    }
    
    .popup-content p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .logo-img {
        max-width: 200px;
    }
    
    .popup-btn-img {
        width: 250px;
    }
} */

@media (max-width: 430px) {
    .logo img {
        max-width: 200px;
    }
    
    .models img {
        max-width: 290px;
    }
    
    .rectangle img {
        max-width: 200px;
    }
     .title{
        top: 20%;
     }
    .title img {
        max-width: 150px;
    }
    .opensaccount{
        top: 65%;
    }
    
    .opensaccount img {
        max-width: 150px;
    }
    .rectangle2{
        top: 65%;
    }
    .rectangle2 img {
        max-width: 550px;
    }
    .title2{
        top: 10%;
    }
    
    .title2 img {
        max-width: 350px;
    }
    .button{
        top: 24.5%;
    }
    .button img {
        max-width: 150px;
    }
    .icons{
        top: 42%;
        max-width: 270px;
    }
    .icons img {
        max-width: 90px;
    }
    .titleicons{
        top: 56.5%;
        max-width: 270px;
    }
    .titleicons img {
        max-width: 90px;
    }
    .icons2{
        top: 71%;
        max-width: 270px;
    }
    .icons2 img {
        max-width: 90px;
    }
    .titleicons2{
        top: 86%;
        max-width: 270px;
    }
    .titleicons2 img {
        max-width: 90px;
    }
    
    .popup-content {
        margin: 10% auto;
        padding: 40px;
        width: 95%;
        max-width: 480px;
    }
    
    .popup-content p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .logo-img {
        max-width: 200px;
    }
    
    .popup-btn-img {
        width: 250px;
    }
}

@media (max-width: 428px) {
    .logo img {
        max-width: 170px;
    }
    
    .models img {
        max-width: 250px;
    }
    
    .rectangle img {
        max-width: 200px;
    }
     .title{
        top: 20%;
     }
    .title img {
        max-width: 150px;
    }
    .opensaccount{
        top: 65%;
    }
    
    .opensaccount img {
        max-width: 150px;
    }
    .rectangle2{
        top: 68%;
    }
    .rectangle2 img {
        max-width: 550px;
    }
    .title2{
        top: 10%;
    }
    
    .title2 img {
        max-width: 350px;
    }
    .button{
        top: 24.5%;
    }
    .button img {
        max-width: 150px;
    }
    .icons{
        top: 42%;
        max-width: 270px;
    }
    .icons img {
        max-width: 90px;
    }
    .titleicons{
        top: 56.5%;
        max-width: 270px;
    }
    .titleicons img {
        max-width: 90px;
    }
    .icons2{
        top: 71%;
        max-width: 270px;
    }
    .icons2 img {
        max-width: 90px;
    }
    .titleicons2{
        top: 86%;
        max-width: 270px;
    }
    .titleicons2 img {
        max-width: 90px;
    }
    
    .popup-content {
        margin: 10% auto;
        padding: 40px;
        width: 95%;
        max-width: 480px;
    }
    
    .popup-content p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .logo-img {
        max-width: 200px;
    }
    
    .popup-btn-img {
        width: 250px;
    }
}

@media (max-width: 390px) {
    .logo img {
        max-width: 120px;
    }
    
    .models {
        top: 23%;
    }
    .models img {
        max-width: 200px;
    }
    
    .rectangle img {
        max-width: 200px;
    }
    .title {
        top: 24%;
    }
    .title img {
        max-width: 150px;
    }
    .opensaccount {
        top: 65%;
    }
    .opensaccount img {
        max-width: 140px;
    }
    .rectangle2 {
        top: 69%;
    }
    .rectangle2 img {
        max-width: 370px;
    }
    .title2 {
        top: 10%;
    }
    .title2 img {
        max-width: 300px;
    }
    .button {
        top: 24.5%;
    }
    .button img {
        max-width: 135px;
    }
    .icons {
        top: 42%;
        max-width: 250px;
    }
    .icons img {
        max-width: 70px;
    }
    .titleicons {
        top: 56.5%;
        max-width: 250px;
    }
    .titleicons img {
        max-width: 70px;
    }
    .icons2 {
        top: 71%;
        max-width: 250px;
    }
    .icons2 img {
        max-width: 70px;
    }
    .titleicons2 {
        top: 86%;
        max-width: 250px;
    }
    .titleicons2 img {
        max-width: 70px;
    }
    
    .popup-content {
        margin: 10% auto;
        padding: 30px;
        width: 95%;
        max-width: 370px;
    }
    
    .popup-content p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .logo-img {
        max-width: 165px;
    }
    
    .popup-btn-img {
        width: 205px;
    }
}

@media (max-width: 360px) {
    .logo img {
        max-width: 120px;
    }
    
    .models {
        top: 23%;
    }
    .models img {
        max-width: 200px;
    }
    
    .rectangle img {
        max-width: 200px;
    }
    .title {
        top: 24%;
    }
    .title img {
        max-width: 150px;
    }
    .opensaccount {
        top: 65%;
    }
    .opensaccount img {
        max-width: 140px;
    }
    .rectangle2 {
        top: 67%;
    }
    .rectangle2 img {
        max-width: 370px;
    }
    .title2 {
        top: 10%;
    }
    .title2 img {
        max-width: 300px;
    }
    .button {
        top: 24.5%;
    }
    .button img {
        max-width: 135px;
    }
    .icons {
        top: 42%;
        max-width: 250px;
    }
    .icons img {
        max-width: 70px;
    }
    .titleicons {
        top: 56.5%;
        max-width: 250px;
    }
    .titleicons img {
        max-width: 70px;
    }
    .icons2 {
        top: 71%;
        max-width: 250px;
    }
    .icons2 img {
        max-width: 70px;
    }
    .titleicons2 {
        top: 86%;
        max-width: 250px;
    }
    .titleicons2 img {
        max-width: 70px;
    }
    
    .popup-content {
        margin: 10% auto;
        padding: 30px;
        width: 95%;
        max-width: 370px;
    }
    
    .popup-content p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .logo-img {
        max-width: 165px;
    }
    
    .popup-btn-img {
        width: 205px;
    }
}
