/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}
/* General Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 1;
}
.btn-primary {
    background: var(--primary);
    color: var(--box);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--box);
}
.btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}
.btn:hover::before {
    left: 100%;
}
/* Hero Section Styles */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: var(--box);
    padding: 2rem;
    border-radius: 1rem;
    gap: 2rem;
    min-height: 100%;
}
.hero-content {
    flex: 1 1 50%;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--white), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text);
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}
.hero-text p {
    margin-bottom: 1rem;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 2.5s ease forwards;
    opacity: 0;
}
.cta-buttons {
    display: flex;
    justify-content: flex-start;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}
.stat-label {
    font-size: 0.875rem;
    color: var(--text);
}
.hero-image-container {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}
.hero-image {
    width: 18rem;
    height: 18rem;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: morphing 10s infinite alternate;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        padding: 1.5rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-image {
        width: 14rem;
        height: 14rem;
    }
    .hero-text p {
        font-size: 0.9rem;
    }
    .btn {
        
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 1rem;
    }
    .hero-image-container,
    .hero-content {
        width: 100%;
    }
    .hero-stats {
        justify-content: center;
    }
    .cta-buttons {
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem
    }
    .hero-image {
        width: 12rem;
        height: 12rem;
    }
    
}