/* ===================================
   BANNER - GOVHUB
   =================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(90deg, #7A34F3 0%, #FF6B35 100%);
    color: white;
    padding: 120px 0 180px;
    position: relative;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-align: left;
}

/* Animated Circles */
.animated-circles {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: 20%;
    left: -200px;
    animation: moveToRight1 8s ease-out forwards;
}

.circle-2 {
    width: 600px;
    height: 600px;
    top: 60%;
    left: -150px;
    animation: moveToRight2 10s ease-out forwards;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: -100px;
    animation: moveToRight3 12s ease-out forwards;
}

@keyframes moveToRight1 {
    0% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(800px) translateY(-120px) rotate(180deg);
        opacity: 0.6;
    }
    100% { 
        transform: translateX(1600px) translateY(-200px) rotate(360deg);
        opacity: 0.8;
    }
}

@keyframes moveToRight2 {
    0% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(600px) translateY(5px) rotate(180deg);
        opacity: 0.6;
    }
    100% { 
        transform: translateX(1200px) translateY(10px) rotate(360deg);
        opacity: 0.8;
    }
}

@keyframes moveToRight3 {
    0% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(600px) translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
    100% { 
        transform: translateX(1200px) translateY(-40px) rotate(360deg);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section h2 {
        font-size: 1.6rem;
    }
    
    .circle-1 {
        width: 500px;
        height: 500px;
    }
    
    .circle-2 {
        width: 500px;
        height: 500px;
    }
    
    .circle-3 {
        width: 130px;
        height: 130px;
    }
    
    @keyframes moveToRight1 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(600px) translateY(-100px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(1200px) translateY(-180px) rotate(360deg);
            opacity: 0.8;
        }
    }
    
    @keyframes moveToRight2 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(450px) translateY(5px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(900px) translateY(10px) rotate(360deg);
            opacity: 0.8;
        }
    }
    
    @keyframes moveToRight3 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(420px) translateY(-15px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(840px) translateY(-30px) rotate(360deg);
            opacity: 0.8;
        }
    }
}

@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .circle-1 {
        width: 400px;
        height: 400px;
    }
    
    .circle-2 {
        width: 400px;
        height: 400px;
    }
    
    .circle-3 {
        width: 120px;
        height: 120px;
    }
    
    @keyframes moveToRight1 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(500px) translateY(-80px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(1000px) translateY(-160px) rotate(360deg);
            opacity: 0.8;
        }
    }
    
    @keyframes moveToRight2 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(380px) translateY(5px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(760px) translateY(10px) rotate(360deg);
            opacity: 0.8;
        }
    }
    
    @keyframes moveToRight3 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(350px) translateY(-10px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(700px) translateY(-20px) rotate(360deg);
            opacity: 0.8;
        }
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 120px;
    }
    
    .hero-section .container {
        padding: 0 1rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.3rem;
    }
    
    .circle-1 {
        width: 300px;
        height: 300px;
    }
    
    .circle-2 {
        width: 300px;
        height: 300px;
    }
    
    .circle-3 {
        width: 100px;
        height: 100px;
    }
    
    @keyframes moveToRight1 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(300px) translateY(-60px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(800px) translateY(-120px) rotate(360deg);
            opacity: 0.8;
        }
    }
    
    @keyframes moveToRight2 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(250px) translateY(5px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(600px) translateY(10px) rotate(360deg);
            opacity: 0.8;
        }
    }
    
    @keyframes moveToRight3 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(200px) translateY(-5px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(500px) translateY(-10px) rotate(360deg);
            opacity: 0.8;
        }
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 100px;
    }
    
    .hero-section .container {
        padding: 0 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section h2 {
        font-size: 1.1rem;
    }
    
    .circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .circle-2 {
        width: 200px;
        height: 200px;
    }
    
    .circle-3 {
        width: 80px;
        height: 80px;
    }
    
    @keyframes moveToRight1 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(150px) translateY(-30px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(400px) translateY(-60px) rotate(360deg);
            opacity: 0.8;
        }
    }
    
    @keyframes moveToRight2 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(120px) translateY(5px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(300px) translateY(10px) rotate(360deg);
            opacity: 0.8;
        }
    }
    
    @keyframes moveToRight3 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(100px) translateY(-2px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(250px) translateY(-4px) rotate(360deg);
            opacity: 0.8;
        }
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-section .container {
        padding: 0 0.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section h2 {
        font-size: 1rem;
    }
    
    .circle-1 {
        width: 150px;
        height: 150px;
    }
    
    .circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .circle-3 {
        width: 60px;
        height: 60px;
    }
    
    @keyframes moveToRight1 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(100px) translateY(-20px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(300px) translateY(-40px) rotate(360deg);
            opacity: 0.8;
        }
    }
    
    @keyframes moveToRight2 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(80px) translateY(3px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(200px) translateY(6px) rotate(360deg);
            opacity: 0.8;
        }
    }
    
    @keyframes moveToRight3 {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
            opacity: 0.3;
        }
        50% { 
            transform: translateX(70px) translateY(-1px) rotate(180deg);
            opacity: 0.6;
        }
        100% { 
            transform: translateX(180px) translateY(-2px) rotate(360deg);
            opacity: 0.8;
        }
    }
}
