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

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    background-color: #f9f9f9;
    overflow-x: hidden;
    position: relative;
    color: #333;
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0a7cb1;
    border-radius: 10px;
    transition: all 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #06a4ee;
}

/* QR Code Animation */
.qr-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #e6f7ff, #f0f9ff, #e6f7ff);
}

.qr-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><rect x="5" y="5" width="4" height="4" fill="%230a7cb1" opacity="0.08"/><rect x="13" y="5" width="4" height="4" fill="%230a7cb1" opacity="0.08"/><rect x="21" y="5" width="4" height="4" fill="%230a7cb1" opacity="0.08"/><rect x="5" y="13" width="4" height="4" fill="%230a7cb1" opacity="0.08"/><rect x="13" y="13" width="4" height="4" fill="%230a7cb1" opacity="0.12"/><rect x="21" y="13" width="4" height="4" fill="%230a7cb1" opacity="0.08"/><rect x="5" y="21" width="4" height="4" fill="%230a7cb1" opacity="0.08"/><rect x="13" y="21" width="4" height="4" fill="%230a7cb1" opacity="0.08"/><rect x="21" y="21" width="4" height="4" fill="%230a7cb1" opacity="0.08"/></svg>');
    animation: moveParticles 80s linear infinite;
}

.floating-qr {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(10, 124, 177, 0.08);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(10, 124, 177, 0.1);
    animation: float 6s ease-in-out infinite;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="10" y="10" width="20" height="20" fill="%230a7cb1" opacity="0.2"/><rect x="40" y="10" width="20" height="20" fill="%230a7cb1" opacity="0.2"/><rect x="70" y="10" width="20" height="20" fill="%230a7cb1" opacity="0.2"/><rect x="10" y="40" width="20" height="20" fill="%230a7cb1" opacity="0.2"/><rect x="40" y="40" width="20" height="20" fill="%230a7cb1" opacity="0.3"/><rect x="70" y="40" width="20" height="20" fill="%230a7cb1" opacity="0.2"/><rect x="10" y="70" width="20" height="20" fill="%230a7cb1" opacity="0.2"/><rect x="40" y="70" width="20" height="20" fill="%230a7cb1" opacity="0.2"/><rect x="70" y="70" width="20" height="20" fill="%230a7cb1" opacity="0.2"/></svg>');
}

@keyframes moveParticles {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 500px 500px;
    }
}

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

/* Main Section */
#main {
    position: relative;
    padding-top: 50px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
    margin-top: 20px;
}

.logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: pulse 3s infinite;
    filter: drop-shadow(0 10px 15px rgba(10, 124, 177, 0.3));
}

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

.bg-text {
    position: absolute;
    font-size: 120px;
    font-weight: 800;
    color: rgba(10, 124, 177, 0.05);
    text-transform: uppercase;
    z-index: 1;
}

.description {
    text-align: center;
    margin-bottom: 50px;
}

.description span {
    font-size: 28px;
    color: #0a7cb1;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(10, 124, 177, 0.1);
    letter-spacing: 0.5px;
}

.description span::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #0a7cb1, transparent);
    bottom: -12px;
    left: 20%;
    border-radius: 4px;
}

/* Features Section */
.main-features {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(10, 124, 177, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #0a7cb1;
    border-radius: 5px 0 0 5px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 124, 177, 0.15);
}

.feature-box.left {
    flex-direction: row;
}

.feature-box.right {
    flex-direction: row-reverse;
}

.feature-box.right::before {
    left: auto;
    right: 0;
    border-radius: 0 5px 5px 0;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0a7cb1, #06a4ee);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 35px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(10, 124, 177, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" opacity="0.1"><rect x="10" y="10" width="20" height="20" fill="white" opacity="0.2"/><rect x="40" y="10" width="20" height="20" fill="white" opacity="0.2"/><rect x="70" y="10" width="20" height="20" fill="white" opacity="0.2"/><rect x="10" y="40" width="20" height="20" fill="white" opacity="0.2"/><rect x="40" y="40" width="20" height="20" fill="white" opacity="0.3"/><rect x="70" y="40" width="20" height="20" fill="white" opacity="0.2"/><rect x="10" y="70" width="20" height="20" fill="white" opacity="0.2"/><rect x="40" y="70" width="20" height="20" fill="white" opacity="0.2"/><rect x="70" y="70" width="20" height="20" fill="white" opacity="0.2"/></svg>');
    opacity: 0.2;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(10, 124, 177, 0.3);
}

.feature-content {
    flex: 1;
    padding: 0 10px;
}

.feature-content h3 {
    font-size: 24px;
    color: #0a7cb1;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #0a7cb1;
    bottom: -5px;
    left: 0;
    border-radius: 3px;
}

.feature-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Mouse Scroll Animation */
.mouse-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid #0a7cb1;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 5px 15px rgba(10, 124, 177, 0.2);
}

.mouse::before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0a7cb1;
    border-radius: 50%;
    opacity: 1;
    animation: mouse 2s infinite;
}

@keyframes mouse {
    from {
        opacity: 1;
        top: 5px;
    }
    to {
        opacity: 0;
        top: 20px;
    }
}

/* Download Section */
.download {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    padding: 40px;
    animation: fadeIn 1.5s ease-in-out;
}

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

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

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

.store-badge {
    height: 60px;
    width: auto;
    cursor: pointer;
}

/* Screenshots Section */
.screenshots {
    margin-bottom: 80px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.screenshots header {
    text-align: center;
    font-size: 32px;
    color: #0a7cb1;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(10, 124, 177, 0.1);
}

.screenshots header::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #0a7cb1, transparent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.screenshot-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    perspective: 1000px;
    max-width: 1300px;
    margin: 0 auto;
}

.screenshot {
    width: 200px;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 124, 177, 0.15);
    transition: all 0.5s ease;
    transform: rotateY(5deg);
    position: relative;
    border: 8px solid #fff;
    margin-bottom: 30px;
}

.screenshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 124, 177, 0.05), transparent);
    z-index: 1;
    pointer-events: none;
}

.screenshot:nth-child(1) {
    transform: rotateY(10deg);
}

.screenshot:nth-child(2) {
    transform: rotateY(5deg);
}

.screenshot:nth-child(3) {
    transform: rotateY(0);
}

.screenshot:nth-child(4) {
    transform: rotateY(-5deg);
}

.screenshot:nth-child(5) {
    transform: rotateY(-10deg);
}

.screenshot:hover {
    transform: rotateY(0) translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(10, 124, 177, 0.25);
    z-index: 2;
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.screenshot:hover img {
    transform: scale(1.03);
}

/* Testimonials Section */
.testimonials {
    margin-bottom: 80px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.testimonials header {
    text-align: center;
    font-size: 32px;
    color: #0a7cb1;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(10, 124, 177, 0.1);
}

.testimonials header::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #0a7cb1, transparent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 20px;
    padding: 35px;
    width: 350px;
    box-shadow: 0 15px 40px rgba(10, 124, 177, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border-top: 5px solid #0a7cb1;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 124, 177, 0.15);
}

.quote {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 30px;
    color: rgba(10, 124, 177, 0.15);
    z-index: 1;
}

.testimonial-content {
    margin-top: 25px;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.testimonial-author {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(10, 124, 177, 0.15);
    border: 3px solid white;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #222;
    font-size: 18px;
}

.author-role {
    font-size: 14px;
    color: #0a7cb1;
    font-weight: 500;
}

.rating {
    margin-top: 15px;
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Footer */
.modern-footer {
    background: linear-gradient(135deg, #0a7cb1, #06a4ee);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="20" y="20" width="10" height="10" fill="white" opacity="0.05"/><rect x="50" y="20" width="10" height="10" fill="white" opacity="0.05"/><rect x="80" y="20" width="10" height="10" fill="white" opacity="0.05"/><rect x="20" y="50" width="10" height="10" fill="white" opacity="0.05"/><rect x="50" y="50" width="10" height="10" fill="white" opacity="0.05"/><rect x="80" y="50" width="10" height="10" fill="white" opacity="0.05"/><rect x="20" y="80" width="10" height="10" fill="white" opacity="0.05"/><rect x="50" y="80" width="10" height="10" fill="white" opacity="0.05"/><rect x="80" y="80" width="10" height="10" fill="white" opacity="0.05"/></svg>');
    opacity: 0.6;
    z-index: 0;
}

.modern-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #06a4ee, #0a7cb1, #06a4ee);
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-links-column {
    min-width: 160px;
}

.footer-links-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: white;
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

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

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    color: white;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-column ul li a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-links-column ul li a i {
    font-size: 12px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon::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: all 0.5s ease;
}

.social-icon:hover {
    background-color: white;
    color: #0a7cb1;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

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

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

.copyright {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: white;
    opacity: 0.7;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container .bg-text {
        font-size: 40px;
    }
    
    .description span {
        font-size: 18px;
    }
    
    .feature-box {
        flex-direction: column !important;
        text-align: center;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .screenshot {
        width: 200px;
        height: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 120px;
        height: 120px;
    }
    
    .container .bg-text {
        font-size: 30px;
    }
    
    .description span {
        font-size: 16px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-content h3 {
        font-size: 18px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
    
    .screenshot {
        width: 150px;
        height: 300px;
    }
    
    .testimonial-card {
        width: 100%;
    }
}

/* APK Button Styles */
.googlePlay, .appStore, .apkButtonDiv {
    height: 60px;
    cursor: pointer;
    display: flex;
    transition: transform 0.3s;
    align-items: center;
}

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

.google, .apple {
    height: 100%;
    object-fit: contain;
}

.apkButtonDiv {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

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

.apkButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000;
    color: white;
    border: 1px solid #79797a;
    border-radius: 8px;
    padding: 10px 20px;
    height: 60px;
    width: 180px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.1s ease;
    position: relative;
    overflow: hidden;
}

.apkButton:hover {
    background: #3DDC84; /* Android yeşili */
    color: transparent;
}

.android-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.apkButton:hover .android-icon {
    transform: scale(1.5);
}

.normal-icon {
    display: block;
    transition: opacity 0.1s ease;
}

.hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: all 0.1s ease;
}

.apkButton:hover .normal-icon {
    opacity: 0;
}

.apkButton:hover .hover-icon {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.apkButton:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3DDC84; /* Android yeşili */
    z-index: -1;
}

/* Download Bölümü Stilleri */
.download {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.googlePlay, .appStore, .apkButtonDiv {
    height: 60px;
    cursor: pointer;
    display: flex;
    transition: transform 0.3s;
    align-items: center;
}

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

.google, .apple {
    height: 100%;
    object-fit: contain;
}

.android {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.apkButton:hover .android {
    width: 40px;
    height: 40px;
}

.apkButton span {
    transition: all 0.3s ease;
}

.apkButton:hover span {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}
