/* 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: 12rem 0 var(--section-spacing);
    position: relative;
    opacity: 1;
    transform: translateY(0);
    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;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    width: 100%;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

p {
    margin-bottom: 1.5rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.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 0;
    background-color: rgba(2, 12, 27, 0.95);
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.nav-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 12rem 0 6rem;
    min-height: 80vh;
}

.hero-content {
    flex: 1.2;
}

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: 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-premium {
    min-height: auto;
    padding: 12rem 0 var(--section-spacing);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(15, 23, 42, 0.98));
    position: relative;
    overflow: hidden;
}

.about-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 242, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.premium-title {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.title-accent {
    background: linear-gradient(45deg, #00f2ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.premium-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.premium-card:hover::before {
    left: 100%;
}

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

.premium-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00f2ff, #ff0080);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.premium-subtitle {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00f2ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.premium-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00f2ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.premium-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(255, 0, 128, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-member:hover::before {
    opacity: 1;
}

.premium-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 242, 255, 0.3);
}

.member-avatar-premium {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.member-image-premium {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #00f2ff, #ff0080) border-box;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.premium-member:hover .member-image-premium {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-avatar-premium:hover .member-overlay {
    opacity: 1;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00f2ff, #ff0080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.4);
}

.member-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #00f2ff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.member-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-skills {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.skill-badge {
    background: linear-gradient(45deg, rgba(0, 242, 255, 0.2), rgba(255, 0, 128, 0.2));
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.skill-badge:hover {
    background: linear-gradient(45deg, #00f2ff, #ff0080);
    color: #000;
    transform: scale(1.05);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 3rem 0;
    width: 100%;
}

.category-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
    padding: 0.5rem;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    color: var(--text-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-btn i {
    font-size: 1rem;
    color: var(--secondary-color);
}

.category-btn:hover,
.category-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
}

.category-btn.active i {
    color: var(--primary-color);
}

.more-projects {
    text-align: center;
    margin-top: 2rem;
}

.more-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00ff88, #00b4d8);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    border: 2px solid transparent;
}

.more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
    background: linear-gradient(45deg, #00b4d8, #00ff88);
    color: #000;
}

.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,
.project-content {
    padding: 1.5rem;
    background: rgba(10, 25, 47, 0.9);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3,
.project-title {
    color: var(--secondary-color) !important;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.project-info p,
.project-description {
    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);
}

/* Premium Projects Section */
.projects-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 247, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 46, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.category-btn:hover::before,
.category-btn.active::before {
    left: 100%;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(0, 247, 255, 0.1);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 247, 255, 0.2);
}

.category-btn i {
    font-size: 1rem;
}

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

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.project-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.1) 0%, rgba(255, 46, 99, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--neon-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--neon-blue);
}

.project-description {
    color: rgba(204, 214, 246, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--accent-color));
    color: var(--primary-color) !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    z-index: 10;
    pointer-events: auto;
}

.project-link.live-site-link {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue) !important;
}

.project-link.live-site-link:hover {
    background: rgba(0, 247, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
}

.project-link:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--neon-blue));
    border-color: var(--neon-blue);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}

.project-link:active {
    background: linear-gradient(135deg, var(--neon-blue), var(--accent-color));
    transform: none;
}

.project-link span {
    position: static;
    z-index: auto;
}

.project-link i {
    position: static;
    z-index: auto;
    transition: none;
}

.project-link:hover i {
    transform: none;
}

/* Hidden class for category filtering */
.project-card.hidden {
    display: none !important;
}

/* 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);
}

/* Premium Contact Section */
.contact-premium {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(2, 12, 27, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 46, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-premium .section-title {
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.contact-premium .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--secondary-color));
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Mobile responsiveness for contact grid */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info-card p {
    word-break: break-all;
    overflow-wrap: break-word;
    width: 100%;
    margin: 0.5rem 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.4;
}

.premium-card {
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* About Page Specific Sections */
.story-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.story-title,
.mission-title,
.vision-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.2);
    border-color: var(--secondary-color);
}

.contact-info-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover i {
    transform: scale(1.1);
    color: var(--neon-blue);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-info-card p {
    color: rgba(204, 214, 246, 0.8);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--neon-blue);
}

/* Mobile responsiveness for contact cards */
@media (max-width: 1024px) {
    .contact-info-card {
        padding: 1.5rem;
    }

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

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

@media (max-width: 768px) {
    .contact-info-card {
        padding: 1.2rem;
    }

    .contact-info-card i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .contact-info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .contact-info-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.map-section {
    margin-top: 3rem;
    text-align: center;
}

.map-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 20px 50px rgba(100, 255, 218, 0.3);
    border-color: var(--secondary-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Premium Social Icons */
.premium-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-social::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.premium-social:hover::before {
    width: 100px;
    height: 100px;
}

.premium-social:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.4);
    border-color: var(--secondary-color);
    color: var(--neon-blue);
}

/* Premium Services Section */
.services-premium {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(2, 12, 27, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    overflow: hidden;
}

.services-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 46, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-premium .premium-title {
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.services-premium .premium-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--secondary-color));
    border-radius: 2px;
}

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

.premium-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.premium-card:hover::before {
    left: 100%;
}

.premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(100, 255, 218, 0.3);
    border-color: var(--secondary-color);
}

.premium-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.premium-card:hover .premium-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.premium-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.premium-card p {
    color: rgba(204, 214, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.feature-tag {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1), rgba(255, 46, 99, 0.1));
    border: 1px solid rgba(100, 255, 218, 0.3);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--neon-blue));
    color: var(--primary-color);
    transform: translateY(-2px);
}

.premium-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--neon-blue));
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.premium-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.premium-link:hover::before {
    left: 100%;
}

.premium-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.4);
}

/* Premium CTA Section */
.premium-cta {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.premium-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.premium-cta p {
    font-size: 1.1rem;
    color: rgba(204, 214, 246, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.premium-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary-color));
    color: var(--primary-color);
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.3);
}

.premium-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.premium-cta-button:hover::before {
    left: 100%;
}

.premium-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.5);
}

/* Projects CTA Section */
.cta-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.05) 0%, rgba(255, 46, 99, 0.05) 100%);
    pointer-events: none;
}

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

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(204, 214, 246, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile responsiveness for services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .premium-card {
        padding: 2rem;
    }

    .premium-icon {
        font-size: 3.5rem;
    }

    .premium-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .premium-card {
        padding: 1.8rem;
    }

    .premium-icon {
        font-size: 3rem;
    }

    .premium-card h3 {
        font-size: 1.5rem;
    }

    .premium-card p {
        font-size: 0.95rem;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .premium-cta {
        padding: 2rem;
    }

    .premium-cta h3 {
        font-size: 1.8rem;
    }

    .premium-cta p {
        font-size: 1rem;
    }
}

/* Premium About Section */
.about-premium {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(2, 12, 27, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    overflow: hidden;
}

.about-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 46, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-premium .premium-title {
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.about-premium .premium-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--secondary-color));
    border-radius: 2px;
}

.about-premium .about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.premium-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

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

.premium-card:hover::before {
    left: 100%;
}

.premium-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    position: relative;
}

.premium-card p {
    color: rgba(204, 214, 246, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.premium-subtitle {
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.premium-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--neon-blue));
    border-radius: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.premium-team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.premium-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.6s ease;
}

.premium-team-card:hover::before {
    left: 100%;
}

.premium-team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(100, 255, 218, 0.3);
    border-color: var(--secondary-color);
}

.premium-image {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.premium-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    transition: all 0.4s ease;
}

.premium-team-card:hover .premium-image img {
    transform: scale(1.1);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1), rgba(255, 46, 99, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-team-card:hover .image-overlay {
    opacity: 1;
}

.premium-team-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: rgba(204, 214, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 50%;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.social-link:hover::before {
    width: 80px;
    height: 80px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
    border-color: var(--secondary-color);
    color: var(--neon-blue);
}

/* Values Section */
.values-section {
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.premium-value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.premium-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.6s ease;
}

.premium-value-card:hover::before {
    left: 100%;
}

.premium-value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(100, 255, 218, 0.3);
    border-color: var(--secondary-color);
}

.value-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.premium-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.premium-value-card:hover .premium-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.premium-value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.premium-value-card p {
    color: rgba(204, 214, 246, 0.8);
    line-height: 1.6;
}

/* Mobile responsiveness for about page */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .premium-card {
        padding: 2rem;
    }

    .premium-team-card {
        padding: 2rem;
    }

    .premium-value-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .about-premium .premium-title {
        font-size: 2.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .premium-card {
        padding: 1.8rem;
    }

    .premium-card h3 {
        font-size: 1.5rem;
    }

    .premium-card p {
        font-size: 1rem;
    }

    .premium-team-card {
        padding: 1.8rem;
    }

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

    .premium-value-card {
        padding: 1.8rem;
    }

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

    .premium-icon {
        font-size: 3rem;
    }

    .premium-image img {
        width: 120px;
        height: 120px;
    }
}

/* 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);
}

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: 10rem 0 var(--section-spacing);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 8rem 0;
    }

    .about-premium {
        padding: 8rem 0;
    }

    .about-content {
        gap: 2rem;
    }

    .premium-card {
        padding: 2rem;
    }

    .premium-member {
        padding: 1.5rem;
    }

    .member-image-premium {
        width: 100px;
        height: 100px;
    }

    .premium-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .member-skills {
        gap: 0.3rem;
    }

    .skill-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .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: 8rem 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);
}

/* Chat Window Styles */
.chat-window {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: rgba(15, 23, 42, 0.95);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.chat-window.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.chat-header {
    background: rgba(100, 255, 218, 0.1);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-chat {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.close-chat:hover {
    color: var(--accent-color);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(100, 255, 218, 0.2);
    border-radius: 3px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.message.user {
    align-self: flex-end;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-bottom-right-radius: 5px;
}

.message.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border-bottom-left-radius: 5px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.chat-input-container {
    padding: 15px;
    background: rgba(2, 12, 27, 0.5);
    border-top: 1px solid rgba(100, 255, 218, 0.2);
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    padding: 8px 15px;
    color: var(--text-color);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: var(--secondary-color);
}

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

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--secondary-color);
}

.typing-indicator {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 15px;
    display: none;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    float: left;
    margin: 0 1px;
    background-color: var(--secondary-color);
    display: block;
    border-radius: 50%;
    opacity: 0.4;
}

.typing-indicator span:nth-of-type(1) {
    animation: 1s blink-dots infinite 0.3333s;
}

.typing-indicator span:nth-of-type(2) {
    animation: 1s blink-dots infinite 0.6666s;
}

.typing-indicator span:nth-of-type(3) {
    animation: 1s blink-dots infinite 0.9999s;
}

@keyframes blink-dots {
    50% {
        opacity: 1;
    }
}

.robot-container::after {
    content: 'Ask AI';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

@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;
    }
}

/* Simple Contact Section */
.contact-simple {
    min-height: auto;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(15, 23, 42, 0.98));
    position: relative;
    overflow: hidden;
}

.contact-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-simple-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-simple .section-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00f2ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #00f2ff, #ff0080);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 242, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-cta-button:hover::before {
    left: 100%;
}

.contact-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 242, 255, 0.4);
}

/* Premium Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

/* Enhanced Global Premium Styles */
body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

.section {
    position: relative;
    z-index: 2;
}

/* Premium Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 100;
}

.navbar:hover {
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
}

.nav-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo a {
    color: var(--neon-blue);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--neon-blue);
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 99;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }
}

/* Premium Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 4rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 242, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Premium Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(255, 0, 128, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 242, 255, 0.3);
}

/* Premium Project Cards */
.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

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

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 242, 255, 0.3);
}

.project-info {
    position: relative;
    z-index: 2;
}

/* Premium Buttons */
.cta-button,
.more-button {
    background: linear-gradient(45deg, #00f2ff, #ff0080);
    border: none;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.cta-button::before,
.more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before,
.more-button:hover::before {
    left: 100%;
}

.cta-button:hover,
.more-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.4);
}

/* Premium Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f2ff, transparent);
}

.footer-content {
    text-align: center;
    padding: 2rem 0;
}

.contact-line {
    margin-bottom: 1.5rem;
}

.contact-line p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

.contact-link {
    color: #00f2ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link:hover {
    color: #ff0080;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00f2ff, #ff0080);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    font-size: 0.9rem;
}

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

.social-icons a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-icons a:hover {
    color: #00f2ff;
    transform: translateY(-3px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.2);
}

/* Premium Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(0, 247, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 46, 99, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    color: var(--neon-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: rgba(204, 214, 246, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--accent-color));
    border-radius: 1px;
}

.footer-column a {
    display: block;
    color: rgba(204, 214, 246, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column a:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
}

.footer-column p {
    color: rgba(204, 214, 246, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column i {
    color: var(--neon-blue);
    width: 16px;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(204, 214, 246, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer .social-icons {
    display: flex;
    gap: 1rem;
}

.footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(204, 214, 246, 0.8);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .social-icons a:hover {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 247, 255, 0.2);
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        order: -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer .social-icons {
        justify-content: center;
    }
}

/* Enhanced Loading Animations */
.splash-screen {
    background: linear-gradient(135deg, #000000, #1a1a2e, #16213e);
    animation: premiumFade 1s ease-out forwards;
}

@keyframes premiumFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.loading-screen {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #00f2ff;
    border-radius: 50%;
    animation: premiumSpin 1s linear infinite;
}

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

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

/* About Page Specific Styles */
.about-text.premium-card {
    padding: 3.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.story-section {
    margin-bottom: 3rem;
    text-align: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.mission-section,
.vision-section {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.mission-section:hover,
.vision-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.story-title,
.mission-title,
.vision-title {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.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);
    position: relative;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* 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-simple {
        padding: 2rem 0;
    }

    .contact-simple-content {
        padding: 0 1rem;
    }

    .contact-simple .section-title {
        font-size: 1.5rem;
    }

    .contact-message {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hero {
        padding: 3rem 1.5rem;
        margin: 1rem 0;
        border-radius: 20px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .project-card {
        margin-bottom: 1rem;
    }

    .contact-line p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-link {
        display: inline-block;
        margin-top: 0.5rem;
    }
}

/* 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;
}

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

/* Project Detail Page Styles */
.project-detail-section {
    padding: calc(var(--section-spacing) + 6rem) 20px var(--section-spacing);
    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);
}

/* Innovations Section Styles */
.innovations-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #00ff88;
    transition: transform 0.3s ease;
}

.innovation-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.07);
}

.innovation-card h3 {
    font-size: 1.25rem;
    color: #00ff88;
    margin-bottom: 10px;
    text-shadow: none;
}

.innovation-card p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #ccc;
}

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

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: #00ff88;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-caption {
    padding: 15px;
    text-align: center;
    color: #00ff88;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.3);
}

/* Live Project Link Styles */
.live-project-link {
    margin: 20px 0 30px;
}

.live-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #00ff88;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.live-button:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
    background: #00e67a;
}

.live-button i {
    font-size: 1.2rem;
}

/* 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;
    }
}

/* Mobile Projects Section */
@media (max-width: 768px) {
    .projects-section {
        padding: var(--section-spacing) 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .category-filter {
        gap: 0.75rem;
    }

    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .category-btn i {
        font-size: 0.9rem;
    }

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

    .project-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.2rem;
    }

    .project-description {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-filter {
        flex-direction: column;
        align-items: center;
    }

    .category-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .project-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* 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;
    }
}