/* Additional Custom Styles */

/* Hero Section Enhancements */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

/* Mobile: Ensure full viewport height */
@media (max-width: 768px) {
    .hero-section {
        height: 100dvh !important; /* Dynamic viewport height for mobile */
        min-height: 100vh !important; /* Fallback for older browsers */
    }
    
    .hero-background-wrapper,
    .hero-background {
        height: 100dvh !important;
        min-height: 100vh !important;
    }
}

.hero-section::before {
    display: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3rem 2rem;
}

/* Professional Card Styles */
.card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

/* Improved Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
        text-shadow: none !important;
    }
    
    .hero-subtitle {
        font-size: 1.125rem !important;
        text-shadow: none !important;
    }
    
    .hero-title-gradient {
        font-size: 2.75rem !important;
        text-shadow: none !important;
    }
    
    .badge-text {
        font-size: 1rem !important;
        text-shadow: none !important;
    }
    
    section {
        padding: 3rem 0;
    }
}

