/* Modern CSS Reset and Base Styles */
:root {
    /* Mobile-first variables */
    --mobile-padding: 1rem;
    --section-padding: 3rem 1rem;
    --heading-font-size: 2rem;
    --subheading-font-size: 1.1rem;
    --base-font-size: 1rem;
    --button-min-height: 48px; /* Minimum touch target size */
    --link-min-height: 44px; /* Minimum touch target size */
    --primary: #e83e6c;
    --secondary: #c41e4a;
    --accent: #ff5c8d;
    --dark: #0a0a1a;
    --darker: #050510;
    --light: #ffffff;
    --dark-text: #1a1a1a;
    --gray: #6b7280;
    --light-gray: #e5e7eb;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}


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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Responsive Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-top: 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    min-height: var(--button-min-height);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
}

/* Make buttons and links easier to tap on mobile */
a, button, input, .btn {
    -webkit-tap-highlight-color: transparent;
}

/* Sections */
section {
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #e83e6c; /* Updated to solid theme color */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    
    /* Prevent horizontal scroll on mobile */
    max-width: 100vw;
    overflow-x: hidden;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
    height: 75px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.4rem;
    z-index: 1001;
    transition: color 0.3s ease;
}

.logo:hover {
    color: white;
}

.logo-img {
    height: 32px;
    width: auto;
    margin-right: 10px;
    transition: all 0.3s ease;
}

/* Plain white logo text */
#main-logo-text {
    color: white !important;
    text-shadow: none !important;
    animation: none !important;
}

/* No hover effects on logo text */
nav .nav-container .logo:hover .logo-text {
    color: white !important;
    text-shadow: none !important;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0 0.5rem;
}

.nav-link {
    color: #e83e6c !important; /* Theme color for nav links */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 4px;
    opacity: 1;
}

.nav-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

/* Nav links use theme color */
.nav-link[data-section] {
    color: #e83e6c !important;
}

/* Icons in nav links */
.nav-link i {
    color: #e83e6c !important;
}

/* Default icon color */
.nav-link i {
    margin-right: 8px;
    font-size: 1em;
    color: var(--primary);
    transition: all 0.25s ease;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 4px;
}

.nav-link.active {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.nav-link.active i {
    color: #e83e6c !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    padding: 8rem 1.5rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Media Queries */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero {
        padding: 10rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.5rem;
    }
    
    /* Navigation */
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-links {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        transform: none;
        flex-direction: row;
        box-shadow: none;
    }
    
    .nav-links li {
        margin: 0 1rem;
    }
    
    .mobile-menu-close {
        display: none;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        padding: 0 4rem;
    }
    
    section {
        padding: 8rem 4rem;
    }
    
    .hero {
        padding: 12rem 4rem;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 6rem;
    }
    
    section {
        padding: 10rem 6rem;
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
    }
    
    /* Adjust section padding for mobile */
    section {
        padding: 4rem 1.5rem;
    }
    
    /* Adjust hero section for mobile */
    .hero {
        padding: 6rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* Adjust buttons for better touch targets */
    .btn {
        padding: 0.9rem 1.8rem;
        min-width: 160px;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

body.scrolled nav {
    padding: 0.5rem 0;
    background: rgba(10, 10, 26, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    height: 100%;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    opacity: 0.9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    overflow: hidden;
    color: var(--light);
    text-align: center;
    z-index: 1;
}

/* Add space background to hero */
.hero .stars,
.hero .stars2,
.hero .stars3,
.hero .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 240, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(112, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 0, 230, 0.05) 0%, transparent 60%);
    z-index: 0;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, 10px); }
    50% { transform: translate(0, 20px); }
    75% { transform: translate(-10px, 10px); }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out forwards;
}

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

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.8), 0 0 30px rgba(112, 0, 255, 0.5);
    }
}

.hero p.slogan {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0 auto 1.5rem;
    max-width: 800px;
    line-height: 1.3;
    animation: fadeInUp 1s ease-out 0.1s both, textGlow 3s ease-in-out infinite alternate;
    text-align: center;
}

.hero p:not(.slogan) {
    font-size: 1.4rem;
    color: var(--light);
    opacity: 0.9;
    margin: 0 auto 2.5rem;
    max-width: 700px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: var(--dark-text);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.4);
    color: var(--dark-text);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(1px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #ffffff;
    opacity: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: #000;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    transform: translateY(20px);
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top i {
    transition: transform 0.3s ease;
}

.scroll-top:hover i {
    transform: translateY(-3px);
}

/* Common Section Styles */
.services, .about, .video-reviews, .contact {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--light);
}

/* Space Background for All Sections */
.services::before, 
.about::before, 
.video-reviews::before,
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.7;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
}

/* Add stars and particles to all sections */
.services .stars,
.about .stars,
.video-reviews .stars,
.contact .stars,
.services .stars2,
.about .stars2,
.video-reviews .stars2,
.contact .stars2,
.services .stars3,
.about .stars3,
.video-reviews .stars3,
.contact .stars3,
.services .particles,
.about .particles,
.video-reviews .particles,
.contact .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Section Title Styles */
.section-title {
    margin: 0 auto 4rem;
    text-align: center;
    max-width: 800px;
}

.section-title h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #fff;
}

.section-title p {
    margin: 0 auto;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    position: relative;
    overflow: hidden;
}

.services .section-title h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0 auto 4rem;
    text-transform: uppercase;
    color: #FFD700;
    text-shadow: 
        0 0 5px #FFD700,
        0 0 10px #FFD700,
        0 0 20px rgba(255, 215, 0, 0.5);
    padding: 0;
    display: inline-block;
    z-index: 1;
    line-height: 1.2;
    background: none;
    animation: shine 4s linear infinite, float 3s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.services .section-title h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 12px;
    z-index: -1;
    filter: blur(8px);
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Testimonials Section Icon */
/* Testimonials Section */
#video-reviews .section-title h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

/* Play Icon Styling */
/* Voice Feedback Section */
.voice-feedback {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.voice-feedback .section-title h2 {
    position: relative;
    display: inline-block;
}

.voice-feedback .section-title h2 i {
    color: var(--primary);
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(232, 62, 108, 0.6);
    transition: all 0.3s ease;
    margin: 0 15px;
}

.voice-feedback .section-title h2 .fa-rocket {
    color: #b300ff;
    text-shadow: 0 0 20px rgba(179, 0, 255, 0.8);
    animation: float 3s ease-in-out infinite;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.voice-card {
    background: rgba(10, 10, 26, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.voice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(179, 0, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 240, 255, 0.5);
}

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

.voice-card-inner {
    padding: 2rem;
}

.voice-wrapper {
    margin-bottom: 1.5rem;
}

/* Audio Player Styles */
.audio-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.audio-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.audio-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Custom Audio Player */
audio {
    width: 100%;
    margin: 1rem 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

/* Style the audio controls */
audio::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button {
    background-color: #e83e6c;
    border-radius: 50%;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: #fff;
}

audio::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    margin: 0 10px;
}

audio::-webkit-media-controls-timeline::-webkit-slider-thumb {
    background: #e83e6c;
}

/* Hide the download button */
audio::-webkit-media-controls-enclosure {
    border-radius: 15px;
}

audio::-internal-media-controls-download-button {
    display: none;
}

/* Firefox styles */
audio::-moz-range-progress {
    background-color: #e83e6c;
}

audio::-moz-range-track {
    background-color: rgba(255, 255, 255, 0.2);
}

audio::-moz-range-thumb {
    background: #e83e6c;
    border: none;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-pause {
    background: var(--primary);
    color: var(--dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-pause:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.play-pause i {
    font-size: 1.2rem;
}

.progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    min-width: 80px;
    text-align: right;
}

.voice-info {
    text-align: center;
    position: relative;
}

.client-avatar {
    width: 80px;
    height: 80px;
    margin: -60px auto 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    border: 4px solid var(--dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.voice-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.client-title {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    margin-top: 0.3rem;
    font-weight: 500;
}

.stars-rating {
    color: #ffd700;
    margin: 0.5rem 0;
    font-size: 1rem;
}

.quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    position: relative;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.quote::before {
    content: '"\201C"';
    font-size: 4rem;
    position: absolute;
    left: 5px;
    top: -15px;
    color: rgba(0, 240, 255, 0.2);
    font-family: serif;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .voice-grid {
        grid-template-columns: 1fr;
    }
    
    .voice-card {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .voice-feedback .section-title h2 i {
        font-size: 2rem;
    }
}

/* Animation for floating effect */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

#video-reviews .section-title h2 i {
    color: #00f0ff;
    font-size: 3.5rem;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    position: relative;
    display: inline-block;
    line-height: 1;
    transition: all 0.3s ease;
    width: 1em;
    height: 1em;
    text-align: center;
}

/* Hover Effect */
#video-reviews .section-title h2 i:hover {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(0, 240, 255, 1);
}

/* Text Styling */
#video-reviews .section-title h2 span {
    display: inline-block;
    position: relative;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
}

.services .section-title h2 i {
    margin-right: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    width: 1.2em;
    height: 1.2em;
    position: relative;
    color: #FFD700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6);
    animation: crownFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    vertical-align: middle;
    margin-top: -0.2em;
}

@keyframes crownFloat {
    0%, 100% { 
        transform: translateY(0) rotateY(0deg) scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    }
    50% { 
        transform: translateY(-8px) rotateY(20deg) scale(1.05);
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
    }
}

.services .section-title h2 i::before {
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: crownShine 4s linear infinite;
}

@keyframes crownShine {
    0% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(10deg) brightness(1.2); }
    100% { filter: hue-rotate(0deg) brightness(1); }
}

.services .section-title h2 i::before {
    position: relative;
    z-index: 2;
}

.services .section-title h2 i::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes crownPulse {
    0% {
        transform: scale(1) rotate(-15deg);
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
    }
    50% {
        transform: scale(1.2) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
    }
    100% {
        transform: scale(1) rotate(-15deg);
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
    }
}

.services .section-title h2 span {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    position: relative;
    padding: 0.5rem 1.5rem;
}

.services .section-title h2::before,
.services .section-title h2::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    top: 50%;
    transform: translateY(-50%);
}

.services .section-title h2::before {
    right: calc(100% + 1rem);
}

.services .section-title h2::after {
    left: calc(100% + 1rem);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
    100% { transform: scale(1); }
}

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

.services {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #050510 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(112, 0, 255, 0.03) 0%, transparent 25%);
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 215, 0, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.section-title p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-title p::before,
.section-title p::after {
    content: '✦';
    color: #FFD700;
    margin: 0 0.5rem;
    animation: twinkle 2s infinite alternate;
    display: inline-block;
}

@keyframes twinkle {
    0% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 240, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(112, 0, 255, 0.03) 0%, transparent 25%);
    z-index: 0;
}

.services .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(20, 20, 40, 0.4);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(112, 0, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(20, 20, 40, 0.6);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.4s ease;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.service-card-content {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 6rem 0;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 4rem auto 0;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
}

/* Stats Section */
.stats {
    background: var(--darker);
    color: var(--light);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(112, 0, 255, 0.05) 0%, transparent 25%);
    z-index: 0;
}

.stats {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    overflow: hidden;
    z-index: 1;
    color: var(--light);
}

/* Animated Stars */
@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

@keyframes move {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1000px); }
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stars {
    background-image: 
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%),
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%),
        radial-gradient(1px 1px at 30% 40%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%),
        radial-gradient(1px 1px at 40% 50%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    background-size: 250px 250px;
    animation: twinkle 5s infinite;
}

.stars2 {
    background-image: 
        radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%),
        radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    background-size: 300px 300px;
    animation: twinkle 7s infinite;
    opacity: 0.7;
}

.stars3 {
    background-image: 
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    background-size: 200px 200px;
    animation: twinkle 10s infinite;
    opacity: 0.5;
}

/* Moving particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%),
        radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: move 60s linear infinite;
}

/* Nebula effect */
.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 240, 255, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(112, 0, 255, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 40% 60%, rgba(255, 0, 230, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
    animation: float 30s ease-in-out infinite;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(15, 15, 35, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(20, 20, 45, 0.8);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    line-height: 1;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #ffffff;
    letter-spacing: 0.8px;
}

/* Add some floating particles/ornaments */
.stat-item::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0,240,255,0.1) 0%, rgba(0,240,255,0) 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover::after {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

/* Animation for the stats */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    transition: all 0.5s ease;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.5s; }
.stat-item:nth-child(4) { animation-delay: 0.7s; }

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 40, 0.6);
}

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

.stat-item:hover::after {
    opacity: 1;
}

.stat-label {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    position: relative;
    display: inline-block;
    padding: 0 1rem;
}

.stat-label::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    display: block;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding-right: 1.5rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(112, 0, 255, 0.03) 0%, transparent 25%);
    z-index: 0;
}

.about .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.about-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-text p::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
    opacity: 0.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.4), rgba(10, 10, 30, 0.6));
    border-radius: 20px;
    padding: 3.5rem 3rem;
    color: #ffffff;
    font-size: 1.1rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-image: 
        linear-gradient(135deg, rgba(20, 20, 40, 0.4), rgba(10, 10, 30, 0.6)),
        url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M30 20v60l40-30z" fill="%23FFFFFF" opacity=".05"/></svg>');
    background-size: 100px;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(112, 0, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: all 0.6s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.about-image h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.about-image p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 6rem 0;
    }
    
    .about-image {
        padding: 2.5rem 2rem;
    }
    
    .about-text p {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 5rem 0;
    }
    
    .about-text p {
        padding-left: 1.2rem;
        font-size: 1rem;
    }
    
    .about-image {
        padding: 2rem 1.5rem;
    }
    
    .about-image h3 {
        font-size: 1.6rem;
    }
}

/* Video Reviews Section */
.video-reviews {
    padding: 8rem 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.video-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 85%, rgba(0, 240, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 85% 15%, rgba(112, 0, 255, 0.03) 0%, transparent 25%);
    z-index: 0;
}

.video-reviews .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.video-reviews .section-title h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.voice-feedback .section-title h2 {
    position: relative;
    display: inline-block;
}

.voice-feedback .section-title h2 i {
    color: var(--primary);
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(232, 62, 108, 0.6);
    transition: all 0.3s ease;
    margin: 0 15px;
}

.voice-feedback .section-title h2 .fa-rocket {
    color: #b300ff;
    text-shadow: 0 0 20px rgba(179, 0, 255, 0.8);
    animation: float 3s ease-in-out infinite;
}

.video-reviews .section-title h2 i {
    font-size: 2.5rem;
    margin-right: 1rem;
    color: var(--primary);
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.video-reviews .section-title h2 i::before {
    position: relative;
    z-index: 1;
}

.video-reviews .section-title h2 i::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0.9);
    transition: all 0.3s ease;
    z-index: 0;
}

.video-reviews .section-title h2:hover i {
    transform: scale(1.1) rotate(10deg);
}

.video-reviews .section-title h2:hover i::after {
    transform: scale(1.1);
    background: rgba(0, 240, 255, 0.2);
}

.video-reviews .section-title h2 span {
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    padding: 0.5rem 1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.video-card {
    background: rgba(20, 20, 40, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card h4 {
    font-size: 1.3rem;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background: rgba(10, 10, 20, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-reviews {
        padding: 6rem 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 4rem auto 0;
    }
}

.video-reviews .video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* YouTube Player Custom Controls */
.video-wrapper iframe {
  --yt-spec-icon-disabled: #ffffff !important;
  --yt-spec-icon-active-other: #00f0ff !important;
  --yt-spec-icon-hover: #00f0ff !important;
  --yt-spec-icon-inactive: #ffffff !important;
  --yt-spec-icon-active-other: #00f0ff !important;
  --yt-spec-icon-disabled: rgba(255, 255, 255, 0.7) !important;
}

/* Make controls more visible */
.ytp-chrome-bottom, .ytp-progress-bar-container {
  background: rgba(0, 0, 0, 0.7) !important;
}

/* Volume control styling */
.ytp-volume-panel {
  opacity: 1 !important;
  width: 100px !important;
}

.ytp-volume-slider {
  height: 6px !important;
  background: rgba(255, 255, 255, 0.3) !important;
  border-radius: 3px !important;
}

.ytp-volume-slider-handle {
  width: 16px !important;
  height: 16px !important;
  top: -5px !important;
  background: #00f0ff !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
}

.ytp-volume-slider-handle::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 8px !important;
  height: 8px !important;
  background: #fff !important;
  border-radius: 50% !important;
}

/* Make volume control always visible */
.ytp-volume-panel.ytp-volume-panel-hover .ytp-volume-slider,
.ytp-volume-panel.ytp-volume-panel-hover .ytp-volume-slider-handle,
.ytp-volume-panel.ytp-volume-panel-hover .ytp-volume-slider {
  opacity: 1 !important;
  transform: scaleY(1) !important;
}

/* Enhanced volume icon and controls */
.ytp-volume-panel {
  width: 100px !important;
  height: 48px !important;
  margin-right: 10px !important;
}

.ytp-volume-slider {
  height: 6px !important;
  margin-top: 20px !important;
  background: rgba(255, 255, 255, 0.3) !important;
  border-radius: 3px !important;
}

.ytp-volume-slider-handle {
  width: 20px !important;
  height: 20px !important;
  top: -7px !important;
  background: #00f0ff !important;
  border: 2px solid #fff !important;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.7) !important;
}

/* Make controls more touch-friendly on mobile */
.ytp-chrome-controls .ytp-button {
  width: 56px !important;
  height: 56px !important;
  padding: 14px !important;
}

/* Volume button specific */
.ytp-volume-area {
  padding: 0 10px !important;
}

.ytp-volume-button {
  width: 56px !important;
  height: 56px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ytp-volume-button .ytp-svg-volume {
  width: 32px !important;
  height: 32px !important;
  transform: scale(1.5) !important;
  transform-origin: center !important;
}

/* Make volume control always visible */
.ytp-volume-panel.ytp-volume-panel-hover .ytp-volume-slider,
.ytp-volume-panel.ytp-volume-panel-hover .ytp-volume-slider-handle,
.ytp-volume-panel.ytp-volume-panel-hover .ytp-volume-slider {
  opacity: 1 !important;
  transform: scaleY(1.5) !important;
  transform-origin: center left !important;
}

/* Hover effects */
.ytp-volume-button:hover .ytp-svg-volume {
  transform: scale(1.8) !important;
  filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.9)) !important;
}

.stat-number::after {
    content: '+';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2.5rem;
    line-height: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

.stat-item:hover .stat-number::after {
    transform: translateY(-3px);
    opacity: 1;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.info-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(112, 0, 255, 0.05));
    opacity: 0.3;
    transition: all 0.4s ease;
    z-index: -1;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.info-box:hover::before {
    opacity: 1;
}

.info-box:hover::after {
    opacity: 0.5;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.4s ease;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
}

.info-box:hover .info-icon {
    transform: scale(1.1) translateY(-5px);
}

.info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.info-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.about-image {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.4), rgba(10, 10, 30, 0.6));
    border-radius: 20px;
    padding: 3.5rem 3rem;
    color: #ffffff;
    font-size: 1.1rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(112, 0, 255, 0.1));
    z-index: -1;
}

.about-image h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.about-image p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 0;
    font-size: 1.15rem;
    font-weight: 300;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .about .section-title h2 {
        font-size: 2.5rem;
    }
    
    .about .section-title p {
        font-size: 1.1rem;
    }
    
    .about-info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto 0;
    }
    
    .info-box {
        padding: 1.75rem 1.25rem;
    }
    
    .about-image {
        padding: 2.5rem 1.5rem !important;
    }
    
    .about-image h3 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .about-image p {
        font-size: 1.05rem !important;
        line-height: 1.7 !important;
    }
}

/* Contact Form Section */
.contact {
    padding: 8rem 0 4rem;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(112, 0, 255, 0.03) 0%, transparent 25%);
    z-index: 0;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    display: inline-block;
}

.contact h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 2rem auto 3rem;
    line-height: 1.8;
}

.contact-form {
    background: rgba(20, 20, 40, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.4s ease;
}

.contact-form::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(112, 0, 255, 0.05));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.contact-form:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-form:hover::before {
    opacity: 1;
}

.contact-form:hover::after {
    opacity: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

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

/* Dark mode select dropdown appearance */
.form-group select,
.form-group select option {
    background: var(--dark);
    color: #fff;
}

/* Fix visibility of select options in light mode */
.light-mode .form-group select,
.light-mode .form-group select option {
    color: var(--dark-text);
}

.light-mode .form-group select {
    background: rgba(0,0,0,0.05);
}

.contact-form button[type="submit"] {
  background: var(--gradient);
  color: #000;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;

  /* make it block so margin auto works */
  display: block;

  /* let it size to its content up to 400px */
  width: auto;
  max-width: 400px;

  /* center it horizontally */
  margin: 1.5rem auto 0;

  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;  /* this centers the _text_ inside */
}


.contact-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.contact-form button[type="submit"]:hover::before {
    opacity: 1;
}

.contact-form button[type="submit"]:active {
    transform: translateY(-2px);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-grid .info-box {
    margin: 0;
    height: 100%;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(20, 20, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    color: #fff;
}

/* subtle gradient line on top */
.contact-info-grid .info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* icon */
.contact-info-grid .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    font-size: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,240,255,0.15), rgba(112,0,255,0.15));
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    color: var(--primary);
    transition: var(--transition);
}

.contact-info-grid .info-box h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info-grid .info-box p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Hover effect */
.contact-info-grid .info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    background: var(--gradient);
    color: var(--dark-text);
}

.contact-info-grid .info-box:hover h3,
.contact-info-grid .info-box:hover p {
    color: var(--dark-text);
}

.contact-info-grid .info-box:hover::before {
    transform: scaleX(1);
}

.contact-info-grid .info-box:hover .info-icon {
    transform: scale(1.1) translateY(-2px);
    background: rgba(255,255,255,0.25);
    color: var(--dark-text);
}

@media (max-width: 600px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Add space background to footer */
footer .stars,
footer .stars2,
footer .stars3,
footer .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

footer a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(112, 0, 255, 0.02) 0%, transparent 25%);
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

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

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
    width: 100%;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.2);
}

/* Premium Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 26, 0.9);
    color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    padding: 0;
}

#scrollTopBtn.visible {
    opacity: 1;
    transform: translateY(0);
    display: flex;
}

#scrollTopBtn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.4), inset 0 0 20px rgba(0, 240, 255, 0.2);
    background: rgba(10, 10, 26, 0.95);
    border-color: var(--accent);
    color: var(--accent);
}

#scrollTopBtn:active {
    transform: translateY(2px) scale(0.95);
}

/* Pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

#scrollTopBtn:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(112, 0, 255, 0.1));
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(30px) rotate(0deg);
    overflow: hidden;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px) rotate(5deg) !important;
    color: #000;
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.4);
}

.scroll-to-top:hover::before {
    opacity: 1;
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
}

.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Responsive Design - Additional Optimizations */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Optimize typography for mobile */
    h1 { line-height: 1.2; margin-bottom: 1rem; }
    h2 { line-height: 1.25; margin-bottom: 0.875rem; }
    h3 { line-height: 1.3; margin-bottom: 0.75rem; }
    
    /* Improve spacing */
    section {
        margin: 0;
        padding: 2rem var(--mobile-padding);
    }
    
    /* Optimize hero section for mobile */
    .hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    /* Improve button and link tap targets */
    a, button, [role="button"], [tabindex] {
        min-height: 44px;
        min-width: 44px;
        padding: 0.5rem 1rem;
    }
    
    /* Optimize form elements */
    input, textarea, select {
        font-size: 16px; /* Prevent zoom on focus in iOS */
        padding: 0.75rem;
    }
    
    /* Improve touch feedback */
    button, a, input[type="button"], input[type="submit"] {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        transition: transform 0.1s ease, opacity 0.1s ease;
    }
    
    button:active, a:active, input[type="button"]:active, input[type="submit"]:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    /* Optimize images and media */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve readability of text blocks */
    p, li, td, th, label {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Adjust spacing for mobile */
    .container {
        padding-left: var(--mobile-padding);
        padding-right: var(--mobile-padding);
    }
    
    /* Optimize navigation for touch */
    .nav-links a {
        padding: 0.5rem 0.75rem;
        margin: 0 0.25rem;
    }
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

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

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

.service-card {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) {
    animation-delay: 0.6s;
}

.hero-content {
    animation: fadeInUp 1s ease forwards;
}

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

/* === Custom Themed Cursor === */
body.custom-cursor-enabled {
    cursor: none;
}

.custom-cursor,
.custom-cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease, transform 0.15s ease;
}

.custom-cursor {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.custom-cursor-outline {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    mix-blend-mode: difference;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}

body.cursor-hover .custom-cursor-outline {
    transform: translate(-50%, -50%) scale(1.4);
    border-color: var(--accent);
}

body.cursor-hover .custom-cursor {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--accent);
}

/* Hero Section Styling */
.hero {
    position: relative;
    padding: 10rem 2rem;
    text-align: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

/* Premium Slogan Styling */
.hero .slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin: 2rem 0 3rem;
    text-align: center;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .slogan span {
    display: block;
    margin: 0.8rem 0;
    position: relative;
    padding: 0 0.5rem;
    transition: all 0.3s ease;
}

.hero .slogan span:first-child {
    font-size: 1.2em;
    color: #ff4d8d;
    text-shadow: 0 0 20px rgba(255, 77, 141, 0.7);
    letter-spacing: 1.5px;
}

.hero .slogan .text-white {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7) !important;
    margin-right: 5px;
}

.hero .slogan span:last-child {
    font-size: 0.7em;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 1.5rem;
    text-transform: none;
    opacity: 0.95;
    font-family: 'Inter', sans-serif;
}

/* Decorative elements */
.hero .slogan::before,
.hero .slogan::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.hero .slogan::before {
    left: -100px;
}

.hero .slogan::after {
    right: -100px;
}

/* Hover effects */
.hero .slogan:hover span:first-child {
    text-shadow: 0 0 25px rgba(255, 77, 141, 0.9);
}

.hero .slogan:hover::before {
    left: -90px;
    opacity: 1;
}

.hero .slogan:hover::after {
    right: -90px;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero .slogan {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero .slogan {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .slogan {
        font-size: 1.8rem;
    }
    
    .hero .slogan::before,
    .hero .slogan::after {
        width: 40px;
    }
    
    .hero .slogan::before {
        left: -50px;
    }
    
    .hero .slogan::after {
        right: -50px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .slogan {
        font-size: 1.5rem;
    }
    
    .hero .slogan::before,
    .hero .slogan::after {
        display: none;
    }
}

/* Responsive adjustments for slogan */
@media (max-width: 768px) {
    .hero .slogan {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero .slogan {
        font-size: 1.3rem;
    }
}

/* Client Feedback Section */
#video-reviews .section-title h2 {
    color: var(--light);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

#video-reviews .section-title h2 i {
    color: var(--primary);
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(232, 62, 108, 0.6);
    transition: all 0.3s ease;
}

#video-reviews .section-title h2 span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0.5rem;
    position: relative;
}

/* Removed underline effect from the Client Feedback text */

#video-reviews .section-title h2 .fa-rocket {
    color: var(--accent);
    animation: float 3s ease-in-out infinite;
}

#video-reviews .section-title h2:hover i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(232, 62, 108, 0.8));
}
