/* General Reset */
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
}

/* Background */
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url('AOVerse-Website.png');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.top-left-links {
    position: relative;
    top: 20px;
    left: 30px;
    display: flex;
    gap: 15px;
    z-index: 1;
}

.top-left-links img {
    width: 50px;
    height: 50px;
}

/* Fixed Top-Right Links */
.top-right-links {
    position: absolute;
    top: 50px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 1;
    
}

.top-right-links a {
/*    text-decoration: underline;*/
/*    color: rgba(168, 114, 238, 1.0);*/
/*    font-size: 20px;*/
/*    padding: 8px 12px;*/
/*    transition: 0.3s;*/
/*    font-weight: 400;*/
/*    border-radius: 15px;*/

margin-top: 30px;
padding: 20px 10px;
background-color: clear;
color: white;

font-size: 15px;
font-weight: bold;
border: none;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease-in-out;
text-decoration: none;
display: inline-block;
box-shadow: 0px 0px 25px rgba(168, 114, 238, 0.8);
text-align : center;
}

.top-right-links a:hover {
    background: rgba(93, 63, 211, 0.5);
    font-weight: 600;
}

/* Centered Vertical Menu */
.vertical-menu {

    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    opacity: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events : none;
}
.vertical-menu.show {
    transform: translateY(-50%);
    pointer-events : all;
    opacity: 1;
}
.vertical-menu a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 5px 15px;
    transition: 0.3s;
    font-weight: 400;
    border-radius: 15px;
}

.vertical-menu a:hover {
    background: rgba(93, 63, 211, 0.5);
    font-weight: 600;
}

.vertical-menu a.hoverboard {
    transform: scale(1.1);
    font-weight: bold;
    background: rgba(93, 63, 211, 0.5);
}

/* Centered Content */
.container-center {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width : 100%;
}

/* Image Styling */
.center-image {
    max-width: 50%;
    height: auto;
    transition: all 0.5s ease-out;
}

.center-text {
    max-width: 80%;
    height: auto;
    transition: opacity 0.2s linear;
}

/* When Scrolling (Shrink and Move) */
.center-image.shrink {
    width: 100px;
    /* Smaller size */
    position: fixed;
    top: 10px;
    right: 20px;
}

#home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding : 20px;
    box-sizing : border-box;
    
}

/* Mission Section */
#mission,
#worldwide{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    color: white;
    position: relative;
}

.mission-container,
.worldwide-container {
    display: flex;
    flex-direction: column;
    align-items: center;
/*    max-width: 900px;*/
    gap: 20px;
}

.worlwide-showcase {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
/*    max-width: 900px;*/
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    border-radius: 30px;
    padding: 30px;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
}

.image-description #imageText{
    text-align: left;
    font-size : 17px;
}
/* Mission Image */
.mission-image,
.future-image {
    width: 90%;
    /*    max-width: 300px;*/
    height: auto;
    border-radius: 10px;
    min-width : 500px;
    /* Rounded corners */
}

/* Mission Text */
.mission-text,
.future-text {
    flex: 1;
}

.mission-text h2 {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 10px;
    /*    color : rgba(168, 114, 238, 1.0);*/
}

.mission-text b {
    /*    font-weight: 600;*/
    font-size: 20px;
    line-height: 1.6;
    color: rgba(168, 114, 238, 1.0);
}

.mission-text p {
    padding: 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    text-align : center;
    text-transform: capitalize;
}



.solution-container p , .worldwide-container p {
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
}

.fashion-container p {
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
}


.main-image-container img {
    width: 400px;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease;
}

#imageText,
#imageTitle {
    transition: opacity 0.3s ease-in-out;
}

#imageText a {
    font-weight: 600;
    font-size: 19px;
    color: rgba(168, 114, 238, 1.0);
}

.image-description {
    max-width: 400px;
}

.thumbnail-gallery {
    display: flex;
    /*    overflow-x: auto;*/
    gap: 10px;
    padding: 10px 0;
    max-width: 400px;
    white-space: nowrap;

}

.thumbnail {
    flex-shrink: 0;
    cursor: pointer;
    /*    border: 2px solid transparent;*/
    transition: transform 0.3s;
    width: 100px;
    border-radius: 21px;
    box-shadow: 0px 3px 4px rgba(168, 114, 238, 0.8);

}

.thumbnail img {
    width: 100px;
    height: auto;
    border-radius: 17px;
    box-shadow: 0px 8px 15px rgba(168, 114, 238, 0.8);
}

.thumbnail:hover {
    transform: scale(1.1);
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    width: 250px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.card h3 {
    margin-top: 15px;
    font-size: 20px;
    color: white;
}

.card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Hover effect */
.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(168, 114, 238, 0.8);
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items:center;
    gap: 30px;
    padding : 20px;
}

.row-gallery {
    display: flex;
    justify-content : center;
    gap: 30px;
    max-width:900px;
    width:100%;

}

.row-gallery img {
    width: 250px;
    height: auto;
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    border-radius: 10px;
    box-shadow: 0px 8px 15px rgba(168, 114, 238, 0.8);
}

.bottom-button {
    margin-top: 30px;
    padding: 30px 100px;
    background-color: clear;
    color: white;
    
    font-size: 22px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0px 0px 25px rgba(168, 114, 238, 0.8);
}

.bottom-button:hover {
    background-color: rgba(168, 114, 238, 1.0);
    color: white;
}

/* Falling Stars */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    opacity: 0.8;
    animation: rise infinite 2s ease-in-out;
}

#contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    color: white;
    position: relative;
    flex-direction:column;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 90%;
    gap: 20px;
    padding: 40px 20px;
}

.contact-container p{
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    text-align : center;
}
.contact-container b {
    /* font-weight: 600; */
    font-size: 20px;
    line-height: 1.6;
    color: rgba(168, 114, 238, 1.0);
}



.contact-container .card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    width: 250px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.consultation-box {
    background: linear-gradient(to bottom, #7b5fe0, #14141f);
    color: white;
    padding: 5px;
    border-radius: 20px;
    width: 400px;
    display:flex;
    flex-direction : column;
    align-items : flex-start;
}

.consultation-box h1{
    width: 100%;
    text-align: center;
    font-size : 25px;
}
/* Pricing Card */
.consultation-box-container {
    width: 100%;
    background: black;
    color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
}
.consultation-box-container h1{
    font-size : 50px;
    margin-bottom: 10px;
        margin-top: 10px;
        font-family: arial;
}
.section {
    margin-top: 20px;
    margin-bottom : 20px;
    display : flex;
}

.consultation-box-container strong{
    margin-bottom : 20px;
    text-align : center;
}

.bullet {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

ul {
    margin-top : 10px;
    list-style: none;
    padding-left: 0;
}

li {
    margin: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}
.bottom-button2 {
    margin : 0 auto;
    padding: 12px 50px;
    background: linear-gradient(to right, #9b7eff, #c38cff);
    color: rgba(255, 255, 255, 0.6);
    
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: block;
    text-align:center;
/*    box-shadow: 10px 10px 10px rgba(168, 114, 238, 0.8);*/
}

.bottom-button2:hover {
    background-color: rgba(168, 114, 238, 1.0);
    color: whitesmoke;
    transform: scale(1.1);
}

h2 {
    margin: 10px 0;
}

p {
    font-size: 14px;
    opacity: 0.8;
}

h3 {
    font-size: 28px;
    margin: 10px 0;
}

h3 span {
    font-size: 16px;
    opacity: 0.7;
}

.extra-months {
    color: #46e4ff;
    font-weight: bold;
}

/* Subscribe Button */
.subscribe-btn {
    background: linear-gradient(to right, #9b7eff, #c38cff);
    border: none;
    padding: 10px 15px;
    width: 100%;
    color: white;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.subscribe-btn:hover {
    background: linear-gradient(to right, #c38cff, #9b7eff);
}


/* Keyframes for Falling Effect */
@keyframes fall {
    from {
        transform: translateY(-10vh);
        opacity: 0;
    }
    to {
        transform: translateY(110vh);
        opacity: 1;
    }
}


/* Rising Stars Animation */
@keyframes rise {
    0% {
        transform: translateY(100vh); /* Start at the bottom */
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh); /* Move above screen */
        opacity: 0;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-image {
        width: 80%;
        max-width: 250px;
    }
    .main-image-container img {
        width: 150px;
    }
    .image-description #imageText {
        text-align: left;
        font-size: 13px;
    }
    .image-description {
        max-width: 150px;
    }
    .thumbnail {
        width : 60px;
        border-radius: 13px;
    }
    .worlwide-showcase {
        display: flex;
        align-items: center; /* Vertically center */
        justify-content: center; /* Horizontally center */
    }
}
