/* Custom CSS for Studio Pley Stuodic - Dark Modern Theme */

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

/* GSAP will handle smooth scrolling */
html {
    scroll-behavior: auto;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #1a0b2e 100%);
    min-height: 100vh;
}

/* Header Styles */
#header {
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

#header.scrolled {
    background: rgba(26, 11, 46, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: #ff2e63;
    background: rgba(255, 46, 99, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: linear-gradient(90deg, #ff2e63, #00d4ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Enhanced Hero Section Animations */
.typewriter {
    overflow: hidden;
    border-right: 3px solid #ff2e63;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #ff2e63; }
}

/* Grid Pattern Animation */
.grid-pattern {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    width: 100%;
    height: 100%;
    animation: grid-move 25s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Enhanced Floating Animations */
.animate-float {
    animation: float 8s ease-in-out infinite;
    position: absolute;
    top: 15%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 50%;
}

.animate-float-delayed {
    animation: float 8s ease-in-out infinite;
    animation-delay: 4s;
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 50px;
    height: 50px;
    background: rgba(255, 46, 99, 0.2);
    border-radius: 50%;
}

.animate-float-slow {
    animation: float-slow 10s ease-in-out infinite;
}

.animate-float-delayed-slow {
    animation: float-slow 10s ease-in-out infinite;
    animation-delay: 5s;
}

.animate-rotate-slow {
    animation: rotate-slow 20s linear infinite;
    position: absolute;
    top: 25%;
    right: 20%;
    width: 40px;
    height: 40px;
    background: rgba(255, 46, 99, 0.2);
    border-radius: 8px;
}

.animate-bounce-slow {
    animation: bounce-slow 6s ease-in-out infinite;
    position: absolute;
    bottom: 30%;
    left: 15%;
    width: 30px;
    height: 30px;
    background: rgba(139, 92, 246, 0.25);
    transform: rotate(45deg);
}

.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
    position: absolute;
    top: 60%;
    left: 25%;
    width: 25px;
    height: 25px;
    background: rgba(251, 191, 36, 0.3);
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0px) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(45deg); }
}

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

/* Animated Lines */
.animated-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    height: 2px;
    width: 60%;
}

.line-1 {
    top: 25%;
    left: 20%;
    animation: line-move-1 12s linear infinite;
}

.line-2 {
    top: 65%;
    right: 20%;
    animation: line-move-2 15s linear infinite;
}

.line-3 {
    top: 45%;
    left: 10%;
    animation: line-move-3 18s linear infinite;
}

@keyframes line-move-1 {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes line-move-2 {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes line-move-3 {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Particle System */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particle-float 10s linear infinite;
}

.particle-1 { top: 10%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 20%; left: 85%; animation-delay: 1.5s; }
.particle-3 { top: 35%; left: 25%; animation-delay: 3s; }
.particle-4 { top: 45%; left: 75%; animation-delay: 4.5s; }
.particle-5 { top: 55%; left: 35%; animation-delay: 6s; }
.particle-6 { top: 65%; left: 65%; animation-delay: 7.5s; }
.particle-7 { top: 75%; left: 45%; animation-delay: 9s; }
.particle-8 { top: 85%; left: 85%; animation-delay: 10.5s; }

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Glowing Orbs */
.animate-glow {
    animation: glow 6s ease-in-out infinite;
    position: absolute;
    top: 20%;
    right: 30%;
    width: 120px;
    height: 120px;
    background: rgba(255, 46, 99, 0.08);
    border-radius: 50%;
}

.animate-glow-delayed {
    animation: glow 6s ease-in-out infinite;
    animation-delay: 3s;
    position: absolute;
    bottom: 25%;
    left: 25%;
    width: 100px;
    height: 100px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
}

@keyframes glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 46, 99, 0.2);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 60px rgba(255, 46, 99, 0.4);
    }
}

/* Animated Text Background */
.text-background {
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
    animation: text-float 15s ease-in-out infinite;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes text-float {
    0%, 100% { transform: translate(-50%, -50%) rotate(-1deg); }
    50% { transform: translate(-50%, -50%) rotate(1deg); }
}

/* Fade In Up Animation */
.animate-fade-in-up {
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(40px);
}

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

/* Stats Animation */
.stat-item {
    animation: stat-pulse 3s ease-in-out infinite;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:nth-child(2) {
    animation-delay: 1s;
}

.stat-item:nth-child(3) {
    animation-delay: 2s;
}

@keyframes stat-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Scroll Indicator */
.animate-scroll-indicator {
    animation: scroll-indicator 2.5s ease-in-out infinite;
}

@keyframes scroll-indicator {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* Card Styles */
.card {
    background: rgba(26, 11, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff2e63, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

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

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #ff2e63, #ff6b9d);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 46, 99, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Icon Styles */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff2e63, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 46, 99, 0.3);
}

.icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 46, 99, 0.5);
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, #ff2e63, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism Effects */
.glass {
    background: rgba(26, 11, 46, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-dark {
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

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

/* Glow Effects */
.glow-pink {
    box-shadow: 0 0 20px rgba(255, 46, 99, 0.3);
}

.glow-blue {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.glow-purple {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 11, 46, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff2e63, #00d4ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b9d, #33e6ff);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #ff2e63;
    outline-offset: 2px;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus not sr-only for skip links */
.focus\:not-sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .text-background {
        font-size: 15vw;
    }
    
    .particles-container {
        display: none;
    }
    
    .animated-line {
        display: none;
    }
    
    .grid-pattern {
        background-size: 30px 30px;
    }
    
    .animate-float,
    .animate-float-delayed,
    .animate-rotate-slow,
    .animate-bounce-slow,
    .animate-pulse-slow {
        display: none;
    }
    
    .animate-glow,
    .animate-glow-delayed {
        display: none;
    }
    
    .stat-item {
        font-size: 0.9rem;
    }
    
    .stat-item .text-2xl {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .text-background {
        font-size: 12vw;
    }
    
    .stat-item {
        font-size: 0.8rem;
    }
    
    .stat-item .text-2xl {
        font-size: 1.25rem;
    }
    
    .grid-cols-1.lg\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .lg\:h-\[600px\] {
        height: auto;
        min-height: 400px;
    }
    
    .absolute.-top-4.-right-4,
    .absolute.-bottom-4.-left-4 {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 1rem 0;
    }
    
    .relative.w-full.max-w-md {
        margin: 0 auto;
    }
    
    .text-5xl.lg\:text-6xl {
        font-size: 2.5rem;
    }
    
    .text-xl {
        font-size: 1.125rem;
    }
    
    @media (max-width: 480px) {
        .flex.space-x-8 {
            flex-direction: column;
            gap: 1rem;
        }
        
        .stat-item {
            text-align: center;
        }
    }
}

@media (max-width: 480px) {
    .text-background {
        font-size: 12vw;
    }
    
    .stat-item {
        font-size: 0.8rem;
    }
    
    .stat-item .text-2xl {
        font-size: 1.25rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    .animate-float,
    .animate-float-delayed,
    .animate-rotate-slow,
    .animate-bounce-slow,
    .animate-pulse-slow,
    .animate-glow,
    .animate-glow-delayed,
    .particle,
    .animated-line,
    .grid-pattern,
    .text-background,
    .stat-item {
        animation: none !important;
    }
    
    .animate-fade-in-up {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .particle {
        background: rgba(255, 255, 255, 0.9);
    }
    
    .animated-line {
        background: rgba(255, 255, 255, 0.8);
    }
    
    .text-background {
        color: rgba(255, 255, 255, 0.1);
    }
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
    .card,
    .glass,
    .glass-dark {
        border: 2px solid #000;
    }
    
    .nav-link::after {
        background-color: #000;
        height: 3px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ff2e63;
    animation: spin 1s ease-in-out infinite;
}

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

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Full-height section styling for GSAP ScrollTrigger */
.min-h-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* GSAP ScrollTrigger sections */
.gsap-section {
    position: relative;
    z-index: 1;
    width: 100%;
    background: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #1a0b2e 100%);
}

.gsap-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    height: 100vh;
    background: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #1a0b2e 100%);
}

.gsap-section.overlay {
    position: relative;
    z-index: 20;
    margin-top: 100vh;
    background: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #1a0b2e 100%);
}

/* Disable slide effects on small screens */
@media (max-width: 767px) {
    .gsap-section.overlay {
        margin-top: 0;
        z-index: 1;
    }
    
    .gsap-section.sticky {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
    }
    
    /* Ensure proper section spacing on small screens */
    .gsap-section {
        min-height: auto !important;
        height: auto !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Ensure sections stack properly without GSAP */
    .gsap-container {
        height: auto !important;
        min-height: auto !important;
    }
    
    /* Ensure proper scroll behavior */
    html {
        scroll-behavior: smooth !important;
    }
    
    /* Disable GSAP-specific animations on small screens */
    .gsap-section {
        transform: none !important;
        transition: none !important;
    }
}

/* Ensure footer is visible after last section */
footer {
    position: relative;
    z-index: 10;
    margin-top: 0;
}

/* Ensure last section doesn't cover footer */
.gsap-section:last-child.sticky {
    z-index: 5;
}

/* Ensure body has proper height for scrolling */
body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
}

/* Ensure proper scroll container */
html {
    scroll-behavior: auto;
    height: 100%;
}

/* Fix for GSAP scroll issues */
.gsap-container {
    position: relative;
    z-index: 1;
    height: auto;
    min-height: 100vh;
}

/* Container for proper spacing */
.gsap-container {
    position: relative;
    z-index: 1;
}

/* Enhanced card backgrounds for better readability */
.bg-white\/10 {
    background: rgba(26, 11, 46, 0.9) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bg-white\/8 {
    background: rgba(26, 11, 46, 0.8) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

/* Enhanced text contrast */
.text-gray-300 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.text-gray-400 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Enhanced button backgrounds */
.bg-white\/10.backdrop-blur-md {
    background: rgba(26, 11, 46, 0.9) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-white\/10.backdrop-blur-md:hover {
    background: rgba(26, 11, 46, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Enhanced floating elements */
.bg-white\/8.backdrop-blur-sm {
    background: rgba(26, 11, 46, 0.85) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

/* Enhanced form inputs */
input, textarea {
    background: rgba(26, 11, 46, 0.9) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
}

/* Hero image styling */
.hero-image {
    /* filter: drop-shadow(0 20px 40px rgba(255, 46, 99, 0.3)); */
    transition: all 0.3s ease;
}

.hero-image:hover {
    filter: drop-shadow(0 25px 50px rgba(255, 46, 99, 0.4));
    transform: translateY(-5px);
}

/* Floating badge animations */
.floating-badge {
    animation: badge-float 3s ease-in-out infinite;
}

.floating-badge:nth-child(even) {
    animation-delay: 1.5s;
}

@keyframes badge-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Social media icon hover effects */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 46, 99, 0.4);
}

/* Progress bar animation */
.progress-dot {
    animation: progress-pulse 2s ease-in-out infinite;
}

.progress-dot:nth-child(2) {
    animation-delay: 1s;
}

@keyframes progress-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

input:focus, textarea:focus {
    background: rgba(26, 11, 46, 0.95) !important;
    border-color: #ff2e63 !important;
    box-shadow: 0 0 0 3px rgba(255, 46, 99, 0.1);
}

/* Enhanced placeholder text */
input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Section navigation indicators */
.section-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.section-dot.active {
    background: #ff2e63;
    transform: scale(1.2);
}

.section-dot:hover {
    background: rgba(255, 46, 99, 0.6);
    transform: scale(1.1);
}

.section-dot::before {
    content: attr(data-section);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 11, 46, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.section-dot:hover::before {
    opacity: 1;
}

/* Hide section navigation on small screens */
@media (max-width: 767px) {
    .section-indicator {
        display: none !important;
    }
    
    /* Adjust hero image for mobile */
    .hero-image {
        width: 90% !important;
        max-width: 300px !important;
    }
    
    /* Adjust floating elements for mobile */
    .absolute.-top-12.-right-12 {
        top: -8px !important;
        right: -8px !important;
    }
    
    .absolute.-bottom-12.-left-12 {
        bottom: -8px !important;
        left: -8px !important;
    }
    
    /* Ensure proper mobile navigation */
    .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
    }
    
    /* Optimize mobile menu */
    #mobile-menu {
        max-height: 80vh !important;
        overflow-y: auto !important;
    }
    
    /* Ensure proper button sizing on mobile */
    button {
        min-height: 44px !important; /* iOS touch target minimum */
    }
    
    /* Optimize text sizes for mobile */
    .text-5xl.lg\:text-7xl {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    .text-xl {
        font-size: 1.125rem !important;
        line-height: 1.6 !important;
    }
    
    /* Ensure proper spacing on mobile */
    .space-y-8 > * + * {
        margin-top: 2rem !important;
    }
    
    .space-y-6 > * + * {
        margin-top: 1.5rem !important;
    }
    
    .space-y-4 > * + * {
        margin-top: 1rem !important;
    }
} 

/* Clients Logo Scrolling Animation */
.clients-logo-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.clients-logo-scroll {
    display: flex;
    align-items: center;
    animation: scroll-logos 20s linear infinite;
    width: max-content;
}

.client-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin: 0 3rem;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.client-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

/* Pause animation when hovering over the container or any logo */
.clients-logo-container:hover .clients-logo-scroll,
.clients-logo-scroll:hover {
    animation-play-state: paused;
}

/* Responsive adjustments for clients section */
@media (max-width: 768px) {
    .clients-logo-container {
        padding: 1.5rem 0;
    }
    
    .client-logo {
        height: 80px;
        margin: 0 2rem;
    }
    
    .clients-logo-scroll {
        animation-duration: 15s;
    }
}

@media (max-width: 480px) {
    .client-logo {
        height: 60px;
        margin: 0 1.5rem;
    }
    
    .clients-logo-scroll {
        animation-duration: 12s;
    }
}