/* Global Styles */
:root {
    --primary-color: #6e00ff;
    --secondary-color: #ff00e6;
    --dark-color: #121212;
    --light-color: #f4f4f4;
    --text-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    color: var(--light-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}



section {
    padding: 100px 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/silicone-doll-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Removed particle effect for hero section */

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-color);
    background: var(--primary-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(110, 0, 255, 0.2);
}

.cta-button:hover {
    background: #5000e6;
    color:#fff;
    box-shadow: 0 8px 20px rgba(74, 0, 176, 0.4), 0 4px 12px rgba(110, 0, 255, 0.3);
}

@keyframes particleFloat {
    0% {
        background-position: 0 0, 15px 15px;
    }
    100% {
        background-position: 300px 300px, 315px 315px;
    }
}

/* Glowing pulse animation for hero section */
@keyframes glowingPulse {
    0% {
        box-shadow: 0 0 30px rgba(110, 0, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 0, 230, 0.5);
    }
    100% {
        box-shadow: 0 0 30px rgba(110, 0, 255, 0.3);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1;
    animation: pulseBackground 8s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

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

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 10px rgba(110, 0, 255, 0.7);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(110, 0, 255, 0.7);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 0, 230, 0.9), 0 0 30px rgba(110, 0, 255, 0.7);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(110, 0, 255, 0.7);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 0, 230, 0.9), 0 0 30px rgba(110, 0, 255, 0.7);
    }
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-color);
    position: relative;
    display: inline-block;
    overflow: hidden;
    animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 15px rgba(255, 0, 230, 0.8), 0 0 20px rgba(110, 0, 255, 0.6); }
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--light-color);
    border-right: 2px solid var(--light-color);
    transform: rotate(45deg);
    margin: -10px 0;
    animation: scroll 1.5s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* Products Section */
.products {
    background-color: var(--dark-color);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/innovation-bg.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.tabs {
    position: relative;
    z-index: 1;
}

.tab-header {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab {
    padding: 15px 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    color: var(--text-color);
}

.tab.active {
    color: var(--primary-color);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.features-container {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.product-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.product-intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.product-intro p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.product-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(110, 0, 255, 0.3);
}

/* Features Section */
.features {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.features.dark {
    background-color: #0f0f0f;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(110, 0, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    padding: 0 2rem;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.feature-image img, .feature-image video {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.feature-image img:hover, .feature-image video:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(110, 0, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(110, 0, 255, 0.3);
}

.feature-icon i, .feature-icon img {
    font-size: 2rem;
    color: white;
    width: 40px;
    height: 40px;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Innovation Section */
.innovation {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.innovation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/innovation-bg.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.innovation-item {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.innovation-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(110, 0, 255, 0.3);
}

.innovation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(110, 0, 255, 0.3);
}

.innovation-icon i {
    font-size: 1.8rem;
    color: white;
}

.innovation-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.innovation-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Experience Section */
.experience {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.experience .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.experience-content {
    flex: 1;
}

.experience-image {
    flex: 1;
    position: relative;
}

.experience-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.experience-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(110, 0, 255, 0.3);
}

.experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.experience-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.experience-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background-color: var(--dark-color);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(110, 0, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1;
    min-width: 250px;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(110, 0, 255, 0.3);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-item p {
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--light-color);
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .feature-item, .feature-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1.5rem;
    }
    
    .feature-content {
        margin-bottom: 2rem;
    }
    
    .experience .container {
        flex-direction: column;
    }
    
    .experience-content {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .experience-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tab {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature-content h3, .innovation-item h3, .product-intro h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        min-width: 100%;
    }
}