/*
 * Swabhiman ki awaj - Reset Gaps CSS
 * Removes all spacing between header and hero section
 */

/* Force zero spacing on html and body */
html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5;
}

/* Remove all spacing from main content wrapper */
main,
main#main-content {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* Ensure header has no bottom spacing */
header,
header.sticky {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove top spacing from first section */
main > section:first-child,
main > section:first-of-type,
section.relative.overflow-hidden {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Target the specific hero carousel section */
#heroCarousel {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove any browser default spacing */
section {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

/* Ensure no gaps between consecutive sections */
section + section {
    margin-top: 0 !important;
}

