/* Common/Global Styles - Loaded on all pages */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* scroll-behavior: smooth; */ /* Removed - using Lenis smooth scroll instead */
    scroll-padding-top: 120px; /* Offset for fixed navbar + extra space for headings */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    color: #333;
    /* scroll-behavior: smooth; */ /* Removed - using Lenis smooth scroll instead */
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(54, 54, 80, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    width: 100%;
    height: 0%;
    background: rgb(54, 54, 80);
    transition: height 0.1s ease;
}

/* Common Section Title */
.section-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    color: #000;
}

/* Scroll offset for anchor links */
.service-detail {
    scroll-margin-top: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .section-title {
        font-size: 3rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.5rem;
        text-align: left;
    }
}
