/* Genel Stil */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

body {
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

/* Animasyon Arka Planı */
.software-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 50%, #003d5c 100%);
    opacity: 0.1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Kod Parçacıkları */
.code-snippet {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    opacity: 0.6;
}

.code1 {
    top: 15%;
    left: 10%;
    width: 120px;
    animation: float-code 12s ease-in-out infinite;
}

.code-line {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 8px;
    border-radius: 2px;
}

.code-line:nth-child(1) {
    width: 80%;
}

.code-line:nth-child(2) {
    width: 60%;
}

.code-line:nth-child(3) {
    width: 90%;
}

/* Terminal */
.terminal {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 150px;
    height: 100px;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 8px;
    animation: float-code 15s ease-in-out infinite 2s;
}

.terminal-header {
    display: flex;
    gap: 6px;
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.terminal-content {
    padding: 10px;
}

.terminal-line {
    height: 3px;
    background: rgba(0, 255, 0, 0.4);
    margin-bottom: 6px;
    border-radius: 2px;
    width: 80%;
}

.terminal-line:nth-child(2) {
    width: 60%;
}

.terminal-line:nth-child(3) {
    width: 90%;
}

/* Dünya İkonu */
.globe-icon {
    position: absolute;
    bottom: 25%;
    left: 20%;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
    animation: float-code 10s ease-in-out infinite 1s;
}

/* Mobil Cihaz */
.mobile-device {
    position: absolute;
    top: 60%;
    right: 25%;
    width: 60px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    animation: float-code 14s ease-in-out infinite 3s;
}

.device-screen {
    width: 80%;
    height: 70%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    margin: 15% auto;
}

/* Bulut İkonu */
.cloud-icon {
    position: absolute;
    top: 25%;
    left: 50%;
    font-size: 35px;
    color: rgba(255, 255, 255, 0.2);
    animation: float-code 11s ease-in-out infinite 4s;
}

@keyframes float-code {

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

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Ana Bölüm */
#main {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

/* Logo Konteyneri */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    z-index: 2;
    animation: float-logo 3s ease-in-out infinite;
}

.bg-text {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes float-logo {

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

    50% {
        transform: translateY(-10px);
    }
}

/* Açıklama */
.description {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.description span {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Özellikler Bölümü */
.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.feature-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    width: 250px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border-top: 4px solid #007ec3;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Fare Scroll İndikatörü */
.middle {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #007ec3;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #007ec3;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* İndirme Butonları */
.download {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.googlePlay,
.appStore {
    transition: transform 0.3s ease;
}

.googlePlay:hover,
.appStore:hover {
    transform: scale(1.05);
}

.store-badge {
    height: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Uygulama Tanıtım Bölümü */
.app-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 5rem auto;
    max-width: 1200px;
    padding: 0 2rem;
    gap: 2rem;
}

.showcase-content {
    flex: 1;
    min-width: 300px;
}

.showcase-content h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.showcase-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.feature-item i {
    color: #007ec3;
    font-size: 1.2rem;
}

.showcase-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background-color: #000;
    border-radius: 30px;
    padding: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.phone-screen-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 1;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background-color: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.app-preview {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.app-header-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: white;
    font-weight: 600;
}

.app-logo-small {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.app-menu-preview {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.menu-item {
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Hizmetler Bölümü */
.services-section {
    margin: 5rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.services-section header {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.services-section header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    border-radius: 2px;
}

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

.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #007ec3;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #555;
}

.service-features i {
    color: #007ec3;
    font-size: 0.9rem;
}

/* Teknolojiler Bölümü */
.technologies-section {
    margin: 5rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.technologies-section header {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Teknolojiler Scroll Wrapper */
.tech-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.tech-scroll-container {
    width: 100%;
    overflow: hidden;
}

.tech-scroll-content {
    display: flex;
    gap: 2rem;
    animation: scroll-tech 30s linear infinite;
    width: fit-content;
}

@keyframes scroll-tech {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.tech-scroll-wrapper:hover .tech-scroll-content {
    animation-play-state: paused;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 120px;
    flex-shrink: 0;
}

.tech-item:hover {
    box-shadow: 0 10px 25px rgba(0, 126, 195, 0.2);
}

.tech-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flutter-icon {
    width: 3rem;
    height: 3rem;
    fill: #007ec3;
}

.tech-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Ekran Görüntüleri */
.screenImage {
    margin: 5rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.screenImage header {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screen-shot-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.screen-shot {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Telefon Mockup Stilleri */
.phone-mockup-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.phone-mockup-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.phone-frame {
    width: 200px;
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 25px;
    padding: 8px;
    position: relative;
}

.phone-screen-item {
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.phone-screen-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background-color: #1a1a1a;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 2;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* Uygulama İstatistikleri */
.app-stats {
    margin: 5rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.app-stats header {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.stat-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    width: 200px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border-top: 4px solid #007ec3;
}

.stat-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.stat-card i {
    font-size: 2rem;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: #666;
}

/* Portföy Bölümü */
.portfolio-section {
    margin: 5rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.portfolio-section header {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.portfolio-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.portfolio-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 126, 195, 0.2);
}

.portfolio-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.portfolio-image i {
    font-size: 2.5rem;
    color: white;
}

.portfolio-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.portfolio-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
.modern-footer {
    background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: #fff;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

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

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.copyright a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .bg-text {
        font-size: 2.5rem;
    }

    .feature-card {
        width: 100%;
        max-width: 300px;
    }

    .app-showcase {
        flex-direction: column;
    }

    .showcase-content {
        order: 2;
    }

    .showcase-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 100px;
        height: 100px;
    }

    .bg-text {
        font-size: 2rem;
    }

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

    .download {
        flex-direction: column;
    }

    .phone-frame {
        width: 160px;
        height: 320px;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}