/* Basic Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #bc9036; /* A vibrant blue for primary actions/accents */
    --secondary-color: #6c757d; /* A soft grey for secondary elements */
    --accent-color: #a97900; /* A subtle green for success/highlight */
    --dark-color: #212529; /* Dark text/background */
    --light-color: #f8f9fa; /* Light background */
    --text-color: #343a40; /* General text color */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --transition-speed: 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth; /* Smooth scroll for anchor links */
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-family: var(--heading-font);
    font-weight: 600;
    text-transform: uppercase;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background-color: #9c6500;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px #bc9036;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden; /* Important for animations */
  }

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
    transform: scaleX(0); /* Initial state for animation */
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Bounce effect */
}

/* Specific section animations */
.section-animated.is-visible .section-title::after {
    transform: scaleX(1);
}


.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

/* Header */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark-color);
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
}

.main-nav .nav-list li {
    margin-left: 30px;
}

.main-nav .nav-list a {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease-out;
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    padding: 0;
    z-index: 100;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Menu Toggle Animations for open state */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #fff9e7c2 100%);
    color: var(--dark-color);
    padding: 0  0;
    display: flex;
    align-items: center;
    min-height: 80vh;
     

}



.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* For responsiveness */ 
    }

.hero-content {
    flex: 1;
    min-width: 300px;
    margin-right: 30px;
   padding-right: 5%;

}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--dark-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textClipIn 1s ease-out forwards; /* Initial animation */
    width: 100%;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    opacity: 0; /* Initial state for animation */
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.hero-image {
    flex: 1;
    min-width: 400px;
    text-align: center;
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease-out; /* For hover or other interactions */
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Services Section */
/* --- Root Variables (assuming you have these defined elsewhere) --- */
/*
:root {
    --primary-color: #ff6347; // Example primary color
    --accent-color: #4CAF50;  // Example accent color
    --light-color: #ffffff;   // Example light background for service items
    --dark-color: #333333;    // Example dark text/heading color
    --text-color: #666666;    // Example general text color
}
*/


/* --- SERVICES SECTION STYLES --- */
.services-section {
    background-color: #fcdb71; /* Your existing background color */
    background-image: url(./images/Beige\ Gold\ Elegant\ Golden\ Leaves\ Project\ Presentation\ .png); /* Your existing background image */
    background-size: cover; /* Ensure background image covers the section */
    background-position: center; /* Center the background image */
    text-align: center;
    padding: 80px 0; /* Add some padding for better visual spacing */
}

/* Titles and Subtitles within the section */
.services-section .section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.services-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px; /* Limit width for readability */
    margin: 0 auto 60px auto; /* Center and add bottom margin */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px; /* Add some horizontal padding for smaller screens */
}

/* --- SERVICE ITEM STYLES --- */
.service-item {
    background-color: var(--light-color);
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid transparent; /* Existing border for hover effect */

    /* --- ANIMATION RELATED STYLES --- */
    opacity: 0; /* Initially hidden */
    transform: translateY(30px); /* Start slightly below its final position */
    /* Add opacity and transform to the transition property */
    transition: transform 0.6s ease-out, /* Existing transform transition */
                box-shadow 0.6s ease-out, /* Existing box-shadow transition */
                opacity 0.6s ease-out; /* New: Transition for opacity */
}

/* This class will be added by JavaScript when the element is in view */
.service-item.animate-in-fade-up.is-visible {
    opacity: 1; /* Become fully visible */
    transform: translateY(0); /* Move to its natural position */
}

/* --- SERVICE ITEM HOVER EFFECTS --- */
.service-item:hover {
    transform: translateY(-10px); /* Moves up on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
    border-color: var(--primary-color); /* Changes bottom border color on hover */
}

/* --- SERVICE ICON STYLES --- */
.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color); /* Initial icon color */
    margin-bottom: 20px;
    transition: color 0.3s ease; /* Smooth transition for icon color */
}

.service-item:hover .service-icon {
    color: var(--accent-color); /* Icon color changes on parent hover */
}

/* --- SERVICE ITEM HEADINGS & PARAGRAPHS --- */
.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-item p {
    font-size: 1rem;
    color: var(--text-color);
}

video {
            width: 100%;
            height: 100%;
            display: block; /* Remove extra space below video */
            border-radius: 0.75rem; /* Rounded corners for videos */
        }

/* --- Responsive adjustments (optional but recommended) --- */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Stack items on small screens */
        padding: 0 15px;
    }

    .services-section .section-title {
        font-size: 2rem;
    }

    .services-section .section-subtitle {
        font-size: 1rem;
    }
}
/* Portfolio Section */
.portfolio-section {
    background-color: #f0f2f5;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 250px; /* Fixed height for uniformity */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #9c6500; /* Overlay color */
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    transition-delay: 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    transition-delay: 0.2s;
}

.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
    opacity: 1;
}

.view-project-btn {
    background-color: #fff;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    transition-delay: 0.3s;
}

.portfolio-item:hover .portfolio-overlay .view-project-btn {
    transform: translateY(0);
    opacity: 1;
}


/* About Section */
.about-section {
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap; /* For responsiveness */
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

/* CTA Section / Testimonials */
.cta-section {
    background: linear-gradient(45deg, var(--primary-color), #a37b00);
    color: #fff;
    text-align: center;
    padding: 80px 0;    
}

.cta-section .section-title {
    color: #fff;
}

.cta-section .section-title::after {
    background-color: #fff; /* White line for contrast */
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 45%; /* Adjust as needed */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px); /* Nice touch for frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #fff;
}

.testimonial-item h4 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.cta-buttons {
    margin-top: 40px;
}


/* Contact Section */
.contact-section {
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-info p i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.social-links {
    margin-top: 30px;
    justify-content: left;
    align-items: left;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-left: 0;
     
}

.social-links a:hover {
    background-color: var(--dark-color);
    transform: translateY(-5px) rotate(5deg);
}

.contact-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.contact-form button.btn-primary {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form button.btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.contact-form button.btn-primary:hover i {
    transform: translateX(5px);
}


/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}   

.main-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 10px; /* For mobile spacing */
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--primary-color);

    
}




/* --- ANIMATION KEYFRAMES --- */

/* Fade In */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale Up */
@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Text Clip In (for hero title) */
@keyframes textClipIn {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

/* --- ANIMATION CLASSES (Initial State & Visible State) --- */

/* Base for all animated elements */
[class*="animate-in-"] {
    opacity: 0;
    transform: translateY(20px); /* Default for fade-up type animations */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Specific overrides for different directions */
.animate-in-up {
    transform: translateY(20px);
}
.animate-in-fade {
    transform: none; /* No vertical movement, just fade */
}
.animate-in-right {
    transform: translateX(50px);
}
.animate-in-left {
    transform: translateX(-50px);
}
.animate-in-scale {
    transform: scale(0.8);
}


/* Class added by JS when element is visible */
.is-visible.animate-in-up,
.is-visible.animate-in-fade,
.is-visible.animate-in-right,
.is-visible.animate-in-left,
.is-visible.animate-in-scale {
    opacity: 1;
    transform: none; /* Reset transform to original position */
}

/* Staggered animations for grids (e.g., portfolio, services) */
/* The base transition property handles the animation */
.portfolio-item, .service-item {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Define initial state for staggered items */
.animate-in-fade-up-stagger {
    opacity: 0;
    transform: translateY(30px);
}

/* This class will be added by JS */
.is-visible .animate-in-fade-up-stagger {
    opacity: 1;
    transform: translateY(0);
}

/* Individual transition delays for staggered effect */
.is-visible .portfolio-item:nth-child(1),
.is-visible .service-item:nth-child(1) { transition-delay: 0.1s; }
.is-visible .portfolio-item:nth-child(2),
.is-visible .service-item:nth-child(2) { transition-delay: 0.2s; }
.is-visible .portfolio-item:nth-child(3),
.is-visible .service-item:nth-child(3) { transition-delay: 0.3s; }
.is-visible .portfolio-item:nth-child(4),
.is-visible .service-item:nth-child(4) { transition-delay: 0.4s; }
.is-visible .portfolio-item:nth-child(5),
.is-visible .service-item:nth-child(5) { transition-delay: 0.5s; }
.is-visible .portfolio-item:nth-child(6),
.is-visible .service-item:nth-child(6) { transition-delay: 0.6s; }
/* Add more as needed for your grid sizes */


/* Testimonial slider (basic, for actual slider you need JS library) */
.testimonial-slider {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling if items exceed width */
    scroll-snap-type: x mandatory; /* For smooth snapping */
    -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
    gap: 30px; /* Space between testimonials */
    padding-bottom: 20px; /* Space for scrollbar */
}

.testimonial-item {
    flex: 0 0 48%; /* Adjust width for items in slider */
    scroll-snap-align: start;
    min-width: 300px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    .hero-section { padding: 80px 0; }
    .hero-content { margin-right: 0; text-align: center; }
    .hero-image { margin-top: 40px; padding-right: 20px;}
    .main-nav .nav-list { margin-right: 0;  }
    .about-content { flex-direction: column; text-align: center; }
    .about-image { margin-bottom: 30px; }
    .about-image img { margin: 0 auto; } 
    
}

@media (max-width: 768px) {
    .main-header .container {
        flex-wrap: wrap;
    }
    .logo { margin-right: auto; padding-left: 20px;  }

    
    .main-nav {
        width: 100%;
        margin-top: 15px;
        position: relative;
        text-align: center;
    }
    .main-nav .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        border-radius: 0 0 8px 8px;
        z-index: 999; /* Ensure dropdown is above content */
    }

    .main-nav .nav-list.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .main-nav .nav-list li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex; /* Show on mobile */
    }

    h1 { font-size: 2.8rem; }
    h2 { font-size: 1.8rem; }
    .section-subtitle { font-size: 1.1rem; }
    section { padding: 60px 0; }
    .services-grid, .portfolio-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-overlay h3 { font-size: 1.5rem; }
    .portfolio-overlay p { font-size: 1rem; }
    .testimonial-item {
        flex: 0 0 90%; /* Single column for testimonials on small screens */
    }
    .main-footer .container {
        flex-direction: column;
        gap: 15px;
    }
     .hero-image { margin-top: 40px; padding-right: 20px;} 
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }
    .btn { padding: 10px 20px; font-size: 0.9rem; }
    .hero-title { background: none;   -webkit-text-fill-color: var(--dark-color); }
}
 .hero-image { margin-top: 40px; padding-right: 20px;}

/* Reduced motion preference for accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    /* Remove transform/opacity initial states if prefers-reduced-motion */
    [class*="animate-in-"],
    .animate-in-fade-up-stagger {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .section-title::after {
        transform: scaleX(1) !important; /* Ensure line is visible */
        transition: none !important;
    }
}