:root {
    --primary-color: #6200ea;
    --secondary-color: #03dac6;
    --accent-color: #ff4081;
    --dark-color: #121212;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #6200ea 0%, #b388ff 100%);
    --gradient-secondary: linear-gradient(135deg, #03dac6 0%, #00b0ff 100%);
    --gradient-accent: linear-gradient(135deg, #ff4081 0%, #ff79b0 100%);
    --gradient-dark: linear-gradient(135deg, #121212 0%, #303030 100%);
    --gradient-carousel: linear-gradient(135deg, rgba(98, 0, 234, 0.05) 0%, rgba(3, 218, 198, 0.05) 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 15px 35px rgba(98, 0, 234, 0.2);
    --transition: all 0.3s ease;
    --text-color: #212121;
    --text-light: #757575;
    --white: #ffffff;
    --success-color: #00c853;
    --warning-color: #ffab00;
    --danger-color: #ff1744;
    --bg-color: #ffffff;
    --header-height: 80px;
    --footer-bg: #121212;
    --footer-text: #ffffff;
    --card-bg-1: #e1f5fe;
    --card-bg-2: #e8f5e9;
    --card-bg-3: #fff8e1;
    --card-bg-4: #f3e5f5;
    --carousel-height: 400px;
    --carousel-transition: transform 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50 10 L90 50 L50 90 L10 50 Z" fill="none" stroke="%236200ea10" stroke-width="1"/></svg>'), 
                  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><circle cx="100" cy="100" r="50" fill="none" stroke="%2303dac610" stroke-width="1"/></svg>');
    background-size: 100px 100px, 200px 200px;
    background-position: 0 0, 50px 50px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(98, 0, 234, 0.03) 0%, rgba(3, 218, 198, 0.03) 25%, rgba(255, 64, 129, 0.03) 50%, rgba(3, 218, 198, 0.03) 75%, rgba(98, 0, 234, 0.03) 100%);
    background-size: 400% 400%;
    z-index: -1;
    animation: gradientBackground 15s ease infinite;
}

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



a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo-img {
    width: 120px;
    height: auto;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav ul {
    display: flex;
    gap: 30px;
}

/* Product Carousel Styles */
.product-carousel-section {
    padding: 80px 0;
    background: var(--gradient-carousel);
    position: relative;
    overflow: hidden;
}

.product-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><text x="0" y="20" font-family="Arial" font-size="20" fill="%236200ea10">Advanced Energy Storage</text><text x="50" y="60" font-family="Arial" font-size="15" fill="%2303dac610">Smart Grid Solutions</text><text x="100" y="100" font-family="Arial" font-size="18" fill="%23ff408110">Renewable Integration</text><text x="0" y="140" font-family="Arial" font-size="16" fill="%236200ea10">Peak Shaving</text><text x="80" y="180" font-family="Arial" font-size="14" fill="%2303dac610">Microgrid Systems</text><text x="30" y="220" font-family="Arial" font-size="17" fill="%23ff408110">Energy Management</text><text x="120" y="260" font-family="Arial" font-size="19" fill="%236200ea10">Power Quality</text></svg>');
    background-size: 300px 300px;
    opacity: 0.5;
    z-index: 0;
    animation: floatingText 60s linear infinite;
}

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

.product-carousel {
    position: relative;
    margin-top: 40px;
}

.carousel-container {
    width: 100%;
    height: var(--carousel-height);
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: var(--carousel-transition);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-card {
    display: flex;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
    max-width: 900px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--gradient-primary);
}

.product-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

.product-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-info p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
}

.product-specs span {
    background-color: var(--light-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.product-specs i {
    color: var(--accent-color);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.carousel-prev,
.carousel-next {
    background-color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--primary-color);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gradient-primary);
    transform: scale(1.2);
}

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

.nav a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
    padding: 8px 0;
}

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

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

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, rgba(76, 209, 55, 0.1) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.mission {
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--dark-color);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(98, 0, 234, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.5);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(3, 218, 198, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(3, 218, 198, 0.5);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
}

.btn-accent:hover {
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 168, 255, 0.4);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(125deg, rgba(98, 0, 234, 0.05) 0%, rgba(3, 218, 198, 0.05) 25%, rgba(255, 64, 129, 0.05) 50%, rgba(3, 218, 198, 0.05) 75%, rgba(98, 0, 234, 0.05) 100%);
    background-size: 400% 400%;
    animation: gradientHero 15s ease infinite;
    overflow: hidden;
}

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

.solar-animation {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: pulse 5s infinite alternate;
}

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

/* Product Sections */
.product-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.alt-bg {
    background-color: #f0f8ff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.reverse {
    margin-top: 60px;
    margin-bottom: 0;
}

.feature-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:nth-child(1) {
    background-color: var(--card-bg-1);
}

.feature-card:nth-child(2) {
    background-color: var(--card-bg-2);
}

.feature-card:nth-child(3) {
    background-color: var(--card-bg-3);
}

.feature-card:nth-child(4) {
    background-color: var(--card-bg-4);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

.product-image {
    text-align: center;
    margin: 40px 0;
}

.animated-image {
    max-width: 80%;
    animation: float 4s ease-in-out infinite;
}

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

/* Global Service Section */
.global-service {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    color: #666;
}

.world-map {
    position: relative;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
}

.world-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200" viewBox="0 0 400 200"><text x="10" y="20" font-family="Arial" font-size="12" fill="%236200ea10">Global Service Network</text><text x="150" y="40" font-family="Arial" font-size="10" fill="%2303dac610">24/7 Technical Support</text><text x="50" y="60" font-family="Arial" font-size="11" fill="%23ff408110">Rapid Response Teams</text><text x="200" y="80" font-family="Arial" font-size="12" fill="%236200ea10">Local Expertise</text><text x="30" y="100" font-family="Arial" font-size="10" fill="%2303dac610">Certified Engineers</text><text x="180" y="120" font-family="Arial" font-size="11" fill="%23ff408110">Spare Parts Availability</text><text x="70" y="140" font-family="Arial" font-size="12" fill="%236200ea10">Remote Diagnostics</text><text x="220" y="160" font-family="Arial" font-size="10" fill="%2303dac610">Preventive Maintenance</text><text x="40" y="180" font-family="Arial" font-size="11" fill="%23ff408110">Performance Optimization</text></svg>');
    background-size: 400px 200px;
    opacity: 0.3;
    z-index: 0;
    animation: floatingServiceText 40s linear infinite alternate;
}

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

.map-image {
    max-width: 90%;
    opacity: 0.8;
}

.location-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.highlight {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0;
}

.btn-cta {
    background: var(--gradient-accent);
    color: var(--white);
    font-weight: 600;
    padding: 15px 40px;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f0f8ff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.contact-card .icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(98, 0, 234, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.5);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: #aaa;
}

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

.link-group h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.link-group h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group a {
    color: #aaa;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Animations */
.animate-text {
    animation: colorChange 8s infinite alternate;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-image {
        margin: 20px 0;
    }
    
    .animated-image {
        max-width: 100%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav a {
    font-size: 1.4rem;
    font-weight: 500;
    padding: 10px 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Location dots for world map */
.location-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.location-dot.europe { background-color: #00a8ff; }
.location-dot.america { background-color: #4cd137; }
.location-dot.africa { background-color: #ff6b6b; }
.location-dot.asia { background-color: #ffa502; }
.location-dot.oceania { background-color: #9c88ff; }

.pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    70% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}