/* Main Styles - Global styles and typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

/* Custom scroll animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}

[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Animated underlines */
.highlight-underline {
    position: relative;
    display: inline-block;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -2px;
    width: calc(100% + 4px);
    height: 8px;
    background: #F5A623;
    border-radius: 50px 30px 40px 20px;
    transform: rotate(-1.2deg) scaleY(0.8);
}

/* Common container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1B2A49;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-header .view-all-link {
    color: #F5A623;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.section-header .view-all-link:hover {
    color: #1B2A49;
}

.section-header .view-all-link i {
    font-size: 0.9rem;
}

.view-more-container {
    text-align: center;
    margin-top: 2rem;
}

.highlight {
    color: #F5A623;
    font-weight: 600;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: #F5A623;
    color: #1B2A49;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1B2A49;
}

.view-more-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #1B2A49;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.view-more-btn:hover {
    background: #F5A623;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}