/* General Body Styles */

 html{touch-action: manipulation; -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; overscroll-behavior: none; -webkit-tap-highlight-color: transparent;}


        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

iframe.mmGMM
Specificity: (0,1,1)
 {
    width: 120%;
}

        .main-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3.5rem, 7vw, 5.5rem);
            font-weight: 700;
            color: #8B4513;
            letter-spacing: 0.05em;
            margin: 0;
            line-height: 1.1;
            position: relative;
        }

        .title-word {
            display: inline-block;
            margin: 0 0.3em;
        }

        .title-word:nth-child(1) {
            color: #A0522D;
        }

        .title-word:nth-child(2) {
            color: #8B4513;
        }

        .title-word:nth-child(3) {
            color: #CD853F;
        }

        .divider {
            width: 120px;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                #8B4513 50%, 
                transparent 100%);
            margin: 40px auto;
        }

        .hands-contact-section {
    position: relative; /* Behaves like a normal section in the document flow */
    z-index: 10;        /* Sits on top of any previous elements */
    width: 100%;
    height: 100vh;      /* Takes up the full screen when you scroll to it */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Opacity and visibility are removed so it's always visible */
}

        .scroll-container {
            position: relative;
            width: 100%;
            overflow: hidden; /* Prevents horizontal scrollbars from animations */
        }

        /* Hero Section Styles */
        .hero-section {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            background: hsl(0, 0%, 100%);
            overflow: hidden;
        }
        
        /* Premium animated background layers */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 45% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 75% 40%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
            pointer-events: none;
            animation: backgroundShift 20s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.02) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(184, 134, 11, 0.02) 50%, transparent 70%);
            pointer-events: none;
            animation: shimmer 15s ease-in-out infinite;
        }

        /* Floating geometric elements */
        .geometric-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .geometric-element {
            position: absolute;
            width: 2px;
            height: 2px;
            background: linear-gradient(45deg, #c9c9c9, #dadada);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
            animation: float 8s ease-in-out infinite;
        }

        .geometric-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .geometric-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
        .geometric-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
        .geometric-element:nth-child(4) { top: 40%; right: 25%; animation-delay: 6s; }
        .geometric-element:nth-child(5) { bottom: 20%; right: 10%; animation-delay: 1s; }
        .geometric-element:nth-child(6) { top: 80%; left: 30%; animation-delay: 3s; }

        /* Luxury border frame */
        .luxury-frame {
            position: absolute;
            top: 3rem;
            left: 3rem;
            right: 3rem;
            bottom: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 2px;
            pointer-events: none;
            box-shadow: 
                inset 0 0 50px rgba(212, 175, 55, 0.05),
                0 0 50px rgba(212, 175, 55, 0.05);
            animation: frameGlow 12s ease-in-out infinite;
        }

        .luxury-frame::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(212, 175, 55, 0.1) 50%, 
                transparent 70%);
            border-radius: 2px;
            z-index: -1;
            animation: frameShine 8s ease-in-out infinite;
        }

        
        /* Hero Section Styles - Mobile Optimized */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
            background: hsl(0, 0%, 100%);
            overflow: hidden;
        }

        /* Mobile-first responsive padding */
        @media (min-width: 768px) {
            .hero-section {
                padding: 4rem 2rem;
            }
        }
        
        /* Premium animated background layers */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 45% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 75% 40%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
            pointer-events: none;
            animation: backgroundShift 20s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.02) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(184, 134, 11, 0.02) 50%, transparent 70%);
            pointer-events: none;
            animation: shimmer 15s ease-in-out infinite;
        }

        .hero-content {
            max-width: 100%;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 2;
            animation: contentReveal 2s ease-out;
        }

        /* Mobile-optimized responsive containers */
        @media (min-width: 480px) {
            .hero-content {
                max-width: 480px;
            }
        }

        @media (min-width: 768px) {
            .hero-content {
                max-width: 700px;
            }
        }

        @media (min-width: 1024px) {
            .hero-content {
                max-width: 900px;
            }
        }

        .hero-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.125rem; /* 18px base for mobile */
            font-weight: 400;
            letter-spacing: 0.01em;
            line-height: 1.7;
            text-shadow: 
                0 1px 3px rgba(0, 0, 0, 0.3),
                0 0 15px rgba(212, 175, 55, 0.1);
            color: #000000;
            position: relative;
            animation: textBreathe 8s ease-in-out infinite;
        }

        /* Responsive font scaling */
        @media (min-width: 480px) {
            .hero-text {
                font-size: 1.25rem; /* 20px */
                line-height: 1.75;
            }
        }

        @media (min-width: 768px) {
            .hero-text {
                font-size: 1.5rem; /* 24px */
                line-height: 1.8;
                letter-spacing: 0.02em;
            }
        }

        @media (min-width: 1024px) {
            .hero-text {
                font-size: 1.75rem; /* 28px */
            }
        }

        @media (min-width: 1200px) {
            .hero-text {
                font-size: 1.9rem; /* 30px */
            }
        }

        /* Mobile-optimized text blocks with better spacing */
        .text-block {
            display: block;
            margin-bottom: 1.5rem;
        }

        .text-block:last-of-type {
            margin-bottom: 0;
        }

        @media (min-width: 768px) {
            .text-block {
                margin-bottom: 2rem;
            }
        }

        .hero-text .highlight {
            color: #000000;
            font-weight: 500;
            text-shadow: 
                0 0 12px rgba(180, 180, 180, 0.4),
                0 1px 3px rgba(0, 0, 0, 0.4);
            animation: highlightGlow 4s ease-in-out infinite;
            position: relative;
            display: inline;
        }
        
        .hero-text .brand {
            color: #000000;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            font-size: 1.05em;
            text-shadow: 
                0 0 15px rgba(214, 214, 214, 0.5),
                0 1px 3px rgba(0, 0, 0, 0.4);
            animation: brandPulse 5s ease-in-out infinite;
            position: relative;
            display: inline;
        }

        @media (min-width: 768px) {
            .hero-text .brand {
                letter-spacing: 0.08em;
                font-size: 1.1em;
            }
        }
        
        .hero-text .tagline {
            display: block;
            margin-top: 2rem;
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem; /* 17.6px base for mobile */
            font-weight: 300;
            color: #000000;
            font-style: italic;
            letter-spacing: 0.02em;
            text-shadow: 
                0 0 20px rgba(207, 207, 207, 0.3),
                0 1px 4px rgba(0, 0, 0, 0.5);
            animation: taglineFloat 6s ease-in-out infinite;
            position: relative;
            line-height: 1.6;
        }

        @media (min-width: 480px) {
            .hero-text .tagline {
                font-size: 1.2rem; /* 19.2px */
                margin-top: 2.25rem;
            }
        }

        @media (min-width: 768px) {
            .hero-text .tagline {
                font-size: 1.4rem; /* 22.4px */
                margin-top: 2.5rem;
                letter-spacing: 0.03em;
            }
        }

        @media (min-width: 1024px) {
            .hero-text .tagline {
                font-size: 1.75rem; /* 28px */
                letter-spacing: 0.04em;
            }
        }

        @media (min-width: 1200px) {
            .hero-text .tagline {
                font-size: 2.1rem; /* 33.6px */
            }
        }

        /* First Wipe Transition Mask */
        #transition-mask-1 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            display: grid;
            grid-template-rows: repeat(5, 1fr);
            z-index: 3;
            pointer-events: none;
            transform: skewX(-15deg) translateX(-10%);
        }

        .rectangles {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            width: 120%; 
        }

        .rectangle--skew {
            background-color: #202124;
            clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
            will-change: clip-path;
        }
/* Google Search Section - Mobile Optimized FIXED */
.technekaizen-section {
    position: relative;
    z-index: 4;
    background: #202124;
    color: #e8eaed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.search-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* FIXED: Google logo positioning specifically for mobile */
.search-page-google-logo {
    font-size: 36px !important;
    font-weight: 400 !important;
    letter-spacing: -1px !important;
    margin: 0 auto 1.5rem auto !important;
    color: #e8eaed !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

@media (min-width: 480px) {
    .search-page-google-logo {
        font-size: 48px !important;
        letter-spacing: -2px !important;
        margin-bottom: 2rem !important;
    }
}

@media (min-width: 768px) {
    .search-page-google-logo {
        font-size: 60px !important;
        letter-spacing: -3px !important;
        margin-bottom: 2.5rem !important;
    }
}

@media (min-width: 1024px) {
    .search-page-google-logo {
        font-size: 75px !important;
        letter-spacing: -4px !important;
        margin-bottom: 3rem !important;
    }
}

/* Keep the letter colors */
.search-page-google-logo .google-letter-1 { color: #4285f4; }
.search-page-google-logo .google-letter-2 { color: #ea4335; }
.search-page-google-logo .google-letter-3 { color: #fbbc05; }
.search-page-google-logo .google-letter-4 { color: #4285f4; }
.search-page-google-logo .google-letter-5 { color: #34a853; }
.search-page-google-logo .google-letter-6 { color: #ea4335; }

.search-container {
    width: 100%;
    max-width: 100%;
    position: relative;
    margin-bottom: 1.5rem; /* Reduced margin */
}

@media (min-width: 480px) {
    .search-container {
        max-width: 480px;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .search-container {
        max-width: 584px;
    }
}

.search-box {
    width: 100%;
    height: 44px;
    border: 1px solid #5f6368;
    border-radius: 24px;
    padding: 0 16px 0 45px;
    font-size: 16px;
    background: #303134;
    color: #e8eaed;
    outline: none;
    transition: all 0.3s ease;
}

.search-box:focus {
    border-color: #8ab4f8;
    background: #303134;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    opacity: 0.6;
    color: #9aa0a6;
}

/* FIXED: Mobile-optimized button container - Keep buttons in row even on mobile */
.search-buttons {
    display: flex;
    flex-direction: row; /* FIXED: Always keep buttons in a row */
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap; /* Allow wrapping if needed */
}

@media (min-width: 480px) {
    .search-buttons {
        gap: 1rem;
        flex-wrap: nowrap;
    }
}

.search-button {
    background: #303134;
    border: 1px solid #303134;
    border-radius: 4px;
    color: #e8eaed;
    font-size: 13px; /* Slightly smaller for mobile */
    padding: 0 16px; /* Reduced padding for mobile */
    height: 36px;
    min-width: 100px; /* Reduced min-width for mobile */
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

@media (min-width: 480px) {
    .search-button {
        font-size: 14px;
        padding: 0 20px;
        min-width: 120px;
    }
}

.search-button:hover {
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    background: #3c4043;
    border: 1px solid #5f6368;
}

.search-button:active {
    background: #5f6368;
}

.lucky-button-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FIXED: Click me arrow positioning to avoid overlap */
/* FIXED: Click me arrow positioning below the button */
.click-me-arrow {
    position: absolute;
    bottom: -45px; /* FIXED: Now positioned below the button */
    left: 50%;
    transform: translateX(-50%);
    color: #8ab4f8;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    animation: bounce 2s infinite;
    text-align: center;
    z-index: 10;
}

@media (min-width: 480px) {
    .click-me-arrow {
        font-size: 12px;
        bottom: -50px;
    }
}

@media (min-width: 768px) {
    .click-me-arrow {
        font-size: 14px;
        bottom: -55px;
    }
}

.click-me-arrow::before {
    content: '↓';
    display: block;
    text-align: center;
    font-size: 14px;
    margin-bottom: 2px;
}

@media (min-width: 480px) {
    .click-me-arrow::before {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .click-me-arrow::before {
        font-size: 20px;
    }
}

/* FIXED: Results Page - Better mobile spacing and sizing */
.results-page {
    display: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.75rem; /* Reduced padding */
    min-height: 100vh;
    justify-content: flex-start;
    flex-direction: column;
    padding-top: 1rem; /* Add top padding for better spacing */
}

@media (min-width: 768px) {
    .results-page {
        max-width: 800px;
        padding: 1.5rem;
        padding-top: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .results-page {
        max-width: 1200px;
        padding: 2rem;
    }
}

/* FIXED: Mobile-optimized results header */
.results-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 0; /* Reduced padding */
    border-bottom: 1px solid #3c4043;
    margin-bottom: 0.75rem; /* Reduced margin */
    flex-wrap: wrap;
    gap: 0.75rem; /* Reduced gap */
}

@media (min-width: 768px) {
    .results-header {
        flex-wrap: nowrap;
        gap: 2rem;
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }
}

.results-logo {
    font-size: 18px; /* Smaller for mobile */
    color: #e8eaed;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .results-logo {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .results-logo {
        font-size: 24px;
        margin-right: 1rem;
    }
}

.results-search-box {
    flex: 1;
    min-width: 0;
    height: 32px; /* Slightly smaller for mobile */
    border: 1px solid #5f6368;
    border-radius: 20px; /* Adjusted border radius */
    padding: 0 12px; /* Reduced padding */
    font-size: 13px; /* Smaller font */
    background: #303134;
    color: #e8eaed;
    outline: none;
}

@media (min-width: 480px) {
    .results-search-box {
        height: 36px;
        padding: 0 16px;
        font-size: 14px;
        border-radius: 24px;
    }
}

@media (min-width: 768px) {
    .results-search-box {
        font-size: 16px;
    }
}

.results-info {
    color: #9aa0a6;
    font-size: 12px; /* Smaller for mobile */
    margin-bottom: 0.75rem; /* Reduced margin */
}

@media (min-width: 480px) {
    .results-info {
        font-size: 13px;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .results-info {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }
}

/* FIXED: Mobile-optimized definition cards - Better sizing */
.definition-card {
    background: #303134;
    border: 1px solid #5f6368;
    border-radius: 6px; /* Smaller border radius */
    margin-bottom: 0.75rem; /* Reduced spacing */
    padding: 0.75rem; /* Reduced padding */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

@media (min-width: 480px) {
    .definition-card {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 8px;
    }
}

@media (min-width: 768px) {
    .definition-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.definition-card:hover {
    transform: translateY(-2px);
    border-color: #8ab4f8;
}

@media (min-width: 768px) {
    .definition-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

.word-title {
    font-size: 18px; /* Smaller for mobile */
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #8ab4f8;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (min-width: 480px) {
    .word-title {
        font-size: 20px;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .word-title {
        font-size: 24px;
        margin-bottom: 1rem;
    }
}

.pronunciation {
    color: #9aa0a6;
    font-size: 12px; /* Smaller for mobile */
    margin-bottom: 0.5rem; /* Reduced margin */
}

@media (min-width: 480px) {
    .pronunciation {
        font-size: 13px;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .pronunciation {
        font-size: 14px;
        margin-bottom: 1rem;
    }
}

.word-type {
    color: #9aa0a6;
    font-size: 11px; /* Smaller for mobile */
    font-style: italic;
    margin-bottom: 0.5rem;
}

@media (min-width: 480px) {
    .word-type {
        font-size: 12px;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .word-type {
        font-size: 14px;
    }
}

.definition {
    font-size: 13px; /* Smaller for mobile */
    line-height: 1.4; /* Tighter line height */
    margin-bottom: 0.5rem; /* Reduced margin */
}

@media (min-width: 480px) {
    .definition {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .definition {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

.highlight {
    color: #8ab4f8;
    font-weight: 500;
}

/* FIXED: Mobile-optimized combined meaning card */
.combined-meaning {
    background: linear-gradient(135deg, #1a73e8, #8ab4f8);
    color: white;
    padding: 1rem; /* Reduced padding for mobile */
    border-radius: 8px; /* Smaller border radius */
    margin-top: 0.75rem; /* Reduced margin */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

@media (min-width: 480px) {
    .combined-meaning {
        padding: 1.25rem;
        margin-top: 1rem;
        border-radius: 10px;
    }
}

@media (min-width: 768px) {
    .combined-meaning {
        padding: 2rem;
        margin-top: 1.5rem;
        border-radius: 12px;
    }
}

.combined-title {
    font-size: 20px; /* Smaller for mobile */
    font-weight: 500;
    margin-bottom: 0.75rem; /* Reduced margin */
}

@media (min-width: 480px) {
    .combined-title {
        font-size: 22px;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .combined-title {
        font-size: 28px;
        margin-bottom: 1.5rem;
    }
}

.combined-definition {
    font-size: 14px; /* Smaller for mobile */
    line-height: 1.5;
}

@media (min-width: 480px) {
    .combined-definition {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .combined-definition {
        font-size: 18px;
    }
}

.audio-icon {
    width: 14px; /* Smaller for mobile */
    height: 14px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .audio-icon {
        width: 16px;
        height: 16px;
    }
}

.audio-icon:hover {
    opacity: 1;
}

/* Google letter colors */
.google-letter-1 { color: #4285f4; }
.google-letter-2 { color: #ea4335; }
.google-letter-3 { color: #fbbc05; }
.google-letter-4 { color: #4285f4; }
.google-letter-5 { color: #34a853; }
.google-letter-6 { color: #ea4335; }

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-5px);
    }
    60% {
        transform: translateX(-50%) translateY(-3px);
    }
}

/* Show animations for demo */
.definition-card,
.combined-meaning {
    opacity: 1;
    transform: translateY(0);
}

.click-me-arrow {
    opacity: 1;
}

/* Touch-friendly improvements */
@media (hover: none) {
    .search-button:hover {
        background: #303134;
        border: 1px solid #303134;
    }
    
    .definition-card:hover {
        transform: none;
        border-color: #5f6368;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
       /* Second Wipe Transition Mask */
#transition-mask-2 {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  z-index: 5;
  pointer-events: none;
  transform: skewX(15deg) translateX(10%);
}

.rectangle--skew-2 {
  background-color: #ffffff;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  will-change: clip-path;
}

        /* Services Section */

        /* Styles for the about section container */
.about-section {
  margin-bottom: 2rem; /* Adjust spacing as needed */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Styles for the heading */
.about-heading {
  font-family: var(--font-family);
  font-size: 1.5rem; /* Adjust size to match your site's headings */
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

/* Styles for the subtext */
.about-subtext {
  font-family: var(--font-family);
  font-size: 1rem; /* Adjust size to match your site's paragraphs */
  line-height: 1.5;
  color: var(--text-color);
}

        .services-section {
            position: relative;
            z-index: 6;
            background-color: #ffffff;
            color: #1a1a1a;
            /* margin-top: 100vh; NO LONGER NEEDED due to JS positioning */
            min-height: 110vh;
            padding: 100px 24px;
            opacity: 0;
            transform: translate(-25vw, -25vh);
            box-sizing: border-box;
            perspective: 1000px;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 16px 40px rgba(0,0,0,0.1);
            padding: 48px;
            position: relative;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
            transform-style: preserve-3d;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 24px 50px rgba(0,0,0,0.15);
        }

        .service-header {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .service-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: #666;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-item {
            padding: 0.5rem 0;
            border-bottom: 1px solid #ffffff;
            font-weight: 500;
            color: #333;
        }

        .service-item:last-child {
            border-bottom: none;
        }

        /* Animations */
        @keyframes backgroundShift {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(10px) translateY(-5px); }
            50% { transform: translateX(-5px) translateY(10px); }
            75% { transform: translateX(8px) translateY(5px); }
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.3; transform: translateX(-100px); }
            50% { opacity: 1; transform: translateX(100px); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
        }

        @keyframes frameGlow {
            0%, 100% { box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.05), 0 0 50px rgba(212, 175, 55, 0.05); }
            50% { box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.1), 0 0 50px rgba(212, 175, 55, 0.1); }
        }

        @keyframes frameShine {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        @keyframes contentReveal {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes highlightGlow {
            0%, 100% { 
                text-shadow: 
                    0 0 15px rgba(189, 189, 189, 0.4),
                    0 2px 4px rgba(0, 0, 0, 0.5);
                transform: scale(1);
            }
            50% { 
                text-shadow: 
                    0 0 25px rgba(187, 187, 187, 0.6),
                    0 2px 4px rgba(0, 0, 0, 0.5);
                transform: scale(1.02);
            }
        }

        @keyframes brandPulse {
            0%, 100% { 
                text-shadow: 
                    0 0 20px rgba(212, 212, 212, 0.5),
                    0 2px 4px rgba(0, 0, 0, 0.5);
                transform: scale(1);
            }
            50% { 
                text-shadow: 
                    0 0 35px rgba(219, 219, 219, 0.7),
                    0 2px 4px rgba(0, 0, 0, 0.5);
                transform: scale(1.05);
            }
        }

        @keyframes taglineFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

        @keyframes textBreathe {
            0%, 100% { 
                transform: scale(1);
                text-shadow: 
                    0 2px 4px rgba(0, 0, 0, 0.5),
                    0 0 20px rgba(153, 153, 153, 0.1);
            }
            50% { 
                transform: scale(1.005);
                text-shadow: 
                    0 2px 4px rgba(0, 0, 0, 0.5),
                    0 0 25px rgba(218, 218, 218, 0.15);
            }
        }

        /* testimonials section */

.testimonials-container {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            padding: 40px 20px;
            min-height: 100vh;
            z-index: 7;
            background: hsl(0, 0%, 100%);
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        
p.header-subtitle {
    color: black;
    text-align: center;
}

        .header-left h2 {
            font-size: 38px;
            font-weight: 400;
            color: #000000;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .stars {
            display: flex;
            gap: 3px;
        }

        
.star {
    color: #fff900;
    font-size: 20px;
}

        .rating-text {
            color: #000000;
            font-size: 16px;
        }

        .person-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            transition: all 0.5s ease;
            opacity: 1;
        }

        .person-image.hidden {
            opacity: 0;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
        }

        .testimonials-slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            padding: 0 20px;
        }

        .testimonial-card {
            background: #000000;
            border-radius: 20px;
            padding: 50px;
            color: white;
            max-width: 800px;
            width: 100%;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .quote {
            font-size: 24px;
            line-height: 1.4;
            margin-bottom: 30px;
            position: relative;
        }

      

        .testimonial-rating {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }

        .testimonial-star {
            color: #ff6b8a;
            font-size: 16px;
        }

        .author {
            border-left: 3px solid #ffffff;
            padding-left: 15px;
        }

        .author-title {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .author-company {
            color: #ffffff;
            font-size: 14px;
        }

        .navigation {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border: 2px solid #ddd;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 20px;
            color: #666;
        }

        .nav-btn:hover {
            border-color: #2d5a3d;
            color: #2d5a3d;
        }

        .nav-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 20px;
            }

            .header h1 {
                font-size: 36px;
            }

            .testimonial-card {
                padding: 30px;
            }

            .quote {
                font-size: 20px;
            }

            .person-image {
                width: 100px;
                height: 100px;
                align-self: center;
            }
        }

        /* timeline section */

         .container {
            max-width: 100vw;
            margin: 0 auto;
            padding: 60px 40px;
            overflow-x: hidden;
            min-height: 10vh; /* Ensure enough scroll height */
            z-index: 7;
            position: relative; 
            background: hsl(0, 0%, 100%);
        }

        .SOP-header {
            text-align: left;
            margin-bottom: 80px;
            z-index: 7;
            position: relative; 
        }

        .main-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #000;
            text-align: center;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #000000;
            font-weight: 400;
            text-align: center;
        }

        .timeline-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            z-index: 7;
        }

        .timeline-content {
            display: flex;
            gap: 40px;
            padding: 40px 0 120px 40px;
            width: max-content;
            min-width: 100%;
            height: 100%;
            align-items: center;
            z-index: 7;
            background: hsl(0, 0%, 100%);
        }

        .phase-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            min-width: 450px;
            max-width: 520px;
            position: relative;
            flex-shrink: 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            z-index: 7;
        }

        .phase-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .phase-card.wide {
            min-width: 580px;
        }

        .card-content {
            display: flex;
            gap: 32px;
            align-items: flex-start;
            z-index: 7;
        }

        .thumbnail {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            flex-shrink: 0;
            position: relative;
        }

        .gradient-1 {
            background: radial-gradient(circle at 30% 70%, #000 0%, #000 30%, #4f46e5 50%, #ec4899 70%, #8b5cf6 100%);
        }

        .gradient-2 {
            background: radial-gradient(circle at 60% 30%, #000 0%, #000 25%, #06b6d4 45%, #8b5cf6 65%, #ec4899 85%);
        }

        .gradient-3 {
            background: radial-gradient(circle at 40% 60%, #000 0%, #000 35%, #8b5cf6 55%, #ec4899 75%, #06b6d4 95%);
        }

        .gradient-4 {
            background: radial-gradient(circle at 70% 40%, #4f46e5 0%, #8b5cf6 30%, #ec4899 60%, #000 85%);
        }

        .gradient-5 {
            background: radial-gradient(circle at 50% 80%, #000 0%, #000 20%, #ec4899 50%, #8b5cf6 80%);
        }

        .gradient-6 {
            background: radial-gradient(circle at 30% 30%, #ec4899 0%, #8b5cf6 40%, #4f46e5 70%, #000 90%);
        }

        .card-info {
            flex: 1;
        }

        .phase-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .phase-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #000;
        }

        .duration-pill {
            background: #f0f0f0;
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 0.9rem;
            color: #666;
            white-space: nowrap;
        }

        .phase-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 24px;
        }

        .work-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
            background: #000;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .timeline-bar {
            position: absolute;
            bottom: 40px;
            left: 40px;
            right: 40px;
            height: 2px;
            background: #ddd;
            border-radius: 1px;
        }

        .timeline-markers {
            position: absolute;
            bottom: 20px;
            left: 40px;
            right: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .week-marker {
            background: white;
            border: 1px solid #ccc;
            border-radius: 16px;
            padding: 8px 16px;
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
            position: relative;
        }

        .week-marker::before {
            content: '';
            position: absolute;
            top: -22px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: #666;
            border-radius: 50%;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .phase-card {
                min-width: 300px;
                max-width: 350px;
                padding: 24px;
            }
            
            .phase-card.wide {
                min-width: 350px;
            }
            
            .card-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .thumbnail {
                width: 80px;
                height: 80px;
                align-self: flex-start;
            }
            
            .phase-title {
                font-size: 1.6rem;
            }
            
            .timeline-content {
                padding: 20px 0 100px 20px;
                gap: 24px;
            }
            
            .container {
                padding: 40px 20px;
            }

            .completion-content h2 {
                font-size: 2.2rem;
            }
            
            .completion-content p {
                font-size: 1.1rem;
            }
            
            .completion-section {
                padding: 60px 20px;
            }
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 12px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            opacity: 0.8;
            z-index: 100;
        }

        
        /* Google Logo SVG as CSS */
        svg.testimonial-google-logo {
            width: 20px;
            height: 20px;
            display: inline-block;
            margin-left: 8px;
            vertical-align: middle;
        }

        .google-logo-testimonial {
            width: 16px;
            height: 16px;
            display: inline-block;
            margin-left: 6px;
            vertical-align: middle;
        }

        /* Google Colors for text */
        .google-text {
            font-weight: 600;
        }
        
        .google-text .g1 { color: #4285F4; } /* Blue */
        .google-text .o1 { color: #EA4335; } /* Red */
        .google-text .o2 { color: #FBBC05; } /* Yellow */
        .google-text .g2 { color: #4285F4; } /* Blue */
        .google-text .l { color: #34A853; } /* Green */
        .google-text .e { color: #EA4335; } /* Red */

        /* testimonials section */
        .testimonials-container {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            padding: 40px 20px;
            min-height: 100vh;
            z-index: 7;
            background: hsl(0, 0%, 100%);
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        p.header-subtitle {
            color: black;
            text-align: center;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .header-left {
            width: 100%;
        }

        .header-left h2 {
            font-size: 38px;
            font-weight: 400;
            color: #000000;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }

        .rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .stars {
            display: flex;
            gap: 3px;
        }

        .star {
            color: #fff900;
            font-size: 20px;
        }

        .rating-text {
            color: #000000;
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .person-container {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            position: relative;
            height: 120px;
        }

        .person-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            transition: all 0.5s ease;
            opacity: 1;
            position: absolute;
        }

        .person-image.hidden {
            opacity: 0;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
        }

        .testimonials-slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            padding: 0 20px;
        }

        .testimonial-card {
            background: #000000;
            border-radius: 20px;
            padding: 50px;
            color: white;
            max-width: 800px;
            width: 100%;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .quote {
            font-size: 24px;
            line-height: 1.4;
            margin-bottom: 30px;
            position: relative;
        }

        .testimonial-rating {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
            align-items: center;
        }

        .testimonial-star {
            color: #ff6b8a;
            font-size: 16px;
        }

        .author {
            border-left: 3px solid #ffffff;
            padding-left: 15px;
        }

        .author-title {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .author-company {
            color: #ffffff;
            font-size: 14px;
        }

        .navigation {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border: 2px solid #ddd;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 20px;
            color: #666;
        }

        .nav-btn:hover {
            border-color: #2d5a3d;
            color: #2d5a3d;
        }

        .nav-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Enhanced Media Queries for Better Mobile Optimization */
        
        /* Large tablets */
        @media (max-width: 1024px) {
            .testimonials-container {
                padding: 30px 15px;
            }
            
            .header-left h2 {
                font-size: 34px;
            }
            
            .testimonial-card {
                padding: 40px;
                min-height: 280px;
            }
            
            .quote {
                font-size: 22px;
            }
        }

        /* Medium tablets */
        @media (max-width: 768px) {
            .testimonials-container {
                padding: 25px 10px;
                min-height: auto;
            }

            .header {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 30px;
            }

            .header-left h2 {
                font-size: 28px;
                margin-bottom: 15px;
            }

            p.header-subtitle {
                font-size: 14px;
                padding: 0 10px;
            }

            .rating {
                gap: 10px;
                margin-top: 20px;
            }

            .stars {
                gap: 2px;
            }

            .star {
                font-size: 18px;
            }

            .rating-text {
                font-size: 14px;
            }

            .google-logo {
                width: 16px;
                height: 16px;
            }

            .person-container {
                height: 100px;
                margin-bottom: 25px;
            }

            .person-image {
                width: 100px;
                height: 100px;
            }

            .testimonial-slide {
                padding: 0 10px;
            }

            .testimonial-card {
                padding: 30px 25px;
                min-height: 250px;
                border-radius: 15px;
            }

            .quote {
                font-size: 18px;
                margin-bottom: 25px;
                line-height: 1.5;
            }

            .testimonial-rating {
                margin-bottom: 15px;
                gap: 3px;
            }

            .testimonial-star {
                font-size: 14px;
            }

            .google-logo-testimonial {
                width: 14px;
                height: 14px;
                margin-left: 4px;
            }

            .author-title {
                font-size: 14px;
            }

            .author-company {
                font-size: 13px;
            }

            .navigation {
                margin-top: 30px;
                gap: 15px;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
            .testimonials-container {
                padding: 20px 5px;
            }

            .header-left h2 {
                font-size: 24px;
                line-height: 1.3;
            }

            p.header-subtitle {
                font-size: 13px;
                line-height: 1.5;
            }

            .rating {
                flex-direction: column;
                gap: 8px;
                align-items: center;
            }

            .rating-text {
                text-align: center;
                font-size: 13px;
            }

            .person-container {
                height: 80px;
                margin-bottom: 20px;
            }

            .person-image {
                width: 80px;
                height: 80px;
            }

            .testimonial-slide {
                padding: 0 5px;
            }

            .testimonial-card {
                padding: 25px 20px;
                min-height: 220px;
                border-radius: 12px;
            }

            .quote {
                font-size: 16px;
                line-height: 1.4;
                margin-bottom: 20px;
            }

            .testimonial-rating {
                justify-content: center;
                margin-bottom: 12px;
            }

            .author {
                text-align: center;
                border-left: none;
                border-top: 2px solid #ffffff;
                padding-left: 0;
                padding-top: 10px;
            }

            .author-title {
                font-size: 13px;
            }

            .author-company {
                font-size: 12px;
            }

            .navigation {
                margin-top: 25px;
                gap: 12px;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        /* Extra small devices */
        @media (max-width: 320px) {
            .testimonials-container {
                padding: 15px 3px;
            }

            .header-left h2 {
                font-size: 20px;
            }

            p.header-subtitle {
                font-size: 12px;
            }

            .testimonial-card {
                padding: 20px 15px;
                min-height: 200px;
            }

            .quote {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }

        /* Enhanced star styling with shadow and 3D effects */
.star {
    color: #fff900;
    font-size: 20px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(255, 249, 0, 0.4),
        inset -1px -1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
    position: relative;
}

/* Alternative: More pronounced 3D effect */
.star.three-d {
    color: #fff900;
    font-size: 20px;
    text-shadow: 
        1px 1px 0px #e6e000,
        2px 2px 0px #cccc00,
        3px 3px 0px #b3b300,
        4px 4px 6px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Subtle glow effect option */
.star.glow {
    color: #fff900;
    font-size: 20px;
    text-shadow: 
        0 0 5px rgba(255, 249, 0, 0.8),
        0 0 10px rgba(255, 249, 0, 0.6),
        0 0 15px rgba(255, 249, 0, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Testimonial stars styling */
.testimonial-star {
    color: #ff6b8a;
    font-size: 16px;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.5),
        0 0 6px rgba(255, 107, 138, 0.4);
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .star {
        font-size: 18px;
        text-shadow: 
            1px 1px 3px rgba(0, 0, 0, 0.3),
            0 0 6px rgba(255, 249, 0, 0.4);
    }
    
    .testimonial-star {
        font-size: 14px;
        text-shadow: 
            1px 1px 2px rgba(0, 0, 0, 0.4),
            0 0 4px rgba(255, 107, 138, 0.3);
    }
}
    
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    transition: color 0.3s ease;
}

.click-indicator {
    font-size: 0.9rem;
    color: #000000; /* adjust to your theme */
    transition: transform 0.3s ease;
}

.service-link:hover .click-indicator {
    transform: translateX(4px);
    text-decoration: underline;
}

.ticker-section{z-index: 20;}

footer{
    position: relative ;
    z-index: 20;
}