/* Homepage Specific Styles */

/* Hero Section */
.hero-section {
    background-image: url('/images/tech-background-2-large.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 80vh;
}

.hero-content {
    z-index: 2;
}

.hero-overlay {
    opacity: 0.8;
    z-index: 1;
    background-color: #000000;
    min-height: 80vh;
}

/* Icon Styles */
.icon-circle-60 {
    width: 60px;
    height: 60px;
}

.icon-circle-50 {
    width: 50px;
    height: 50px;
}

/* Card Styles */
.card-shadow {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
}

/* Testimonial Cards */
.testimonial-card {
    border-left: 4px solid #0d6efd;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-overlay {
        min-height: 60vh;
    }
}
