/* Global Styles */
:root {
    --primary-color: #0a192f;
    --secondary-color: #64ffda;
    --accent-color: #ff2e63;
    --text-color: #ccd6f6;
    --dark-bg: #020c1b;
    --neon-pink: #ff2e63;
    --neon-blue: #00f7ff;
    --neon-purple: #9d4edd;
    --section-spacing: 5rem;
    --content-max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Spacing */
.section {
    min-height: 100vh;
    padding: var(--section-spacing) 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

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

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeOut 1s ease-in-out 2s forwards;
}

.splash-content {
    text-align: center;
}

.splash-title {
    font-size: 3rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue),
                 0 0 20px var(--neon-blue),
                 0 0 30px var(--neon-blue);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.splash-loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--neon-pink);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.loading-screen.active {
    opacity: 1;
    pointer-events: all;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--neon-purple);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 1rem;
    color: var(--neon-purple);
    text-shadow: 0 0 5px var(--neon-purple);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(2, 12, 27, 0.9);
    z-index: 100;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.burger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    min-height: 80vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

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

.neon-text {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue),
                 0 0 20px var(--neon-blue),
                 0 0 30px var(--neon-blue);
    animation: glow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 1.2rem;
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: var(--neon-blue);
    color: var(--primary-color);
    box-shadow: 0 0 20px var(--neon-blue);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.5);
}

.service-icon {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.service-card h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.service-card p {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-features span {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-features span {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-3px);
}

.service-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.service-link:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    margin: 1rem;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.member-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
    background: rgba(10, 25, 47, 0.9);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    color: var(--neon-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.project-info p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tech-tag {
    background: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.project-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--neon-blue);
    color: var(--primary-color);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: #00cc6a;
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    color: var(--text-color);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.submit-button {
    padding: 1rem;
    background-color: var(--neon-blue);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: transparent;
    color: var(--neon-blue);
    box-shadow: 0 0 20px var(--neon-blue);
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 123, 255, 0.2);
    padding: 2rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--neon-blue);
}

/* Animations */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--neon-blue),
                     0 0 20px var(--neon-blue),
                     0 0 30px var(--neon-blue);
    }
    to {
        text-shadow: 0 0 20px var(--neon-blue),
                     0 0 30px var(--neon-blue),
                     0 0 40px var(--neon-blue);
    }
}

/* Animation Delays */
[data-delay="0.2s"] {
    animation-delay: 0.2s;
}

[data-delay="0.4s"] {
    animation-delay: 0.4s;
}

[data-delay="0.6s"] {
    animation-delay: 0.6s;
}

[data-delay="0.8s"] {
    animation-delay: 0.8s;
}

[data-delay="1s"] {
    animation-delay: 1s;
}

[data-delay="1.2s"] {
    animation-delay: 1.2s;
}

[data-delay="1.4s"] {
    animation-delay: 1.4s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: block;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 5px;
        transition: all 0.3s ease;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .member-image {
        width: 150px;
        height: 150px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .project-image {
        height: 200px;
    }

    .project-info {
        padding: 1rem;
    }

    .project-info h3 {
        font-size: 1.1rem;
    }
    
    .project-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .card {
        padding: 1rem;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Apply animations to images */
.animated-image {
    animation: float 6s ease-in-out infinite;
}

.animated-pulse {
    animation: pulse 3s ease-in-out infinite;
}

.animated-rotate {
    animation: rotate 10s linear infinite;
}

/* Enhanced image styles */
.member-image, .project-image, .hero-image img {
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.member-image:hover, .project-image:hover, .hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* Service icons animation */
.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    color: #00ff88;
}

/* Project card hover effect */
.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

/* Team member hover effect */
.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

/* Robot Animation Styles */
.robot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.robot {
    width: 120px;
    height: 180px;
    position: relative;
}

.robot-body {
    width: 90px;
    height: 120px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 0 10px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.robot-head {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 0 10px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.robot-eye {
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 30% 30%, #00ff88, #00cc6a);
    border-radius: 50%;
    position: absolute;
    top: 25px;
    box-shadow: 
        0 0 10px #00ff88,
        inset 0 0 5px #00ff88;
    animation: blink 4s infinite;
}

.robot-eye.left {
    left: 15px;
}

.robot-eye.right {
    right: 15px;
}

.robot-arm {
    width: 25px;
    height: 70px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 12px;
    position: absolute;
    top: 25px;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 0 10px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.robot-arm.left {
    left: -30px;
    transform-origin: top center;
    animation: wave 2s infinite;
}

.robot-arm.right {
    right: -30px;
}

.robot-leg {
    width: 25px;
    height: 50px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 12px;
    position: absolute;
    bottom: -50px;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 0 10px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.robot-leg.left {
    left: 15px;
}

.robot-leg.right {
    right: 15px;
}

.robot-message {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(45, 45, 45, 0.95);
    padding: 15px;
    border-radius: 15px;
    color: #00ff88;
    font-size: 14px;
    max-width: 250px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 0 10px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.robot-container:hover .robot-message {
    opacity: 1;
    transform: translateY(0);
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(30deg);
    }
    75% {
        transform: rotate(-30deg);
    }
}

@keyframes blink {
    0%, 96%, 100% {
        transform: scaleY(1);
        box-shadow: 
            0 0 10px #00ff88,
            inset 0 0 5px #00ff88;
    }
    98% {
        transform: scaleY(0.1);
        box-shadow: 
            0 0 5px #00ff88,
            inset 0 0 2px #00ff88;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .robot-container {
        bottom: 10px;
        right: 10px;
    }
    
    .robot {
        width: 100px;
        height: 150px;
    }
    
    .robot-body {
        width: 75px;
        height: 100px;
    }
    
    .robot-head {
        width: 60px;
        height: 60px;
        top: -30px;
    }
    
    .robot-arm, .robot-leg {
        width: 20px;
    }
    
    .robot-arm {
        height: 60px;
    }
    
    .robot-leg {
        height: 40px;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 123, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-info-card:hover::before {
    transform: translateX(100%);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 179, 0.3);
    border-color: rgba(0, 255, 170, 0.5);
}

.contact-icon {
    font-size: 3rem;
    color: #00ff95;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.2) rotate(360deg);
    color: #00ffb3;
    text-shadow: 0 0 20px rgba(0, 255, 191, 0.8);
}

.contact-info-card h3 {
    color: #00ff9d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover h3 {
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.5);
}

.contact-info-card p {
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-links {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 179, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-links h3 {
    color: #00ffd5;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 191, 0.5);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    font-size: 2rem;
    color: #00ffdd;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 200, 0.5);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.2);
    color: #00ff73;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.8);
}

.map-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 179, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-section h3 {
    color: #00ffbf;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 242, 0.5);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 179, 0.2);
}

/* Update section title for contact page */
.section-title.neon-text {
    color: #00ffc8;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5),
                 0 0 20px rgba(0, 123, 255, 0.3),
                 0 0 30px rgba(0, 123, 255, 0.2);
}

/* Update footer for contact page */
footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 123, 255, 0.2);
}

.footer-content {
    color: #fff;
}

.footer-content .social-icons a {
    color: #00ffdd;
    text-shadow: 0 0 10px rgba(0, 255, 221, 0.5);
}

.footer-content .social-icons a:hover {
    color: #00ffbf;
    text-shadow: 0 0 20px rgba(0, 255, 200, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .contact-info-card h3 {
        font-size: 1.3rem;
    }

    .social-icons {
        gap: 1.5rem;
    }

    .social-icon {
        font-size: 1.8rem;
    }

    .map-section {
        padding: 1rem;
    }
}

/* Team Section Styles */
.team-section {
    margin-top: 4rem;
    text-align: center;
}

.section-subtitle {
    color: #00ffd5;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 255, 191, 0.5);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 179, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 179, 0.3);
    border-color: rgba(0, 255, 170, 0.5);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid rgba(0, 255, 179, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 179, 0.3);
    transition: all 0.3s ease;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h4 {
    color: #00ff9d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.team-member:hover h4 {
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.5);
}

.member-role {
    color: #00ffb3;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: #00ffdd;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 200, 0.5);
}

.member-social a:hover {
    transform: translateY(-5px) scale(1.2);
    color: #00ff73;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.8);
}

/* Values Section Styles */
.values-section {
    margin-top: 4rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 179, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 179, 0.3);
    border-color: rgba(0, 255, 170, 0.5);
}

.value-card i {
    font-size: 3rem;
    color: #00ff95;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.value-card:hover i {
    transform: scale(1.2) rotate(360deg);
    color: #00ffb3;
    text-shadow: 0 0 20px rgba(0, 255, 191, 0.8);
}

.value-card h4 {
    color: #00ff9d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-card:hover h4 {
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.5);
}

.value-card p {
    color: #fff;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-grid, .values-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .team-member, .value-card {
        padding: 1.5rem;
    }

    .member-image {
        width: 120px;
        height: 120px;
    }

    .team-member h4 {
        font-size: 1.3rem;
    }

    .member-role {
        font-size: 1rem;
    }

    .member-social a {
        font-size: 1.3rem;
    }

    .value-card i {
        font-size: 2.5rem;
    }

    .value-card h4 {
        font-size: 1.3rem;
    }
}

/* Project Detail Page Styles */
.project-detail-section {
    padding: 80px 20px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
}

.project-detail-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.project-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Video Section Styles */
.project-video {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    background: #000;
}

.project-video video {
    width: 100%;
    display: block;
    border-radius: 15px;
}

/* Project Description Styles */
.project-description {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.project-description h2 {
    font-size: 2rem;
    margin: 30px 0 20px;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.project-description h2:first-child {
    margin-top: 0;
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Features List Styles */
.project-description ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.project-description ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #e0e0e0;
}

.project-description ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00ff88;
}

/* Tech Stack Styles */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.tech-tag {
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    border-radius: 20px;
    color: #00ff88;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

/* Project Gallery Styles */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.project-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.project-gallery img:hover {
    transform: scale(1.05);
}

/* Back Button Styles */
.back-to-projects {
    text-align: center;
    margin-top: 50px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    border-radius: 25px;
    color: #00ff88;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.back-button i {
    margin-right: 10px;
}

.back-button:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateX(-5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .project-title {
        font-size: 2.5rem;
    }

    .project-description {
        padding: 20px;
    }

    .project-description h2 {
        font-size: 1.8rem;
    }

    .project-gallery {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* E-commerce Specific Styles */
.ecommerce-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Neon Text Effect */
.neon-text {
    color: #fff;
    text-shadow: 0 0 5px #fff,
                 0 0 10px #fff,
                 0 0 20px #00ff88,
                 0 0 30px #00ff88,
                 0 0 40px #00ff88;
    animation: neonPulse 1.5s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow: 0 0 5px #fff,
                     0 0 10px #fff,
                     0 0 20px #00ff88,
                     0 0 30px #00ff88,
                     0 0 40px #00ff88;
    }
    to {
        text-shadow: 0 0 2.5px #fff,
                     0 0 5px #fff,
                     0 0 10px #00ff88,
                     0 0 20px #00ff88,
                     0 0 30px #00ff88;
    }
} 