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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: white;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
}

.cursor-text {
    position: fixed;
    background: #ff6b6b;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cursor-text.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed; /* Fix the header to the top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Increased z-index to stay above other content */
    max-width: 1800px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.048); /* Semi-transparent background */
    backdrop-filter: blur(15px); /* Blur effect for professional look */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    transition: background 0.3s ease; /* Smooth background transition */
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98); /* Slightly more opaque when scrolled */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow when scrolled */
}

.logo {
    display: flex;
    align-items: center;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700; /* Bolder font for logo */
    letter-spacing: 0.5px; /* Slight letter spacing for clarity */
}

.nav {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: clamp(14px, 2vw, 16px);
    cursor: pointer;
    text-transform: uppercase; /* Uppercase for a polished look */
    letter-spacing: 0.5px; /* Subtle letter spacing */
}

.nav-item:hover {
    color: #ff6b6b;
    transform: translateY(-2px); /* Slight lift on hover */
}

.nav-item.hot::after {
    content: "Hot";
    background: #ff6b6b;
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    position: absolute;
    top: -8px;
    right: -25px;
    font-weight: 600;
}

/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    margin: 5px 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: rgba(255, 107, 107, 0.1);
    border-left-color: #ff6b6b;
    transform: translateX(5px);
}

.dropdown-item .item-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: clamp(10px, 2vw, 12px) clamp(18px, 3vw, 24px);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: none;
    font-size: clamp(12px, 2vw, 14px);
    white-space: nowrap;
    text-transform: uppercase; /* Uppercase for buttons */
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-primary {
    background: white;
    color: #0a0a0a;
    border: 2px solid white;
}

.btn-primary:hover {
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

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

.mobile-menu .nav-item {
    font-size: 24px;
}

.mobile-menu .btn {
    padding: 15px 30px;
    font-size: 16px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Main Content */
.main-content {
    text-align: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 5% 40px; /* Increased top padding to account for fixed header */
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 5px;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    font-size: clamp(12px, 2vw, 14px);
}

.main-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(20px, 4vw, 30px);
    background: linear-gradient(45deg, #fff, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    opacity: 0.8;
    font-weight: 300;
}

.main-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: clamp(40px, 8vw, 80px);
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px;
    font-size: 15px;
    border-radius: 18px;
}

/* Features Section */
.features-section {
    padding: 0 5%;
    max-width: 2000px;
    margin: 0 auto;
    position: center;
    justify-content: center;
}

.features-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.features-scroll {
    display: flex;
    padding: 20px 10px;
    gap: 50px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features-scroll::-webkit-scrollbar {
    display: none;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px 8px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: none;
    position: relative;
    overflow: hidden;
    min-width: 216px;
    max-width: 216px;
    height: 226px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-preview {
    width: 100%;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-preview::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    color: white;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-align: center;
    line-height: 1.3;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.nav-arrow:hover {
    background: rgba(255, 107, 107, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
    left: 10px;
}

.nav-arrow.next {
    right: 10px;
}

/* Feature specific gradients */
.feature-card:nth-child(1) .feature-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-card:nth-child(2) .feature-preview {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

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

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

.feature-card:nth-child(5) .feature-preview {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature-card:nth-child(6) .feature-preview {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.feature-card:nth-child(1) .feature-preview::after { content: '🎬'; font-size: 40px; }
.feature-card:nth-child(2) .feature-preview::after { content: '💬'; font-size: 40px; }
.feature-card:nth-child(3) .feature-preview::after { content: '🔗'; font-size: 40px; }
.feature-card:nth-child(4) .feature-preview::after { content: '👤'; font-size: 40px; }
.feature-card:nth-child(5) .feature-preview::after { content: '🔊'; font-size: 40px; }
.feature-card:nth-child(6) .feature-preview::after { content: '✨'; font-size: 40px; }


.evu-logo-section {
    text-align: center;
    padding: 200px 0;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 30px;
    margin: 100px 0;
    position: relative;
    overflow: hidden;
}

.evu-logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.evu-logo {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    animation: float 6s ease-in-out infinite;
}

.evu-tagline {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Background Video */
#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    background: #111;
    pointer-events: none;
    display: block;
}

.body-bg-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-buttons .btn-outline {
        display: none;
    }

    .dropdown-content {
        position: static;
        background: rgba(20, 20, 20, 0.9);
        transform: none;
        margin: 10px 0;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .evu-logo {
        font-size: clamp(3rem, 15vw, 6rem);
    }
    
    .expanded-content {
        padding: 50px 5%;
    }
    
    .evu-logo-section {
        padding: 100px 20px;
        margin: 50px 0;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower,
    .cursor-text {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .btn,
    .feature-card,
    .nav-item {
        cursor: pointer;
    }
}




/* EXpendent */

.expanded-content {
    background: black;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.ai-video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ai-hero {
    text-align: center;
    margin-bottom: 4rem;
    animation: ai-fadeInUp 1s ease-out;
}

.ai-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.ai-hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}


.ai-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.ai-stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ai-stat-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.ai-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #6366f1;
    display: block;
}

.ai-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.ai-features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.ai-feature-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.ai-feature-card:hover::before {
    left: 100%;
}

.ai-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.ai-video-placeholder {
    flex-shrink: 0;
    width: 420px;
    height: 280px;
    background: linear-gradient(135deg, #f0f0f0, #888);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ai-video-placeholder::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.ai-video-placeholder:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.ai-video-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ai-feature-content {
    flex: 1;
}

.ai-feature-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-feature-content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.ai-personal-touch {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 10px;
    border-left: 3px solid #6366f1;
}

.ai-personal-touch .ai-author {
    font-size: 0.9rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ai-personal-touch .ai-quote {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.95rem;
}

.ai-cta-button {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ai-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    background: linear-gradient(45deg, #5855eb, #7c3aed);
}

.ai-cta-button.ai-pulse {
    animation: ai-pulse 2s infinite;
}

.ai-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ai-floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: ai-float 6s ease-in-out infinite;
}

.ai-floating-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ai-floating-circle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.ai-floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-feature-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .ai-video-placeholder {
        width: 100%;
        max-width: 380px;
        height: 240px;
    }

    .ai-video-container {
        padding: 0 1rem;
    }

    .ai-features-grid {
        gap: 1.5rem;
    }

    .ai-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ai-video-placeholder {
        height: 200px;
        max-width: 320px;
    }

    .ai-feature-card {
        padding: 1.5rem;
    }

    .expanded-content {
        padding: 2rem 0;
    }
}

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

@keyframes ai-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes ai-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

@keyframes ai-sparkle {
    0% {
        opacity: 1;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0) translateY(-20px);
    }
}

@keyframes ai-ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}




/* Expanded Content - 2 */


    
        .expanded-content-two {
            padding: 60px 40px;
            max-width: 20000px;
            margin: 0 auto;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: white;
            
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-tag {
            color: #64b5f6;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
        }

        .section-title {
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 700;
            line-height: 1.2;
            background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tools-container {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .tools-grid {
            display: flex;
            gap: 16px;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            align-items: start;
            padding: 0 20px;
            cursor: grab;
        }

        .tools-grid:active {
            cursor: grabbing;
        }

        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(100, 181, 246, 0.9);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 16px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .scroll-btn:hover {
            background: rgba(100, 181, 246, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .scroll-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: translateY(-50%) scale(0.9);
        }

        .scroll-btn.prev {
            left: 10px;
        }

        .scroll-btn.next {
            right: 10px;
        }

        .tool-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            padding: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            height: 220px;
            width: 240px;
            min-width: 240px;
            max-width: 240px;
            flex-shrink: 0;
        }

        .tool-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(100, 181, 246, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(255, 64, 129, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .tool-card:hover::before {
            opacity: 1;
        }

        .card-image {
            width: 100%;
            height: 130px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .card-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(transparent, rgba(26, 26, 46, 0.8));
        }

        .card-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(transparent, rgba(26, 26, 46, 0.8));
        }

        .remove-object { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><defs><linearGradient id="bg1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2300bcd4;stop-opacity:1" /><stop offset="100%" style="stop-color:%2300acc1;stop-opacity:1" /></linearGradient></defs><rect width="400" height="200" fill="url(%23bg1)"/><circle cx="100" cy="80" r="25" fill="%23ff9800" opacity="0.8"/><circle cx="150" cy="60" r="20" fill="%23ff9800" opacity="0.6"/><circle cx="200" cy="90" r="15" fill="%23ff9800" opacity="0.7"/><path d="M250 120 Q280 100 320 130 Q350 110 380 140" stroke="%23ffffff" stroke-width="3" fill="none" opacity="0.6"/></svg>'); }

        .remove-background { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><defs><radialGradient id="bg2"><stop offset="0%" style="stop-color:%23e91e63;stop-opacity:1" /><stop offset="100%" style="stop-color:%239c27b0;stop-opacity:1" /></radialGradient></defs><rect width="400" height="200" fill="url(%23bg2)"/><circle cx="200" cy="100" r="60" fill="%23ffffff" opacity="0.9"/><circle cx="180" cy="85" r="8" fill="%23333"/><circle cx="220" cy="85" r="8" fill="%23333"/><path d="M170 120 Q200 140 230 120" stroke="%23333" stroke-width="3" fill="none"/></svg>'); }

        .face-swap { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><defs><linearGradient id="bg3" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23673ab7;stop-opacity:1" /><stop offset="100%" style="stop-color:%239c27b0;stop-opacity:1" /></linearGradient></defs><rect width="400" height="200" fill="url(%23bg3)"/><rect x="50" y="40" width="80" height="100" rx="10" fill="%23ffffff" opacity="0.9"/><rect x="150" y="40" width="80" height="100" rx="10" fill="%23ffffff" opacity="0.9"/><rect x="270" y="40" width="80" height="100" rx="10" fill="%23ffffff" opacity="0.9"/><circle cx="90" cy="80" r="4" fill="%23333"/><circle cx="190" cy="80" r="4" fill="%23333"/><circle cx="310" cy="80" r="4" fill="%23333"/></svg>'); }

        .super-scale { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><defs><radialGradient id="bg4"><stop offset="0%" style="stop-color:%23e91e63;stop-opacity:1" /><stop offset="100%" style="stop-color:%23f06292;stop-opacity:1" /></radialGradient></defs><rect width="400" height="200" fill="url(%23bg4)"/><ellipse cx="200" cy="100" rx="80" ry="60" fill="%23ffffff" opacity="0.2"/><circle cx="200" cy="80" r="15" fill="%23ffeb3b"/><path d="M180 120 Q200 140 220 120 Q240 140 260 120" stroke="%23ffffff" stroke-width="2" fill="none" opacity="0.8"/></svg>'); }

        .super-sharp { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><defs><linearGradient id="bg5" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ff9800;stop-opacity:1" /><stop offset="100%" style="stop-color:%23f57c00;stop-opacity:1" /></linearGradient></defs><rect width="400" height="200" fill="url(%23bg5)"/><polygon points="200,40 160,140 240,140" fill="%23ffffff" opacity="0.3"/><circle cx="120" cy="160" r="8" fill="%23ffffff" opacity="0.6"/><circle cx="280" cy="160" r="8" fill="%23ffffff" opacity="0.6"/><path d="M100 60 L130 90 L110 120" stroke="%23ffffff" stroke-width="2" fill="none" opacity="0.7"/></svg>'); }

        .card-content {
            padding: 16px;
            position: relative;
            z-index: 2;
            height: 90px;
        }

        .card-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 6px;
            color: #ffffff;
            height: 20px;
            line-height: 20px;
        }

        .card-description {
            font-size: 12px;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.8);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 50px;
        }

        @media (max-width: 768px) {
            .expanded-content-two {
                padding: 40px 0;
            }

            .scroll-btn {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }

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

            .expanded-content-two {
                padding: 30px 0;
            }

            .section-header {
                padding: 0 20px;
            }

            .scroll-btn {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }

            .scroll-btn.prev {
                left: 5px;
            }

            .scroll-btn.next {
                right: 5px;
            }
        }

/* About Page Styles */
.about-hero {
    padding: 120px 5% 80px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 80px;
}

.about-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 30px;
    color: #ff6b6b;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.team-section {
    text-align: center;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    padding: 3px;
}

.team-member h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.team-member p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.stats-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 60px 0;
    text-align: center;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 60px;
}

.contact-section h2 {
    margin-bottom: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-item h4 {
    color: #4ecdc4;
    margin-bottom: 10px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 5% 60px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
