:root {
    --color-sky-blue: #ADD8E6; /* Light Blue */
    --color-peach: #FFDAB9;   /* PeachPuff */
    --color-lavender: #E6E6FA; /* Lavender */
    --color-mint: #98FB98;   /* Mint Green */
    --color-background: #F8F8F8; /* Soft Off-white */
    --color-text: #333;
    --color-heading: #222;
    --color-accent: #6A5ACD; /* SlateBlue - a bit darker pastel */
    --color-light-gray: #EEE;
    --color-dark-shadow: rgba(0, 0, 0, 0.1);
    --color-light-shadow: rgba(255, 255, 255, 0.8);
    --border-radius-soft: 20px;
    --box-shadow-clay: 8px 8px 16px var(--color-dark-shadow), -8px -8px 16px var(--color-light-shadow);
    --box-shadow-clay-inset: inset 4px 4px 8px var(--color-dark-shadow), inset -4px -4px 8px var(--color-light-shadow);
    --transition-ease: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --color-accent-rgb: 106, 90, 205; /* For rgba usage */
    --color-heading-rgb: 34, 34, 34;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Claymorphic Components */
.clay-component {
    background-color: var(--color-background);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--box-shadow-clay);
    transition: var(--transition-ease);
}

.clay-component:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 24px var(--color-dark-shadow), -12px -12px 24px var(--color-light-shadow);
}

.clay-button {
    background-color: var(--color-sky-blue);
    color: var(--color-heading);
    padding: 12px 25px;
    border: none;
    border-radius: var(--border-radius-soft);
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--box-shadow-clay);
    transition: var(--transition-ease);
}

.clay-button:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 10px 10px 20px var(--color-dark-shadow), -10px -10px 20px var(--color-light-shadow);
}

.clay-button:active {
    transform: translateY(1px);
    box-shadow: var(--box-shadow-clay-inset);
}

.clay-visual {
    background-color: var(--color-peach); /* Use a pastel color for visual elements that aren't content */
    border-radius: var(--border-radius-soft);
    box-shadow: var(--box-shadow-clay);
    overflow: hidden; /* For images */
}

.clay-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-soft);
}

/* General Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-spacing {
    padding: 80px 0;
    position: relative; /* For blob positioning */
}

.section-title {
    font-size: 2.8rem;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--color-sky-blue), var(--color-peach));
    border-radius: 3px;
}

.subsection-title {
    font-size: 2rem;
    color: var(--color-heading);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-heading);
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-heading);
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-heading);
}

p {
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

ul li::before {
    content: ''; /* No icons per requirements */
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-accent); /* Use a dot instead */
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-ease);
}

a:hover {
    color: var(--color-heading);
    text-decoration: underline;
}

/* Header */
.main-header {
    background-color: var(--color-background);
    padding: 20px 0;
    box-shadow: 0 4px 10px var(--color-dark-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.logo a {
    color: var(--color-heading);
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav ul li a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: var(--color-sky-blue);
    border-radius: 1.5px;
    transition: var(--transition-ease);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px; /* Space between hero and next section */
    padding-top: 140px; /* Extra padding to avoid header overlap */
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 60%;
}

.hero-image {
    flex: 1;
    max-width: 40%;
    min-width: 300px; /* Ensure image doesn't get too small */
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-content h1 {
    margin-bottom: 25px;
    font-size: 3.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
}

/* About Section - Interactive Map */
.about-section {
    text-align: center;
}

.timeline-map {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 40px;
    position: relative;
    padding: 0 40px; /* Padding for dots */
}

.timeline-map::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-sky-blue), var(--color-peach), var(--color-lavender));
    z-index: 1;
    transform: translateY(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    z-index: 2;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background-color: var(--color-lavender);
    border-radius: 50%;
    margin-bottom: 15px;
    cursor: pointer;
    box-shadow: var(--box-shadow-clay);
    transition: var(--transition-ease);
    border: 3px solid var(--color-background); /* Inner ring effect */
}

.timeline-dot:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: var(--color-accent);
}

.timeline-label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-heading);
    background-color: var(--color-background);
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px var(--color-dark-shadow);
}

#timeline-info-box {
    margin-top: 30px;
    padding: 25px;
    background-color: var(--color-mint);
    color: var(--color-heading);
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    border-radius: var(--border-radius-soft);
    box-shadow: var(--box-shadow-clay);
    opacity: 1;.7; /* Initial subtle state */
    transition: var(--transition-ease);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section - Feature Highlights */
.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
}

.service-block .service-text {
    flex: 1;
    max-width: 50%;
}

.service-block .service-image {
    flex: 1;
    max-width: 50%;
    height: 350px;
}
.service-block .service-image img {
    height: 100%;
}

.service-block.layout-even {
    flex-direction: row;
}

.service-block.layout-odd {
    flex-direction: row-reverse;
}

.service-block h4 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.service-block p {
    font-size: 1.05rem;
}

/* Portfolio Section - Interactive Showcase */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius-soft);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--box-shadow-clay);
}

.portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-soft);
    transition: var(--transition-ease);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-accent-rgb), 0.85); /* Darker overlay with pastel accent */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 1;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    border-radius: var(--border-radius-soft);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.portfolio-overlay p {
    font-size: 1rem;
    margin-bottom: 15px;
}
.portfolio-overlay h5 {
    color: white;
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 5px;
}
.portfolio-overlay ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.portfolio-overlay ul li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    position: relative;
    padding-left: 0; /* No dot for small text */
}
.portfolio-overlay ul li::before {
    content: none;
}


/* Showcase Section - Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.highlight-card {
    padding: 30px;
    text-align: center;
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.highlight-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%; /* Clay-style visual */
    box-shadow: var(--box-shadow-clay-inset);
    padding: 10px; /* Inner padding for 'depth' */
}

.highlight-card h4 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.highlight-card p {
    font-size: 1rem;
    color: var(--color-text);
}


/* Team Section - Interactive Profiles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow-clay-inset); /* Inset for profile image */
    border: 5px solid var(--color-background);
}

.team-member h4 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.team-member p {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-weight: 500;
}

.profile-link {
    display: inline-block;
    background-color: var(--color-peach);
    color: var(--color-heading);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 3px 3px 6px var(--color-dark-shadow);
    transition: var(--transition-ease);
}

.profile-link:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 5px 5px 10px var(--color-dark-shadow);
    text-decoration: none;
}

/* Modal for Team Profiles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--color-background);
    margin: auto;
    padding: 40px;
    border-radius: var(--border-radius-soft);
    position: relative;
    max-width: 700px;
    width: 90%;
    box-shadow: var(--box-shadow-clay);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: var(--color-heading);
    text-decoration: none;
}

.modal-body {
    text-align: center;
}

.modal-member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow-clay-inset);
    border: 5px solid var(--color-lavender);
}

.modal-body h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-member-title {
    color: var(--color-accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.modal-body p {
    text-align: left;
    margin-bottom: 20px;
}

.modal-body h4 {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.modal-body ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.modal-body ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.modal-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-mint);
}

body.modal-open {
    overflow: hidden; /* Prevent background scroll when modal is open */
}

/* Testimonials Section - Quote Focus */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--color-mint); /* Different pastel for testimonials */
}

.testimonial-card blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--color-heading);
    position: relative;
    padding: 0 20px;
}

.testimonial-card blockquote::before {
    content: '“';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 0;
    color: rgba(var(--color-heading-rgb), 0.2); /* Faded quote */
    line-height: 1;
}

.testimonial-card blockquote::after {
    content: '”';
    font-size: 4rem;
    position: absolute;
    bottom: -30px;
    right: 0;
    color: rgba(var(--color-heading-rgb), 0.2);
    line-height: 1;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Gallery Section - Slideshow */
.gallery-slideshow {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    overflow: hidden;
    padding: 20px; /* Padding inside for claymorphic effect to show around image */
    background-color: var(--color-peach); /* Use peach for gallery component */
}

.slideshow-inner {
    display: flex;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius-soft);
    position: relative;
}

.slideshow-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    border-radius: var(--border-radius-soft);
    background-color: var(--color-light-gray); /* Placeholder background */
}

.slideshow-inner img.active {
    opacity: 1;
}

.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(var(--color-accent-rgb), 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: var(--box-shadow-clay);
    transition: var(--transition-ease);
    z-index: 10;
}

.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}

.prev-slide:hover, .next-slide:hover {
    background-color: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-dots {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: var(--color-background);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--box-shadow-clay-inset);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 8px;
    background-color: var(--color-light-gray);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
    box-shadow: var(--box-shadow-clay-inset);
}

.dot.active {
    background-color: var(--color-accent);
    box-shadow: var(--box-shadow-clay);
}

/* FAQ Section - Accordion Style */
.faq-accordion {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    background-color: var(--color-lavender); /* Lavender for FAQ */
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    outline: none;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background-color: rgba(var(--color-accent-rgb), 0.1);
}

.faq-question::after {
    content: '+'; /* Simple plus/minus indicator */
    font-size: 1.8rem;
    font-weight: 500;
    transition: transform 0.3s ease;
    color: var(--color-accent);
}

.faq-question[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(0deg); /* No rotation needed for - */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: rgba(255, 255, 255, 0.7); /* Lighter background for answer */
    padding: 0 30px;
}

.faq-answer.active {
    padding: 20px 30px;
}

.faq-answer p {
    font-size: 1.05rem;
    color: var(--color-text);
}

/* Footer */
.main-footer {
    background-color: var(--color-heading);
    color: var(--color-background);
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

.main-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-footer p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-nav ul {
    display: flex;
    gap: 25px;
}

.footer-nav ul li a {
    color: var(--color-background);
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-nav ul li a:hover {
    color: var(--color-sky-blue);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav ul {
        gap: 20px;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        max-width: 80%;
        margin-top: 40px;
    }

    .service-block {
        flex-direction: column !important; /* Override alternating layout */
        text-align: center;
    }

    .service-block .service-text,
    .service-block .service-image {
        max-width: 100%;
    }

    .portfolio-grid,
    .highlights-grid,
    .team-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .timeline-map {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 20px;
    }

    .timeline-map::before {
        display: none; /* Hide connecting line on small screens */
    }

    .timeline-item {
        flex-basis: 45%; /* Two items per row */
        margin-bottom: 40px;
    }

    .timeline-item:nth-child(even) {
        margin-top: 40px; /* Stagger items */
    }

    .gallery-slideshow {
        max-width: 700px;
    }
    .slideshow-inner {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .logo {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .subsection-title {
        font-size: 1.8rem;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .portfolio-grid,
    .highlights-grid,
    .team-grid,
    .testimonial-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 25px;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-image {
        max-width: 100%;
        height: 300px;
    }

    .service-block {
        padding: 25px;
        gap: 25px;
    }

    .service-block .service-image {
        height: 250px;
    }

    .testimonial-card blockquote {
        font-size: 1.1rem;
    }

    .gallery-slideshow {
        max-width: 100%;
        padding: 10px;
    }
    .slideshow-inner {
        height: 250px;
    }

    .prev-slide, .next-slide {
        padding: 8px 12px;
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }
    .faq-answer.active {
        padding: 15px 20px;
    }

    .main-footer .container {
        flex-direction: column;
        gap: 20px;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Specific Claymorphic additions not tied to .clay-component */
/* Blobs (decorative elements, not required but can enhance the look) */
/* This section is illustrative, actual 3D blobs would be complex. */
/* Using ::before/::after on sections for subtle background shapes */

section::before {
    content: '';
    position: absolute;
    z-index: 0;
    opacity: 1;.1;
    background-color: var(--color-sky-blue);
    border-radius: 50%;
    filter: blur(80px); /* Soft blur to mimic depth/glow */
}

#hero::before {
    width: 200px;
    height: 200px;
    top: 5%;
    left: -5%;
    background-color: var(--color-mint);
}
#hero::after {
    content: '';
    position: absolute;
    z-index: 0;
    opacity: 1;.1;
    background-color: var(--color-peach);
    border-radius: 50%;
    filter: blur(70px);
    width: 250px;
    height: 250px;
    bottom: 0;
    right: -10%;
}

#about-us::before {
    width: 180px;
    height: 180px;
    top: 10%;
    right: -5%;
    background-color: var(--color-lavender);
}

#services::before {
    width: 300px;
    height: 300px;
    top: 50%;
    left: -15%;
    transform: translateY(-50%);
    background-color: var(--color-peach);
    opacity: 1;.08;
}
#services::after {
    content: '';
    position: absolute;
    z-index: 0;
    opacity: 1;.1;
    background-color: var(--color-sky-blue);
    border-radius: 50%;
    filter: blur(60px);
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: -5%;
}

#portfolio::before {
    width: 220px;
    height: 220px;
    bottom: 5%;
    left: -8%;
    background-color: var(--color-mint);
    opacity: 1;.09;
}

#team::before {
    width: 280px;
    height: 280px;
    top: -10%;
    right: -10%;
    background-color: var(--color-lavender);
    opacity: 1;.07;
}

#testimonials::before {
    width: 200px;
    height: 200px;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    background-color: var(--color-peach);
    opacity: 1;.1;
}

#gallery::before {
    width: 250px;
    height: 250px;
    bottom: -5%;
    right: -8%;
    background-color: var(--color-sky-blue);
    opacity: 1;.1;
}

#faq::before {
    width: 150px;
    height: 150px;
    top: 10%;
    left: -3%;
    background-color: var(--color-mint);
    opacity: 1;.08;
}
/* Visible state helpers */
+ .animate-fade-in-up.visible,
+ .animate-fade-in-left.visible,
+ .animate-fade-in-right.visible,
+ .animate-bounce-y.visible,
+ .section-scroll-animate.visible,
+ .text-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Universal Icon Fixes for Buttons */
button svg, .carousel-next svg, .carousel-prev svg, .slider-next svg, .slider-prev svg,
.next svg, .prev svg, .tab-button svg, .tab-btn svg {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

button i, .carousel-next i, .carousel-prev i, .slider-next i, .slider-prev i,
.next i, .prev i, .tab-button i, .tab-btn i {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    font-style: normal;
}

button .icon, .carousel-next .icon, .carousel-prev .icon,
.slider-next .icon, .slider-prev .icon, .tab-button .icon {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
}

/* Ensure carousel buttons are clickable even with icons */
.carousel-next, .carousel-prev, .slider-next, .slider-prev,
.next, .prev, .next-btn, .prev-btn {
    cursor: pointer;
    position: relative;
}

.carousel-next *, .carousel-prev *, .slider-next *, .slider-prev *,
.next *, .prev *, .next-btn *, .prev-btn * {
    pointer-events: none;
}

/* Tab button icon fixes */
.tab-button, .tab-btn, .tab {
    cursor: pointer;
    position: relative;
}

.tab-button *, .tab-btn *, .tab * {
    pointer-events: none;
}

/* Ensure icons don't block clicks */
button > svg, button > i, button > .icon,
.carousel-next > svg, .carousel-prev > svg,
.tab-button > svg, .tab-button > i {
    pointer-events: none !important;
}

/* Enhanced: Team grid stabilization */
+ .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
+ @media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
+ @media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* Enhanced: Smooth scroll CSS fallback */
html { scroll-behavior: smooth; }

/* Enhanced: Missing animation classes from JS */
.animate-on-scroll {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}
