/*
 * COPYRIGHT © 2025 Zetorator. All Rights Reserved.
 * 
 * PROPRIETARY AND CONFIDENTIAL
 * 
 * This file and its contents are the exclusive property of Zetorator.
 * Unauthorized copying, modification, distribution, reproduction, or any form
 * of use—including but not limited to commercial exploitation, derivative works,
 * reverse engineering, or AI training—is strictly prohibited without explicit
 * written permission from the copyright holder.
 * 
 * USAGE RESTRICTIONS:
 * - NO copying, cloning, or reproduction in any form
 * - NO modifications, adaptations, or derivative works
 * - NO commercial use, resale, or monetization
 * - NO AI training, machine learning, or data harvesting
 * - NO reverse engineering or decompilation
 * - NO redistribution or republishing
 * 
 * PERMITTED USE:
 * Users may ONLY utilize this file by linking directly to the original source:
 * https://zetorator.com/def.css
 * 
 * All usage must maintain proper attribution and credit to the original developer.
 * 
 * LEGAL NOTICE:
 * Violation of this copyright notice will result in immediate legal action.
 * Unauthorized use constitutes copyright infringement and may subject violators
 * to civil and criminal penalties under applicable copyright laws.
 * 
 * For licensing inquiries or permissions, contact: hi@zetorator.com
 * 
 * Developer: Zetorator
 * Website: https://zetorator.com
 * Version: 1.0.0
 * Last Updated: October 27, 2025
 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --nav-blur-bg: rgba(255, 255, 255, 0.75);
    --nav-border: rgba(255, 255, 255, 0.18);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
    --menu-overlay-bg: rgba(255, 255, 255, 0.95);
    --menu-border-glow: rgba(102, 126, 234, 0.5);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0a0a0a;
        --bg-secondary: #1a1a1a;
        --text-primary: #ffffff;
        --text-secondary: #a0a0a0;
        --nav-blur-bg: rgba(26, 26, 26, 0.75);
        --nav-border: rgba(255, 255, 255, 0.08);
        --shadow-color: rgba(0, 0, 0, 0.5);
        --gradient-start: #667eea;
        --gradient-end: #764ba2;
        --menu-overlay-bg: rgba(26, 26, 26, 0.95);
        --menu-border-glow: rgba(102, 126, 234, 0.8);
    }
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ========================================NVigation
   
        /* Marquee */
        .marquee-container {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            padding: 1rem 0;
            overflow: hidden;
            z-index: 999;
        }
        
        .marquee {
            display: flex;
            white-space: nowrap;
            animation: marquee 20s linear infinite;
        }
        
        .marquee span {
            font-weight: 700;
            font-size: 1rem;
            color: #ffffff;
            padding: 0 2rem;
            letter-spacing: 2px;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

/* Marquee */
.marquee-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    padding: 1rem 0;
    overflow: hidden;
    z-index: 999;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee span {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    padding: 0 2rem;
    letter-spacing: 2px;
}

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

/* ========================================
   HERO SECTION STYLES
   ======================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.svg-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.filter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.8;
    mix-blend-mode: screen;
}

#rive-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    z-index: 3;
    opacity: 0.6;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    margin-bottom: px;
    letter-spacing: -3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #ffd700, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    filter: blur(20px);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(50px);
}

/* Hero CTA Button */
.hero-content .b-cta-button {
    position: relative;
    display: inline-block;
    padding: 20px 60px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f, #c44569);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(238, 90, 111, 0.5);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.hero-content .b-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-content .b-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 80px rgba(238, 90, 111, 0.7);
}

.hero-content .b-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.hero-content .b-cta-button:active {
    transform: translateY(0) scale(0.98);
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 4;
}

.curve-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 15;
}

.next-section {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00de;
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #00fff9;
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip-path: inset(40% 0 61% 0); }
    20% { clip-path: inset(92% 0 1% 0); }
    40% { clip-path: inset(43% 0 1% 0); }
    60% { clip-path: inset(25% 0 58% 0); }
    80% { clip-path: inset(54% 0 7% 0); }
    100% { clip-path: inset(58% 0 43% 0); }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 968px) {
    nav {
        padding: 0 1.5rem;
    }
    
    .nav-menu,
    
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-content .cta-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    #rive-canvas {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    nav {
        height: 60px;
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .mobile-menu-items li a {
        font-size: 2rem;
    }
}
        /* ========================================
           TECH LOGOS SECTION STYLES - ISOLATED
           ======================================== */

        .tech-logos-section {
            width: 100%;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
            padding: 80px 20px;
            position: relative;
        }

        .tech-logos-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .tech-logos-heading {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .tech-logos-heading h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
        }

        .tech-logos-heading p {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            color: #888888;
            font-weight: 400;
            font-family: 'Inter', sans-serif;
        }

        .tech-marquee-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .tech-marquee-wrapper::before,
        .tech-marquee-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 200px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .tech-marquee-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #000000 0%, transparent 100%);
        }

        .tech-marquee-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #000000 0%, transparent 100%);
        }

        .tech-marquee-track {
            display: flex;
            align-items: center;
            gap: 60px;
            width: fit-content;
        }

        .tech-logo-card {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 140px;
            height: 100px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .tech-logo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .tech-logo-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
        }

        .tech-logo-card:hover::before {
            opacity: 1;
        }

        .tech-logo-card i {
            font-size: 42px;
            color: #ffffff;
            transition: all 0.4s ease;
        }

        .tech-logo-card:hover i {
            transform: scale(1.1);
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
        }

        /* SVG Morphic Background for Tech Section */
        .tech-morphic-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.15;
            pointer-events: none;
        }

        .tech-morphic-bg svg {
            width: 100%;
            height: 100%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .tech-logos-section {
                padding: 60px 20px;
            }

            .tech-marquee-track {
                gap: 40px;
            }

            .tech-logo-card {
                width: 110px;
                height: 80px;
                padding: 20px;
            }

            .tech-logo-card i {
                font-size: 32px;
            }

            .tech-marquee-wrapper::before,
            .tech-marquee-wrapper::after {
                width: 100px;
            }
        }

        /* Custom Logo Colors */
        .tech-logo-card .fa-aws { color: #FF9900; }
        .tech-logo-card .fa-digital-ocean { color: #0080FF; }
        .tech-logo-card .fa-wordpress { color: #21759B; }
        .tech-logo-card .fa-shopify { color: #96bf48; }
        .tech-logo-card .fa-figma { color: #F24E1E; }
        .tech-logo-card .fa-wix { color: #0C6EFC; }
        .tech-logo-card .fa-meta { color: #0081FB; }
        .tech-logo-card .fa-php { color: #777BB4; }
        .tech-logo-card .fa-laravel { color: #FF2D20; }
        .tech-logo-card .fa-google { color: #4285F4; }
        .tech-logo-card .fa-microsoft { color: #00A4EF; }
        .tech-logo-card .fa-brain { color: #10A37F; }
        .tech-logo-card .fa-canva { color: #00C4CC; }
.rubik-iso-regular {
  font-family: "Rubik Iso", system-ui;
  font-weight: 400;
  font-style: normal;
  color:0839033;
}
        /* Hero Text Container Styles */
        .rubik-iso-regular {
            font-size: clamp(2rem, 10vw, 8rem);
            font-weight: 400; 
            text-align: center;
            line-height: 1.1;
            /* Essential properties for gradient text */
            
            /* Define a wide, colorful gradient */
            background: linear-gradient(
                90deg, 
                #FF00A2 0%,      /* Pink */
                #4AF6FF 25%,     /* Cyan */
                #F8FF4A 50%,     /* Yellow */
                #FF00A2 75%,     /* Pink */
                #4AF6FF 100%     /* Cyan */
            );
            
            /* The gradient is 500% wide, so only a small section is visible at a time */
            background-size: 500% auto; 
            
            /* Clip the background to the text shape */
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent; /* Makes the text transparent, showing the background */
            
            /* Apply the continuous animation */
            animation: slideGradient 15s linear infinite;
        }

        /* --- Keyframe Animation: Slide the Gradient --- */
        @keyframes slideGradient {
            0% {
                background-position: 0% center;
            }
            100% {
                /* Shifts the background position 100% horizontally, creating a seamless loop */
                background-position: 100% center;
            }
        }
        
.honk {
  font-family: "Honk", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "MORF" 15,
    "SHLN" 50;
    font-size: 50px; 
}
.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
}
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
}
        .n-cta-button {
            display: inline-block;
            padding: 15px 30px;
            font-size: 1.2em;
            font-weight: bold;
            color: #ffffff;
            background: linear-gradient(45deg, #000000, #001f3f); /* Black to dark blue gradient */
            border: 2px solid #00bfff; /* Solid blue border to match neon glow */
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 10;
            margin-top: 10%;
            /* Neon glow effect in blue */
            box-shadow:
                0 0 5px #00bfff,
                0 0 10px #00bfff,
                0 0 15px #00bfff,
                0 0 20px #00bfff,
                0 0 30px #00bfff;
            animation: neon-pulse 2s ease-in-out infinite alternate;
        }

        @keyframes neon-pulse {
            from {
                box-shadow:
                    0 0 5px #00bfff,
                    0 0 10px #00bfff,
                    0 0 15px #00bfff,
                    0 0 20px #00bfff,
                    0 0 30px #00bfff;
            }
            to {
                box-shadow:
                    0 0 10px #00bfff,
                    0 0 20px #00bfff,
                    0 0 25px #00bfff,
                    0 0 35px #00bfff,
                    0 0 45px #00bfff;
            }
        }

        .n-cta-button:hover {
            transform: translateY(-3px);
            box-shadow:
                0 0 10px #00bfff,
                0 0 20px #00bfff,
                0 0 30px #00bfff,
                0 0 40px #00bfff,
                0 0 50px #00bfff;
            animation: none; /* Pause pulse on hover */
        }

        .n-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .n-cta-button:hover::before {
            left: 100%;
        }

        .n-cta-button:active {
            transform: translateY(-1px);
        }
        .rammetto-one-regular {
  font-family: "Rammetto One", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-text-stroke: 1px black;
  
    
    /* Fallback for older browsers */
    text-shadow: 
        -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black,
        -2px 0 0 black,
        2px 0 0 black,
        0 -2px 0 black,
        0 2px 0 black;
}
        .spacer {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #666;
        }

        /* Portfolio Section */
        .portfolio-section {
            min-height: 100vh;
            padding: 100px 5%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Elements */
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
            pointer-events: none;
        }

        .bg-circle-1 {
            width: 500px;
            height: 500px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            top: -100px;
            right: -100px;
            filter: blur(80px);
        }

        .bg-circle-2 {
            width: 400px;
            height: 400px;
            background: linear-gradient(45deg, #a8e6cf, #ffd3b6);
            bottom: -100px;
            left: -100px;
            filter: blur(80px);
        }

        /* Headline Container */
        .headline-container {
            text-align: center;
            margin-bottom: 100px;
            perspective: 1000px;
        }

        .portfolio-headline {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1;
            position: relative;
            display: inline-block;
        }

        .headline-word {
            display: inline-block;
            margin: 0 15px;
            position: relative;
        }

        .headline-char {
            display: inline-block;
            position: relative;
            transform-origin: 50% 100%;
            opacity: 0;
            color:white;
        }

        /* SVG Draw Effect for Underline */
        .headline-underline {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 20px;
        }

        .underline-path {
            stroke: #00ff88;
            stroke-width: 4;
            fill: none;
            stroke-linecap: round;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #888;
            margin-top: 30px;
            opacity: 0;
            font-weight: 300;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .portfolio-item {
            position: relative;
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateY(100px) scale(0.8);
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,107,107,0.3) 0%, rgba(78,205,196,0.3) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .portfolio-item:hover::before {
            opacity: 1;
        }

        .item-image {
            width: 100%;
            height: 60%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .item-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.03) 10px,
                rgba(255,255,255,0.03) 20px
            );
        }

        .item-number {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            font-weight: 900;
            color: rgba(255,255,255,0.1);
            line-height: 1;
            z-index: 2;
        }

        .item-content {
            padding: 30px;
            position: relative;
            z-index: 2;
        }

        .item-category {
            font-size: 0.85rem;
            color: #00ff88;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .item-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .item-description {
            font-size: 0.95rem;
            color: #aaa;
            line-height: 1.6;
        }

        /* Reveal Overlay Effect */
        .reveal-overlay {
            position: absolute;
            inset: 0;
            background: #00ff88;
            z-index: 10;
            transform-origin: left;
        }

        /* Alternate Colors for Portfolio Items */
        .portfolio-item:nth-child(1) .item-image {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .portfolio-item:nth-child(2) .item-image {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .portfolio-item:nth-child(3) .item-image {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .portfolio-item:nth-child(4) .item-image {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .portfolio-item:nth-child(5) .item-image {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .portfolio-item:nth-child(6) .item-image {
            background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
        }

        /* Stats Section */
        .stats-section {
            max-width: 1200px;
            margin: 100px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            padding: 0 20px;
        }

        .stat-item {
            text-align: center;
            padding: 40px 20px;
            border-radius: 15px;
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.05);
            opacity: 0;
            transform: translateY(50px);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #00ff88, #00b8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .portfolio-headline {
                font-size: 3rem;
            }

            .headline-word {
                margin: 0 8px;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .portfolio-item {
                height: 400px;
            }
        }
        /* Process Section */
        .bo-process-section {
            background: #000;
            color: #fff;
            overflow: hidden;
            position: relative;
        }

        .bo-process-container {
            max-width: 100%;
            padding: 80px 0;
        }

        .bo-process-header {
            text-align: center;
            padding: 0 20px 60px;
            position: relative;
            z-index: 2;
        }

        .bo-process-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            background: linear-gradient(135deg, #ff6e61, #6fbe8d, #f7c94b, #6a5bcd);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            animation: bo-gradient-shift 8s ease infinite;
        }

        @keyframes bo-gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .bo-process-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: #aaa;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Horizontal Scroll Container */
        .bo-scroll-wrapper {
            position: relative;
            padding: 40px 0;
        }

        .bo-horizontal-scroll {
            display: flex;
            gap: 30px;
            padding: 0 5vw;
            will-change: transform;
        }

        /* Process Cards */
        .bo-process-card {
            min-width: clamp(280px, 85vw, 420px);
            height: clamp(500px, 70vh, 600px);
            background: linear-gradient(145deg, #111, #1a1a1a);
            border-radius: 24px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .bo-process-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, transparent, transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .bo-process-card:hover::before {
            background: linear-gradient(135deg, #ff6e61, #6fbe8d, #f7c94b, #ff9985, #6a5bcd);
            opacity: 1;
            animation: bo-border-glow 3s ease infinite;
        }

        @keyframes bo-border-glow {
            0%, 100% { filter: brightness(1) drop-shadow(0 0 10px rgba(255, 110, 97, 0.5)); }
            50% { filter: brightness(1.3) drop-shadow(0 0 25px rgba(106, 91, 205, 0.8)); }
        }

        .bo-process-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(255, 110, 97, 0.3);
        }

        /* Card Content */
        .bo-card-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6e61, #6a5bcd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 20px;
        }

        .bo-card-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 25px;
        }

        .bo-card-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .bo-card-description {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            color: #999;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .bo-card-timeline {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 20px;
            background: rgba(255, 110, 97, 0.1);
            border-radius: 12px;
            border-left: 3px solid #ff6e61;
        }

        .bo-timeline-icon {
            width: 24px;
            height: 24px;
        }

        .bo-timeline-text {
            font-size: 0.95rem;
            color: #ff6e61;
            font-weight: 600;
        }

        /* SVG Filters */
        .bo-svg-defs {
            position: absolute;
            width: 0;
            height: 0;
        }

        /* Background Effects */
        .bo-bg-gradient {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            pointer-events: none;
        }

        .bo-bg-gradient-1 {
            top: 10%;
            left: 10%;
            background: radial-gradient(circle, #ff6e61, transparent);
        }

        .bo-bg-gradient-2 {
            top: 50%;
            right: 10%;
            background: radial-gradient(circle, #6a5bcd, transparent);
        }

        .bo-bg-gradient-3 {
            bottom: 10%;
            left: 40%;
            background: radial-gradient(circle, #6fbe8d, transparent);
        }

        /* Desktop Specific */
        @media (min-width: 768px) {
            .bo-process-card {
                min-width: 420px;
            }

            .bo-horizontal-scroll {
                gap: 40px;
            }
        }

        /* Mobile Specific */
        @media (max-width: 767px) {
            .bo-process-container {
                padding: 60px 0;
            }

            .bo-process-header {
                padding: 0 20px 40px;
            }

            .bo-horizontal-scroll {
                gap: 20px;
                padding: 0 20px;
            }

            .bo-process-card {
                padding: 30px 25px;
            }

            .bo-card-number {
                font-size: 3rem;
            }
        }

        /* Scroll Indicator */
        .bo-scroll-indicator {
            text-align: center;
            padding: 40px 20px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            color: #666;
            font-size: 0.9rem;
        }

        .bo-scroll-arrow {
            width: 30px;
            height: 30px;
            animation: bo-arrow-slide 2s ease-in-out infinite;
        }

        @keyframes bo-arrow-slide {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }
/* fqs strts form htere*/
    :root{
      --bg: #000000;
      --surface: #0b0b0d;
      --surface-2: #121417;
      --border: #22262e;

      --text-primary: #f1f5f9;
      --text-secondary: #cbd5e1;
      --muted: #94a3b8;

      --brand-1: #22d3ee;
      --brand-2: #a78bfa;

      --success: #10b981;

      --price-bg: rgba(34,211,238,0.18);
      --price-fg: #67e8f9;
      --focus: #22d3ee;

      --shadow-1: 0 0 0 1px rgba(148,163,184,0.12);
      --shadow-2: 0 18px 50px rgba(0,0,0,0.65);

      --radius-lg: 18px;
      --radius-md: 12px;
      --radius-sm: 8px;
    }

    html { font-size: 18px; }
    body{
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      background: var(--bg);
      color: var(--text-primary);
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .xi-faq{
      width: 100%;
      max-width: 980px;
      margin: 0 auto;
      background: var(--surface);
      padding: clamp(24px, 2.2vw + 16px, 44px) clamp(18px, 3vw + 12px, 44px);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-1), var(--shadow-2);
    }

    h1{
      margin: 0 0 10px 0;
      text-align: center;
      font-size: clamp(2rem, 2.8vw + 1rem, 3.25rem);
      color: var(--text-primary);
      letter-spacing: -0.25px;
    }

    .xi-subtitle{
      text-align: center;
      color: var(--muted);
      font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.3rem);
      margin-bottom: 30px;
      font-style: italic;
    }

    .xi-faq-item{
      border-bottom: 1px solid var(--border);
      opacity: 0;
      animation: xi-fadeInUp 0.6s ease-out forwards;
    }
    .xi-faq-item:last-child{ border-bottom: none; }

    .xi-faq-question{
      width: 100%;
      background: transparent;
      border: none;
      text-align: left;
      padding: clamp(18px, 1.6vw + 10px, 26px) 8px;
      font-size: clamp(1.125rem, 0.85vw + 1rem, 1.5rem);
      font-weight: 700;
      color: var(--text-primary);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color .25s ease, padding-left .25s ease, background .25s ease;
      position: relative;
      border-radius: var(--radius-sm);
    }

    .xi-faq-question:hover{
      color: var(--brand-1);
      padding-left: 14px;
      background: var(--surface-2);
    }

    .xi-faq-question::before{
      content: '';
      position: absolute;
      left: 0; top: 50%;
      transform: translateY(-50%);
      width: 3px; height: 0;
      background: linear-gradient(180deg, var(--brand-1), var(--brand-2));
      border-radius: 2px;
      transition: height .25s ease;
    }
    .xi-faq-question:hover::before,
    .xi-faq-question.active::before{ height: 60%; }

    .xi-icon{
      font-size: clamp(1.6rem, 0.8vw + 1.2rem, 2rem);
      margin-left: 14px;
      min-width: 32px;
      text-align: center;
      color: var(--brand-1);
      transition: transform .35s cubic-bezier(.68,-.55,.265,1.55), color .25s ease;
      font-weight: 300;
    }
    .xi-faq-question.active .xi-icon{
      transform: rotate(135deg);
      color: var(--brand-2);
    }

    .xi-faq-panel{
      max-height: 0;
      overflow: hidden;
      transition: max-height .38s cubic-bezier(.4,0,.2,1);
    }

    .xi-faq-answer{
      padding: 0 8px clamp(18px, 1.4vw + 12px, 28px) 12px;
      color: var(--text-secondary);
      font-size: clamp(1.0625rem, 0.7vw + 0.95rem, 1.35rem);
      line-height: 1.85;
    }

    .xi-faq-answer strong{
      color: var(--text-primary);
      font-weight: 800;
      background: linear-gradient(0deg, rgba(246,224,94,0.28) 0%, rgba(246,224,94,0.28) 100%);
      background-size: 100% 48%;
      background-repeat: no-repeat;
      background-position: 0 88%;
      padding: 1px 2px;
      border-radius: 2px;
    }
    .xi-faq-answer em{
      color: var(--brand-1);
      font-style: italic;
      font-weight: 600;
    }

    .xi-price{
      background: var(--price-bg);
      color: var(--price-fg);
      padding: 4px 8px;
      border-radius: 8px;
      font-weight: 800;
      white-space: nowrap;
    }

    .xi-benefit{
      position: relative;
      padding-left: 24px;
      margin: 8px 0;
      color: var(--text-secondary);
      display: block;
    }
    .xi-benefit::before{
      content: '✓';
      position: absolute;
      left: 0; top: 0;
      color: var(--success);
      font-weight: 900;
    }

    .xi-faq-question:focus{
      outline: 3px solid var(--focus);
      outline-offset: 2px;
    }

    @media (prefers-reduced-motion: reduce){
      * { animation: none !important; transition: none !important; }
    }

    @keyframes xi-fadeInUp{
      from{ opacity: 0; transform: translateY(18px); }
      to{ opacity: 1; transform: translateY(0); }
    }
    .xi-faq-item:nth-child(1){ animation-delay: .06s; }
    .xi-faq-item:nth-child(2){ animation-delay: .10s; }
    .xi-faq-item:nth-child(3){ animation-delay: .14s; }
    .xi-faq-item:nth-child(4){ animation-delay: .18s; }
    .xi-faq-item:nth-child(5){ animation-delay: .22s; }
    .xi-faq-item:nth-child(6){ animation-delay: .26s; }
    .xi-faq-item:nth-child(7){ animation-delay: .30s; }
    .xi-faq-item:nth-child(8){ animation-delay: .34s; }
    .xi-faq-item:nth-child(9){ animation-delay: .38s; }
    .xi-faq-item:nth-child(10){ animation-delay: .42s; }
    .xi-faq-item:nth-child(11){ animation-delay: .46s; }
    .xi-faq-item:nth-child(12){ animation-delay: .50s; }
    .xi-faq-item:nth-child(13){ animation-delay: .54s; }
    .xi-faq-item:nth-child(14){ animation-delay: .58s; }
    .xi-faq-item:nth-child(15){ animation-delay: .62s; }
/* service section stars form there*/
        main {
            display: block;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: inherit;
            font-size: inherit;
        }

        a {
            background-color: transparent;
            text-decoration: none;
            color: inherit;
        }

        img {
            border-style: none;
            max-width: 100%;
            display: block;
        }

        button, input, optgroup, select, textarea {
            font-family: inherit;
            font-size: 100%;
            line-height: 1.15;
            margin: 0;
        }

        button {
            overflow: visible;
            text-transform: none;
        }

        /* Custom Styles */
        .s1-wrapper {
            min-height: 1vh;
            background: #f8f8f8;
            padding: 60px 20px;
        }

        .s1-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .s1-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .s1-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #666;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .s1-breadcrumb::before {
            content: '←';
            font-size: 14px;
        }

        .s1-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -1px;
            text-transform: uppercase;
        }

        .s1-view-more {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 24px;
            background: #6366f1;
            color: white;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .s1-view-more:hover {
            background: #4f46e5;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
        }

        .s1-services-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .s1-service-item {
            position: relative;
            padding: 35px 40px;
            border-bottom: 1px solid #e0e0e0;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .s1-service-item:first-child {
            border-top: 1px solid #e0e0e0;
        }

        .s1-service-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .s1-service-item:hover::before {
            width: 100%;
        }

        .s1-service-content {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .s1-service-left {
            display: flex;
            align-items: center;
            gap: 30px;
            flex: 1;
        }

        .s1-service-number {
            font-size: 16px;
            font-weight: 500;
            color: #999;
            transition: color 0.4s ease;
            min-width: 30px;
        }

        .s1-service-item:hover .s1-service-number {
            color: rgba(255, 255, 255, 0.8);
        }

        .s1-service-info {
            flex: 1;
        }

        .s1-service-name {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            transition: color 0.4s ease;
        }

        .s1-service-item:hover .s1-service-name {
            color: white;
        }

        .s1-service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .s1-service-tag {
            font-size: 12px;
            color: #666;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.4s ease;
        }

        .s1-service-item:hover .s1-service-tag {
            color: rgba(255, 255, 255, 0.9);
        }

        .s1-service-right {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .s1-service-image {
            width: 180px;
            height: 80px;
            overflow: hidden;
            border-radius: 8px;
            opacity: 0;
            transform: scale(0.8) translateX(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .s1-service-item:hover .s1-service-image {
            opacity: 1;
            transform: scale(1) translateX(0);
        }

        .s1-service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .s1-service-arrow {
            width: 50px;
            height: 50px;
            background: #6366f1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            transition: all 0.4s ease;
            flex-shrink: 0;
        }

        .s1-service-item:hover .s1-service-arrow {
            background: white;
            color: #6366f1;
            transform: rotate(45deg);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .s1-service-image {
                width: 150px;
                height: 70px;
            }

            .s1-service-name {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .s1-wrapper {
                padding: 40px 15px;
            }

            .s1-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .s1-service-item {
                padding: 25px 20px;
            }

            .s1-service-content {
                flex-direction: column;
                align-items: flex-start;
            }

            .s1-service-left {
                width: 100%;
                gap: 15px;
            }

            .s1-service-right {
                width: 100%;
                justify-content: space-between;
                margin-top: 15px;
            }

            .s1-service-image {
                width: 120px;
                height: 60px;
                position: static;
                transform: scale(0.8) translateY(10px);
            }

            .s1-service-item:hover .s1-service-image {
                transform: scale(1) translateY(0);
            }

            .s1-service-arrow {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .s1-service-name {
                font-size: 1.3rem;
            }

            .s1-service-tag {
                font-size: 10px;
            }
        }

        @media (max-width: 480px) {
            .s1-service-number {
                display: none;
            }

            .s1-service-left {
                gap: 10px;
            }

            .s1-view-more {
                width: 100%;
                justify-content: center;
            }

            .s1-service-image {
                width: 100px;
                height: 50px;
            }
        }

        /* Animation for page load */
        @keyframes s1-fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .s1-service-item {
            animation: s1-fade-in-up 0.6s ease forwards;
        }

        .s1-service-item:nth-child(1) { animation-delay: 0.1s; }
        .s1-service-item:nth-child(2) { animation-delay: 0.2s; }
        .s1-service-item:nth-child(3) { animation-delay: 0.3s; }
        .s1-service-item:nth-child(4) { animation-delay: 0.4s; }

        .s1-service-item {
            opacity: 0;
        }
/* marquee cta contact*/
        .ed-wrapper {
            width: 100%;
            padding: 2rem 0;
        }

        .ed-section-marquee {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            padding: 2rem 0;
            transform: rotate(-2deg);
            margin: 2rem 0;
        }

        .ed-marquee-container {
            display: flex;
            gap: 3rem;
            width: fit-content;
            will-change: transform;
        }

        .ed-marquee-item {
            display: flex;
            align-items: center;
            gap: 3rem;
            white-space: nowrap;
        }

        .ed-text-cta {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .ed-text-cta:hover {
            color: #ffd700;
            transform: scale(1.1);
            cursor: pointer;
        }

        .ed-separator {
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            border-radius: 50%;
            display: inline-block;
            animation: ed-pulse 2s ease-in-out infinite;
        }

        @keyframes ed-pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.7;
            }
        }

        .ed-heading-top {
            text-align: center;
            color: #fff;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: lowercase;
            letter-spacing: -0.01em;
        }

        .ed-heading-bottom {
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-top: 1rem;
            font-weight: 400;
        }

        .ed-highlight {
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (max-width: 768px) {
            .ed-section-marquee {
                padding: 1.5rem 0;
                transform: rotate(-3deg);
            }
            
            .ed-marquee-item {
                gap: 2rem;
            }
        }
/* contact us section starts from there */
        .contact-section {
            min-height: 1vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            position: relative;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(154, 205, 50, 0.1), transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(255, 255, 0, 0.08), transparent 50%);
            pointer-events: none;
        }

        .container-v {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            position: relative;
            z-index: 1;
        }

        /* Left Side - Contact Details */
        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
            padding: 20px;
        }

        .contact-info h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #9ACD32, #FFFF00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInLeft 0.8s ease;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            border-left: 3px solid #9ACD32;
            background: rgba(154, 205, 50, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            transition: all 0.3s ease;
            animation: fadeInLeft 0.8s ease;
        }

        .contact-item:nth-child(2) { animation-delay: 0.1s; }
        .contact-item:nth-child(3) { animation-delay: 0.2s; }
        .contact-item:nth-child(4) { animation-delay: 0.3s; }

        .contact-item:hover {
            border-left-color: #FFFF00;
            background: rgba(154, 205, 50, 0.1);
            transform: translateX(10px);
        }

        .contact-icon {
            font-size: 24px;
            color: #9ACD32;
            min-width: 30px;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            color: #FFFF00;
            transform: scale(1.2);
        }

        .contact-details h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #9ACD32;
        }

        .contact-details p {
            font-size: 0.95rem;
            color: #ccc;
            line-height: 1.6;
        }

        .contact-details a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #9ACD32;
        }

        /* Right Side - Book a Call Form */
        .form-container {
            background: rgba(20, 20, 20, 0.6);
            padding: 50px 40px;
            border-radius: 20px;
            border: 1px solid rgba(154, 205, 50, 0.2);
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: fadeInRight 0.8s ease;
        }

        .form-container h3 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #fff;
        }

        .form-group {
            margin-bottom: 35px;
            position: relative;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px solid rgba(154, 205, 50, 0.3);
            padding: 12px 0;
            font-size: 1rem;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-bottom-color: #9ACD32;
        }

        .form-group label {
            position: absolute;
            left: 0;
            top: 12px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group select:focus + label,
        .form-group select:valid + label,
        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label {
            top: -20px;
            font-size: 0.85rem;
            color: #9ACD32;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ACD32' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            padding-right: 30px;
        }

        .form-group select option {
            background: #1a1a1a;
            color: #fff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
            max-height: 200px;
        }

        .disclaimer {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .disclaimer a {
            color: #9ACD32;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .disclaimer a:hover {
            color: #FFFF00;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #9ACD32, #7CB518);
            color: #000;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .submit-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(154, 205, 50, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 40px;
            animation: fadeIn 0.8s ease;
        }

        .success-message.show {
            display: block;
        }

        .success-icon {
            font-size: 4rem;
            color: #9ACD32;
            margin-bottom: 20px;
            animation: scaleIn 0.6s ease;
        }

        .success-message h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #9ACD32;
        }

        .success-message p {
            font-size: 1.1rem;
            color: #ccc;
        }

        .back-btn {
            margin-top: 30px;
            padding: 12px 30px;
            background: transparent;
            color: #9ACD32;
            border: 2px solid #9ACD32;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: #9ACD32;
            color: #000;
        }



        /* Responsive Design */
        @media (max-width: 968px) {
            .container-v {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-info h2 {
                font-size: 2.5rem;
            }

            .form-container {
                padding: 40px 30px;
            }
        }

        @media (max-width: 576px) {
            .contact-section {
                padding: 40px 15px;
            }

            .contact-info h2 {
                font-size: 2rem;
            }

            .contact-info {
                padding: 10px;
            }

            .contact-item {
                padding: 15px;
            }

            .form-container {
                padding: 30px 20px;
            }

            .form-container h3 {
                font-size: 1.5rem;
            }

            .submit-btn {
                font-size: 1rem;
            }
        }
        /* Footer Styles */
        footer {
            background: #000;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Footer Top Section */
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
        }

        /* Brand Section */
        .footer-brand {
            max-width: 320px;
        }

        .footer-logo {
            margin-bottom: 24px;
            display: inline-block;
        }

        .footer-logo svg {
            width: 160px;
            height: 40px;
            transition: opacity 0.3s ease;
        }

        .footer-logo:hover svg {
            opacity: 0.8;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 28px;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .social-links svg {
            width: 18px;
            height: 18px;
            fill: rgba(255, 255, 255, 0.7);
            transition: fill 0.3s ease;
        }

        .social-links a:hover svg {
            fill: #fff;
        }

        /* Footer Links Columns */
        .footer-column h3 {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 24px;
        }

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

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.2s ease;
            display: inline-block;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background: #fff;
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: #fff;
            transform: translateX(4px);
        }

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

        /* Newsletter Section */
        .newsletter {
            margin-top: 32px;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            margin-top: 16px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #fff;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .newsletter-btn {
            padding: 12px 24px;
            background: #fff;
            color: #000;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-1px);
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 32px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
        }

        .footer-legal {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }

        .footer-legal a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-top {
                grid-template-columns: 2fr 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 0 24px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
                padding-bottom: 40px;
            }

            .footer-brand {
                max-width: 100%;
            }

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

            .footer-legal {
                flex-direction: column;
                gap: 12px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-btn {
                width: 100%;
            }
        }

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

        .footer-column {
            animation: fadeInUp 0.6s ease forwards;
        }

        .footer-column:nth-child(1) { animation-delay: 0.1s; }
        .footer-column:nth-child(2) { animation-delay: 0.2s; }
        .footer-column:nth-child(3) { animation-delay: 0.3s; }
        .footer-column:nth-child(4) { animation-delay: 0.4s; }
        .footer-column:nth-child(5) { animation-delay: 0.5s; }
        
/* trial logo*/
/* Styling for the Logo Container (the div) */
.logo-container {
    /* Optional: Set a max-width for the container if you want to limit its size */
    max-width: 190px;
    /* Optional: Add a small margin for spacing */
    margin: 10px; 
}

/* Styling for the Logo Image */
.responsive-logo {
    /* Set the maximum size to your original dimensions */
    max-width: 190px;
    max-height: 40px; 

    /* Critical for Responsiveness: */
    /* Allows the image to scale down relative to its parent container */
    width: 100%; 
    /* Maintains the image's original proportion/aspect ratio */
    height: auto; 
    
    /* Ensures the image behaves like a block element, removing any default spacing */
    display: block; 
}
/* demo nev */
:root {
    --tbg-primary: #0a0a0a;
    --tbg-secondary: #1a1a1a;
    --ttext-primary: #ffffff;
    --ttext-secondary: #a0a0a0;
    --taccent: #6366f1;
    --taccent-glow: rgba(99, 102, 241, 0.4);
    --tglass-bg: rgba(255, 255, 255, 0.08);
    --tglass-border: rgba(255, 255, 255, 0.12);
    --tnav-height: 80px;
}

@media (prefers-color-scheme: light) {
    :root {
        --tbg-primary: #ffffff;
        --tbg-secondary: #f5f5f5;
        --ttext-primary: #1a1a1a;
        --ttext-secondary: #666666;
        --tglass-bg: rgba(0, 0, 0, 0.06);
        --tglass-border: rgba(0, 0, 0, 0.08);
    }
}



/* Navbar Container */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--tnav-height);
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--tglass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--tglass-border);
    border-radius: 0 0 16px 16px;
    z-index: 10000;
}

/* Logo */
#navbar .logo-link {
    display: flex;
    align-items: center;
}

#navbar .logo-link img.logo {
    height: 40px;
    width: auto;
    user-select: none;
    pointer-events: none;
}

/* Navigation Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-menu li a {
    font-weight: 700;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: greenyellow;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: greenyellow;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-menu li a:hover::after,
.nav-menu li a:focus::after {
    width: 100%;
}

/* Call To Action Buttons */
.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cta-button {
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--taccent-glow);
    transition: all 0.4s ease;
    color: white;
    background: linear-gradient(135deg, var(--taccent), #4f46e5);
}

.cta-button.cta-secondary {
    background: transparent;
    box-shadow: none;
    color: var(--ttext-secondary);
    border: 2px solid var(--taccent);
}

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

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.8s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px var(--taccent-glow);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 8px 25px var(--taccent-glow);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--taccent-glow);
}

.mobile-menu-toggle svg.asterisk-icon {
    width: 24px;
    height: 24px;
    stroke: var(--ttext-primary);
    stroke-width: 2;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-toggle:hover svg.asterisk-icon {
    transform: rotate(180deg);
    stroke: var(--taccent);
}

/* Mobile Overlay Menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tglass-bg);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid var(--tglass-border);
    z-index: 11000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--tglass-bg);
    border: 1px solid var(--tglass-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--taccent-glow);
}

.mobile-menu-items {
    list-style: none;
    text-align: center;
}

.mobile-menu-items li {
    margin: 1.5rem 0;
}

.mobile-menu-items li a {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.mobile-menu-items li a:hover,
.mobile-menu-items li a:focus {
    color: greenyellow;
    transform: translateX(10px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}
/*** demo stream nev **/
/* Navbar Styles */
.navber {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Container */
.logoer {
    width: 190px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

/* Desktop Menu */
.menuer {
    display: flex;
    gap: 35px;
    list-style: none;
}

.menuer a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.menuer a:hover {
    color: #fff;
    transform: translateY(-2px);
    font-weight: 700;
}

.menuer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.menuer a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggler {
    display: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.menu-toggler:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.menu-toggler:active {
    transform: scale(0.95);
}

/* Asterisk SVG */
.asterisk-iconer {
    animation: spin 3s linear infinite;
}

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

/* Mobile Overlay */
.mobile-overlayer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-overlayer.active {
    display: flex;
    opacity: 1;
}

.mobile-menuer {
    list-style: none;
    text-align: center;
}

.mobile-menuer li {
    margin: 25px 0;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-overlayer.active .mobile-menuer li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-overlayer.active .mobile-menuer li:nth-child(1) { transition-delay: 0.1s; }
.mobile-overlayer.active .mobile-menuer li:nth-child(2) { transition-delay: 0.15s; }
.mobile-overlayer.active .mobile-menuer li:nth-child(3) { transition-delay: 0.2s; }
.mobile-overlayer.active .mobile-menuer li:nth-child(4) { transition-delay: 0.25s; }
.mobile-overlayer.active .mobile-menuer li:nth-child(5) { transition-delay: 0.3s; }
.mobile-overlayer.active .mobile-menuer li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menuer a {
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.mobile-menuer a:hover {
    font-size: 38px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

/* Demo Content */
.contenter {
    padding: 120px 40px 40px;
    color: #fff;
}

.contenter h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contenter p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navber {
        padding: 15px 20px;
    }

    .menuer {
        display: none;
    }

    .menu-toggler {
        display: flex;
    }

    .logoer {
        width: 150px;
        height: 32px;
        font-size: 14px;
    }
}