/*
 * Additional CSS for improved home page centering
 */

/* Global containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero section improvements */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section headings centering */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

/* Product grid centering */
.products-section .row,
.projects-section .row {
    justify-content: center;
}

/* Product and project cards */
.product-card, 
.project-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-info,
.project-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* About section centering */
.about-section .row {
    align-items: center;
    justify-content: center;
}

/* Testimonial improvements */
.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Call to action centering */
.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Buttons alignment */
.btn-center {
    display: flex;
    justify-content: center;
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .hero-buttons .ms-3 {
        margin-left: 0 !important;
    }
}