* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Animated Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, transparent 2%, rgba(0, 229, 255, 0.03) 2%, rgba(0, 229, 255, 0.03) 3%, transparent 3%),
        radial-gradient(circle at 75% 75%, transparent 2%, rgba(0, 178, 255, 0.03) 2%, rgba(0, 178, 255, 0.03) 3%, transparent 3%);
    background-size: 80px 80px;
    animation: grid-move 30s linear infinite;
    z-index: -2;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 80px);
    }
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 178, 255, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.shapes-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: float-rotate 20s ease-in-out infinite;
}

.shape-square {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(0, 178, 255, 0.1);
    transform: rotate(45deg);
    bottom: 20%;
    right: 20%;
    animation: float-rotate 22s ease-in-out infinite reverse;
}

@keyframes float-rotate {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translateY(20px) rotate(180deg) scale(0.9);
    }

    75% {
        transform: translateY(-10px) rotate(270deg) scale(1.05);
    }
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(transparent 50%, rgba(0, 229, 255, 0.01) 50%);
    background-size: 100% 4px;
    animation: scanlines 8s linear infinite;
    z-index: 2;
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    cursor: pointer;
}

.logo-svg {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, #00E5FF, #00B2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.5);
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: #00E5FF;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00E5FF, #00B2FF);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #00E5FF;
    transition: all 0.3s ease;
}

/* Sections */
.section {
    min-height: 100vh;
    position: relative;
    display: none;
    padding: 100px 20px 50px;
}

.section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home Section */
.home-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
}

.text-rotator {
    position: relative;
    min-height: 200px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-set {
    position: absolute;
    width: 100%;
    opacity: 0;
    display: none;
}

.text-set.active {
    opacity: 1;
    display: block;
}

.glitch-text {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: charFlyIn 0.5s ease-out forwards;
}

@keyframes charFlyIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.char.out {
    animation: charFlyOut 0.3s ease-in forwards;
}

@keyframes charFlyOut {
    to {
        opacity: 0;
        transform: translateY(-30px) rotateX(90deg);
    }
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #00E5FF;
    z-index: -1;
    text-shadow: -2px 0 #00E5FF;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #00B2FF;
    z-index: -1;
    text-shadow: 2px 0 #00B2FF;
}

@keyframes glitch-1 {

    0%,
    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }

    20% {
        clip-path: inset(33% 0 33% 0);
        transform: translate(-2px);
    }

    40% {
        clip-path: inset(66% 0 0 0);
        transform: translate(2px);
    }

    60% {
        clip-path: inset(0 0 66% 0);
        transform: translate(1px);
    }

    80% {
        clip-path: inset(25% 0 50% 0);
        transform: translate(-1px);
    }
}

@keyframes glitch-2 {

    0%,
    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }

    20% {
        clip-path: inset(50% 0 25% 0);
        transform: translate(2px);
    }

    40% {
        clip-path: inset(0 0 75% 0);
        transform: translate(-2px);
    }

    60% {
        clip-path: inset(75% 0 0 0);
        transform: translate(-1px);
    }

    80% {
        clip-path: inset(40% 0 40% 0);
        transform: translate(1px);
    }
}

.subtitle {
    font-size: 1.5rem;
    margin: 20px 0 40px;
    opacity: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 300;
    color: rgba(0, 178, 255, 0.8);
}

.subtitle.visible {
    animation: subtitleFade 0.8s ease-out 0.5s forwards;
}

@keyframes subtitleFade {
    to {
        opacity: 0.8;
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cta-button {
    padding: 15px 35px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    border-radius: 5px;
}

.cta-primary {
    background: linear-gradient(45deg, #00E5FF, #00B2FF);
    color: white;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

.cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.8);
}

.cta-secondary {
    background: transparent;
    color: #00E5FF;
    border: 2px solid #00E5FF;
}

.cta-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: scale(1.05);
}

/* 3D Coverflow */
.coverflow-container {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    position: relative;
    margin: 50px 0;
}

.coverflow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    height: 400px;
}

.coverflow-item {
    position: absolute;
    width: 300px;
    height: 350px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    user-select: none;
}

.coverflow-item .cover {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.coverflow-item .cover img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.coverflow-item .info {
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
}

.coverflow-item .info h3 {
    font-size: 1.2rem;
    color: #00E5FF;
    margin-bottom: 5px;
}

.coverflow-item .info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 229, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 200;
}

.nav-button:hover {
    background: rgba(0, 229, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    border-color: #00E5FF;
}

.nav-button.prev {
    left: 20px;
}

.nav-button.next {
    right: 20px;
}

.dots-container {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00E5FF;
    transform: scale(1.3);
    box-shadow: 0 0 10px #00E5FF;
}

/* About Section */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 10px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #00E5FF, #00B2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(0, 178, 255, 0.8);
    text-align: center;
}

/* Assets Store Section */
.assets-header {
    max-width: 1400px;
    margin: 0 auto 40px;
}

.search-filter-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.search-box input:focus {
    outline: none;
    border-color: #00E5FF;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #00E5FF;
    pointer-events: none;
}

.filter-group {
    position: relative;
}

.filter-label {
    display: block;
    font-size: 0.85rem;
    color: #00E5FF;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.custom-select {
    position: relative;
    min-width: 200px;
}

.select-selected {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 10px;
    padding: 15px 40px 15px 20px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select-selected:hover {
    border-color: #00E5FF;
    background: rgba(0, 229, 255, 0.1);
}

.select-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: #00E5FF;
}

.select-selected.active .select-arrow {
    transform: rotate(180deg);
}

.select-items {
    position: absolute;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 10px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    margin-top: 5px;
    max-height: 250px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    display: none;
}

.select-items.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.select-items div {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.7);
}

.select-items div:hover {
    background: rgba(0, 229, 255, 0.2);
    color: white;
}

.select-items div.selected {
    background: rgba(0, 229, 255, 0.3);
    color: #00E5FF;
}

/* Tabs */
.tabs-container {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-button {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.tab-button:hover {
    background: rgba(0, 229, 255, 0.1);
    color: white;
    border-color: #00E5FF;
}

.tab-button.active {
    background: linear-gradient(45deg, rgba(0, 229, 255, 0.3), rgba(0, 178, 255, 0.3));
    border-color: #00E5FF;
    color: white;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Assets Grid */
.assets-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.asset-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.asset-card.in-view {
    opacity: 1;
    transform: translateY(0);
    animation: cardReveal 0.6s ease-out forwards;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.asset-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.3);
    border-color: #00E5FF;
}

.asset-card .image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #1a1a1a;
}

.asset-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.asset-card:hover img {
    transform: scale(1.1);
}

.asset-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00E5FF;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #00E5FF;
    text-transform: uppercase;
}

.hover-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.asset-card:hover .hover-buttons {
    opacity: 1;
}

.hover-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #00E5FF;
    color: #00E5FF;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.hover-btn:hover {
    background: #00E5FF;
    color: black;
    box-shadow: 0 0 15px #00E5FF;
}

.asset-content {
    padding: 20px;
}

.asset-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.asset-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.asset-category {
    display: inline-block;
    font-size: 0.8rem;
    color: #00E5FF;
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 4px 10px;
    border-radius: 15px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #111;
    border: 1px solid #00E5FF;
    width: 90%;
    max-width: 1000px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.2);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #00E5FF;
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
}

.modal-image-section {
    flex: 1.5;
    min-width: 300px;
    background: #000;
    position: relative;
    display: flex;
    flex-direction: column;
}

.main-image-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 300px;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-nav-btn:hover {
    background: rgba(0, 229, 255, 0.3);
}

.modal-nav-btn.prev {
    left: 0;
}

.modal-nav-btn.next {
    right: 0;
}

.thumbnail-strip {
    padding: 10px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.05);
}

.thumbnail-strip img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-strip img.active {
    border-color: #00E5FF;
}

.modal-info-section {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.modal-info-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #00E5FF;
    margin-bottom: 15px;
}

.modal-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-badge {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-type {
    background: rgba(0, 229, 255, 0.2);
    color: #00E5FF;
    border: 1px solid #00E5FF;
}

.badge-category {
    background: rgba(0, 178, 255, 0.2);
    color: #00B2FF;
    border: 1px solid #00B2FF;
}

.modal-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.modal-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download {
    background: linear-gradient(45deg, #00E5FF, #00B2FF);
    color: white;
}

.btn-download:hover {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.btn-details {
    background: transparent;
    border: 2px solid #00E5FF;
    color: #00E5FF;
}

.btn-details:hover {
    background: rgba(0, 229, 255, 0.1);
}

/* Contact Section */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 10px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #00E5FF;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 5px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00E5FF;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.submit-btn {
    padding: 15px;
    background: linear-gradient(45deg, #00E5FF, #00B2FF);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #00E5FF;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .glitch-text {
        font-size: 2.5rem;
    }

    .coverflow-container {
        height: 400px;
    }

    .coverflow-item {
        width: 200px;
        height: 250px;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-image-section {
        min-height: 250px;
    }
}

/* 3D Cube About Section */
.about-container-3d {
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    perspective: 1000px;
    overflow: hidden;
}

.menu-3d {
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.btn-3d {
    width: 140px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.btn-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: #00E5FF;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.btn-3d:hover,
.btn-3d.active {
    background: rgba(0, 229, 255, 0.1);
    color: #00E5FF;
    padding-left: 25px;
    border-color: #00E5FF;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.btn-3d:hover::before,
.btn-3d.active::before {
    transform: scaleY(1);
}

.scene {
    width: 500px;
    height: 500px;
    perspective: 1200px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(-250px);
    transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cube.show-front {
    transform: translateZ(-250px) rotateY(0deg);
}

.cube.show-right {
    transform: translateZ(-250px) rotateY(-90deg);
}

.cube.show-back {
    transform: translateZ(-250px) rotateY(-180deg);
}

.cube.show-left {
    transform: translateZ(-250px) rotateY(90deg);
}

.cube.show-top {
    transform: translateZ(-250px) rotateX(-90deg);
}

.cube.show-bottom {
    transform: translateZ(-250px) rotateX(90deg);
}

.cube-face {
    position: absolute;
    width: 500px;
    height: 500px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.1) inset;
    backface-visibility: hidden;
}

/* Face Transforms */
.cube-face-front {
    transform: rotateY(0deg) translateZ(250px);
}

.cube-face-back {
    transform: rotateY(180deg) translateZ(250px);
}

.cube-face-right {
    transform: rotateY(90deg) translateZ(250px);
}

.cube-face-left {
    transform: rotateY(-90deg) translateZ(250px);
}

.cube-face-top {
    transform: rotateX(90deg) translateZ(250px);
}

.cube-face-bottom {
    transform: rotateX(-90deg) translateZ(250px);
}

/* Content Styles */
.intro-heading {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.intro-heading .highlight {
    color: #00E5FF;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.intro-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-section,
.cert-section {
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    padding-bottom: 15px;
}

.info-heading {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #00E5FF;
    margin-bottom: 5px;
}

.info-heading.date,
.cert-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.info-details ul {
    list-style: none;
    margin-left: 10px;
}

.info-details li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.info-details li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #00E5FF;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.project-item {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-item:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: #00E5FF;
    transform: translateY(-5px);
}

.project-item p {
    font-family: 'Orbitron', monospace;
    color: #00E5FF;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .about-container-3d {
        flex-direction: column;
        height: auto;
        padding-bottom: 100px;
    }

    .menu-3d {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 50px;
    }

    .scene {
        width: 300px;
        height: 300px;
    }

    .cube {
        transform: translateZ(-150px);
    }

    .cube-face {
        width: 300px;
        height: 300px;
        padding: 20px;
    }

    .cube-face-front {
        transform: rotateY(0deg) translateZ(150px);
    }

    .cube-face-back {
        transform: rotateY(180deg) translateZ(150px);
    }

    .cube-face-right {
        transform: rotateY(90deg) translateZ(150px);
    }

    .cube-face-left {
        transform: rotateY(-90deg) translateZ(150px);
    }

    .cube-face-top {
        transform: rotateX(90deg) translateZ(150px);
    }

    .cube-face-bottom {
        transform: rotateX(-90deg) translateZ(150px);
    }

    .cube.show-front {
        transform: translateZ(-150px) rotateY(0deg);
    }

    .cube.show-right {
        transform: translateZ(-150px) rotateY(-90deg);
    }

    .cube.show-back {
        transform: translateZ(-150px) rotateY(-180deg);
    }

    .cube.show-left {
        transform: translateZ(-150px) rotateY(90deg);
    }

    .cube.show-top {
        transform: translateZ(-150px) rotateX(-90deg);
    }

    .cube.show-bottom {
        transform: translateZ(-150px) rotateX(90deg);
    }
}