:root {
    --teal1: #12706C;
    --teal2: #0B5C57;
    --teal3: #17918B;
    --teal4: #073C39;
    --teal5: #25A9A2;
    --coral1: #E28C82;
    --coral2: #C18A7A;
    --coral3: #B06A5B;
    --brown1: #6B3A25;
    --brown2: #5B1C18;
    --brown3: #8B3C2B;
    --beige1: #D1B89A;
    --beige2: #EFD6CC;
    --grey1: #83756E;
    --grey2: #1A2320;
    --grey3: #25423C;
    --primary-color: #17918B;
    --secondary-color: #E28C82;
    --accent-color: #F5D76E;
    --text-color: #333;
    --text-color-light: #666;
    --light-bg: #F8F9FA;
    --dark-bg: #1A1A1A;
    --border-color: #ddd;
    --gradient-primary: linear-gradient(135deg, #17918B 0%, #1ABC9C 100%);
    --gradient-secondary: linear-gradient(135deg, #E28C82 0%, #F5D76E 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --parallax-speed: 0.5;
    --background-color: #fff;
    --footer-bg: #f8f9fa;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    padding-top: 0 !important; 
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease;
    margin-bottom: 40px;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* This ensures vertical alignment */
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}


.hero {
    height: 100vh;
    display: flex;
    flex-direction: row; /* Two-column layout */
    align-items: center;
    justify-content: center;
    padding: 0 5%; /* Add some horizontal padding */
    background-color: var(--light-bg); /* Light background as in the image */
    position: relative;
    overflow: hidden;
    
}

.hero::before { /* Remove the overlay for the new design */
    content: none;
}

.hero-content {
    max-width: 600px; 
    padding: 2rem; /* Keep some padding */
    background: none;  
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out forwards; 
    text-align: left; 
    margin-right: 3rem; 
}

.hero h1 {
    font-size: 3.8rem; 
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-color); /* Darker text for light background */
    text-shadow: none; /* Remove text shadow */
    line-height: 1.1;
    transition: none; /* No transition on h1 itself */
    animation: none; /* Animation will be on hero-content */
}

.hero h1 .highlight {
    color: var(--primary-color); /* Highlight color */
}

@keyframes fadeInUpTagline {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-tagline {
    margin: 2rem 0 1.5rem 0;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--teal3);
    letter-spacing: 0.02em;
    font-weight: 500;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
    text-align: left;
    display: block;
}
.hero-tagline span {
    display: block;
    margin-bottom: 0.2em;
    opacity: 0;
    animation: fadeInUpTagline 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-tagline span:nth-child(1) {
    animation-delay: 0.2s;
}
.hero-tagline span:nth-child(2) {
    animation-delay: 0.5s;
}
.hero-tagline span:nth-child(3) {
    animation-delay: 0.8s;
}

/* Remove Floating Words Animation styles */
.floating-words {
    display: none; /* Hide floating words */
}

.floating-word {
    display: none; /* Hide floating words */
}

@keyframes float-spread {
    /* Remove or leave empty if not used elsewhere */
}

/* CTA Button */
.hero .cta-button {
    position: relative;
    z-index: 1; /* Ensure button is on top */
    margin-top: 1rem; /* Adjust margin */
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
    border: none;
    cursor: pointer;
}

.hero .cta-button:hover {
    background-color: var(--teal3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.4);
}

.hero-illustration {
    flex: 1; /* Take up remaining space */
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%; /* Control width of illustration column */
    height: 100%; /* Take full height of hero */
    background-image: url('https://via.placeholder.com/600x400/F0F0F0/888888?text=Placeholder+Illustration'); /* Placeholder for the new illustration style */
    background-size: contain; /* Ensure image fits */
    background-position: center;
    background-repeat: no-repeat;
}

/* Adjust the fadeInUp animation if needed, though it should still work */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .hero {
        flex-direction: column; /* Stack content on smaller screens */
        padding: 4rem 1rem; /* More padding for mobile */
        height: auto; /* Auto height on mobile */
    }

    .hero-content {
        margin-right: 0; /* Remove margin on mobile */
        margin-bottom: 2rem; /* Add space below content */
        text-align: center; /* Center text on mobile */
        max-width: 100%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-illustration {
        max-width: 80%; /* Smaller illustration on mobile */
        height: 300px; /* Fixed height for illustration on mobile */
    }
}

/* Feature Sections */
.feature-section {
    padding: 4rem 0;
    background-color: var(--footer-bg);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    margin-top: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    justify-content: center;
}

.service-card {
    flex-shrink: 0;
    min-width: 250px;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
    color: var(--background-color);
}

/* Project Section */
.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.project-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-status {
    margin-top: 1rem;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--teal4); /* Changed to a darker accent color */
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--beige2); /* Changed to a lighter color for contrast */
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--beige1); /* Changed to a lighter color for contrast */
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Added text-decoration to transition */
}

.footer-section ul li a:hover {
    color: var(--primary-color); /* Kept primary color for hover effect */
    text-decoration: underline; /* Added underline on hover */
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--grey3); /* Adjusted border color for contrast */
    color: var(--beige1); /* Changed text color for contrast */
}

/* Animations */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .project-content {
        grid-template-columns: 1fr;
    }

    .section-content {
        padding: 2rem 1rem;
    }

    .services-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-card {
        min-width: unset;
        width: 100%;
    }
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 1.5rem 0 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

/* Coming Soon Page */
.coming-soon {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background-color);
}

.coming-soon-content {
    max-width: 600px;
    padding: 2rem;
}

.coming-soon-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
    border: none;
    cursor: pointer;
    margin-top: 2.5rem;
}

.cta-button:hover {
    background-color: var(--teal3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    gap: 2.2rem;
}
.mobile-menu .nav-links a {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    margin: 0;
    transition: color 0.2s;
}
.mobile-menu .nav-links a:hover {
    color: var(--primary-color);
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu .nav-links a {
    font-size: 1.5rem;
    margin: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

.mobile-menu.active .nav-links a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu .nav-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu .nav-links a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu .nav-links a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu .nav-links a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu .nav-links a:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu .nav-links a:nth-child(6) { transition-delay: 0.6s; }
.mobile-menu .nav-links a:nth-child(7) { transition-delay: 0.7s; }

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--footer-bg);
    margin-top: 4rem;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs span {
    margin: 0 0.5rem;
    color: var(--text-color);
}

.current-page {
    font-weight: 700;
}

/* Sections */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(23, 145, 139, 0.1) 0%, rgba(26, 188, 156, 0.1) 100%);
    overflow: hidden;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%2317918B" fill-opacity="0.1"/></svg>');
    opacity: 0.5;
    z-index: 0;
    transform: translateZ(-1px) scale(2);
}

.hero-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content .floating-words span {
    font-size: 1.5em;
    margin: 0 10px;
    display: inline-block;
    white-space: nowrap;
}

.hero-content .tagline {
    font-size: 1.8em;
    margin-top: 1em;
    margin-bottom: 2em;
    font-weight: 500;
    color: var(--accent-color);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.2rem;
    color: var(--grey2);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.section-title:hover::after {
    width: 150px;
    background: var(--gradient-secondary);
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    color: var(--teal2);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--gradient-primary);
    color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    text-align: left;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.contact-details h4,
.contact-email h4 {
    color: var(--text-color);
    font-size: 1.2em;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.location-info p {
    margin-bottom: 0.5rem;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.2);
    outline: none;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .cta-button {
    align-self: flex-start;
    padding: 0.8em 2.5em;
    font-size: 1.1em;
    border-radius: 30px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--button-shadow);
}

.contact-form .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--button-hover-shadow);
    opacity: 0.9;
}

#formMessage {
    text-align: center;
    font-weight: 600;
}

/* Footer Styles */
.footer {
    background-color: var(--light-bg);
    padding: 3rem 1rem;
    color: var(--text-color);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 180px;
    margin: 1rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1em;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-color-light);
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9em;
    color: var(--text-color-light);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

/* Mission Section */
.mission {
    padding: 6rem 2rem;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="white" fill-opacity="0.1"/></svg>');
    opacity: 0.5;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.mission p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.mission p:nth-child(2) { animation-delay: 0.2s; }
.mission p:nth-child(3) { animation-delay: 0.4s; }
.mission p:nth-child(4) { animation-delay: 0.6s; }

/* Locations Section */
.locations {
    padding: 6rem 2rem;
    background: var(--gradient-secondary);
    color: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Remove hover effect for location cards */
.location-card:hover {
    background: inherit !important;
    color: inherit !important;
    box-shadow: inherit !important;
    cursor: default !important;
}

.location-card h3 {
    color: var(--teal2);
    margin-bottom: 1rem;
}

/* Founder Section */
.founder-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.founder-content {
    display: flex;
    flex-direction: column; /* Stack on small screens */
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 992px) {
    .founder-content {
        flex-direction: row; /* Side-by-side on larger screens */
        align-items: flex-start; /* Align items to the top */
    }
}

.founder-image-wrapper {
    flex-shrink: 0;
    width: 350px;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover; /* Ensure background image covers the area */
    background-position: center; /* Center the background image */
}

.founder-bg-image {
    background-image: url('../images/_RO11337.jpg');
    background-repeat: no-repeat;
}

.founder-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.founder-bio-text {
    flex-grow: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.founder-bio-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.founder-bio-text h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.founder-bio-text p {
    margin-bottom: 1.5rem;
}

.founder-bio-text p:last-of-type {
    margin-bottom: 2rem; /* Add more space before the button */
}

.personal-site-button {
    display: inline-block;
    margin-top: 1rem; /* Space from the text above */
}

@media (max-width: 768px) {
    .founder-section {
        padding: 3rem 1rem;
    }

    .founder-image-wrapper {
        width: 280px;
        height: 350px;
    }

    .founder-bio-text {
        font-size: 1rem;
    }

    .founder-bio-text h3 {
        font-size: 1.5rem;
    }

    .founder-bio-text h4 {
        font-size: 1.2rem;
    }
}

/* Projects Section */
.projects {
    padding: 6rem 2rem;
    background: var(--gradient-primary);
    color: white;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.project-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.2);
}

.project-card h3 {
    color: var(--teal2);
    margin-bottom: 1rem;
}

/* Press Section */
.press {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.press-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.press-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.press-card:hover::before {
    transform: scaleX(1);
}

.press-card .date {
    color: var(--teal2);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.press-card h3 {
    color: var(--grey2);
    margin-bottom: 1rem;
}

.press-card .source {
    color: var(--coral1);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
    }

    .founder-image-wrapper {
        width: 280px;
        height: 350px;
    }

    .press-grid {
        grid-template-columns: 1fr;
    }

    .floating-word {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        min-width: unset;
        width: 100%;
        padding: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Enhanced Form Message */
#formMessage {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Enhanced Personal Site Link */
.personal-site {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
    transition: var(--transition);
}

.personal-site::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.personal-site:hover {
    transform: translateY(-2px);
}

.personal-site:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
}

/* Quote Section Styles */
.quote-section {
    padding: 8rem 2rem;
    background-color: var(--light-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
    pointer-events: none;
}

.quote-section .section-title {
    margin-bottom: 5rem;
    position: relative;
    display: inline-block;
    font-size: 2.8em;
    color: var(--primary-color);
    text-shadow: var(--text-shadow);
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.quote-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.quote-card:hover::before {
    opacity: 0.1;
}

.quote-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.quote-card h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

.quote-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 5px;
}

.quote-card p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.quote-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    flex-grow: 1;
}

.quote-card ul li {
    font-size: 1em;
    color: var(--text-color-dark);
    margin-bottom: 0.9rem;
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.5;
}

.quote-card ul li::before {
    content: '\2713';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.1em;
}

.quote-card .custom-quote-text {
    font-style: italic;
    font-weight: 600;
    color: var(--accent-color);
    text-align: center;
    margin-top: 4rem;
    font-size: 1.3em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive adjustments for quote section */
@media (max-width: 1024px) {
    .quote-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .quote-section {
        padding: 4rem 1rem;
    }

    .quote-section .section-title {
        font-size: 2.2em;
        margin-bottom: 3rem;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quote-card {
        padding: 2.5rem 1.5rem;
    }

    .quote-card h3 {
        font-size: 1.6em;
        margin-bottom: 1.5rem;
    }

    .quote-card ul li {
        font-size: 0.95em;
        padding-left: 1.6rem;
    }

    .quote-card .custom-quote-text {
        font-size: 1.1em;
        margin-top: 2.5rem;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 2rem 1rem;
    background-color: var(--light-bg);
    text-align: left;
    font-size: 1em;
    color: var(--text-color-light);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
}

.breadcrumbs a {
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span {
    margin: 0 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.breadcrumbs .current-page {
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive adjustments for breadcrumbs */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 1.5rem 1rem;
        font-size: 0.9em;
        flex-wrap: wrap;
        justify-content: center;
    }

    .breadcrumbs span {
        margin: 0 0.3rem;
    }
}

/* New Feature Section Styles for Home Page */
.feature-section:nth-child(even) {
    background-color: white;
}

.feature-section .section-content {
    max-width: 900px;
    margin: 0 auto;
}

.feature-section .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.feature-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.feature-section .cta-button {
    display: inline-block;
    padding: 0.8em 2em;
    font-size: 1em;
    text-decoration: none;
    border-radius: 30px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--button-shadow);
}

.feature-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--button-hover-shadow);
    opacity: 0.9;
}

/* SVG Icon Styles for Services Page */
.service-card .icon-placeholder {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.8rem auto;
    background-color: var(--light-bg);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .icon-placeholder {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.service-card .icon-placeholder svg {
    fill: var(--primary-color);
    width: 45%;
    height: 45%;
}

/* Responsive adjustments for new feature sections */
@media (max-width: 768px) {
    .feature-section {
        padding: 4rem 1rem;
    }

    .feature-section .section-title {
        font-size: 2em;
    }

    .feature-section p {
        font-size: 1em;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-content .floating-words span {
        font-size: 1.2em;
    }

    .hero-content .tagline {
        font-size: 1.4em;
    }

    .service-card .icon-placeholder {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--light-bg);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-section.animate.active {
    opacity: 1;
    transform: translateY(0);
}

.pricing-intro {
    font-size: 1.1rem;
    color: var(--text-color-light);
    max-width: 800px;
    margin: 1rem auto 3rem auto;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.bonus-intensive {
    background: linear-gradient(160deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.bonus-intensive .tier-title,
.pricing-card.bonus-intensive .tier-description,
.pricing-card.bonus-intensive .tier-features li {
    color: #fff;
}

.tier-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.tier-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.pricing-card:hover .tier-title::after {
    width: 80px;
}

.tier-description {
    font-size: 1rem;
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    min-height: 50px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.tier-features li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.tier-features li::before {
    content: '\2713';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-card.bonus-intensive .tier-features li::before {
    color: #fff;
}

.custom-quote-note {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 3rem;
    color: var(--primary-color);
}

/* Responsive adjustments for pricing section */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem;
    }

    .tier-title {
        font-size: 1.6rem;
    }

    .tier-description {
        font-size: 0.9rem;
    }

    .tier-features li {
        font-size: 0.9rem;
    }

    .custom-quote-note {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 3rem 1rem;
    }

    .pricing-intro {
        font-size: 1rem;
    }

    .tier-title {
        font-size: 1.4rem;
    }
}

/* Interactive Services Section */
.interactive-services-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--light-bg);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.interactive-services-section.animate.active {
    opacity: 1;
    transform: translateY(0);
}

.interactive-services-section .section-title {
    margin-bottom: 2.5rem;
}

.service-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-tab {
    position: relative;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background-color: #fff;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    text-align: center;
    flex-grow: 1;
    z-index: 1;
    overflow: hidden;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--teal4);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: inherit;
}

.category-tab:hover:not(.active) {
    color: var(--teal4);
}

.category-tab.active {
    color: #fff;
    border-color: var(--teal4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-tab.active::before {
    opacity: 1;
}

.service-content-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    text-align: left;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.service-content-area.animate.active {
    opacity: 1;
    transform: translateY(0);
}

.image-carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    min-height: 400px; /* Prevents container collapse during transition */
}

/* Add transitions for smooth fade of service content */
.carousel-image,
.service-title,
.service-description,
.service-content-area .cta-button {
    transition: opacity 0.35s ease-in-out;
    /* Promote to own layer to prevent flash */
    will-change: opacity;
    transform: translateZ(0);
}

.carousel-image {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.arrow:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.arrow svg {
    width: 22px;
    height: 22px;
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

.content-details {
    padding-left: 1.5rem;
    flex: 1;
}

.image-counter {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin-bottom: 0.5rem;
    display: block;
}

.service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: var(--text-color-light);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.service-content-area .cta-button {
    margin-top: 1.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
    padding: 0.7rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.service-content-area .cta-button:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 145, 139, 0.2);
}

/* Main Navigation Link Hover Effect */
.nav-links a {
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Responsive adjustments for interactive services section */
@media (max-width: 1024px) {
    .service-content-area {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .content-details {
        padding-left: 0;
        text-align: center;
    }

    .carousel-image {
        height: 300px;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .interactive-services-section {
        padding: 3rem 1rem;
    }

    .service-categories {
        gap: 1rem;
    }

    .category-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .service-content-area {
        padding: 1.5rem;
    }

    .carousel-image {
        height: 250px;
    }

    .service-title {
        font-size: 1.8rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .service-content-area .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .category-tab {
        width: 100%;
    }

    .carousel-image {
        height: 200px;
    }

    .service-title {
        font-size: 1.6rem;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.why-choose-us-section .section-title {
    margin-bottom: 3rem;
    color: var(--teal4);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.cards-grid .card {
    background-color: var(--background-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    flex: 1 1 280px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.cards-grid .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cards-grid .card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--grey3);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.cards-grid .card .highlight {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--coral1);
    margin-bottom: 0.5rem;
}

.cards-grid .card p {
    font-size: 1rem;
    color: var(--text-color-light);
    line-height: 1.7;
}

/* Global Impact Section */
.global-impact-section {
    background: linear-gradient(135deg, var(--teal4) 0%, var(--teal2) 100%);
    color: #fff;
    padding: 6rem 2rem;
}

.global-impact-section .section-title {
    color: #fff;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Success Stories Section (Testimonials) */
.success-stories-section {
    background-color: var(--background-color);
    padding: 6rem 2rem;
}

.success-stories-section .section-title {
    margin-bottom: 3.5rem;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-card .author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive Adjustments for New Sections */
@media (max-width: 1024px) {
    .cards-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section,
    .global-impact-section,
    .success-stories-section {
        padding: 4rem 1rem;
    }

    .cards-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid .card,
    .stat-item,
    .testimonial-card {
        padding: 2rem;
    }

    .cards-grid .card h3 {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonial-card .quote {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us-section .section-title,
    .global-impact-section .section-title,
    .success-stories-section .section-title {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 0.9rem;
    }
}

/* About Us Home Section */
.about-us-home-section {
    background-color: var(--light-bg);
    padding: 6rem 2rem;
    text-align: center;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.about-us-home-section.animate.active {
    opacity: 1;
    transform: translateY(0);
}

.about-us-home-section .section-title {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-us-home-section .intro-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    color: var(--text-color-light);
}

.about-us-home-section .cta-button {
    margin-top: 1rem;
}

/* Why Choose Us Section - Grid Adjustment for 4 cards */
@media (min-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 769px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Press Mentions Section */
.press-mentions-section {
    background-color: var(--background-color);
    padding: 6rem 2rem;
    text-align: center;
}

.press-mentions-section .section-title {
    margin-bottom: 3.5rem;
    color: var(--primary-color);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.press-card {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.press-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    background-color: var(--primary-color);
    color: #fff;
}

.press-card:hover h3,
.press-card:hover .source,
.press-card:hover .date {
    color: #fff;
}

.press-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.press-card .source {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-color-light);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.press-card .date {
    font-size: 0.85rem;
    color: var(--grey1);
    transition: color 0.3s ease;
}

/* Responsive Adjustments for Press Mentions */
@media (max-width: 1024px) {
    .press-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .press-mentions-section {
        padding: 4rem 1rem;
    }

    .press-grid {
        grid-template-columns: 1fr;
    }

    .press-card {
        padding: 2rem;
    }

    .press-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .press-mentions-section .section-title {
        font-size: 1.8rem;
    }
}

/* Global Presence Section */
.global-presence-section {
    background-color: var(--teal4);
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
}

.global-presence-section .section-title {
    margin-bottom: 2rem;
    color: #fff;
}

.global-presence-section .intro-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.map-placeholder {
    margin: 3rem auto;
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.map-placeholder:hover {
    transform: scale(1.02);
}

.world-map-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(50%) brightness(1.2);
}

.presence-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0 auto;
}

.presence-stat-item {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.presence-stat-item:hover {
    transform: translateY(-7px);
    background-color: rgba(255, 255, 255, 0.25);
}

.presence-stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.presence-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive Adjustments for Global Presence Section */
@media (max-width: 1024px) {
    .map-placeholder {
        margin: 2rem auto;
    }

    .presence-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .global-presence-section {
        padding: 4rem 1rem;
    }

    .presence-stats-grid {
        grid-template-columns: 1fr;
    }

    .presence-stat-item {
        padding: 1.5rem;
    }

    .presence-stat-number {
        font-size: 2.2rem;
    }

    .global-presence-section .intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .global-presence-section .section-title {
        font-size: 1.8rem;
    }

    .map-placeholder {
        margin: 1.5rem auto;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--footer-bg);
    padding: 6rem 2rem;
    text-align: center;
}

.testimonials-section .section-title {
    margin-bottom: 3.5rem;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.avatar-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 0 5px rgba(var(--primary-color-rgb), 0.2);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.testimonial-card .author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive Adjustments for Testimonials Section */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-card .quote {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section .section-title {
        font-size: 1.8rem;
    }

    .avatar-wrapper {
        width: 70px;
        height: 70px;
    }
}

.hero-about {
    background-color: var(--light-bg);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-about .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.1;
}

.hero-about .intro-text {
    font-size: 1.5rem;
    color: var(--text-color-light);
    margin-bottom: 2.5rem;
}

.our-story-section,
.our-mission-section {
    padding: 5rem 2rem;
    background-color: var(--background-color);
}

.our-story-section .content-wrapper,
.our-mission-section .content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.our-mission-section .content-wrapper.reverse-order {
    flex-direction: row-reverse;
}

.our-story-section .text-content,
.our-mission-section .text-content {
    flex: 1;
}

.our-story-section .text-content p,
.our-mission-section .text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.our-story-section .image-placeholder,
.our-mission-section .image-placeholder {
    flex: 1;
    min-width: 400px;
    height: 350px;
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.our-story-section .image-placeholder img,
.our-mission-section .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.6s ease-out;
}

.our-story-section .image-placeholder img.active,
.our-mission-section .image-placeholder img.active {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .our-story-section .content-wrapper,
    .our-mission-section .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .our-mission-section .content-wrapper.reverse-order {
        flex-direction: column;
    }

    .our-story-section .image-placeholder,
    .our-mission-section .image-placeholder {
        min-width: unset;
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-about .section-title {
        font-size: 2.8rem;
    }

    .hero-about .intro-text {
        font-size: 1.2rem;
    }

    .our-story-section,
    .our-mission-section {
        padding: 3rem 1rem;
    }

    .our-story-section .content-wrapper,
    .our-mission-section .content-wrapper {
        gap: 2rem;
    }

    .our-story-section .image-placeholder,
    .our-mission-section .image-placeholder {
        height: 250px;
    }

    .our-story-section .text-content p,
    .our-mission-section .text-content p {
        font-size: 1rem;
    }
}

/* Our Values Section */
.our-values-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.our-values-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.our-values-section .card {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-values-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.our-values-section .card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.our-values-section .card h3 .highlight {
    color: var(--secondary-color);
}

.our-values-section .card p {
    font-size: 1rem;
    color: var(--text-color-light);
}

@media (max-width: 768px) {
    .our-values-section {
        padding: 3rem 1rem;
    }

    .our-values-section .cards-grid {
        grid-template-columns: 1fr;
    }

    .our-values-section .card {
        padding: 2rem;
    }
}

/* Our Team Section */
.our-team-section {
    padding: 5rem 2rem;
    background-color: var(--background-color);
}

.our-team-section .intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-image {
    transform: scale(1.05);
}

.team-member-card h3 {
    font-size: 1.7rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-member-card .title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member-card .personal-site {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--teal2);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.team-member-card .personal-site:hover {
    color: var(--teal3);
}

@media (max-width: 768px) {
    .our-team-section {
        padding: 3rem 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member-card {
        padding: 1.5rem;
    }

    .team-member-image {
        width: 120px;
        height: 120px;
    }
}

/* Global Presence Section */
.global-presence-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
    text-align: center;
}

.global-presence-section .intro-text {
    font-size: 1.2rem;
    color: var(--text-color-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    width: 100%;
    max-width: 900px;
    height: 450px;
    background-color: #e0e0e0; /* A light grey background for the map */
    margin: 3rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.world-map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.presence-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.presence-stat-item {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.presence-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.presence-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.presence-stat-label {
    font-size: 1.1rem;
    color: var(--text-color-light);
}

@media (max-width: 992px) {
    .map-placeholder {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .global-presence-section {
        padding: 3rem 1rem;
    }

    .presence-stats-grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        height: 300px;
    }

    .presence-stat-item {
        padding: 1.5rem;
    }

    .presence-stat-number {
        font-size: 2.5rem;
    }

    .global-presence-section .intro-text {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 2rem;
    background-color: var(--background-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.avatar-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    border: 3px solid var(--primary-color);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .avatar-wrapper {
        width: 80px;
        height: 80px;
    }

    .testimonial-card .quote {
        font-size: 1rem;
    }
}

.hover-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.hover-link:hover {
    color: var(--teal3);
    text-decoration: underline;
}

/* Home Page Navbar */
.home-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: background 0.3s;
}
.home-navbar .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.2rem 4vw 1.2rem 4vw;
    max-width: 1400px;
    margin: 0 auto;
}
.home-navbar .logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.home-navbar .nav-links {
    display: flex;
    gap: 2.5rem;
}
.home-navbar .nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}
.home-navbar .nav-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Home Hero Section */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 0 0 4vw;
    box-sizing: border-box;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24, 36, 34, 0.38);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 16vh;
    max-width: 700px;
    color: #fff;
    text-align: left;
    animation: fadeInUp 1.2s cubic-bezier(0.4,0,0.2,1);
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.2rem;
    color: #fff;
    letter-spacing: -0.01em;
}
.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.2rem;
    color: #f5f5f5;
    max-width: 90%;
}
.hero-buttons {
    display: flex;
    gap: 1.2rem;
}
.cta-button.primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.95rem 2.3rem;
    border-radius: 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(23,145,139,0.13);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.cta-button.primary:hover {
    background: var(--teal2);
    box-shadow: 0 6px 24px rgba(23,145,139,0.18);
}
.cta-button.secondary {
    background: rgba(255,255,255,0.13);
    color: #fff;
    border: 1.5px solid #fff;
    padding: 0.95rem 2.3rem;
    border-radius: 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.cta-button.secondary:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Hero Stats Bar */
.hero-stats-bar {
    position: absolute;
    left: 4vw;
    bottom: 4vh;
    display: flex;
    gap: 4vw;
    z-index: 2;
    background: rgba(255,255,255,0.10);
    border-radius: 1.5rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    backdrop-filter: blur(2px);
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 120px;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}
.stat-label {
    font-size: 1rem;
    color: #f5f5f5;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .home-navbar .nav-content { padding: 1.2rem 2vw 0.7rem 2vw; }
    .home-hero { padding-left: 2vw; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-stats-bar { left: 2vw; padding: 0.7rem 1.2rem; gap: 2vw; }
    .stat-item { min-width: 80px; }
    .stat-number { font-size: 1.2rem; }
}
@media (max-width: 600px) {
    .home-navbar .nav-content { flex-direction: column; gap: 0.7rem; }
    .home-hero { min-height: 80vh; padding-left: 0.5vw; }
    .hero-content { margin-top: 10vh; }
    .hero-content h1 { font-size: 1.3rem; }
    .hero-stats-bar { flex-direction: column; left: 0.5vw; bottom: 1vh; padding: 0.5rem 0.7rem; gap: 0.7rem; }
}

/* Clean Home Navbar */
.clean-navbar {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.clean-navbar .nav-content {
    padding: 1.2rem 4vw 0.7rem 4vw;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.clean-navbar .logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.clean-navbar .nav-links {
    display: flex;
    gap: 2.5rem;
}
.clean-navbar .nav-links a {
    color: #f5f5f5;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none !important; /* Ensure no default underline */
    transition: color 0.2s;
}
.clean-navbar .nav-links a:hover {
    color: var(--primary-color);
    text-decoration: none !important; /* Ensure no default underline on hover */
}

/* Clean Hero Section */
.clean-hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    filter: blur(15px);
    transition: filter 1s ease-in-out;
}

.clean-hero.loaded {
    filter: blur(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 36, 34, 0.48);
    z-index: 1;
}

.hero-center-box {
    position: relative;
    z-index: 2;
    margin-top: 16vh;
    max-width: 700px;
    width: 100%;
    background: rgba(24, 36, 34, 0.38);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    border: 1.5px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(2px);
}

.hero-center-box h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.2rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.2rem;
    color: #f5f5f5;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content:center;
}

.cta-button.primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.95rem 2.3rem;
    border-radius: 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(23,145,139,0.13);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.cta-button.primary:hover {
    background: var(--teal2);
    box-shadow: 0 6px 24px rgba(23,145,139,0.18);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.13);
    color: #fff;
    border: 1.5px solid #fff;
    padding: 0.95rem 2.3rem;
    border-radius: 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.cta-button.secondary:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Clean Hero Stats Bar */
.clean-stats-bar {
    position: relative;
    z-index: 2;
    margin-top: 2.5rem;
    display: flex;
    gap: 3vw;
    background: rgba(255,255,255,0.10);
    border-radius: 1.5rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    backdrop-filter: blur(2px);
    justify-content: center;
}

.clean-stats-bar .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.clean-stats-bar .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.clean-stats-bar .stat-label {
    font-size: 1rem;
    color: #f5f5f5;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .clean-navbar .nav-content { padding: 1rem 2vw 0.5rem 2vw; }
    .hero-center-box { padding: 2rem 1rem; }
    .hero-center-box h1 { font-size: 2rem; }
    .clean-stats-bar { padding: 0.7rem 1.2rem; gap: 2vw; }
    .clean-stats-bar .stat-item { min-width: 80px; }
    .clean-stats-bar .stat-number { font-size: 1.2rem; }
}

@media (max-width: 600px) {
    .clean-navbar .nav-content { flex-direction: column; gap: 0.7rem; }
    .clean-hero { min-height: 80vh; }
    .hero-center-box { margin-top: 8vh; padding: 1rem 0.5rem; }
    .hero-center-box h1 { font-size: 1.1rem; }
    .clean-stats-bar { flex-direction: column; margin-top: 1.2rem; padding: 0.5rem 0.7rem; gap: 0.7rem; }
}


.clean-navbar {
    background: transparent !important;
    box-shadow: none !important;
    transition: background 0.3s, box-shadow 0.3s;
}

.clean-navbar.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07) !important;
}

.clean-navbar .nav-links a {
    color: #f5f5f5;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.clean-navbar .nav-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.clean-navbar.scrolled .nav-links a {
    color: var(--text-color);
    text-decoration: none !important; /* Ensure no default underline */
}

.clean-navbar.scrolled .nav-links a:hover {
    color: var(--primary-color);
    text-decoration: none !important; /* Ensure no default underline on hover */
}

.clean-navbar .logo {
    color: var(--primary-color);
    transition: color 0.2s;
}

.clean-navbar.scrolled .logo {
    color: var(--primary-color);
}

.brand-highlight {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .hero-center-box {
        padding: 1.5rem 0.7rem;
        margin-top: 8vh;
        max-width: 98vw;
        text-align: center;
    }
    .hero-center-box h1 {
        font-size: 2rem;
        word-break: break-word;
    }
    .hero-subheadline, .hero-tagline {
        font-size: 1.1rem;
        text-align: center;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .cta-button.primary, .cta-button.secondary {
        width: 100%;
        max-width: 320px;
        font-size: 1.1rem;
        margin: 0 auto;
    }
    .clean-navbar .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block !important;
    }
    .clean-navbar .logo {
        display: none;
    }
    .clean-navbar .nav-content {
        justify-content: flex-end;
        position: relative;
    }
    .mobile-menu-btn {
        display: block !important;
        position: absolute;
        right: 0.7rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
    }
}

@media (max-width: 600px) {
    .hero-center-box {
        padding: 1rem 0.2rem;
        margin-top: 4vh;
        max-width: 100vw;
        text-align: center;
    }
    .hero-center-box h1 {
        font-size: 1.4rem;
        word-break: break-word;
    }
    .hero-subheadline, .hero-tagline {
        font-size: 0.98rem;
        text-align: center;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
    }
    .cta-button.primary, .cta-button.secondary {
        width: 100%;
        max-width: 120px;
        font-size: 0.5rem;
        margin: 0 auto;
    }
    .clean-navbar .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block !important;
    }
    .mobile-menu-btn {
        margin-top: 18px !important;
        margin-right: 18px !important;
    }
}

/* Always hide mobile menu button on desktop */
@media (min-width: 901px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

@media (min-width: 901px) {
  .clean-navbar.beyond-hero {
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07) !important;
  }
  .clean-navbar.beyond-hero .nav-links a {
    color: var(--text-color) !important;
  }
  .clean-navbar.beyond-hero .nav-links a:hover {
    color: var(--primary-color) !important;
  }
  .clean-navbar.beyond-hero .logo {
    color: var(--primary-color) !important;
  }
}

/* Typing Animation Styles */
.typing-container {
    display: inline-block;
    position: relative;
    min-height: 60px;
    width: 100%;
    text-align: center;
}

.typing-text {
    border-right: 3px solid #17918B;
    white-space: nowrap;
    overflow: hidden;
    font-size: 2.5em;
    color: #17918B;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes blink {
    0%, 100% {
        border-color: transparent;
    }
    50% {
        border-color: #17918B;
    }
}

.typing-text.typing {
    animation: blink 0.75s step-end infinite;
}

.typing-text.paused {
    border-right-color: transparent;
}

@media (max-width: 768px) {
    .typing-text {
        font-size: 1.8em;
    }
    
    .typing-container {
        min-height: 45px;
    }
}

@media (max-width: 480px) {
    .typing-text {
        font-size: 1.5em;
    }
    
    .typing-container {
        min-height: 40px;
    }
}

.oji-svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.oji-svg-container svg {
    width: 110px;
    height: 60px;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    background: #181A1B;
    padding: 6px 12px;
}

@media (max-width: 600px) {
    .oji-svg-container svg {
        width: 80px;
        height: 44px;
        padding: 4px 6px;
    }
    .oji-svg-container {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
}

.locations-section {
    margin: 4rem 0 2rem 0;
    padding: 2.5rem 0 1.5rem 0;
    background: var(--light-bg);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.07);
    text-align: center;
}

.locations-section .section-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 0.01em;
}

.locations-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.location-card {
    background: #181A1B;
    color: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    padding: 2rem 2.2rem 1.5rem 2.2rem;
    min-width: 220px;
    max-width: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
    opacity: 0;
    transform: translateY(30px);
}

.locations-section.animate .location-card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.location-card:hover {
    transform: translateY(-8px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px 0 rgba(23,145,139,0.18);
}

.location-flag {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
}

.location-country {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    letter-spacing: 0.01em;
}

.location-company {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--teal5);
    letter-spacing: 0.01em;
}

@media (max-width: 900px) {
    .locations-grid {
        gap: 1.2rem;
    }
    .location-card {
        min-width: 170px;
        padding: 1.2rem 1rem 1rem 1rem;
    }
}

@media (max-width: 600px) {
    .locations-section {
        padding: 1.2rem 0 0.5rem 0;
        margin: 2rem 0 1rem 0;
    }
    .locations-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .location-card {
        width: 90%;
        min-width: unset;
        max-width: unset;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
}

.contact-section.redesigned-section {
    background: var(--light-bg);
    border-radius: 18px;
    box-shadow: none;
    padding: 2.5rem 0 2rem 0;
    margin: 2rem 0 2rem 0;
}

.contact-flex {
    display: flex;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: center;
}

.contact-info-panel {
    background: #232526;
    color: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    min-width: 220px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    border: 1.5px solid #22292f0d;
}

.contact-info-panel h2 {
    font-size: 1.12rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    color: var(--teal3);
    letter-spacing: 0.01em;
}

.contact-email-list {
    width: 100%;
    margin-bottom: 1.1rem;
}

.contact-email-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
    font-size: 1rem;
    flex-wrap: wrap;
    line-height: 1.5;
}

.contact-email-icon {
    font-size: 1.15rem;
    margin-top: 0.1em;
}

.contact-email-label {
    font-weight: 500;
    color: var(--teal3);
    font-size: 1rem;
    margin-right: 0.2em;
}

.contact-email-item a {
    color: var(--teal5);
    text-decoration: underline dotted;
    font-weight: 400;
    transition: color 0.2s;
    word-break: break-all;
    font-size: 0.98rem;
}

.contact-email-item a:hover {
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.92rem;
    color: #bfc3c7;
    margin-top: 0.2rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

@media (max-width: 600px) {
    .contact-info-panel {
        padding: 1.1rem 0.7rem 1.1rem 0.7rem;
        border-radius: 16px;
        max-width: 100%;
    }
    .contact-info-panel h2 {
        font-size: 1.01rem;
    }
    .contact-email-item {
        font-size: 0.97rem;
        margin-bottom: 0.9rem;
    }
    .contact-email-label {
        font-size: 0.97rem;
    }
    .contact-note {
        font-size: 0.89rem;
    }
}

.beautiful-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(23,145,139,0.07);
    padding: 2.2rem 2rem 1.5rem 2rem;
    min-width: 320px;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.beautiful-form .form-group {
    position: relative;
    margin-bottom: 1.2rem;
}

.beautiful-form input,
.beautiful-form textarea {
    width: 100%;
    padding: 1.1rem 1rem 0.7rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    background: #f8f9fa;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: none;
}

.beautiful-form input:focus,
.beautiful-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px 0 rgba(23,145,139,0.10);
    background: #fff;
}

.beautiful-form label {
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    color: #888;
    font-size: 1rem;
    pointer-events: none;
    background: transparent;
    transition: 0.2s cubic-bezier(0.4,0,0.2,1);
}

.beautiful-form input:focus + label,
.beautiful-form input:not(:placeholder-shown) + label,
.beautiful-form textarea:focus + label,
.beautiful-form textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.88rem;
    color: var(--primary-color);
    background: #fff;
    padding: 0 0.3rem;
    border-radius: 6px;
}

.beautiful-form textarea {
    min-height: 110px;
    max-height: 220px;
}

.beautiful-form .cta-button {
    margin-top: 0.5rem;
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-radius: 50px;
}

@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .contact-info-panel, .beautiful-form {
        min-width: unset;
        max-width: unset;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-section.redesigned-section {
        padding: 0.5rem 0 0.5rem 0;
        margin: 0.5rem 0 0.5rem 0;
        box-shadow: none;
    }
    .contact-flex {
        gap: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0 0.5rem;
    }
    .contact-info-panel, .beautiful-form {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        border-radius: 14px;
        box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
        width: 100%;
        margin: 0 auto;
    }
    .contact-info-panel h2 {
        font-size: 1.08rem;
    }
    .contact-email-item {
        font-size: 0.98rem;
    }
    .contact-note {
        font-size: 0.93rem;
    }
    .beautiful-form {
        min-width: unset;
        max-width: unset;
        width: 100%;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        border-radius: 14px;
    }
    .beautiful-form .cta-button {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
}

@media (max-width: 600px) {
    .hero-buttons .cta-button {
        max-width: 65vw;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        display: block;
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.service-content-area.fade-in {
    animation: fadeInService 0.5s ease forwards;
}

.service-content-area.fade-out {
    animation: fadeOutService 0.5s ease forwards;
}

@keyframes fadeInService {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOutService {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

/* Loader Overlay for Service Section */
.service-content-container {
    position: relative;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader-overlay.active {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-color-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Blur effect for content when loading */
.service-content-area.loading {
    filter: blur(4px);
    transition: filter 0.3s ease;
}

/* Media query for tablets and smaller devices */
@media (max-width: 1024px) {
    .service-content-area {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .image-carousel {
        min-height: unset; /* Let image height dictate container height */
    }

    .content-details {
        text-align: center;
        max-width: 90%;
    }

    .carousel-image {
        height: auto; /* Allow image to scale proportionally */
        max-width: 100%;
    }

    .service-title {
        font-size: 1.8rem;
        font-size: 1rem;
    }
}

/* Media query specifically for mobile phones */
@media (max-width: 768px) {
    .interactive-services-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .service-categories {
        flex-wrap: wrap;
    }

    .category-tab {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    .service-content-area {
        flex-direction: column;
        padding: 0;
    }

    .carousel-image {
        height: auto;
    }

    .arrow {
        width: 40px;
        height: 40px;
        left: 15px;
    }

    .right-arrow {
        left: auto; /* Unset the left positioning */
        right: 15px;
    }

    .service-title {
        font-size: 1.5rem;
        font-size: 1rem;
    }
}

/* Cookie Consent Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1100px;
    background-color: #fff;
    color: var(--text-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 15px;
    z-index: 2000;
    display: none;
    animation: slideUp 0.5s 0.5s forwards ease-out;
    visibility: hidden;
}

#cookie-banner.visible {
    display: block;
    visibility: visible;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

#cookie-banner h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

#cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif; /* Ensure font consistency */
}

.cookie-btn.primary {
    background-color: var(--primary-color);
    color: #fff;
}
.cookie-btn.primary:hover {
    background-color: var(--teal2);
    transform: translateY(-2px);
}

.cookie-btn.secondary {
    background-color: #fff;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}
.cookie-btn.secondary:hover {
    background-color: #f5f5f5;
    border-color: #aaa;
}


@keyframes slideUp {
    from { transform: translateX(-50%) translateY(100%); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    #cookie-banner {
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 1.5rem;
    }
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .clean-navbar .nav-content,
    .home-navbar .nav-content {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0 !important;
        padding-left: 2vw;
        padding-right: 2vw;
    }
    .clean-navbar .logo,
    .home-navbar .logo {
        font-size: 1.5rem;
        padding: 0.5rem 0;
    }
    .mobile-menu-btn {
        margin-top: 0 !important;
        margin-right: 0 !important;
    }
}

/* Remove hover effect for about us cards */
.cards-grid .card:hover,
.our-values-section .card:hover {
    background: inherit !important;
    color: inherit !important;
    box-shadow: inherit !important;
    cursor: default !important;
}

@media (max-width: 900px) and (min-width: 769px) {
  .navbar .nav-links,
  .home-navbar .nav-links,
  .clean-navbar .nav-links {
    display: none;
  }
  .navbar .mobile-menu-btn,
  .home-navbar .mobile-menu-btn,
  .clean-navbar .mobile-menu-btn {
    display: block !important;
  }
}

/* --- Custom Plus Icon List for Service Pages --- */
.service-section .offer-flex {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.service-section .offer-flex .service-img-animated {
    flex: 1 1 45%;
    max-width: 400px;
    margin: 0;
}

.service-section .offer-flex ul {
    flex: 1 1 55%;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-section .offer-flex li {
    position: relative;
    padding-left: 2.2rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
    animation: plusFadeIn 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}

.service-section .offer-flex li:nth-child(1) { animation-delay: 0.1s; }
.service-section .offer-flex li:nth-child(2) { animation-delay: 0.25s; }
.service-section .offer-flex li:nth-child(3) { animation-delay: 0.4s; }
.service-section .offer-flex li:nth-child(4) { animation-delay: 0.55s; }
.service-section .offer-flex li:nth-child(5) { animation-delay: 0.7s; }

.service-section .offer-flex li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 0.1em;
    color: var(--primary-color);
    font-size: 1.5em;
    font-weight: 900;
    line-height: 1;
    opacity: 0.85;
    transform: scale(0.7) rotate(-20deg);
    animation: plusPop 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}

.service-section .offer-flex li:nth-child(1)::before { animation-delay: 0.1s; }
.service-section .offer-flex li:nth-child(2)::before { animation-delay: 0.25s; }
.service-section .offer-flex li:nth-child(3)::before { animation-delay: 0.4s; }
.service-section .offer-flex li:nth-child(4)::before { animation-delay: 0.55s; }
.service-section .offer-flex li:nth-child(5)::before { animation-delay: 0.7s; }

@keyframes plusPop {
    0% { opacity: 0; transform: scale(0.3) rotate(-60deg); }
    60% { opacity: 1; transform: scale(1.2) rotate(10deg); }
    100% { opacity: 0.85; transform: scale(1) rotate(-20deg); }
}

@keyframes plusFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .service-section .offer-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .service-section .offer-flex .service-img-animated {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 1012px) {
  .service-hero {
    margin-top: 70px;
  }
  .service-section {
    margin-top: 30px;
  }
}
