/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Logo */
.hero-logo {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.logo-image {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

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

/* Hero Navigation */
.hero-nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0.6;
    cursor: pointer;
    pointer-events: auto;
    z-index: 100;
    position: relative;
}

.nav-dot:hover,
.nav-dot.active {
    opacity: 1;
    color: #00d4ff;
}

.nav-dot .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.nav-dot.active .dot,
.nav-dot:hover .dot {
    background: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-dot .label {
    font-size: 10px;
    white-space: nowrap;
}

.contact-btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    z-index: 100;
    position: relative;
}

.contact-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateX(5px);
}

.contact-btn a {
    color: #00d4ff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-btn .arrow {
    color: #00d4ff;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.contact-btn:hover .arrow {
    transform: translateX(3px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 153, 204, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Hero yıldızları */
.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: hero-star-twinkle 4s infinite ease-in-out, hero-star-drift var(--drift-duration, 20s) infinite linear;
}

@keyframes hero-star-twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes hero-star-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -30px); }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
}

.hero-title {
    margin-bottom: 30px;
    user-select: none;
}

.title-main {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.9;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.title-sub {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.9;
    color: #00d4ff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate-reverse;
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }
    to { text-shadow: 0 0 50px rgba(0, 212, 255, 0.6); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    letter-spacing: 2px;
    margin-top: 20px;
}

.hero-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.hero-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-social-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;
}

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

.hero-social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-social-link:hover svg {
    transform: scale(1.1);
}

.hero-social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.4);
}

.hero-social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: rgba(0, 119, 181, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #00d4ff, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Projects section container positioning */
.projects .container {
    position: relative;
    z-index: 20;
}

/* Projects section header positioning */
.projects .section-header {
    position: relative;
    z-index: 20;
}

/* Projects grid z-index */
.projects-grid {
    position: relative;
    z-index: 20;
}

/* Contact section container positioning */
.contact .container {
    position: relative;
    z-index: 10;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #ffffff;
}

.title-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 153, 204, 0.1) 0%, transparent 50%);
    padding: 120px 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* About section video background */
.about-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.about-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(3px);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.about-intro h3 {
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.mission, .vision {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission h4, .vision h4 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission p, .vision p {
    color: #cccccc;
    line-height: 1.6;
}

.activities {
    margin: 40px 0;
}

.activities h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.activity-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.activity-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
}

.activity-text h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.activity-text p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #999999;
    letter-spacing: 1px;
}

.about-visual {
    position: relative;
    height: 500px;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border-radius: 10px;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 60px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 40px;
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    bottom: 30%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Communities Section */
.communities-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.communities-subtitle {
    font-size: 1.4rem;
    color: #00d4ff;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: left;
}

.community-content {
    max-width: 1200px;
    margin: 0 auto;
}

.community-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.community-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.community-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.community-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.community-item:hover .community-img {
    transform: scale(1.03);
}

.community-info h3 {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 15px;
    font-weight: 700;
}

.community-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.community-description:last-child {
    margin-bottom: 0;
}

/* Responsive Communities */
@media (max-width: 900px) {
    .community-item {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }
    
    .community-img {
        height: 250px;
    }
    
    .communities-subtitle {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
}

/* Projects Section */
.projects {
    background: transparent;
    padding: 120px 0;
    min-height: 100vh;
    position: relative;
}

/* Projects section background blur */
.projects-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('https://cdn.wallpapersafari.com/55/87/7cM6SF.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(300px);
    z-index: 0;
    pointer-events: none;
}

/* Projects section ek blur efekti */
.projects::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(0, 153, 204, 0.1) 50%, 
        rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 20;
}

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

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

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

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

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00d4ff;
    letter-spacing: 2px;
}

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

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

.project-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.project-tech span {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.project-content {
    padding: 30px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.project-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
}

.project-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-status:contains("Aktif") {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.project-status:contains("Tamamlandı") {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.project-status:contains("Planlama") {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.project-status:contains("Geliştirme") {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
    border: 1px solid rgba(255, 255, 0, 0.3);
}

.project-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.detail-item strong {
    color: #00d4ff;
}

.detail-item span {
    color: #cccccc;
}

.project-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-size, .project-duration {
    font-size: 0.9rem;
    color: #999999;
    font-weight: 600;
}

/* Team Section */
.team {
    background: transparent;
    padding: 120px 0;
    min-height: 100vh;
    position: relative;
}

/* Board sections styling */
.board-section {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.board-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.board-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    border-radius: 1px;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    justify-items: center;
    align-items: start;
}

/* Board sections z-index */
.board-section {
    position: relative;
    z-index: 20;
}

/* Management grid - Yönetim Kurulu özel düzeni */
.management-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    justify-items: center;
    align-items: start;
}

/* Üst sıra için özel hizalama - 2 kişi tam ortada (1.5 ve 2.5 pozisyonları) */
.management-grid .member-card-large:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 15px;
}

.management-grid .member-card-large:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: start;
    margin-left: 15px;
}

/* Alt sıra için özel hizalama - 3 kişi yan yana */
.management-grid .member-card-large:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
}

.management-grid .member-card-large:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
}

.management-grid .member-card-large:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
    justify-self: center;
}

/* Responsive management grid */
@media (max-width: 1200px) {
    .management-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Üst sıra - 2 kişi ortalanmış */
    .management-grid .member-card-large:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        margin-right: 0;
    }
    
    .management-grid .member-card-large:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        margin-left: 0;
    }
    
    /* Alt sıra - 3 kişi */
    .management-grid .member-card-large:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
        justify-self: center;
    }
    
    .management-grid .member-card-large:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
    }
    
    .management-grid .member-card-large:nth-child(5) {
        grid-column: 1;
        grid-row: 3;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .management-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobilde tüm kartlar tek sütunda */
    .management-grid .member-card-large:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        margin-right: 0;
    }
    
    .management-grid .member-card-large:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        justify-self: center;
        margin-left: 0;
    }
    
    .management-grid .member-card-large:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
        justify-self: center;
    }
    
    .management-grid .member-card-large:nth-child(4) {
        grid-column: 1;
        grid-row: 4;
        justify-self: center;
    }
    
    .management-grid .member-card-large:nth-child(5) {
        grid-column: 1;
        grid-row: 5;
        justify-self: center;
    }
}

/* Team section video background */
.team-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.team-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(5px);
}

.team-video-bg .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


/* Team section ek blur efekti */
.team::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.15) 0%, 
        rgba(0, 153, 204, 0.15) 50%, 
        rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Team section header positioning */
.team .section-header {
    position: relative;
    z-index: 20;
}

/* Team section container positioning */
.team .container {
    position: relative;
    z-index: 20;
}

.member-card-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    width: 280px;
    height: 300px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.member-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.member-card-large:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.member-card-large:hover::before {
    opacity: 1;
}

.member-photo-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid rgba(0, 212, 255, 0.3);
    transition: all 0.15s ease;
    position: relative;
}

.member-card-large:hover .member-photo-large {
    border-color: rgba(0, 212, 255, 0.6);
    transform: scale(1.05);
}

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

.member-card-large:hover .member-img {
    transform: scale(1.1);
}

.photo-placeholder-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 2rem;
}

.member-info-large {
    text-align: center;
}

.member-info-large h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 700;
}

.member-info-large p {
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.member-info-large span {
    color: #999999;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0;
}

.member-info-large .member-details {
    margin-top: 10px;
}

.member-info-large .member-details p {
    color: #cccccc;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

/* Contact Details Styles */


.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 10px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-size: 1.1rem;
    min-width: 30px;
}

.contact-item span:last-child {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Board Grid */
@media (max-width: 1000px) {
    .board-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .board-title {
        font-size: 1.8rem;
    }
    
    .member-card-large {
        width: 260px;
        height: 330px;
    }
    
    .member-photo-large {
        margin: 0 auto 8px;
    }
}

@media (max-width: 700px) {
    .board-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .board-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .board-section {
        margin-bottom: 60px;
    }
    
    .member-card-large {
        width: 240px;
        height: 310px;
    }
    
    .member-photo-large {
        width: 100px;
        height: 100px;
        margin: 0 auto 8px;
    }
}

/* Contact Section */
.contact {
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 153, 204, 0.1) 0%, transparent 50%);
    padding: 120px 0;
    min-height: 100vh;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100px;
    width: 100%;
}

.contact-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;
}

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

.contact-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;

}

.contact-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.contact-detail {
    font-size: 0.75rem;
    color: #999999;
    line-height: 1.4;
}

.contact-text h4 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-text p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.social-links h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100px;
    width: 100%;
}

.social-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;
}

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

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.4);
}

.social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: rgba(0, 119, 181, 0.4);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: white;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-link:hover .social-icon svg {
    transform: scale(1.1);
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.social-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.social-handle {
    font-size: 0.8rem;
    color: #999999;
}

.join-section {
    grid-column: 1 / -1;
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    text-align: center;
}

.join-section h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.join-section p {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.join-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-item span:last-child {
    color: #cccccc;
    font-size: 0.9rem;
    text-align: center;
}

.join-btn {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        top: 20px;
        left: 20px;
    }
    
    .hero-nav {
        right: 20px;
        gap: 15px;
    }
    
    .nav-dot .label {
        display: none;
    }
    
    .contact-btn {
        padding: 6px 12px;
    }
    
    .contact-btn a {
        font-size: 10px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activity-list {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .member-photo-large {
        width: 100px;
        height: 100px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Modal responsive */
    .modal-body {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .modal-img {
        width: 200px;
        height: 200px;
    }
    
    .modal-info h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .modal-info h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .modal-info > span {
        text-align: center;
    }
}

/* ===== PARALLAX VE SCROLL EFEKTLERİ ===== */

/* Parallax container'lar */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform;
}

.parallax-element {
    will-change: transform;
}

/* Section geçiş efektleri */
.section-transition {
    position: relative;
    overflow: hidden;
}

.section-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(0, 153, 204, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.section-transition.in-view::before {
    opacity: 1;
}

/* Scroll-triggered animasyonlar */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.in-view {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.in-view {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animasyonlar */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* Parallax scroll efektleri */
.parallax-slow {
    transform: translateY(var(--scroll-slow, 0));
}

.parallax-medium {
    transform: translateY(var(--scroll-medium, 0));
}

.parallax-fast {
    transform: translateY(var(--scroll-fast, 0));
}

/* Section geçiş overlay'leri */
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(0, 153, 204, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.section-overlay.active {
    opacity: 1;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Smooth section transitions */
section {
    position: relative;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

section.leaving {
    transform: translateY(-50px);
    opacity: 0.8;
}

/* ===== GELİŞMİŞ PARALLAX EFEKTLERİ ===== */

/* Parallax layer'ları */
.parallax-layer-1 {
    transform: translateZ(0);
    will-change: transform;
}

.parallax-layer-2 {
    transform: translateZ(-1px) scale(2);
    will-change: transform;
}

.parallax-layer-3 {
    transform: translateZ(-2px) scale(3);
    will-change: transform;
}

/* Smooth parallax transitions */
.parallax-smooth {
    transition: transform 0.1s ease-out;
}

/* Section geçiş efektleri */
.section-fade-in {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-fade-in.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* 3D transform efektleri */
.transform-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d {
    transform: rotateX(0deg) rotateY(0deg);
    transition: transform 0.3s ease;
}

.card-3d:hover {
    transform: rotateX(5deg) rotateY(5deg);
}

/* Scroll reveal animasyonları */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Magnetic hover efektleri */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.magnetic:hover {
    transform: scale(1.05);
}

/* Glow efektleri */
.glow-on-scroll {
    transition: box-shadow 0.3s ease;
}

.glow-on-scroll.in-view {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* Text reveal animasyonları */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-reveal.in-view span {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered text reveal */
.text-reveal span:nth-child(1) { transition-delay: 0.1s; }
.text-reveal span:nth-child(2) { transition-delay: 0.2s; }
.text-reveal span:nth-child(3) { transition-delay: 0.3s; }
.text-reveal span:nth-child(4) { transition-delay: 0.4s; }
.text-reveal span:nth-child(5) { transition-delay: 0.5s; }
.text-reveal span:nth-child(6) { transition-delay: 0.6s; }

/* ===== RASTGELE YILDIZLAR ===== */

/* Yıldız container'ı */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Bireysel yıldız */
.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite ease-in-out, drift var(--drift-duration, 8s) infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(calc(var(--drift-distance, 15px) * 0.7), calc(var(--drift-distance, 15px) * -1)) scale(1.1); }
    50% { transform: translate(calc(var(--drift-distance, 15px) * -0.3), calc(var(--drift-distance, 15px) * -0.7)) scale(0.9); }
    75% { transform: translate(calc(var(--drift-distance, 15px) * 1), calc(var(--drift-distance, 15px) * 0.3)) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

/* ===== KARELİ DESEN ===== */

/* Projects section kareli desen */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.2) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.2) 2px, transparent 2px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    animation: grid-move 20s linear infinite;
}

/* Electric energy flow effect */
.grid-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Energy flowing from left to right */
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(0, 255, 255, 0.1) 10%, 
            rgba(0, 212, 255, 0.8) 20%, 
            rgba(0, 255, 255, 1) 30%, 
            rgba(0, 212, 255, 0.9) 40%, 
            rgba(0, 255, 255, 0.8) 50%, 
            rgba(0, 212, 255, 0.7) 60%, 
            rgba(0, 255, 255, 0.6) 70%, 
            rgba(0, 212, 255, 0.4) 80%, 
            rgba(0, 255, 255, 0.2) 90%, 
            transparent 100%
        );
    background-size: 100% 2px;
    background-position: 0 30%;
    background-repeat: no-repeat;
    animation: energy-flow-horizontal 4s ease-in-out infinite;
    opacity: 0;
}

.grid-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Energy flowing from top to bottom */
        linear-gradient(0deg, 
            transparent 0%, 
            rgba(0, 255, 255, 0.1) 10%, 
            rgba(0, 212, 255, 0.8) 20%, 
            rgba(0, 255, 255, 1) 30%, 
            rgba(0, 212, 255, 0.9) 40%, 
            rgba(0, 255, 255, 0.8) 50%, 
            rgba(0, 212, 255, 0.7) 60%, 
            rgba(0, 255, 255, 0.6) 70%, 
            rgba(0, 212, 255, 0.4) 80%, 
            rgba(0, 255, 255, 0.2) 90%, 
            transparent 100%
        );
    background-size: 2px 100%;
    background-position: 70% 0;
    background-repeat: no-repeat;
    animation: energy-flow-vertical 4s ease-in-out infinite 2s;
    opacity: 0;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes energy-flow-horizontal {
    0% { 
        opacity: 0;
        transform: translateX(-100%);
    }
    20% { 
        opacity: 0.3;
        transform: translateX(-80%);
    }
    40% { 
        opacity: 0.8;
        transform: translateX(-40%);
    }
    60% { 
        opacity: 1;
        transform: translateX(0%);
    }
    80% { 
        opacity: 0.6;
        transform: translateX(40%);
    }
    100% { 
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes energy-flow-vertical {
    0% { 
        opacity: 0;
        transform: translateY(-100%);
    }
    20% { 
        opacity: 0.3;
        transform: translateY(-80%);
    }
    40% { 
        opacity: 0.8;
        transform: translateY(-40%);
    }
    60% { 
        opacity: 1;
        transform: translateY(0%);
    }
    80% { 
        opacity: 0.6;
        transform: translateY(40%);
    }
    100% { 
        opacity: 0;
        transform: translateY(100%);
    }
}

@media (max-width: 768px) {
    .hero-nav {
        display: none;
    }
}