﻿:root {
    --bg-primary: #050505;
    --bg-secondary: #0A0A0A;
    --bg-accent: #FF6B95;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
}

/* Light Mode Theme Variables (Manual Toggle) */
.light-mode {
    --bg-primary: #ffffff !important;
    --bg-secondary: #fdf2f8 !important;
    /* Soft pink tint for colorful feel */
    --text-primary: #1e293b !important;
    --text-secondary: #475569 !important;
    --bg-accent: #db2777 !important;
}

/* Animated Background Mesh */
.hero-background-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.3;
}

.hero-background-mesh .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.05), transparent);
}

.hero-background-mesh .blur-blob-pink {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background-color: rgba(236, 72, 153, 0.1);
    filter: blur(120px);
    border-radius: 9999px;
    /* rounded-full */
}

.hero-background-mesh .blur-blob-purple {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background-color: rgba(168, 85, 247, 0.1);
    filter: blur(120px);
    border-radius: 9999px;
    /* rounded-full */
}


.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(236, 72, 153, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(236, 72, 153, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.light-mode .hero-grid-pattern {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

@keyframes spin-extremely-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.animate-spin-extremely-slow {
    animation: spin-extremely-slow 60s linear infinite;
}



/* Complex floating animation for tech shapes */
@keyframes floatShapes {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.light-mode .hero-glow-purple {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(168, 85, 247, 0) 70%) !important;
    animation: floatShapes 18s ease-in-out infinite;
}

.light-mode .sphere-glass {
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 20px 20px 60px rgba(236, 72, 153, 0.05), inset -10px -10px 20px rgba(255, 255, 255, 0.5) !important;
    animation: floatShapes 12s ease-in-out infinite alternate;
}




/* Theme Toggle Icon Switching */
#theme-toggle .sun-icon {
    display: none;
}

#theme-toggle .moon-icon {
    display: block;
}

.light-mode #theme-toggle .sun-icon {
    display: block;
}

.light-mode #theme-toggle .moon-icon {
    display: none;
}

/* Global Light Mode Overrides */
.light-mode .text-white:not(.keep-white) {
    color: var(--text-primary) !important;
}

.light-mode .text-slate-400,
.light-mode .text-slate-300,
.light-mode .text-slate-500 {
    color: var(--text-secondary) !important;
}

.light-mode h1,
.light-mode h2,
.light-mode h3,
.light-mode h4,
.light-mode h5,
.light-mode h6 {
    color: var(--text-primary) !important;
}

/* Fix Hero Text for Light Mode */
.light-mode #home h1 {
    color: #1e293b !important;
}

.light-mode #home p {
    color: #475569 !important;
}

/* Header Menu Overrides for Light Mode - Premium Pill Design */
.light-mode header nav {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.1) !important;
    padding: 10px 32px !important;
}

.light-mode header nav a {
    color: #1e293b !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
}

.light-mode header nav a:hover {
    color: #ec4899 !important;
    transform: translateY(-1px);
}

.light-mode header .lg\:hidden {
    color: #1e293b !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.1) !important;
}

/* CTA Section Light Mode Refinement */
.light-mode .rounded-3xl.bg-hero-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #fdf2f8 100%) !important;
    border: 1px solid rgba(236, 72, 153, 0.1) !important;
    box-shadow: 0 30px 60px rgba(236, 72, 153, 0.1) !important;
}

.light-mode .rounded-3xl.bg-hero-gradient h2 {
    color: #1e293b !important;
}

.light-mode .testimonialSwiper .swiper-slide>div {
    max-height: none !important;
    height: auto !important;
}




.light-mode .animate-marquee img {
    filter: none !important;
    opacity: 1 !important;
}

.light-mode .bg-white\/5 {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.light-mode .bg-white\/10 {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.light-mode .sticky-card img {
    mix-blend-mode: normal !important;
    opacity: 0.8 !important;
}

.light-mode input,
.light-mode select {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.light-mode input::placeholder {
    color: var(--text-secondary) !important;
    opacity: 0.6;
}

.light-mode .sticky-card {
    background-color: #ffffff !important;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.05) !important;
    border-color: rgba(236, 72, 153, 0.1) !important;
}

/* Ensure headings in sticky cards are visible */
.light-mode .sticky-card h3 {
    color: var(--text-primary) !important;
}

.light-mode .contact-btn-glass {
    background: #ffffff !important;
    color: #1e293b !important;
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.1) !important;
}

.light-mode .contact-btn-glass:hover {
    background: #fff1f2 !important;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.15) !important;
}

.light-mode .hero-form-card,
.light-mode #lead-popup>div {
    background: #ffffff !important;
    border-color: rgba(236, 72, 153, 0.2) !important;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.1) !important;
}

.light-mode #lead-popup h2,
.light-mode .text-reveal-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
}

.light-mode .services-bg-noise {
    opacity: 0.02 !important;
}





/* Alpine.js cloak */
[x-cloak] {
    display: none !important;
}

/* Global Styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    overflow-x: hidden;
    width: 100%;
}

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

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6B95;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-pulse {
    animation: whatsapp-pulse 2s infinite;
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

/* Vertical Scroll Animation (Why Choose Us) */
@keyframes scrollY {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.animate-scroll-vertical {
    animation: scrollY 30s linear infinite;
}

.animate-scroll-vertical-reverse {
    animation: scrollY 35s linear infinite reverse;
}

/* Hide scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mask for scrolling images */
.mask-gradient-y {
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

/* Ensure no horizontal scroll */
html,
body {
    overflow-x: hidden !important;
    position: relative;
    width: 100% !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* CTA Background */
.bg-hero-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #000 100%);
}

/* Swiper Custom Pagination */
.swiper-pagination-bullet {
    background: #555 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #FF6B95 !important;
    width: 25px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

/* GSAP Sticky Card Smoothing */
.sticky-card {
    will-change: transform, opacity;
}

/* Spin Slow */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 8s linear infinite;
}

/* New Hero Styles - Screenshots Adaptation */

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: block;
    text-transform: capitalize;
}

.hero-title {
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.btn-explore {
    background: #8b5cf6;
    /* Purple base */
    color: white;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -5px rgba(139, 92, 246, 0.3);
    border: none;
    text-transform: uppercase;
}

.btn-explore .icon-circle {
    width: 2.75rem;
    height: 2.75rem;
    background: #f97316;
    /* Orange circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.btn-explore:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(139, 92, 246, 0.4);
}

.btn-explore:hover .icon-circle {
    background: #ea580c;
    transform: rotate(45deg) scale(1.1);
}

.btn-play-video {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.play-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-play-video:hover .play-icon-wrapper {
    transform: scale(1.1);
    background: #fdf2f8;
}

/* Hero Form Styles */
.hero-form-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    z-index: 20;
}

.hero-form-glass {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2.5rem;
    z-index: 0;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-form-container:hover .hero-form-glass {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 50px 120px -20px rgba(0, 0, 0, 0.6);
}

.hero-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.875rem 1.25rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.hero-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

.hero-form-btn {
    width: 100%;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    padding: 1.125rem;
    border-radius: 1.25rem;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px -10px rgba(236, 72, 153, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -10px rgba(236, 72, 153, 0.6);
    filter: brightness(1.1);
}

.hero-form-btn .btn-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-form-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(-15deg) scale(1.1);
}

/* Light Mode Adaptation for Hero Form */
.light .hero-form-glass {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
}

.light .hero-input {
    background: white;
    border-color: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

.light .hero-input::placeholder {
    color: #94a3b8;
}

.light .hero-form-btn {
    box-shadow: 0 20px 40px -10px rgba(236, 72, 153, 0.3);
}

.light h3.text-white {
    color: #1e293b !important;
}

/* Hero Refinements - Person Box & Background */
.hero-grid-pattern {
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
}

.person-box-container {
    position: relative;
    padding: 2.5rem;
}

.person-box-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4rem;
    z-index: 1;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3);
}

.person-box-container img {
    position: relative;
    z-index: 2;
}

.dark .person-box-bg {
    background: rgba(255, 255, 255, 0.03);
}

.light .person-box-bg {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

/* Floating Elements Styles */
.hero-floating-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark-mode .hero-floating-card {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.floating-badge {
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dark-mode .floating-badge {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
}

.idea-badge {
    position: absolute;
    top: -40px;
    right: 15%;
    background: linear-gradient(135deg, #f97316 0%, #a855f7 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.2;
    transform: rotate(6deg) skewX(-5deg);
    z-index: 30;
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

.idea-badge-arrow {
    position: absolute;
    bottom: -25px;
    left: -10px;
    width: 40px;
    height: 40px;
    color: white;
    /* Fixed: White for better visibility on badge */
    transform: rotate(-30deg);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

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

.animate-float-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.animate-float-slow {
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-floating-card,
.floating-badge {
    transition: all 0.3s ease !important;
}

.hero-floating-card:hover,
.floating-badge:hover {
    transform: translateY(-10px) scale(1.05) !important;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25) !important;
    z-index: 50;
}

/* Decorative Spheres refine */
.sphere-red {
    background: radial-gradient(circle at 30% 30%, #ff4b2b, #ff416c);
    box-shadow: 0 10px 25px rgba(255, 75, 43, 0.4);
}

.sphere-orange {
    background: radial-gradient(circle at 30% 30%, #f97316, #ea580c);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

/* Theme adaptation for Hero */
.light-mode #home {
    background: radial-gradient(circle at 10% 20%, rgba(255, 107, 149, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.light-mode .hero-title {
    color: #1e293b;
}

.light-mode .hero-subtitle {
    color: #64748b;
}

.light-mode .btn-play-video {
    color: #1e293b;
}b o d y : n o t ( . l i g h t - m o d e )   # s i t e - l o g o : h o v e r   {   f i l t e r :   g r a y s c a l e ( 1 0 0 % ) ;   }  
 