.hero-section {
    background: var(--gradient);
    color: var(--text-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    width: 150px;
    height: 150px;
    background: var(--secondary);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 100px;
    height: 100px;
    background: var(--accent2);
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    background: var(--accent3);
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(4) {
    width: 120px;
    height: 120px;
    background: var(--accent1);
    bottom: 10%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}
/* 
.logo {
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
} */

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.sub-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.countdown-container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    animation: zoomIn 1s ease-out 1s both;
}

.countdown-item {
    text-align: center;
    padding: 15px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    animation: pulse 2s infinite;
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(244, 197, 66, 0.7);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(244, 197, 66, 0.9);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(244, 197, 66, 0.7);
    }
}

/* .notify-form {
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.form-control {
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: var(--shadow);
}

.btn-notify {
    background: var(--secondary);
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-notify:hover {
    background: var(--accent1);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-icons {
    margin-top: 30px;
    animation: fadeIn 1s ease-out 2s both;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--text-dark);
    transform: translateY(-5px) rotate(10deg);
} */

.features-section {
    padding: 80px 0;
    background: var(--bg-sky);
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
}

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: inline-block;
    animation: bounce 2s infinite;
}

.feature-card:nth-child(2) .feature-icon {
    color: var(--accent2);
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) .feature-icon {
    color: var(--accent3);
    animation-delay: 0.4s;
}

.feature-card:nth-child(4) .feature-icon {
    color: var(--accent1);
    animation-delay: 0.6s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .sub-heading {
        font-size: 1.2rem;
    }

    .countdown-value {
        font-size: 2rem;
    }
}