/* Add these styles to your CSS file */
.new-hero {
    min-height: 100vh;
    padding: 76px 0 0; /* Adjusted for your navbar height */
    background-color: white;
    overflow: hidden;
}

.new-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.text-primary {
    color: #00A0FA;
}

.hero-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.download-text {
    font-weight: 500;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: -1rem;
}

.store-button {
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: scale(1.05);
}

.store-button img {
    height: 40px;
    width: auto;
}

.phones-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 200px;
}

.phones-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
}

.phone {
    width: 280px;
    animation: float 6s ease-in-out infinite;
}

.phone-left {
    transform: rotate(-10deg) translateX(20px);
    animation-delay: 0.5s;
}

.phone-right {
    transform: rotate(10deg) translateX(-20px);
}

.phone img {
    width: 100%;
    height: auto;
}

.blue-background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-color: #00A0FA;
    border-radius: 40px;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotation));
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .phone {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .download-section {
        flex-direction: column;
    }

    .phone {
        width: 180px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .phones-wrapper {
        gap: 0.5rem;
    }

    .phone {
        width: 150px;
    }
}