.hero-section {
    background: linear-gradient(135deg, #0B1C2D 0%, #1e3a8a 100%);
    color: white;
    padding: 100px 0 60px;
}

.section-padding {
    padding: 50px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0B1C2D;
}

.tech-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #FF7A18;
}

.tech-icon {
    font-size: 3rem;
    color: #FF7A18;
    margin-bottom: 1.5rem;
}

.bg-light-custom {
    background: #F8FAFC;
}

.text-accent-custom {
    color: #FF7A18;
}

.bg-primary-custom {
    background: #0B1C2D;
}

.btn-primary-custom {
    background: #FF7A18 !important;
    border: none !important;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn-primary-custom:hover {
    background: #e6691a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 24, 0.3);
    color: white !important;
}