/* Home Page Styles */

/* Hero Section */
.hero-section {
    position: relative;
    background-color: #00264d;
    padding: 6rem 0;
    overflow: hidden;
    width: 100%;
    margin: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003366 0%, #00152e 100%);
    opacity: 0.9;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern.png');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-section .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
}

.hero-section .btn-light {
    background: rgba(255,255,255,0.95);
}

.hero-section .btn-outline-light {
    border-width: 2px;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
}

/* Services Cards */
.services-section .card {
    border: none;
    background: #ffffff;
    transition: all 0.3s ease;
}

.services-section .feature-icon {
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.05) 0%, rgba(var(--bs-success-rgb), 0.05) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}
