/* ========================================
   Section Spacing Reduction
   Remove excessive space between sections
   ======================================== */

/* Reduce all section padding from 100px to 60px */
.features-section,
.services-section,
.testimonials-section,
.team-section,
.case-studies-section,
.awards-section,
.technology-section,
.cta-section,
.process-timeline-section,
.why-choose-section {
    padding: 60px 0 !important;
}

/* Stats section already reduced to 60px - keep it */
.stats-section {
    padding: 60px 0 !important;
}

/* Hero section - already optimized */
.main-banner {
    padding: 190px 0 140px !important;
}

/* Remove extra margins from containers */
.container {
    margin-bottom: 0 !important;
}

/* Remove extra margins from rows */
.row {
    margin-bottom: 0 !important;
}

/* Section titles - reduce bottom margin */
.section-title {
    margin-bottom: 40px !important;
}

/* Remove extra spacing from last child in sections */
section > .container > .row:last-child {
    margin-bottom: 0 !important;
}

/* Reduce spacing for specific sections that need tighter spacing */
.features-section + .services-section,
.services-section + .stats-section,
.stats-section + .testimonials-section,
.testimonials-section + .process-timeline-section {
    margin-top: 0 !important;
}

/* Blog section spacing */
.features-section[style*="background: linear-gradient(135deg, #f8f9fa"] {
    padding: 60px 0 !important;
}

/* Responsive spacing */
@media (max-width: 991px) {
    .features-section,
    .services-section,
    .testimonials-section,
    .team-section,
    .case-studies-section,
    .awards-section,
    .technology-section,
    .cta-section,
    .process-timeline-section,
    .why-choose-section {
        padding: 50px 0 !important;
    }
    
    .main-banner {
        padding: 80px 0 30px !important;
    }
    
    .section-title {
        margin-bottom: 30px !important;
    }
}

@media (max-width: 767px) {
    .features-section,
    .services-section,
    .testimonials-section,
    .team-section,
    .case-studies-section,
    .awards-section,
    .technology-section,
    .cta-section,
    .process-timeline-section,
    .why-choose-section {
        padding: 40px 0 !important;
    }
    
    .main-banner {
        padding: 70px 0 30px !important;
    }
    
    .section-title {
        margin-bottom: 25px !important;
    }
}
