/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tailwind-style Responsive Classes */
/* Small devices (phones, 640px and below) */
@media (max-width: 640px) {
    .sm\:hidden { display: none !important; }
    .sm\:block { display: block !important; }
    .sm\:flex { display: flex !important; }
    .sm\:grid { display: grid !important; }
    .sm\:w-full { width: 100% !important; }
    .sm\:flex-col { flex-direction: column !important; }
    .sm\:text-center { text-align: center !important; }
    .sm\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
    .sm\:px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
    .sm\:py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
    .sm\:gap-4 { gap: 1rem !important; }
}

/* Medium devices (tablets, 768px and below) */
@media (min-width: 641px) and (max-width: 768px) {
    .md\:hidden { display: none !important; }
    .md\:block { display: block !important; }
    .md\:flex { display: flex !important; }
    .md\:grid { display: grid !important; }
    .md\:w-full { width: 100% !important; }
    .md\:w-1\/2 { width: 50% !important; }
    .md\:flex-row { flex-direction: row !important; }
    .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .md\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
    .md\:gap-6 { gap: 1.5rem !important; }
}

/* Large devices (desktops, 1024px and above) */
@media (min-width: 769px) {
    .lg\:hidden { display: none !important; }
    .lg\:block { display: block !important; }
    .lg\:flex { display: flex !important; }
    .lg\:grid { display: grid !important; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
    .lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
    .lg\:gap-8 { gap: 2rem !important; }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #020617; /* bg-slate-950 */
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

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

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


/* New Background Effects */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    animation: float-orb 30s infinite ease-in-out;
    will-change: transform;
    transform: translateZ(0);
}

.orb-1 {
    top: 5rem; /* top-20 */
    left: 2.5rem; /* left-10 */
    width: 24rem; /* w-96 */
    height: 24rem; /* h-96 */
    background-image: linear-gradient(to right, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
    animation-delay: 0s;
}

.orb-2 {
    top: 50%;
    right: 5rem; /* right-20 */
    width: 20rem; /* w-80 */
    height: 20rem; /* h-80 */
    background-image: linear-gradient(to right, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.15));
    animation-delay: 5s;
}

.orb-3 {
    bottom: 8rem; /* bottom-32 */
    left: 33.333333%; /* left-1/3 */
    width: 16rem; /* w-64 */
    height: 16rem; /* h-64 */
    background-image: linear-gradient(to right, rgba(20, 184, 166, 0.15), rgba(16, 185, 129, 0.15));
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    25% { transform: translate3d(20px, -40px, 0) scale(1.1); }
    50% { transform: translate3d(-30px, 20px, 0) scale(0.9); }
    75% { transform: translate3d(40px, -30px, 0) scale(1.05); }
}

.floating-particle {
    position: absolute;
    width: 0.3rem;
    height: 0.3rem;
    background: linear-gradient(to right, #c084fc, #22d3ee);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 20s infinite ease-in-out;
    will-change: transform, opacity;
    transform: translateZ(0);
}

@keyframes float-particle {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translate3d(10vw, -100vh, 0) scale(1.5);
        opacity: 0;
    }
}

.overlay-gradient-1 {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom right, rgba(2, 6, 23, 0.5), transparent 50%, rgba(2, 6, 23, 0.5));
}

.light-line-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, transparent, rgba(168, 85, 247, 0.2), transparent);
}

.light-line-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to left, transparent, rgba(6, 182, 212, 0.2), transparent);
}

.glow-effect-1 {
    position: absolute;
    top: 10%;
    left: 40%;
    width: 20rem; /* w-80 */
    height: 20rem; /* h-80 */
    background-image: linear-gradient(to right, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.25), rgba(6, 182, 212, 0.3));
    border-radius: 9999px; /* rounded-full */
    filter: blur(64px); /* blur-3xl */
}

.glow-effect-2 {
    position: absolute;
    bottom: 5%;
    right: 30%;
    width: 10rem; /* w-40 */
    height: 10rem; /* h-40 */
    background-image: linear-gradient(to right, rgba(34, 211, 238, 0.4), rgba(192, 132, 252, 0.4));
    border-radius: 9999px; /* rounded-full */
    filter: blur(48px); /* blur-2xl */
}

.fixed.inset-0 {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
}

/* Cursor Light Effect */
.cursor-light {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 211, 255, 0.25) 0%, rgba(120, 211, 255, 0.08) 30%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.overflow-hidden {
    overflow: hidden;
}

.z-30 {
    z-index: 30;
}

.z-31 {
    z-index: 31;
}

.mix-blend-screen {
    mix-blend-mode: screen;
}

.mix-blend-plus-lighter {
    mix-blend-mode: plus-lighter;
}

@keyframes float-slow {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

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

/* Floating Light Balls Animation */
@keyframes float-ball {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float-random {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-50px) translateX(30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) translateX(-40px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-80px) translateX(20px) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(120, 211, 255, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(120, 211, 255, 0.9);
        transform: scale(1.2);
    }
}

@keyframes slow-float {
    0% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-15px) translateX(10px);
    }
    66% {
        transform: translateY(-10px) translateX(-5px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes whatsapp-glow {
    0% {
        box-shadow: 0 0 20px rgba(120, 211, 255, 0.7), 0 0 40px rgba(120, 211, 255, 0.4);
        border-color: rgba(120, 211, 255, 0.7);
    }
    20% {
        box-shadow: 0 0 20px rgba(120, 211, 255, 0.6), 0 0 40px rgba(120, 211, 255, 0.3);
        border-color: rgba(120, 211, 255, 0.6);
    }
    40% {
        box-shadow: 0 0 20px rgba(120, 211, 255, 0.5), 0 0 40px rgba(255, 119, 198, 0.3);
        border-color: rgba(120, 211, 255, 0.5);
    }
    60% {
        box-shadow: 0 0 20px rgba(255, 119, 198, 0.5), 0 0 40px rgba(255, 119, 198, 0.2);
        border-color: rgba(255, 119, 198, 0.5);
    }
    80% {
        box-shadow: 0 0 20px rgba(120, 211, 255, 0.4), 0 0 40px rgba(120, 211, 255, 0.3);
        border-color: rgba(120, 211, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 20px rgba(120, 211, 255, 0.7), 0 0 40px rgba(120, 211, 255, 0.4);
        border-color: rgba(120, 211, 255, 0.7);
    }
}

/* Gradients */

/* Glassmorphism Box Styles */
.thumbnail-card,
.video-card,
.service-card,
.stat-card,
.testimonial-card,
.contact-form-container,
.response-time-box,
.about-axvrenox .profile-container {
    background: rgba(29, 39, 58, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

.thumbnail-card:hover,
.video-card:hover,
.service-card:hover,
.stat-card:hover,
.testimonial-card:hover,
.contact-form-container:hover,
.response-time-box:hover,
.about-axvrenox .profile-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(120, 211, 255, 0.3), 0 0 40px rgba(120, 211, 255, 0.2);
    border-color: rgba(120, 211, 255, 0.3);
}
.gradient-pink-purple {
    background: linear-gradient(135deg, #ff77c6, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-sky-blue {
    background: linear-gradient(135deg, #78d3ff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-blue {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Styles */
.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.5s ease;
    background-color: transparent;
}

/* Mobile Menu Styles */
.mobile-menu-button {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid #334155;
    border-radius: 8px;
    background: transparent;
    color: white;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-menu-dropdown {
    display: none;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.mobile-menu-dropdown.active {
    max-height: 300px;
    opacity: 1;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.mobile-nav-link {
    color: #e2e8f0;
    text-decoration: none;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #a855f7;
}

.mobile-nav-link.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
}

.mobile-nav-link.whatsapp-link:hover {
    color: #4ade80;
}

.fixed-header.scrolled {
    background-color: rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1280px; /* max-w-7xl */
    margin: 0 auto;
    padding: 1rem 1.5rem; /* px-6 py-4 */
    transition: padding 0.5s ease;
}

.fixed-header.scrolled .header-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
}

.logo-main-text {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 900; /* font-black */
    background-image: linear-gradient(to right, #a78bfa, #f472b6, #67e8f9); /* from-purple-400 via-pink-400 to-cyan-400 */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-sub-text {
    font-size: 0.875rem; /* text-sm */
    color: #64748b; /* text-slate-400 */
    font-weight: 500; /* font-medium */
    letter-spacing: 0.05em; /* tracking-wide */
    margin-top: -0.25rem; /* -mt-1 */
}

/* Navigation Menu */
.nav-menu {
    display: none; /* hidden */
    gap: 2rem; /* space-x-8 */
}

@media (min-width: 768px) { /* md:flex */
    .nav-menu {
    display: flex;
    }
}

.nav-link {
    color: #cbd5e1; /* text-slate-300 */
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 500; /* font-medium */
    position: relative;
    transition: all 0.3s ease; /* transition-all duration-300 */
    cursor: pointer;
}

.nav-link:hover {
    color: #a78bfa; /* hover:text-purple-400 */
}

.nav-underline {
    position: absolute;
    bottom: -0.25rem; /* -bottom-1 */
    left: 0;
    width: 0;
    height: 2px; /* h-0.5 */
    background-image: linear-gradient(to right, #a78bfa, #67e8f9); /* from-purple-400 to-cyan-400 */
    transition: all 0.3s ease; /* transition-all duration-300 */
}

.nav-link:hover .nav-underline {
    width: 100%; /* group-hover:w-full */
}

/* WhatsApp Button */
.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* space-x-3 */
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    background-color: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 9999px; /* rounded-full */
    font-weight: 600; /* font-semibold */
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.25), 0 4px 6px -4px rgba(255, 255, 255, 0.25); /* shadow-lg shadow-white/25 */
    transition: all 0.3s ease; /* transition-all duration-300 */
    white-space: nowrap;
    cursor: pointer;
}

.btn-whatsapp:hover {
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.4), 0 4px 6px -4px rgba(255, 255, 255, 0.4); /* hover:shadow-white/40 */
}

.btn-whatsapp i {
    font-size: 1.25rem; /* text-xl */
    color: rgba(255, 255, 255, 0.7); /* text-white/70 */
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    z-index: 0;
}

.hero-content {
    flex-basis: 55%;
    z-index: 2;
    padding-right: 20px;
    max-width: 100%;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-text {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.25), 0 4px 6px -4px rgba(6, 182, 212, 0.25);
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3), 0 6px 6px rgba(6, 182, 212, 0.3);
}

.btn-outline {
    background: transparent;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 2px solid #a855f7;
    color: #c084fc;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.btn-outline:hover {
    background-color: rgba(168, 85, 247, 0.1);
    transform: translateY(-2px);
}

.clients-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    color: #22c55e;
}

.clients-tag i {
    font-size: 6px;
}

/* Scrolling Services Banner */
.scrolling-banner {
    position: relative;
    padding: 8px 0;
    overflow: hidden;
    background: linear-gradient(to right, #0f172a, #1e293b);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    margin-top: 20px;
}

.scrolling-content {
    display: flex;
    white-space: nowrap;
}

.scrolling-text {
    display: flex;
    animation: scroll-right-to-left 30s linear infinite;
}

.service-item {
    display: flex;
    align-items: center;
}

.service-item span {
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(to right, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 16px;
}

.separator-dot {
    width: 4px;
    height: 4px;
    background: #22d3ee;
    border-radius: 50%;
    margin: 0 16px;
}

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

/* Hero Images */
.hero-images {
    flex-basis: 45%;
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
}

.hero-image-card {
    position: absolute;
    width: 256px;
    height: 160px;
    background: rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1.3rem;
    overflow: visible;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: float-slow 8s infinite ease-in-out;
    max-width: 100%;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.3rem;
}

.hero-image-1 {
    top: 0;
    right: 0;
    transform: rotate(15deg);
    border: 1px solid rgba(6, 182, 212, 0.3);
    animation-delay: 0s;
}

.hero-image-1::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    right: -60px;
    bottom: -60px;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.9) 0%, rgba(6, 182, 212, 0.6) 25%, rgba(6, 182, 212, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hero-image-1:hover {
    transform: rotate(15deg) translateY(-10px);
    transition: transform 0.3s ease;
    z-index: 10;
}

.hero-image-1:hover::before {
    opacity: 1;
}

.hero-image-2 {
    top: 128px;
    left: 32px;
    transform: rotate(-6deg);
    border: 1px solid rgba(168, 85, 247, 0.3);
    animation-delay: 2s;
}

.hero-image-2::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    right: -60px;
    bottom: -60px;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.9) 0%, rgba(168, 85, 247, 0.6) 25%, rgba(168, 85, 247, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hero-image-2:hover {
    transform: rotate(-6deg) translateY(-10px);
    transition: transform 0.3s ease;
    z-index: 10;
}

.hero-image-2:hover::before {
    opacity: 1;
}

.hero-image-3 {
    bottom: 80px;
    right: 48px;
    transform: rotate(3deg);
    border: 1px solid rgba(236, 72, 153, 0.3);
    animation-delay: 4s;
}

.hero-image-3::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    right: -60px;
    bottom: -60px;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.9) 0%, rgba(236, 72, 153, 0.6) 25%, rgba(236, 72, 153, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hero-image-3:hover {
    transform: rotate(3deg) translateY(-10px);
    transition: transform 0.3s ease;
    z-index: 10;
}

.hero-image-3:hover::before {
    opacity: 1;
}

.top-right {
    margin-bottom: 30px;
    transform: rotate(15deg);
}

.middle-right {
    margin-bottom: 30px;
    transform: rotate(-10deg);
}

.bottom-right {
    transform: rotate(5deg);
}

.floating-image img {
    width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.footer-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(51, 65, 85, 0.7);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-watermark img {
    width: 16px;
    height: 16px;
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
    background: transparent;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid rgba(51, 65, 85, 0.8);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    background: rgba(120, 211, 255, 0.1);
    border-color: rgba(120, 211, 255, 0.3);
    transform: translateY(-5px);
}

/* Featured Project */
.featured-project {
    padding: 100px 0;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-badge {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge-text {
    background: rgba(51, 65, 85, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #9ca3af;
}

.badge-highlight {
    background: linear-gradient(135deg, #ff77c6, #c084fc);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
}

.badge-ctr {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #22c55e;
}

.project-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.project-description {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 25px;
    line-height: 1.7;
}

.project-tools {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.project-tools span {
    background: rgba(120, 211, 255, 0.1);
    border: 1px solid rgba(120, 211, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #78d3ff;
}

.project-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #78d3ff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 80px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 40px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: linear-gradient(45deg, transparent, transparent) padding-box,
                linear-gradient(45deg, #78d3ff, #a855f7, #06b6d4, #78d3ff) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    opacity: 0;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
}

.section-title:hover {
    transform: translateY(-10px);
}

.section-title:hover::before {
    opacity: 1;
    animation-name: drawBorder;
}

@keyframes drawBorder {
    0% {
        clip-path: circle(0% at 0% 0%);
    }
    100% {
        clip-path: circle(150% at 0% 0%);
    }
}

.section-subtitle {
    font-size: 18px;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close:hover {
    color: #22d3ee;
}

.thumbnail-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail-card:hover {
    transform: translateY(-5px);
}

.like-count {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4), 
                0 0 30px rgba(239, 68, 68, 0.2),
                inset 0 0 10px rgba(239, 68, 68, 0.1);
    animation: heartGlow 2s ease-in-out infinite alternate;
}

.like-count:hover {
    transform: scale(1.1);
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.like-count i {
    transition: all 0.2s ease;
    color: #9ca3af;
    font-size: 16px;
}

.like-count:hover i {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.like-count span {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.video-like {
    position: absolute;
    top: 30px;
    left: 10px;
    padding: 4px 8px;
    gap: 4px;
    font-size: 12px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 5;
}

.video-like i {
    font-size: 12px;
}

.video-like span {
    font-size: 12px;
}

.video-info {
    position: relative;
}

@keyframes heartGlow {
    0% {
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.4), 
                    0 0 30px rgba(239, 68, 68, 0.2),
                    inset 0 0 10px rgba(239, 68, 68, 0.1);
    }
    100% {
        box-shadow: 0 0 25px rgba(239, 68, 68, 0.6), 
                    0 0 50px rgba(239, 68, 68, 0.3),
                    inset 0 0 15px rgba(239, 68, 68, 0.2);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Top Thumbnails */
.top-thumbnails {
    padding: 100px 0;
    background: transparent;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .thumbnails-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.thumbnail-item {
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid rgba(51, 65, 85, 0.8);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.thumbnail-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.thumbnail-image {
    position: relative;
    overflow: hidden;
}

.thumbnail-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-image img {
    transform: scale(1.05);
}

.thumbnail-info {
    padding: 20px;
}

.category {
    background: linear-gradient(135deg, #ff77c6, #c084fc);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.thumbnail-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.views {
    color: #9ca3af;
    font-size: 14px;
}

/* Video Demos */
.video-demos {
    padding: 100px 0;
    background: transparent;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.video-thumbnail {
    position: relative;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 200px; /* Fixed height for consistency */
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.video-thumbnail img.loaded {
    opacity: 1;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.video-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.video-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.video-tags span {
    background: rgba(120, 211, 255, 0.1);
    border: 1px solid rgba(120, 211, 255, 0.2);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #78d3ff;
}

/* Services Cards */
.services {
    padding: 100px 0;
    background: transparent;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid rgba(51, 65, 85, 0.8);
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-35px);
    box-shadow: 0 45px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(120, 211, 255, 0.8);
    border-color: rgba(120, 211, 255, 0.6);
    z-index: 10;
}

.service-card .service-price {
    transition: all 0.3s ease;
}

.service-card:hover .service-price {
    background-color: rgba(34, 197, 94, 0.25);
    border: 1px solid #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
    color: #ffffff;
    padding: 25px 30px;
    margin: 30px 0 0 0;
    border-radius: 12px;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #78d3ff, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.service-icon i {
    font-size: 40px;
    color: #ffffff;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 20px;
}

.service-card p {
    color: #d1d5db;
    margin-bottom: 35px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 40px;
    margin-top: 10px;
    text-align: left;
    flex-grow: 1;
}

.service-features li {
    padding: 12px 0;
    color: #9ca3af;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #78d3ff;
    font-weight: bold;
}

.service-price {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whatsapp-price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #22c55e;
    padding: 20px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 30px 0 0 0;
    border-radius: 12px;
}

.whatsapp-price-btn:hover {
    background: rgba(34, 197, 94, 0.35);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.7);
    transform: translateY(-5px);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #78d3ff;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 25px;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

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

.stat-item .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #78d3ff;
    display: block;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: #9ca3af;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tools-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tools-grid span {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    font-size: 16px;
    color: white;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.7);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(120, 211, 255, 0.3);
}

.quote {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 25px;
    line-height: 1.6;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-details span {
    font-size: 14px;
    color: #9ca3af;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form h3,
.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(120, 211, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
}

.contact-info p {
    color: #d1d5db;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
}

.contact-detail {
    margin-bottom: 15px;
    color: #ffffff;
}

.response-time h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.time-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.time-item:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff77c6, #78d3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #d1d5db;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-brand .whatsapp-btn {
    margin-top: 20px;
}

.footer h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #78d3ff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #9ca3af;
}

.status {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #22c55e;
    font-weight: 600;
}

/* Thumbnails Page Specific Styles */
.thumbnails-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.thumbnails-hero .hero-title {
    font-size: 56px;
    margin-bottom: 20px;
}

.thumbnails-hero .hero-subtitle {
    font-size: 22px;
    margin-bottom: 15px;
}

.thumbnails-hero .hero-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

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

.hero-stats .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #78d3ff;
    display: block;
    margin-bottom: 8px;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: #9ca3af;
}

/* Filter Section */
.filter-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 25px;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.filter-tab:hover,
.filter-tab.active {
    background: linear-gradient(135deg, #78d3ff, #60a5fa);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Thumbnails Showcase */
.thumbnails-showcase {
    padding: 80px 0;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.thumbnail-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thumbnail-card:hover {
    transform: translateY(-25px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(120, 211, 255, 0.3);
    z-index: 5;
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }
    .hero-image-card {
        position: relative;
        margin: 10px;
        transform: none !important;
        animation: none;
        width: 80%;
        max-width: 256px;
    }
    
    .hero-images {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .thumbnail-card:hover {
        transform: translateY(-10px) scale(1.03);
    }
}

@media (max-width: 480px) {
    .thumbnail-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
}

.thumbnail-image {
    position: relative;
    overflow: hidden;
}

.thumbnail-placeholder, .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, #1e293b 8%, #334155 18%, #1e293b 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
    border-radius: 8px;
    z-index: 1;
}

.video-placeholder {
    border-radius: 12px 12px 0 0;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

.thumbnail-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.thumbnail-image img.loaded {
    opacity: 1;
}

.thumbnail-card:hover .thumbnail-image img {
    transform: scale(1.02);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.thumbnail-card:hover .thumbnail-overlay {
    opacity: 1;
}

.overlay-content {
    padding: 20px;
    color: #ffffff;
    width: 100%;
}

.category-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-tag.gaming {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.category-tag.lifestyle {
    background: linear-gradient(135deg, #a8e6cf, #88d8c0);
    color: #2d3436;
}

.category-tag.tech {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.category-tag.fitness {
    background: linear-gradient(135deg, #fd79a8, #e84393);
}

.category-tag.food {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    color: #2d3436;
}

.category-tag.travel {
    background: linear-gradient(135deg, #6c5ce7, #5f3dc4);
}

.category-tag.business {
    background: linear-gradient(135deg, #00b894, #00a085);
}

.overlay-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 15px;
}

.stats {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #9ca3af;
}

.stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stats i {
    color: #78d3ff;
}

/* Top Thumbnails Section */
.top-thumbnails {
    padding: 80px 0;
    position: relative;
    background-color: rgba(17, 24, 39, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.thumbnail-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.category-tag.gaming {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
}

.category-tag.lifestyle {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.7);
}

.category-tag.tech {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.7);
}

.category-tag.fitness {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.7);
}

.category-tag.food {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.7);
}

.category-tag.travel {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.7);
}

.thumbnail-image {
    width: 100%;
    height: 200px;
    background: rgba(10, 10, 20, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.image-placeholder {
    font-size: 16px;
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
    padding: 20px;
}

.thumbnail-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.thumbnail-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-align: left;
}

.like-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

.like-count i {
    color: #ec4899;
}

.like-count span {
    font-size: 14px;
    color: #9ca3af;
}

/* Video Editing Demos Section */
.video-demos {
    padding: 100px 0;
    background: transparent;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.7);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-25px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

@media (max-width: 768px) {
    .video-card:hover {
        transform: translateY(-10px) scale(1.03);
    }
}

@media (max-width: 480px) {
    .video-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background: rgba(10, 10, 20, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

@media (max-width: 768px) {
    .play-button {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .play-button {
        width: 40px;
        height: 40px;
    }
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(0.8);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

@media (max-width: 768px) {
    .video-card:hover .play-button {
        transform: translate(-50%, -50%) scale(0.9);
    }
}

@media (max-width: 480px) {
    .video-card:hover .play-button {
        transform: translate(-50%, -50%);
        box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    }
}

.play-button i {
    color: white;
    font-size: 20px;
    margin-left: 3px;
}

.video-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.video-placeholder {
    font-size: 14px;
    color: #9ca3af;
    text-align: center;
    padding: 20px;
}

.video-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 20px 20px 15px;
    line-height: 1.3;
}

.video-tags {
    display: flex;
    gap: 8px;
    margin: 0 20px 20px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

/* My Services Section */
.my-services {
    padding: 100px 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-grid:hover .service-card:not(:hover) {
    transform: translateY(10px);
    opacity: 0.7;
}

.service-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.thumbnail-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.short-form-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.long-form-icon {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #d1d5db;
    font-size: 14px;
}

.service-features li i {
    color: #06b6d4;
    font-size: 8px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #06b6d4;
    text-align: left;
}

/* About Axvrenox Section */
.about-axvrenox {
    padding: 100px 0;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

/* Profile Section */
.profile-section {
    position: relative;
}

.profile-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 350px;
    height: 350px;
    background: #1e293b;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.profile-logo {
    width: 99%;
    height: 99%;
    object-fit: contain;
    border-radius: 20px;
}

.image-placeholder {
    color: #9ca3af;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.floating-icon i {
    font-size: 20px;
    color: white;
}

.floating-icon.top-left {
    top: -25px;
    left: -25px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.floating-icon.bottom-left {
    bottom: -25px;
    left: -25px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* About Text Section */
.about-text-section {
    padding-left: 20px;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight-name {
    color: #06b6d4;
}

.about-paragraph {
    font-size: 18px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 600px;
}

/* Stats Section */
.stats-section {
    margin: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Tools Section */
.tools-section {
    margin-top: 50px;
}

.tools-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    row-gap: 25px;
}

.tool-pill {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.tool-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.4), 0 4px 6px -4px rgba(255, 255, 255, 0.4);
}

.tool-pill i {
    font-size: 18px;
}

/* Tool-specific colors */
.tool-pill.photoshop {
    --tool-color-1: #3b82f6;
    --tool-color-2: #1d4ed8;
}

.tool-pill.illustrator {
    --tool-color-1: #f97316;
    --tool-color-2: #ea580c;
}

.tool-pill.premiere {
    --tool-color-1: #8b5cf6;
    --tool-color-2: #7c3aed;
}

.tool-pill.after-effects {
    --tool-color-1: #a855f7;
    --tool-color-2: #9333ea;
}

.tool-pill.davinci {
    --tool-color-1: #10b981;
    --tool-color-2: #059669;
}

.tool-pill.figma {
    --tool-color-1: #06b6d4;
    --tool-color-2: #0891b2;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B1220 0%, #121A2E 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

/* Contact Form Column */
.contact-form-column {
    width: 100%;
}

.contact-form-container {
    background: #121A2E;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group textarea {
    background: #1A2235;
    border: none;
    border-radius: 6px;
    padding: 12px 15px;
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #1e293b;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.textarea-container {
    position: relative;
}

.char-counter {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.send-button {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.send-button:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.quick-contact-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.quick-contact-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 25px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.contact-card * {
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.whatsapp-card:hover {
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3), 0 0 25px rgba(34, 197, 94, 0.5);
}

.email-card:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3), 0 0 25px rgba(59, 130, 246, 0.5);
}

.whatsapp-card {
    background: #123C34;
}

.email-card {
    background: #2A1B3F;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon {
    background: #0d2b23;
}

.email-icon {
    background: #1a0f2a;
}

.contact-icon i {
    font-size: 20px;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.contact-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Response Time Box */
.response-time-box {
    background: #121A2E;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.response-time-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.response-time-rows {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.response-time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.response-platform {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.response-time {
    font-size: 14px;
    font-weight: 600;
}

.whatsapp-time {
    color: #4CAF50;
}

.email-time {
    color: #9C27B0;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #0B1220 0%, #121A2E 100%);
    padding: 10px 0 5px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Company Info Column */
.company-info {
    gap: 20px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 0;
}

.footer-subtitle {
    font-size: 16px;
    color: white;
    font-weight: 500;
    margin-bottom: 1px;
}

.footer-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.1;
    margin-bottom: 5px;
    max-width: 400px;
}

.footer-whatsapp-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.footer-whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.footer-whatsapp-btn i {
    font-size: 16px;
}

/* Quick Links & Services Columns */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: white;
    transform: translateX(5px);
}

/* Contact Info Column */
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-item .contact-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .whatsapp-icon {
    background: #0d2b23;
}

.contact-item .email-icon {
    background: #1a0f2a;
}

.contact-item .location-icon {
    background: #1e3a8a;
}

.contact-item .timezone-icon {
    background: #dc2626;
}

.contact-item .contact-icon i {
    font-size: 14px;
    color: white;
}

.contact-item span {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.contact-item:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

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

.footer-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* Scroll-to-top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    filter: brightness(1.1);
    transform: translateY(-2px) scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Header Styles */
    .header-content {
        padding: 10px 0;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .mobile-menu-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 49;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-heading {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thumbnails-grid,
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-card .video-title {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
    }
    
    .project-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero .container {
        margin: 0 auto;
    }
    
    .hero {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        margin: 0;
        padding-left: 0;
    }
    
    .hero-images {
        width: 100%;
        align-items: center;
        padding-right: 0;
        justify-content: center;
        height: auto;
        margin-top: 30px;
    }
    
    .floating-image {
        margin-left: 0;
        margin-right: 0;
        align-self: center;
    }

    .header .container {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    
    .nav {
        position: static;
        transform: none;
        order: 2;
        width: 100%;
        margin: 10px 0;
    }
    
    .nav ul {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .whatsapp-btn {
        order: 3;
        border-radius: 20px;
    }
    
    .thumbnails-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-tabs {
        gap: 10px;
    }
    
    .filter-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 10px 0;
        gap: 15px;
    }
    
    .nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav a {
        font-size: 14px;
    }
    
    .whatsapp-btn {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    .hero .container {
        margin: 0 auto;
    }
    
    .hero {
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        flex-basis: 100%;
    }
    
    .hero-images {
        width: 100%;
        align-items: center;
        padding-right: 0;
        justify-content: center;
    }
    
    .floating-image {
        margin-left: 0;
        margin-right: 0;
        align-self: center;
    }
    
    .floating-image img {
        width: 150px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 36px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-heading {
        font-size: 28px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .thumbnails-grid,
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .video-card {
        margin-bottom: 15px;
    }
    
    .video-info {
        padding: 12px;
    }
    
    .video-card .video-title {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-paragraph {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-whatsapp-btn {
        align-self: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .services-wrapper {
        grid-template-columns: 1fr;
    }
    
    .thumbnails-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnails-hero .hero-title {
        font-size: 42px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}
