/* Açılış Efekti */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 1.5s ease-in-out;
}

.loading-screen.split-left {
    position: absolute;
    width: 50%;
    left: 0;
    transform: translateX(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform-origin: right;
    animation: curtainLeft 1.5s ease-in-out forwards;
}

.loading-screen.split-right {
    position: absolute;
    width: 50%;
    left: 50%;
    transform: translateX(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform-origin: left;
    animation: curtainRight 1.5s ease-in-out forwards;
}

@keyframes curtainLeft {
    0% {
        transform: translateX(0) rotateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    100% {
        transform: translateX(-100%) rotateY(-90deg);
        clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    }
}

@keyframes curtainRight {
    0% {
        transform: translateX(0) rotateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    100% {
        transform: translateX(100%) rotateY(90deg);
        clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    }
}

.loading-card {
    background: linear-gradient(135deg, #0066ff, #00ccff);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 0.5s ease-out forwards;
    min-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.loading-card.fade-out {
    animation: fadeOutScale 0.5s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOutScale {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

.loading-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.loading-value {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.loading-status {
    font-size: 1.2rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.content-wrapper {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* WOW.js Animasyonları */
.wow {
    visibility: hidden;
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Diğer stiller */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    margin-bottom: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Animasyonlar */
.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive tasarım */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/* Header ve Navigasyon */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(255,255,255,0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

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

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

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: url('/images/Background.png') no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.8), rgba(0, 204, 255, 0.2));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 400px;
    height: auto;
    margin-bottom: 3rem;
    filter: brightness(0) invert(1);
}

.hero-logo.animate__animated {
    opacity: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
#products {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#products h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    background: linear-gradient(135deg, #0066ff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

#products h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #0066ff, #00ccff);
    border-radius: 3px;
}

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

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card h3 {
    color: #0066ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    height: 150px;
    resize: vertical;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
}

/* Footer */
.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1c20 0%, #2c3e50 100%);
    color: #fff;
    z-index: 100;
}

.footer-content {
    padding: 3rem 0;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #0066ff, #00ccff);
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a i {
    font-size: 0.8rem;
    margin-right: 0.5rem;
    color: #0066ff;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact li i {
    width: 25px;
    color: #0066ff;
    margin-right: 0.5rem;
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: none;
    transform: translateX(5px);
}

.address-details {
    margin-left: 30px;
    line-height: 1.8;
}

.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: #fff;
    background: #0066ff;
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    .footer-content {
        padding: 2rem 0;
    }

    .footer-brand, .footer h5 {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links, .footer-contact {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-contact li {
        justify-content: center;
    }

    .address-details {
        margin-left: 0;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Responsive Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Navbar Styles */
.navbar {
    padding: 1rem 10%;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #0066ff, #00ccff);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: white;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
    filter: brightness(1.2) contrast(1.1);
}

.navbar-brand:hover .navbar-logo {
    transform: rotate(15deg);
}

.navbar-collapse {
    justify-content: flex-end;
    flex-grow: 0;
}

.nav-link {
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    color: white !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: white;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 70%;
}

.nav-link i {
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px);
    color: white;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar {
        padding: 1rem 5%;
        background: linear-gradient(135deg, #0066ff, #00ccff);
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        text-align: center;
    }
    
    .nav-link:after {
        display: none;
    }

    .navbar-logo {
        height: 32px;
    }
}

.loading-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

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

.fan-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    perspective: 1500px;
    margin: 2rem 0;
    transform-style: preserve-3d;
    padding: 2rem;
    gap: -10px;
}

.fan-item {
    position: relative;
    width: 150px;
    height: 500px;
    margin: 0;
    background: var(--bg-color);
    border-radius: 35px;
    transform-origin: bottom center;
    transform: rotateY(-15deg) rotateZ(-5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    overflow: hidden;
}

.fan-item:hover {
    width: 400px;
    transform: rotateY(0deg) rotateZ(0deg) translateZ(50px);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.fan-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1rem;
    color: white;
    text-align: center;
    opacity: 0.95;
    transform-style: preserve-3d;
}

.fan-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateZ(10px);
    white-space: nowrap;
}

.fan-details {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out;
    padding: 0 1.5rem;
    transform-style: preserve-3d;
    width: 100%;
}

.fan-item:hover .fan-details {
    opacity: 1;
    transform: translateY(0) translateZ(20px);
}

.fan-details h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.fan-details p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.learn-more {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    transform: translateZ(30px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.learn-more:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateZ(30px) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991.98px) {
    .fan-container {
        flex-wrap: wrap;
        perspective: none;
        padding: 1rem;
    }

    .fan-item {
        width: 90%;
        height: 200px;
        margin: 1rem auto;
        transform: none !important;
        border-radius: 25px;
    }

    .fan-item:hover {
        width: 90%;
        transform: translateY(-10px) !important;
    }

    .fan-content {
        padding: 2rem;
    }

    .fan-content h3 {
        font-size: 2rem;
    }
}

/* Bildirim Stilleri */
.notification {
    position: fixed;
    top: 20px;
    right: -350px;
    background: linear-gradient(135deg, #0066ff, #00ccff);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    max-width: 350px;
}

.notification.show {
    right: 20px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-content i {
    font-size: 1.5rem;
}

.notification-content p {
    margin: 0;
    font-size: 1rem;
}

/* Kapanış Perde Efekti */
.loading-screen.closing {
    animation-direction: reverse;
    animation-fill-mode: forwards;
    opacity: 1;
    visibility: visible;
}

.loading-screen.split-left.closing {
    animation: curtainLeftClose 1s ease-in-out forwards;
    transform-origin: right;
    left: 0;
    width: 50%;
}

.loading-screen.split-right.closing {
    animation: curtainRightClose 1s ease-in-out forwards;
    transform-origin: left;
    left: 50%;
    width: 50%;
}

@keyframes curtainLeftClose {
    0% {
        transform: translateX(-100%) rotateY(-90deg);
    }
    100% {
        transform: translateX(0) rotateY(0);
        opacity: 1;
        visibility: visible;
    }
}

@keyframes curtainRightClose {
    0% {
        transform: translateX(100%) rotateY(90deg);
    }
    100% {
        transform: translateX(0) rotateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* PM Page Styles */
.pm-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1c20 0%, #2c3e50 100%);
    color: white;
    margin-top: -60px;
}

.pm-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pm-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #0066ff;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tech-specs {
    padding: 80px 0;
    background: white;
}

.specs-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    height: 100%;
}

.specs-card h3 {
    color: #0066ff;
    margin-bottom: 1.5rem;
}

.specs-card ul {
    list-style: none;
    padding: 0;
}

.specs-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.specs-card ul li:before {
    content: "•";
    color: #0066ff;
    position: absolute;
    left: 0;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .pm-hero {
        text-align: center;
        padding: 60px 0;
    }

    .pm-hero h1 {
        font-size: 2.5rem;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    .specs-card {
        margin-bottom: 2rem;
    }
}

/* PM Yeni Stiller */
.pm-intro {
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.intro-content {
    text-align: center;
    z-index: 2;
    margin-bottom: 3rem;
}

.text-gradient {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0066ff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
    margin-bottom: 1.5rem;
}

.intro-content .lead {
    font-size: 1.8rem;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.intro-visual {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.glow-effect {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 102, 255, 0.3);
}

/* Feature Spotlight */
.feature-spotlight {
    background: #000;
    padding: 100px 0;
}

.spotlight-item {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.spotlight-content {
    flex: 1;
    padding-right: 4rem;
}

.spotlight-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.spotlight-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.spotlight-visual {
    flex: 1;
    position: relative;
}

.feature-video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

/* Parallax Section */
.parallax-section {
    background: #000;
    padding: 150px 0;
    position: relative;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

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

.metric-item:hover {
    transform: translateY(-10px);
}

.metric-icon {
    font-size: 2.5rem;
    color: #0066ff;
    margin-bottom: 1.5rem;
}

.metric-item h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.animated-chart {
    height: 100px;
    background: linear-gradient(90deg, #0066ff, #00ccff);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.animated-chart::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: chartShine 2s infinite;
}

@keyframes chartShine {
    to { transform: translateX(100%); }
}

/* Tech Reveal Section */
.tech-reveal {
    background: #000;
    padding: 150px 0;
}

.reveal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.tech-item {
    text-align: center;
}

.tech-visual {
    position: relative;
    margin-bottom: 2rem;
}

.tech-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.tech-item img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

.tech-item h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 150px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #0066ff, #00ccff);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.4);
    color: #fff;
}

/* Responsive Tasarım */
@media (max-width: 991.98px) {
    .text-gradient {
        font-size: 3rem;
    }

    .intro-content .lead {
        font-size: 1.4rem;
    }

    .spotlight-item {
        flex-direction: column;
        text-align: center;
    }

    .spotlight-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* PM Navbar Styles */
.navbar-dark {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-brand {
    color: #fff;
}

.navbar-dark .navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.navbar-dark .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00ccff);
    transition: width 0.3s ease;
}

.navbar-dark .nav-link:hover::after {
    width: 70%;
}

.navbar-dark .nav-link i {
    transition: all 0.3s ease;
}

.navbar-dark .nav-link:hover i {
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .navbar-dark {
        padding: 1rem;
    }

    .navbar-dark .navbar-collapse {
        background: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .navbar-dark .nav-link {
        text-align: center;
        padding: 0.8rem;
    }

    .navbar-dark .nav-link::after {
        display: none;
    }
}