* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #eaeaea;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}


nav {
    width: 100%;
    background-color: rgba(15, 12, 41, 0.95);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    border-radius: 90px 90px 90px 90px;
}

nav .logo img {
    width: 50px;
    transition: transform 0.4s ease;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #eaeaea;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 15px;
    border-radius: 8px;
    position: relative;
    transition: color 0.3s ease;
}


nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6f91;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #ff6f91;

}

nav .logo img:hover {
    transform: rotate(360deg) scale(1.2);
    transition: transform 0.6s ease;
}

.hamburger {
    display: none;
}


.hero {
    width: 100%;
    padding: 100px 20px 50px;
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.5s ease-out;
}

.hero-text {
    max-width: 50%;
    padding-right: 20px;
}

.hero-text h1 {
    font-size: 3em;
    color: #ff6f91;
    animation: fadeInText 2s forwards ease-in-out;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-text p {
    font-size: 1.5em;
    margin: 20px 0;
}

.hero-image {
    max-width: 40%;
}

.hero-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}


button {
    background: linear-gradient(135deg, #6a4c93, #ff6f91);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.3s ease;
    opacity: 0;
    animation: fadeInButton 1s ease forwards 0.5s;
}

@keyframes fadeInButton {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button:hover {
    background: linear-gradient(135deg, #4d337a, #d64572);
    transform: scale(1.1);
}


.features {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-item {
    width: 30%;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 1s forwards ease;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #ff6f91;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-item:hover .feature-icon {
    background-color: #ff6f91;
    transform: scale(1.2);
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-item h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ddd;
}


footer {
    margin-top: auto;
    padding: 20px;
    color: #eaeaea;
    text-align: center;
    animation: slideInUp 1.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icons a {
    color: #eaeaea;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ff6f91;
    transform: scale(1.1);
    transition: color 0.3s ease, transform 0.3s ease;
}


::-webkit-scrollbar {
    width: 12px;
    background: #0f0c29;
}

::-webkit-scrollbar-thumb {
    background: #24243e;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6f91;
    transition: background-color 0.3s ease-in-out;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-track:hover {
    background: rgba(0, 0, 0, 0.6);
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-corner {
    background: transparent;
}


@media (max-width: 768px) {
    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 20px;
    }

    nav ul {
        display: none;
    }

    .hamburger {
        display: block;
        color: #fff;
        font-size: 2rem;
    }

    .features {
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        width: 100%;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}


.menu {
    position: fixed;
    bottom: 0;
    left: 5.4%;
    width: 90%;
    height: 35%;
    background-color: rgba(15, 12, 41, 0.95);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-radius: 30px 30px 0px 0px;
    border: 2px solid #171717;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2000;

}

.menu.active {
    transform: translateY(0);
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.menu ul li {
    margin: 10px 0;
}

.menu ul li a {
    color: #eaeaea;

    text-decoration: none;
    padding: 12px 25px;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s ease, border 0.3s;
    font-size: 1.1em;
}

.menu ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ff6f91;
    transform: scale(1.1);
    border: 2px solid #ff6f91;
}

.menu a {
    background: linear-gradient(135deg, #6a4c93, #ff6f91);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
    opacity: 0;
    animation: fadeInButton 1s ease forwards 0.5s;
}

.menu a:hover {
    color: #ff6f91;

    transform: scale(1.1);
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hamburger {
        display: block;
    }
}