/* Custom styles for Azora Group website */

/* Hero section enhancements */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Service card enhancements */
.service-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.service-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Section spacing */
.section {
    padding: 80px 0;
}

/* Contact section icons */
.contact-icon {
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
}

/* Footer enhancements */
footer {
    margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .section {
        padding: 40px 0;
    }
} 