/* Hero Section Styles */
.hero-section {
    max-width: 1200px;
    width: 100%;
    margin: 120px auto 0;
    padding: 40px 20px;
    min-height: 85vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheading {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #6B7280;
}

.hero-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rocket-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.cta-button {
    background-color: #6366f1;
    color: white;
    border: 2px solid #6366f1;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: linear-gradient(to right, #2D6EFD, #D5388D);
    border-radius: 50%;
    animation: loading 4s linear infinite;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.4;
}

.cta-button:hover {
    color: white;
    background-color: #4f46e5;
    border-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.cta-button:hover::before {
    animation: none;
    opacity: 0.8;
}

@keyframes loading {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        margin-top: 200px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .main-heading {
        font-size: 2.8rem;
    }

    .hero-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .subheading {
        font-size: 1rem;
    }

    .hero-image {
        width: 70%;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }

    .hero-image {
        width: 90%;
    }
}



/* Music Note Styles */
.music-note-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.music-note {
    position: absolute;
    opacity: 0.6;
    filter: drop-shadow(0 0 8px rgba(213, 56, 141, 0.4));
}

.music-note-1 {
    top: 15%;
    left: 10%;
    width: 40px;
    transform: rotate(-15deg);
    animation: floatNote 8s ease-in-out infinite;
}

.music-note-2 {
    top: 60%;
    left: 25%;
    width: 30px;
    transform: rotate(25deg);
    animation: floatNote 7s ease-in-out infinite 1s;
}

.desktop-only {
    display: block;
}

@keyframes floatNote {
    0% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-15deg);
    }
}

/* Adjusting for responsive design */
@media (max-width: 768px) {
    .music-note-1 {
        top: 5%;
        left: 5%;
        width: 30px;
    }

    .desktop-only {
        display: none;
    }
}