:root {
            --primary: #000;
            --secondary: #fff;
            --accent: #ff3c3c;
            --text: #333;
            --light-bg: #f5f5f5;
            --hero-text: #ffffff;
            --hero-font: Arial, sans-serif;
            --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--body-font);
            color: var(--text);
            background-color: var(--secondary);
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 4rem;
            z-index: 100;
            background-color: transparent;
            transition: background-color 0.3s ease;
        }
        
        nav.scrolled {
            background-color: var(--secondary);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        /* Replace the existing .logo styles with these: */
		.logo {
    		font-weight: 700;
    		font-size: 1.5rem;
    		color: var(--primary);
		}

		.logo-image {
    		height: 40px; /* Adjust based on your logo dimensions */
    		width: auto;
    		transition: all 0.3s ease;
		}

		/* Optional: Add hover effect */
		.logo-image:hover {
    		transform: scale(1.05);
		}
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 3rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }

        /* Hamburger Menu (hidden by default on desktop) */
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 100;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }

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

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

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

        /* Language Selector */
        .language-selector {
            position: relative;
            margin-left: 2rem;
            display: flex;
            align-items: center;
        }

        .language-dropdown {
            position: relative;
        }

        .language-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            font-size: 1.2rem;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

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

        .language-options {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--secondary);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            min-width: 120px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .language-dropdown:hover .language-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            text-decoration: none;
            color: var(--text);
            transition: background-color 0.3s ease;
        }

        .language-option:hover {
            background-color: var(--light-bg);
        }

        .flag {
            font-size: 1.2rem;
        }

        /* Flag switching based on language */
        .language-btn .flag-en,
        .language-btn .flag-kz {
            display: none;
        }

        /* Show English flag when language is English */
        html[lang="en"] .language-btn .flag-en {
            display: block;
        }

        /* Show Kazakh flag when language is Kazakh */
        html[lang="kz"] .language-btn .flag-kz {
            display: block;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Parallax Effect for Hero Video */
        .hero-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            transform: translateZ(0);
            will-change: transform;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
            z-index: -1;
        }
        
        .hero-content {
            text-align: center;
            max-width: 1000px;
            padding: 0 2rem;
            z-index: 1;
        }
        
        .hero-title {
            font-family: var(--hero-font);
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--hero-text);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateY(30px);
            line-height: 1.2;
        }

        /* Kazakh language specific adjustments */
        html[lang="kz"] .hero-title {
            font-size: 3.8rem;
            line-height: 1.1;
            font-family: Arial, sans-serif;
        }

        html[lang="kz"] .hero-title .fade-in {
            white-space: nowrap;
        }

        html[lang="kz"] body {
            font-family: Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Noto Sans', sans-serif;
            letter-spacing: 0.01em;
        }
        
        .hero-subtitle {
            font-size: 1.6rem;
            font-weight: 400;
            margin-bottom: 2.5rem;
            color: var(--hero-text);
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateY(30px);
            line-height: 1.5;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: var(--accent);
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(255, 60, 60, 0.3);
        }
        
        .cta-button:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 60, 60, 0.4);
        }
		/* App Store Buttons */
.app-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.app-button {
    display: inline-block;
    transition: all 0.3s ease;
}

.app-button img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.app-button:hover {
    transform: translateY(-5px);
}

.app-button:hover img {
    filter: brightness(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .app-button img {
        height: 45px;
    }
}
        
        /* Sections Common Styles */
        section {
            padding: 8rem 4rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .highlight {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }
        
        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: rgba(255, 60, 60, 0.2);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .highlight.in-view::after {
            transform: scaleX(1);
        }
        
        /* About Section */
        .about {
            background-color: var(--light-bg);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-text {
            opacity: 0;
            transform: translateX(-50px);
        }
        
        .about-text p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .about-image {
            opacity: 0;
            transform: translateX(50px);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Features Section */
        .features {
            background-color: var(--primary);
        }

        .features .section-title {
            color: var(--secondary);
        }

        .normal-text-white {
            color: var(--secondary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .feature-card {
            padding: 2rem;
            background-color: var(--light-bg);
            border-radius: 10px;
            opacity: 0;
            transform: translateY(50px);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .feature-desc {
            line-height: 1.6;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--light-bg);
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        /* Mobile horizontal scroll for gallery */
        @media (max-width: 768px) {
			.logo-image {
        		height: 35px; /* Slightly smaller for mobile */
    		}
            .gallery-container {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 1.5rem;
                padding: 1rem 0;
            }

            .gallery-container::-webkit-scrollbar {
                display: none;
            }

            .gallery-item {
                flex: 0 0 280px;
                scroll-snap-align: start;
                height: 250px;
            }
        }
        
        .gallery-item {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.8);
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--secondary);
            color: var(--text);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-info {
            opacity: 0;
            transform: translateX(-50px);
        }

        /* Social Links */
        .social-links {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background-color: var(--light-bg);
            border-radius: 8px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .social-link:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateY(-2px);
        }

        .social-link svg {
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .social-links {
                grid-template-columns: 1fr;
            }
        }
        
        .contact-form {
            opacity: 0;
            transform: translateX(50px);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            padding: 1rem 2.5rem;
            background-color: var(--accent);
            color: var(--secondary);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: var(--primary);
        }
        
        /* Curtain Reveal Effect */
        .curtain-reveal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            pointer-events: none;
        }

        .curtain-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: var(--accent);
            transform: translateY(-100%);
            animation: curtainTopOpen 1.2s ease-out forwards;
        }

        .curtain-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: var(--accent);
            transform: translateY(100%);
            animation: curtainBottomOpen 1.2s ease-out forwards;
        }

        @keyframes curtainTopOpen {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }

        @keyframes curtainBottomOpen {
            0% { transform: translateY(0); }
            100% { transform: translateY(100%); }
        }

        /* Staggered Text Reveal */
        .stagger-reveal span {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
        }

        .stagger-reveal.in-view span {
            animation: staggerReveal 0.6s ease forwards;
        }

        @keyframes staggerReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Gradient Text Highlight */
        .gradient-highlight {
            background: linear-gradient(45deg, var(--accent), #ff6b6b, var(--accent));
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Fade In Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease forwards;
        }

        .hero-title .fade-in:nth-child(1) {
            animation-delay: 0.5s;
        }

        .hero-title .fade-in:nth-child(3) {
            animation-delay: 1.5s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes blink {
            from, to { opacity: 0; }
            50% { opacity: 1; }
        }


        /* Letter Pop Animation */
        .letter-pop span {
            display: inline-block;
            opacity: 0;
            transform: scale(0);
            animation: letterPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .letter-pop span:nth-child(1) { animation-delay: 0.1s; }
        .letter-pop span:nth-child(2) { animation-delay: 0.2s; }
        .letter-pop span:nth-child(3) { animation-delay: 0.3s; }
        .letter-pop span:nth-child(4) { animation-delay: 0.4s; }
        .letter-pop span:nth-child(5) { animation-delay: 0.5s; }
        .letter-pop span:nth-child(6) { animation-delay: 0.6s; }
        .letter-pop span:nth-child(7) { animation-delay: 0.7s; }
        .letter-pop span:nth-child(8) { animation-delay: 0.8s; }
        .letter-pop span:nth-child(9) { animation-delay: 0.9s; }
        .letter-pop span:nth-child(10) { animation-delay: 1.0s; }

        @keyframes letterPop {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Hover Glow Effect */
        .hover-glow {
            position: relative;
            transition: all 0.3s ease;
        }

        .hover-glow:hover {
            text-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent), 0 0 30px var(--accent);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            padding: 4rem;
            background-color: var(--primary);
            color: var(--secondary);
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 2rem 0;
        }
        
        .footer-links li {
            margin: 0 1.5rem;
        }
        
        .footer-links a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .copyright {
            margin-top: 2rem;
            opacity: 0.7;
        }
        
        /* Media Queries */
        @media (max-width: 992px) {
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

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

            nav {
                padding: 1.5rem 2rem;
            }

            .nav-links li {
                margin-left: 1.5rem;
            }

            section {
                padding: 6rem 2rem;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            /* Kazakh language adjustments for tablet */
            html[lang="kz"] .hero-title {
                font-size: 3.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: var(--secondary);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                z-index: 99;
                padding: 2rem;
            }

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

            .nav-links li {
                margin: 1.5rem 0;
            }

            .nav-links a {
                font-size: 1.5rem;
                color: var(--text);
            }

            .hamburger {
                display: block;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            /* Mobile language selector in hamburger menu */
            .language-selector {
                margin-left: 0;
                margin-top: 2rem;
            }

            /* Kazakh language adjustments for mobile */
            html[lang="kz"] .hero-title {
                font-size: 2.4rem;
            }

            html[lang="kz"] .hero-title .fade-in {
                white-space: normal;
            }
        }