/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    scroll-behavior: smooth;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

#hero .logo {
    width: 850px;
    margin-bottom: 70px;
    animation: float 3s ease-in-out infinite;
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 40px;
    background-color: #ff7f50;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s, background-color 0.3s;
}

.btn:hover {
    transform: scale(1.1);
    background-color: #ff6347;
}

/* Floating animation for logo */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
