/* Modern Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    background: url('../images/hero-bg.svg') center center/cover no-repeat;
    min-height: 600px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.hero-container {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    color: white;
    max-width: 650px;
}

.hero-logo {
    max-width: 400px;
    height: auto;
    transform: scale(1.1);
    transform-origin: center left;
}

.hero-logo-svg {
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-logo-svg svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-container:hover .hero-logo-svg svg {
    transform: scale(1.02);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.logo-container {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

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

.hero-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: relative;
    max-width: 350px;
    border-radius: 15px;
    transform: translateY(-30px);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #0072bc;
    overflow: hidden;
}

.floating-card:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, #0072bc, #00a651);
}

.floating-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.floating-card h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0072bc;
}

@keyframes float {
    0% { transform: translateY(-30px); }
    50% { transform: translateY(-40px); }
    100% { transform: translateY(-30px); }
}

.btn-primary {
    background-color: #0072bc;
    border-color: #0072bc;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    background-color: #005a95;
    border-color: #005a95;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 114, 188, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline-light {
    border-width: 2px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-outline-light:hover {
    background-color: white;
    color: #0072bc;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover::before {
    left: 100%;
}

/* Responsive styles */
@media (max-width: 991px) {
    .hero-content {
        padding: 2rem 0;
        text-align: center;
    }
    
    .logo-container {
        margin: 0 auto 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Hide logo container in full screen */
@media (min-width: 1400px) {
    .logo-container {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section, .hero-container {
        min-height: 500px;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* Hero Features Styles */
.hero-features {
    margin-top: 30px;
}

.feature-icon i {
    font-size: 18px;
    color: #00a651;
    margin-right: 10px;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
}

.card-features {
    margin-top: 15px;
}

.card-features i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 575px) {
    .hero-section, .hero-container {
        min-height: 450px;
    }
    
    .hero-logo {
        max-width: 220px;
    }
    
    .btn-lg {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .hero-features {
        margin-top: 20px;
    }
    
    .feature-text {
        font-size: 14px;
    }
}
