/* ============================================
   ENHANCED HOMEPAGE STYLES - STUNNING DESIGN
   ============================================ */

/* Animated Gradient Background for Hero */
.hero {
    background: linear-gradient(135deg,
            #FAF3EB 0%,
            #e8f4ff 50%,
            #FAF3EB 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced Floating Blobs with Glow */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #F5559B 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #1b72db 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Hero Logo Container - Stunning Effect */
.hero-logo-container {
    animation: logoEntrance 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(45deg, #F5559B, #1b72db, #F5559B);
    border-radius: 50%;
    opacity: 0;
    filter: blur(30px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Enhanced Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #002e5b 0%, #1b72db 50%, #F5559B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: textShimmer 4s linear infinite;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin: 2rem 0;
    line-height: 1.2;
}

@keyframes textShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Story Container - Modern Card Design */
.story-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 46, 91, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: slideUp 1s ease-out 0.5s both;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Story Steps - Enhanced Icons */
.story-step {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.story-step:hover {
    transform: translateY(-10px) scale(1.1);
}

.story-step:hover .story-icon {
    transform: scale(1.3) rotate(10deg);
    color: #F5559B;
}

.story-icon {
    font-size: 3rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 12px rgba(245, 85, 155, 0.3));
}

.story-arrow {
    transition: all 0.3s ease;
}

.story-step:hover+.story-arrow {
    transform: translateX(10px);
    color: #1b72db;
}

/* Video Section - Stunning Layout */
.video-section {
    background: linear-gradient(180deg, #FAF3EB 0%, #ffffff 100%);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(27, 114, 219, 0.3) 50%,
            transparent 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-text h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #002e5b 0%, #1b72db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.video-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #002e5b;
    opacity: 0.85;
}

.video-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 46, 91, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #F5559B, #1b72db);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 40px 100px rgba(0, 46, 91, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.video-card:hover::before {
    opacity: 0.6;
}

/* Partners Section - Premium Design */
.partners-section {
    background: linear-gradient(180deg, #ffffff 0%, #FAF3EB 100%);
    padding: 6rem 0;
}

.partners-section h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #002e5b 0%, #1b72db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    position: relative;
}

.partners-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F5559B, transparent);
    border-radius: 2px;
}

.partner-logo-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 46, 91, 0.08);
    position: relative;
    overflow: hidden;
}

.partner-logo-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F5559B 0%, #1b72db 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-logo-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 46, 91, 0.15);
}

.partner-logo-box:hover::before {
    opacity: 0.05;
}

.partner-logo-box img {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.partner-logo-box:hover img {
    transform: scale(1.1);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .text-gradient {
        font-size: 2.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-container {
        padding: 2rem;
    }

    .blob-1,
    .blob-2 {
        width: 300px;
        height: 300px;
    }
}