/* Landing Page Styles */

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0486d1 0%, #0076ba 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: url('/img/blob-decoration.png') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0486d1, #0076ba);
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto !important;
        padding: 3rem 0 !important;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

/* Social icons */
.btn-outline-primary:hover,
.btn-outline-danger:hover,
.btn-outline-info:hover,
.btn-outline-dark:hover {
    transform: scale(1.1);
}

/* Logo hover effect */
.logo-container img {
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.logo-container img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}
