:root {
    /* Brand Colors from Logo */
    --primary-navy: #1a3a5c;
    --primary-dark: #0a1628;
    --accent-teal: #2e7d8a;
    --accent-green: #2e8b57;
    --accent-light-green: #8bc34a;
    --gradient-green: linear-gradient(135deg, #2e8b57, #8bc34a);
    --gradient-blue: linear-gradient(135deg, #1a3a5c, #2e7d8a);
    --gradient-mixed: linear-gradient(135deg, #1a3a5c 0%, #2e7d8a 50%, #2e8b57 100%);
    --text-light: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --bg-cream: #f5f5dc;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary-dark);
    color: white;
    font-size: 0.8rem;
    padding: 0.5rem 5%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hide top bar when scrolled */
.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Top Bar Flags */
.top-bar-flags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flag-item {
    font-size: 1.1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: default;
}

.flag-item:hover {
    opacity: 1;
    transform: scale(1.15);
}

.top-bar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.3);
    margin: 0 0.5rem;
}

/* Top Bar Contact Links */
.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.top-bar-link:hover {
    color: white;
}

.top-bar-link.whatsapp:hover {
    color: #25D366;
}

.top-bar-link.email:hover {
    color: var(--accent-light-green);
}

.top-bar-link svg {
    flex-shrink: 0;
}

/* Header */
header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    border-radius: 12px;
    padding: 4px 8px;
    background: transparent;
    box-shadow: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--accent-green);
}

.nav-cta {
    background: var(--gradient-green);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.4);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    flex-direction: column;
    gap: 0;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--primary-navy);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(26, 58, 92, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(46, 139, 87, 0.1);
    color: var(--accent-green);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.4);
}

/* Page Header - Internal Pages */
.page-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-mixed);
    position: relative;
    overflow: hidden;
    padding: 10rem 5% 3rem;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 195, 74, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(46, 125, 138, 0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-header h1 {
    font-size: 2.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0,0,0,0.15);
}

/* Hide complex animations in page header - keep it simple */
.page-header .hero-bg-animation {
    display: none;
}

/* Hero Section - Creative Glassmorphism Design */
.hero {
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Slider with Lab Images */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slide.active::after {
    animation: slowZoom 8s ease-in-out forwards;
}

.hero-slider .slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center center;
    transform: scale(1);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Slide Backgrounds - Lab themed */
.hero-slider .slide-1 {
    background:
        linear-gradient(to right, rgba(26, 58, 92, 0.5) 0%, rgba(26, 58, 92, 0.3) 50%, rgba(26, 58, 92, 0.5) 100%),
        url('banner 1.png') center/cover no-repeat;
}

.hero-slider .slide-2 {
    background:
        linear-gradient(to right, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.35) 50%, rgba(10, 22, 40, 0.55) 100%),
        url('banner 2.png') center/cover no-repeat;
}

.hero-slider .slide-3 {
    background:
        linear-gradient(to right, rgba(26, 58, 92, 0.5) 0%, rgba(26, 58, 92, 0.3) 50%, rgba(26, 58, 92, 0.5) 100%),
        url('banner 3.png') center/cover no-repeat;
}

.hero-slider .slide-4 {
    background:
        linear-gradient(to right, rgba(10, 22, 40, 0.5) 0%, rgba(10, 22, 40, 0.3) 50%, rgba(10, 22, 40, 0.5) 100%),
        url('banner 4.png') center/cover no-repeat;
}

/* Slide Content - Service Info */
.slide-content {
    position: absolute;
    bottom: 130px;
    right: 6%;
    text-align: right;
    color: white;
    z-index: 5;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateX(0);
}

.slide-content .slide-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.slide-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    max-width: 300px;
}

/* Glass Overlay Effect */
.hero-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Glassmorphism Logo Box */
.hero-logo-glass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 0.4rem 0.6rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    text-align: center;
    animation: glassFloat 0.8s ease 0.3s both;
}

.hero-logo-glass::before {
    display: none;
}

.hero-logo-glass::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    border-radius: 0 0 25px 25px;
}

.hero-logo-glass img {
    height: 280px;
    width: auto;
    max-width: 650px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
    display: block;
}

@keyframes glassFloat {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Floating Service Cards */
.floating-service-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.service-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    animation: floatCard 8s ease-in-out infinite;
    pointer-events: auto;
    cursor: default;
    transition: all 0.4s ease;
}

.service-float-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.service-float-card .card-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.service-float-card .card-text {
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

.card-1 {
    top: 18%;
    left: 6%;
    animation-delay: 0s;
}

.card-2 {
    top: 25%;
    right: 6%;
    animation-delay: -2s;
}

.card-3 {
    top: 68%;
    left: 6%;
    animation-delay: -4s;
}

.card-4 {
    top: 62%;
    right: 6%;
    animation-delay: -6s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 15;
    width: 90%;
    max-width: 700px;
}

.hero-subtitle {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.hero-cta-btn {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.hero-cta-btn.primary {
    background: var(--gradient-green);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.hero-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 139, 87, 0.5);
}

.hero-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

/* Hero Bottom Stats Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 2.5rem;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-bottom-bar .hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0;
    flex-wrap: nowrap;
}

.hero-bottom-bar .stat {
    text-align: center;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-bottom-bar .stat::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-bottom-bar .stat:last-child::after {
    display: none;
}

.hero-bottom-bar .stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1;
}

.hero-bottom-bar .stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 15;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.slider-dots .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dots .dot.active {
    background: var(--accent-light-green);
}

.slider-dots .dot.active::before {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Keep old hero-content for other pages */
.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero h1 span {
    background: linear-gradient(135deg, #8bc34a, #a5d6a7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: var(--text-light);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Scrolling Text */
.scroll-text {
    background: var(--primary-navy);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-text-inner {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    padding: 0 3rem;
    font-weight: 500;
}

.scroll-text span::before {
    content: '◆';
    margin-right: 1.5rem;
    color: var(--accent-light-green);
}

/* Section Styles */
section {
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

/* ============================================
   INTERACTIVE LAB-THEMED BACKGROUNDS
   ============================================ */

/* Floating Molecules Animation */
.molecules-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.molecule {
    position: absolute;
    opacity: 0.1;
    animation: floatMolecule 20s infinite ease-in-out;
}

.molecule svg {
    width: 100%;
    height: 100%;
}

.molecule-1 { width: 60px; height: 60px; top: 10%; left: 5%; animation-delay: 0s; }
.molecule-2 { width: 80px; height: 80px; top: 60%; left: 15%; animation-delay: -5s; }
.molecule-3 { width: 50px; height: 50px; top: 30%; right: 10%; animation-delay: -10s; }
.molecule-4 { width: 70px; height: 70px; bottom: 20%; right: 20%; animation-delay: -15s; }
.molecule-5 { width: 40px; height: 40px; top: 70%; left: 40%; animation-delay: -8s; }
.molecule-6 { width: 55px; height: 55px; top: 20%; left: 60%; animation-delay: -12s; }

@keyframes floatMolecule {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-10px, 10px) rotate(180deg); }
    75% { transform: translate(15px, 5px) rotate(270deg); }
}

/* Circuit Pattern Background */
.circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(46, 139, 87, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 139, 87, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.circuit-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(139, 195, 74, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0, 136, 169, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(46, 139, 87, 0.03) 0%, transparent 50%);
}

/* DNA Helix Animation */
.dna-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.dna-strand {
    position: absolute;
    width: 100px;
    height: 200%;
    opacity: 0.05;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        var(--accent-green) 20px,
        var(--accent-green) 22px,
        transparent 22px,
        transparent 40px
    );
    animation: dnaRotate 15s linear infinite;
}

.dna-strand-left {
    left: 5%;
    animation: dnaRotate 10s linear infinite;
}

.dna-strand-right {
    right: 5%;
    animation: dnaRotate 10s linear infinite reverse;
}

@keyframes dnaRotate {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

/* Wave Animation Background */
.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%232e8b57' fill-opacity='0.03' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: waveMove 20s linear infinite;
    opacity: 0.7;
}

.wave-bg svg {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    animation: waveMove 15s linear infinite;
}

.wave-bg svg path {
    fill: rgba(139, 195, 74, 0.03);
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hexagon Grid Background */
.hex-bg,
.hexagon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%232e8b57' fill-opacity='0.03'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Pulse Dots Background */
.pulse-dots-bg,
.pulse-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pulse-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulseDot 3s ease-in-out infinite;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.2); }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

.pulse-dot-1 { top: 15%; left: 10%; animation-delay: 0s; }
.pulse-dot-2 { top: 45%; left: 25%; animation-delay: -1s; }
.pulse-dot-3 { top: 75%; left: 15%; animation-delay: -2s; }
.pulse-dot-4 { top: 25%; right: 20%; animation-delay: -0.5s; }
.pulse-dot-5 { top: 55%; right: 10%; animation-delay: -1.5s; }
.pulse-dot-6 { top: 85%; right: 25%; animation-delay: -2.5s; }

/* Beaker Bubbles Animation */
.bubbles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -50px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-green);
    opacity: 0.1;
    animation: riseBubble linear infinite;
}

.bubble-1 { width: 20px; height: 20px; left: 10%; animation-duration: 12s; background: var(--accent-green); }
.bubble-2 { width: 15px; height: 15px; left: 25%; animation-duration: 10s; animation-delay: -2s; background: var(--accent-teal); }
.bubble-3 { width: 25px; height: 25px; left: 45%; animation-duration: 14s; animation-delay: -4s; background: var(--accent-light-green); }
.bubble-4 { width: 18px; height: 18px; left: 65%; animation-duration: 11s; animation-delay: -6s; background: var(--accent-green); }
.bubble-5 { width: 22px; height: 22px; left: 85%; animation-duration: 13s; animation-delay: -8s; background: var(--accent-teal); }
.bubble-6 { width: 12px; height: 12px; left: 35%; animation-duration: 9s; animation-delay: -3s; background: var(--accent-light-green); }
.bubble-7 { width: 16px; height: 16px; left: 75%; animation-duration: 15s; animation-delay: -5s; background: var(--accent-green); }

@keyframes riseBubble {
    0% { bottom: -50px; opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { bottom: 100%; opacity: 0; }
}

/* Spectrum Lines Background */
.spectrum-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.spectrum-line {
    position: absolute;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to top, var(--accent-green), var(--accent-teal), transparent);
    opacity: 0.08;
    animation: spectrumPulse 4s ease-in-out infinite;
}

@keyframes spectrumPulse {
    0%, 100% { opacity: 0.05; transform: scaleY(0.7); }
    50% { opacity: 0.12; transform: scaleY(1); }
}

.spectrum-line-1 { top: 20%; width: 100px; background: linear-gradient(90deg, transparent, var(--accent-green), transparent); animation-delay: 0s; }
.spectrum-line-2 { top: 40%; width: 150px; background: linear-gradient(90deg, transparent, var(--accent-teal), transparent); animation-delay: -2s; }
.spectrum-line-3 { top: 60%; width: 120px; background: linear-gradient(90deg, transparent, var(--accent-light-green), transparent); animation-delay: -4s; }
.spectrum-line-4 { top: 80%; width: 80px; background: linear-gradient(90deg, transparent, var(--primary-navy), transparent); animation-delay: -6s; }

@keyframes spectrumMove {
    0% { left: -200px; }
    100% { left: 100%; }
}

/* Ensure content stays above backgrounds */
.section-header,
.industries-grid,
.about-grid,
.vmv-grid,
.products-grid,
.services-grid,
.values-grid,
.brands-grid,
.contact-grid,
.logo-concept-grid,
.cta-content,
.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
}

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

.section-badge {
    display: inline-block;
    background: rgba(46, 139, 87, 0.1);
    color: var(--accent-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Industries Section */
.industries {
    background: var(--bg-light);
}

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

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Flip Card Styles */
.flip-card {
    background: transparent;
    perspective: 1000px;
    height: 380px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    animation: flipHint 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes flipHint {
    0%, 85%, 100% {
        transform: rotateY(0deg);
    }
    90% {
        transform: rotateY(15deg);
    }
    95% {
        transform: rotateY(-5deg);
    }
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    animation: none;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.flip-card-front {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.flip-card-back {
    background: var(--gradient-mixed);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.flip-card-back h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.flip-card-back p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.flip-card-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.flip-card-back ul li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flip-card-back ul li::before {
    content: '✓';
    color: #8bc34a;
    font-weight: bold;
}

.flip-card-back .flip-cta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.flip-card-back .flip-cta a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.flip-card-back .flip-cta a:hover {
    gap: 1rem;
}

.flip-card .industry-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.flip-card h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.flip-card-front p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.flip-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-mixed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.industry-card h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent-green);
    border-radius: 20px;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-green);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge strong {
    display: block;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-feature span {
    width: 25px;
    height: 25px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

/* Vision Mission Values */
.vmv {
    background: var(--gradient-mixed);
    position: relative;
    overflow: hidden;
}

.vmv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vmv .section-header h2,
.vmv .section-header p {
    color: white;
}

.vmv .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vmv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: white;
}

.vmv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vmv-card p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Products Section */
.products {
    background: var(--bg-light);
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-mixed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon-design {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    opacity: 0.9;
    transition: all 0.5s ease;
}

.product-card:hover .product-icon-design {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.product-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.product-image-analytical {
    background: linear-gradient(135deg, #1a3a5c 0%, #2e7d8a 60%, #2e8b57 100%);
}

.product-image-materials {
    background: linear-gradient(135deg, #2e7d8a 0%, #2e8b57 60%, #8bc34a 100%);
}

.product-image-testing {
    background: linear-gradient(135deg, #1a3a5c 0%, #2e5a7c 60%, #2e7d8a 100%);
}

.product-image-industrial {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 60%, #2e7d8a 100%);
}

.product-image-life {
    background: linear-gradient(135deg, #2e8b57 0%, #3d9970 50%, #8bc34a 100%);
}

.product-image-essentials {
    background: linear-gradient(135deg, #2e7d8a 0%, #1a3a5c 50%, #2e8b57 100%);
}

/* Animated floating effect for SVG icons */
@keyframes floatIcon {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-8px);
    }
}

.product-card:hover .product-icon-design {
    animation: floatIcon 2s ease-in-out infinite;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-green);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.product-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-list li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-list li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
}

.product-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 1rem;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-column h3 {
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-column h3 span {
    width: 40px;
    height: 40px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.service-info h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Brands Section */
.brands {
    background: var(--bg-light);
    padding: 4rem 5%;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-item {
    text-align: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.brand-item img {
    height: 60px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

/* Clients Section */
.clients {
    background: white;
    padding: 5rem 0;
    overflow: hidden;
}

.clients .section-header {
    padding: 0 5%;
}

.clients-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
}

.clients-track {
    display: flex;
    gap: 4rem;
    animation: scrollClients 60s linear infinite;
    width: max-content;
}

.client-item {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.client-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.client-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-item:hover img {
    transform: scale(1.1);
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

/* Clients Section - About Page Grid Layout */
.clients-about {
    background: var(--bg-light);
    padding: 5rem 5%;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.client-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.client-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .client-card {
        padding: 1.5rem;
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-card {
        padding: 1rem;
        min-height: 80px;
    }

    .client-card img {
        max-height: 50px;
    }
}

/* Core Values */
.values {
    background: white;
}

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

.value-card {
    padding: 2rem;
    border-left: 4px solid var(--accent-green);
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(46, 139, 87, 0.2);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    background: var(--gradient-mixed);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

/* CTA Interactive Animation */
.cta .hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.cta #ctaParticleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta .floating-shapes .shape {
    opacity: 0.5;
}

.cta .glow-orbs .orb {
    opacity: 0.4;
}

.cta .orb-1 {
    width: 250px;
    height: 250px;
    top: -15%;
    left: -5%;
}

.cta .orb-2 {
    width: 200px;
    height: 200px;
    bottom: -15%;
    right: -5%;
}

.cta .orb-3 {
    width: 180px;
    height: 180px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-navy);
}

.cta .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-muted);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.4);
}

/* Logo Concept Section */
.logo-concept {
    background: white;
}

.logo-concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-image {
    text-align: center;
}

.logo-image img {
    max-width: 400px;
    width: 100%;
}

.logo-explanation h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.logo-pillar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-mixed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pillar-info h4 {
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.pillar-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Global Presence / World Map Section */
.global-presence {
    background: white;
    padding: 5rem 5%;
}


/* Office Cards Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.office-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-teal);
}

.office-card.hq {
    background: linear-gradient(135deg, rgba(139,195,74,0.1) 0%, rgba(46,139,87,0.1) 100%);
    border-color: var(--accent-green);
}

.office-card.hq:hover {
    border-color: var(--accent-green);
}

.office-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-flag {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.office-card h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.office-address {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.office-phone {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.office-contact-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.office-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.office-link svg {
    width: 20px;
    height: 20px;
}

.office-link.whatsapp {
    background: #25D366;
    color: white;
}

.office-link.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.office-link.email {
    background: var(--gradient-mixed);
    color: white;
}

.office-link.email:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 58, 92, 0.4);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-about .logo {
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-light-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-grid,
    .services-grid,
    .contact-grid,
    .logo-concept-grid {
        grid-template-columns: 1fr;
    }

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

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

    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-logo-glass {
        padding: 2rem 3rem;
    }

    .hero-logo-glass img {
        height: 180px;
        max-width: 480px;
    }

    .hero-bottom-bar {
        padding: 0.9rem 2rem;
    }

    .hero-bottom-bar .hero-stats {
        gap: 1.5rem;
        flex-wrap: nowrap;
    }

    .hero-bottom-bar .stat-number {
        font-size: 1.2rem;
    }

    .hero-bottom-bar .stat-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    /* Top Bar Responsive */
    .top-bar {
        padding: 0.5rem 3%;
    }

    .top-bar-content {
        padding: 0;
    }

    .top-bar-text {
        display: block;
        font-size: 0.65rem;
    }

    .top-bar-contact {
        display: flex;
        align-items: center;
    }

    .top-bar-contact span {
        display: none;
    }

    .top-bar-link {
        padding: 0.3rem;
        font-size: 0.9rem;
    }

    .top-bar-flags {
        gap: 0.3rem;
    }

    .flag-item {
        font-size: 0.9rem;
    }

    .location-btn span {
        display: none;
    }

    .location-btn {
        padding: 0.3rem 0.5rem;
    }

    header {
        top: 36px;
    }

    nav {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    /* Hero Section - Smaller on Mobile */
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    /* Hero Responsive */
    .hero-logo-glass {
        padding: 0.3rem 0.5rem;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-logo-glass img {
        height: 160px;
        max-width: 400px;
    }

    .hero-content-wrapper {
        bottom: 100px;
        width: 95%;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-cta-btn {
        text-align: center;
        padding: 0.85rem 1.8rem;
    }

    .hero-bottom-bar {
        padding: 0.8rem 1.5rem;
        bottom: 20px;
        max-width: 95%;
    }

    .hero-bottom-bar .hero-stats {
        gap: 1.2rem;
        flex-wrap: nowrap;
    }

    .hero-bottom-bar .stat {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .hero-bottom-bar .stat::after {
        right: -0.6rem;
        height: 22px;
    }

    .hero-bottom-bar .stat-number {
        font-size: 1.2rem;
    }

    .hero-bottom-bar .stat-label {
        font-size: 0.6rem;
    }

    .slider-dots {
        left: auto;
        right: 5%;
        top: 40%;
    }

    .page-header {
        padding-top: 140px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

}

@media (max-width: 480px) {
    /* Top Bar Mobile */
    .top-bar {
        padding: 0.4rem 2%;
    }

    .top-bar-text {
        display: block;
        font-size: 0.6rem;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .top-bar-link {
        font-size: 0.8rem;
        padding: 0.2rem;
    }

    .flag-item {
        font-size: 0.8rem;
    }

    header {
        top: 32px;
    }

    /* Hero Section - Even Smaller on Small Mobile */
    .hero {
        height: 60vh;
        min-height: 450px;
    }

    /* Hero Slider Mobile - Center Images */
    .hero-slider .slide-1,
    .hero-slider .slide-2,
    .hero-slider .slide-3,
    .hero-slider .slide-4 {
        background-position: center center !important;
    }

    /* Hero Mobile */
    .hero-logo-glass {
        padding: 0.25rem 0.4rem;
        top: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        max-width: 92%;
    }

    .hero-logo-glass img {
        height: 120px;
        max-width: 300px;
    }

    .hero-logo-glass::after {
        height: 3px;
    }

    .hero-content-wrapper {
        bottom: 90px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-cta-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.8rem;
    }

    .hero-bottom-bar {
        padding: 0.7rem 1rem;
        bottom: 15px;
        border-radius: 30px;
        max-width: 95%;
    }

    .hero-bottom-bar .hero-stats {
        gap: 0.8rem;
        flex-wrap: nowrap;
    }

    .hero-bottom-bar .stat {
        gap: 0.3rem;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .hero-bottom-bar .stat::after {
        right: -0.4rem;
        height: 18px;
    }

    .hero-bottom-bar .stat-number {
        font-size: 0.9rem;
    }

    .hero-bottom-bar .stat-label {
        font-size: 0.45rem;
        white-space: nowrap;
    }

    .slider-dots {
        display: none;
    }
}

@media (max-width: 360px) {
    /* Top Bar Extra Small */
    .top-bar {
        padding: 0.35rem 2%;
    }

    .top-bar-text {
        font-size: 0.55rem;
        max-width: 100px;
    }

    .top-bar-link {
        font-size: 0.75rem;
        padding: 0.15rem;
    }

    .top-bar-flags {
        gap: 0.2rem;
    }

    .flag-item {
        font-size: 0.7rem;
    }

    header {
        top: 28px;
    }

    /* Hero Section - Extra Small */
    .hero {
        height: 55vh;
        min-height: 400px;
    }

    /* Hero Extra Small */
    .hero-logo-glass {
        padding: 0.2rem 0.3rem;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-logo-glass img {
        height: 90px;
        max-width: 240px;
    }

    .hero-bottom-bar {
        padding: 0.6rem 0.8rem;
        bottom: 12px;
        border-radius: 25px;
    }

    .hero-bottom-bar .hero-stats {
        gap: 0.6rem;
        flex-wrap: nowrap;
    }

    .hero-bottom-bar .stat {
        gap: 0.25rem;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .hero-bottom-bar .stat::after {
        height: 15px;
    }

    .hero-bottom-bar .stat-number {
        font-size: 0.9rem;
    }

    .hero-bottom-bar .stat-label {
        font-size: 0.45rem;
    }
}
