/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-red: #ff003c;
    --neon-red-glow: rgba(255, 0, 60, 0.7);
    --neon-red-light: rgba(255, 0, 60, 0.3);
    --dark-bg: #000000;
    --dark-gray: #0a0a0a;
    --medium-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --text-white: #ffffff;
    --text-light: #f0f0f0;
    --text-gray: #aaaaaa;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: var(--neon-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-red);
    animation: floatParticle 15s infinite linear;
}

.particle:nth-child(2) { animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { animation-delay: 4s; animation-duration: 12s; }
.particle:nth-child(4) { animation-delay: 6s; animation-duration: 20s; }
.particle:nth-child(5) { animation-delay: 8s; animation-duration: 16s; }
.particle:nth-child(6) { animation-delay: 10s; animation-duration: 14s; }

.floating-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 60, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 60, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--neon-red), transparent);
    box-shadow: 0 0 10px var(--neon-red);
    animation: scan 3s linear infinite;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.accent-red {
    color: var(--neon-red);
}

.glow-red {
    text-shadow: 0 0 10px var(--neon-red-glow), 0 0 20px var(--neon-red-glow);
}

/* Neon Header */
.neon-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 60, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-line {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
    animation: pulse 2s infinite;
}

/* Navigation */
.neon-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--neon-red);
}

.nav-link.active {
    color: var(--neon-red);
}

.nav-link.active::before {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--neon-red);
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 60, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 3rem;
    color: var(--text-gray);
}

.cta-container {
    position: relative;
    display: inline-block;
}

.neon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--neon-red);
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.3);
    z-index: 1;
}

.neon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 60, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.neon-btn:hover::before {
    left: 100%;
}

.neon-btn:hover {
    box-shadow: 0 0 25px var(--neon-red-glow);
    transform: translateY(-3px);
}

.view-all-btn {
    margin-top: 2rem;
    display: inline-block;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 150%;
    border: 1px solid var(--neon-red);
    border-radius: 4px;
    animation: pulse-ring 2s infinite;
    z-index: 0;
}

/* 3D Cube in Hero */
.hero-visual {
    position: relative;
    height: 400px;
    perspective: 1000px;
}

.cube-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(20deg) rotateY(20deg);
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: cube-rotate 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--neon-red);
    box-shadow: 0 0 20px var(--neon-red-glow) inset;
}

.cube-face.front {
    transform: translateZ(100px);
    background-color: rgba(255, 0, 60, 0.1);
}

.cube-face.back {
    transform: translateZ(-100px) rotateY(180deg);
    background-color: rgba(255, 0, 60, 0.1);
}

.cube-face.right {
    transform: translateX(100px) rotateY(90deg);
    background-color: rgba(255, 0, 60, 0.1);
}

.cube-face.left {
    transform: translateX(-100px) rotateY(-90deg);
    background-color: rgba(255, 0, 60, 0.1);
}

.cube-face.top {
    transform: translateY(-100px) rotateX(90deg);
    background-color: rgba(255, 0, 60, 0.1);
}

.cube-face.bottom {
    transform: translateY(100px) rotateX(-90deg);
    background-color: rgba(255, 0, 60, 0.1);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border: 1px solid var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red-glow);
}

.float-element.el1 {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 20%;
    animation: float 8s infinite ease-in-out;
}

.float-element.el2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 30%;
    animation: float 10s infinite ease-in-out reverse;
}

.float-element.el3 {
    width: 30px;
    height: 30px;
    bottom: 30%;
    left: 40%;
    animation: float 12s infinite ease-in-out;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--neon-red);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: var(--neon-red);
    margin-top: 10px;
    animation: scroll-line 2s infinite;
}

/* Section Common Styles */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.title-underline {
    width: 100px;
    height: 3px;
    background-color: var(--neon-red);
    margin: 0.5rem auto;
    box-shadow: 0 0 10px var(--neon-red);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Journey Section */
.journey-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.journey-text {
    padding-right: 2rem;
}

.image-frame {
    position: relative;
    border: 2px solid var(--neon-red);
    padding: 10px;
    box-shadow: 0 0 30px var(--neon-red-glow);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.5s;
}

.image-frame:hover img {
    filter: grayscale(0%);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    box-shadow: 0 0 40px var(--neon-red-glow) inset;
    pointer-events: none;
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--dark-gray);
}

.portfolio-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}

.project-card {
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.project-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 2px solid var(--neon-red);
    overflow: hidden;
}

.card-front {
    background-color: var(--medium-gray);
}

.card-back {
    background-color: var(--dark-gray);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--neon-red);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.card-back i {
    font-size: 3rem;
    margin-top: 1rem;
}

.card-image {
    height: 70%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.9) 100%);
}

.card-content {
    padding: 1.5rem;
    height: 30%;
}

.card-title {
    color: var(--neon-red);
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

/* Ventures Section */
.ventures-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.venture-card {
    padding: 2rem;
    border: 1px solid rgba(255, 0, 60, 0.3);
    background-color: rgba(26, 26, 26, 0.5);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.venture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 60, 0.1), transparent);
    transition: left 0.7s;
}

.venture-card:hover::before {
    left: 100%;
}

.venture-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.2);
    transform: translateY(-10px);
}

.venture-icon {
    font-size: 2.5rem;
    color: var(--neon-red);
    margin-bottom: 1rem;
}

.venture-role {
    color: var(--neon-red);
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 1rem;
}

.venture-desc {
    color: var(--text-gray);
    margin: 0;
}

/* Academics Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    padding-left: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--neon-red);
    box-shadow: 0 0 15px var(--neon-red);
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

.timeline-date {
    font-family: var(--font-heading);
    color: var(--neon-red);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-place {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* Skills Section */
.skills-section {
    background-color: var(--dark-gray);
}

.skills-container {
    max-width: 800px;
    margin: 0 auto;
}

.skill-item {
    margin-bottom: 2.5rem;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-family: var(--font-heading);
    font-weight: 500;
}

.skill-percent {
    color: var(--neon-red);
    font-family: var(--font-heading);
    font-weight: 700;
}

.skill-bar {
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red-glow);
    width: 0;
    border-radius: 5px;
    transition: width 1.5s ease-in-out;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--dark-gray);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 60, 0.3);
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: var(--neon-red);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--neon-red);
    margin: 0;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-bg);
}

.multi-cta-container {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cta-box {
    padding: 2rem;
    border: 2px solid var(--neon-red);
    background-color: rgba(26, 26, 26, 0.7);
    text-align: center;
    transition: all 0.3s;
}

.cta-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.3);
}

.cta-icon {
    font-size: 3rem;
    color: var(--neon-red);
    margin-bottom: 1rem;
}

.cta-box h3 {
    margin-bottom: 1rem;
    color: var(--neon-red);
}

.cta-box p {
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.cta-btn {
    width: 100%;
    justify-content: center;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-gray);
}

.contact-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.contact-visual-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid rgba(255, 0, 60, 0.3);
    background-color: rgba(26, 26, 26, 0.5);
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s;
}

.contact-visual-item:hover {
    border-color: var(--neon-red);
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.2);
}

.contact-icon {
    font-size: 2rem;
    color: var(--neon-red);
    margin-right: 1.5rem;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--neon-red);
}

.contact-details p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-action {
    margin-left: auto;
    color: var(--neon-red);
}

/* Quote Section */
.quote-section {
    background-color: var(--dark-gray);
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 4rem;
    border: 2px solid var(--neon-red);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.2);
}

.quote-icon {
    font-size: 3rem;
    color: var(--neon-red);
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-line {
    width: 50px;
    height: 2px;
    background-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
}

.quote-author p {
    margin: 0;
    color: var(--neon-red);
    font-family: var(--font-heading);
    font-weight: 700;
}

.quote-neon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    box-shadow: 0 0 40px var(--neon-red-glow) inset;
    pointer-events: none;
    animation: neonPulse 3s infinite;
}

/* Map Section */
.map-section {
    background-color: var(--dark-bg);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    height: 400px;
    border: 2px solid var(--neon-red);
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--neon-red);
}

.map-overlay h3 {
    color: var(--neon-red);
    margin-bottom: 0.5rem;
}

.map-overlay p {
    margin: 0;
    color: var(--text-gray);
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-grid {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    background-color: rgba(255, 0, 60, 0.1);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    top: 50%;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    left: 50%;
}

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--neon-red);
    text-shadow: 0 0 20px var(--neon-red);
    animation: pinPulse 2s infinite;
}

.map-coordinates {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--neon-red);
}

/* Footer */
.neon-footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 0, 60, 0.2);
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.neon-pulse {
    width: 100px;
    height: 10px;
    background-color: var(--neon-red);
    box-shadow: 0 0 20px var(--neon-red);
    animation: pulse 2s infinite;
}

.neon-rings {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
}

.ring {
    position: absolute;
    border: 1px solid var(--neon-red);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation: ringPulse 3s infinite;
}

.ring-2 {
    width: 150px;
    height: 150px;
    animation: ringPulse 4s infinite;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation: ringPulse 5s infinite;
    animation-delay: 1s;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.7);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.9);
}

.float-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.3);
    animation: floatPulse 2s infinite;
}

/* Animations */
@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@keyframes scan {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes floatPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes cube-rotate {
    0% { transform: translate(-50%, -50%) rotateX(0) rotateY(0); }
    100% { transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes scroll-line {
    0% { height: 60px; opacity: 1; }
    100% { height: 0; opacity: 0; }
}

@keyframes neonPulse {
    0%, 100% { box-shadow: 0 0 40px var(--neon-red-glow) inset; }
    50% { box-shadow: 0 0 60px var(--neon-red-glow) inset; }
}

@keyframes pinPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes ringPulse {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: var(--ring-size);
        height: var(--ring-size);
        opacity: 0;
    }
}

.ring-1 {
    --ring-size: 100px;
}

.ring-2 {
    --ring-size: 150px;
}

.ring-3 {
    --ring-size: 200px;
}

/* Scroll Reveal Class */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}