@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252A;
    font-family: Poppins,Segoe UI, sans-serif;
}

b {
    color: #edf0f1;
}

li, a, button {
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    cursor:pointer;
}

.navlinks {
    list-style:none;
}

.navlinks li {
    display: inline-block;
    padding: 0 20px;
}

.navlinks li a {
    transition: all 0.3 ease 0s;
}

.navlinks li a:hover {
    color:#0088a9;
}

button {
    padding: 9px 25px;
    background-color: rgba(0,136,169,1);
    border: none;
    border-radius: 50px;
    cursor:pointer;
    transition: all 0.3s ease 0s;

}

button:hover{
    background-color: rgba(0,136,169,0.8);
}

.logo{
    font-size: 30px; font-weight: 800; 
}
.links {
 display: none;
}

@media only screen and (max-width: 600px) {
    .links {
        display:contents;
    }
    .intro { display: none;
    }
    .image {
        display:none !important;
    }
}

#bars {
    margin: auto 0;
    display: none;
    cursor: pointer;
    position: absolute;
    right: 10%;
    top: 20px;
    z-index: 1100;
}
#bars div {
    width: 35px;
    height: 3px;
    background-color:#edf0f1 ;
    margin: 6px 0;
    transition: 0.4s;
}
.open .bar1 {
    transform: rotate(-45deg) translate(-5px, 5px); /* Adjusted for balance */
}

.open .bar2 {
    opacity: 0;
}

.open .bar3 {
    transform: rotate(45deg) translate(-5px, -5px); /* Adjusted for balance */
}
.open .mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    width: 100%;
    background-color: #24252A;
    z-index: 1000;
    padding: 20px 0;
}
.mobile ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.mobile li {
    padding: 15px 0;
}
.mobile a {
    color: #edf0f1;
    font-size: 18px;
    text-decoration: none;
}
.open {
    display: flex;
}
@media only screen and (max-width: 600px) {
    nav {
        display: none;
    }

}
.intro {
    text-align: left; 
    max-width: 500px; 
    margin: 120px 10%; 
    padding: 10px;
}

.intro a {
    display: block; 
    font-size: 24px;
    font-weight: 600;
    color: rgba(0,136,169,1);
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    
}

.intro a:hover {
    transform: translateX(10px);
    color: #00ccff;
}

.intro-discover {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
}

.intro-and {
    font-size: 22px;
}

.intro-meet {
    font-size: 28px;
    color: #00ccff;
}

.image {
    max-width: 500px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: 5%; 
    filter: grayscale(100%);
    border: 6px solid transparent;
    border-image: linear-gradient(45deg, #00aaff, #ff00aa);
    border-image-slice: 1;
    border-radius: 20px; 
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
    transition: filter 0.5s ease-in-out, transform 0.3s ease;
}

.image:hover {
    filter: grayscale(0%); 
    transform: scale(1.1); 
}
.frontpage {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    max-width: 90%;
    margin: auto;
}


.get-started-btn {
    text-decoration: none;
}

.get-started-btn button {
    padding: 9px 25px;
    background-color: rgba(0, 136, 169, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #edf0f1;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
    margin-top: 15px;
}

.get-started-btn button:hover {
    background-color: rgba(0, 136, 169, 0.8);
    transform: scale(1.05); 
}



    .get-started-btn {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .get-started-btn button {
        width: auto; 
        padding: 12px 30px;
        font-size: 18px; 
    }
}

.account b {
    color: #ffffff;
    font-size: 18px;
    padding-right: 20px;
}

.popup-message {
    position: fixed;
    top: 80px;
    left: 55%;
    transform: translateX(-50%);
    color: rgb(228, 17, 17);
    text-transform:uppercase;
    padding: 10px 15px;
    font-size: 20px;
    text-align: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.popup-message.active {
    opacity: 1;
    visibility: visible;
}



