<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&amp;display=swap');

:root {
    --primary-color: #000;
    --secondary-color: #333;
    --accent-color: #555;
    --light-color: #fff;
    --gray-color: #f5f5f5;
    --dark-gray: #888;
    --spacing-unit: 1rem;
    --button-color: #ffcd1d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Standart imleci gizle */
}

/* Özel İmleç (Cursor) Stilleri */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--button-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    will-change: transform, background-color;
}

.cursor-dot.active {
    width: 20px;
    height: 20px;
    background-color: rgba(241, 204, 6, 0.5);
}

/* Footer (sarı zemin) üzerinde cursor'un rengi */
.cursor-dot.on-yellow {
    background-color: var(--primary-color) !important;
    mix-blend-mode: normal;
}

.cursor-dot.on-yellow.active {
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah */
}

/* Tıklanabilir elementler üzerinde hover olduğunda cursor efekti */
a:hover ~ .cursor-dot,
button:hover ~ .cursor-dot,
.book-call-btn:hover ~ .cursor-dot,
.s-dot:hover ~ .cursor-dot,
.social-icons a:hover ~ .cursor-dot {
    width: 20px;
    height: 20px;
    background-color: rgba(241, 204, 6, 0.5);
}

/* Footer içindeki tıklanabilir elementlerde hover olduğunda cursor efekti */
footer a:hover ~ .cursor-dot.on-yellow,
footer button:hover ~ .cursor-dot.on-yellow,
footer .social-icons a:hover ~ .cursor-dot.on-yellow {
    width: 20px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah */
}

html {
    scroll-behavior: smooth;
    /* scroll-snap-type: y mandatory; */ /* Bu satırı kaldırıyorum - scroll sorunu için */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.book-call-btn {
    background-color: var(--button-color);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.book-call-btn:hover {
    background-color: #e6c206;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Header &amp; Navigation */
header {
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

header.scrolled {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

header.hidden {
    transform: translateY(-100%); /* Header'ı ekranın üstünde gizler */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Goldman', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--button-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(241, 204, 6, 0.3);
}

/* Section Common Styles */
.section {
    padding: 5rem 5%;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.8s ease;
    /* scroll-snap-align: start; */ /* Bu satırı kaldırıyorum - scroll sorunu için */
    transform: translateY(20px);
    visibility: visible;
}

.fullscreen-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.section.active {
    transform: translateY(0);
}

.hidden-section {
    transform: translateY(50px);
}

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

/* Section Animasyonları - opacity burada değil */
.animated-item {
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
    transition: none; /* Diğer transition'ları devre dışı bırak */
}

.section.in-view .animated-item {
    animation: fadeInSection 0.8s ease forwards;
}

/* Animasyon gecikmeleri - section.in-view yerine data-animated olduğunda çalışsın */
.section[data-animated="true"] .animated-item:nth-child(1) {
    animation-delay: 0.1s;
}

.section[data-animated="true"] .animated-item:nth-child(2) {
    animation-delay: 0.3s;
}

.section[data-animated="true"] .animated-item:nth-child(3) {
    animation-delay: 0.5s;
}

.section[data-animated="true"] .animated-item:nth-child(4) {
    animation-delay: 0.7s;
}

.section[data-animated="true"] .animated-item:nth-child(5) {
    animation-delay: 0.9s;
}

/* Özel Section Animasyonları */
/* Services section */
.section#services[data-animated="true"] .service-column:nth-child(1) {
    animation-delay: 0.3s;
}

.section#services[data-animated="true"] .service-column:nth-child(2) {
    animation-delay: 0.5s;
}

.section#services[data-animated="true"] .service-column:nth-child(3) {
    animation-delay: 0.7s;
}

/* Work section */
.section#work[data-animated="true"] .app-info {
    animation-delay: 0.3s;
}

.section#work[data-animated="true"] .app-image {
    animation-delay: 0.6s;
}

@keyframes fadeInSection {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--button-color);
    bottom: -10px;
    left: 0;
}

.section-subtitle {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Hero Section */
#hello {
    padding-top: 0;
    align-items: flex-start;
    position: relative;
}

.hero {
    max-width: 800px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: calc(3.5rem - 1px);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 2rem;
}

/* Hello Section Animasyonları */
.animated-hello {
    animation: fadeIn 0.8s ease-out forwards;
}

.animated-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInDelayed 0.8s ease-out 1s forwards;
}

.animated-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInDelayed 0.8s ease-out 1.8s forwards;
}

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

@keyframes fadeInDelayed {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

.scroll-indicator span {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

.service-column {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.section.in-view .service-column:nth-child(1) {
    transition-delay: 0.2s;
}

.section.in-view .service-column:nth-child(2) {
    transition-delay: 0.4s;
}

.section.in-view .service-column:nth-child(3) {
    transition-delay: 0.6s;
}

.service-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--button-color);
}

.service-column ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1rem;
}

.service-column ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Work Section */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.work-item {
    background-color: var(--gray-color);
    height: 300px;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

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

.section.in-view .work-item:nth-child(1) {
    transition-delay: 0.2s;
}

.section.in-view .work-item:nth-child(2) {
    transition-delay: 0.4s;
}

.section.in-view .work-item:nth-child(3) {
    transition-delay: 0.6s;
}

.section.in-view .work-item:nth-child(4) {
    transition-delay: 0.8s;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
}

.work-item h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.work-item p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.view-btn {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    color: var(--button-color);
}

.work-item:hover .view-btn {
    transform: translateX(5px);
}

.view-all-link {
    display: inline-block;
    font-weight: 500;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.section.in-view .view-all-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.view-all-link:hover {
    color: var(--button-color);
    border-color: var(--button-color);
}

/* Client Section */
.tagline {
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 800px;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Testimonials Section */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin-bottom: 2rem;
}

.testimonial {
    margin-bottom: 2rem;
    transition: opacity 0.5s ease;
}

.quote {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.author h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author p {
    color: var(--dark-gray);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.in-view .testimonial-dots {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--dark-gray);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    opacity: 1;
    background-color: var(--button-color);
}

/* Footer */
footer {
    background-color: var(--button-color);
    color: var(--primary-color);
    padding-bottom: 3rem;
}

footer h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    display: inline-block;
}

footer h2::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

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

/* Footer animasyonları */
#footer.in-view .animated-item {
    animation: fadeInSection 0.8s ease forwards;
}

#footer[data-animated="true"] .footer-column:nth-child(1) {
    animation-delay: 0.3s;
}

#footer[data-animated="true"] .footer-column:nth-child(2) {
    animation-delay: 0.5s;
}

#footer[data-animated="true"] .footer-column:nth-child(3) {
    animation-delay: 0.7s;
}

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

.footer-column {
    opacity: 1; /* Daima görünür */
    transform: none; /* Hareket yok */
    transition: none; /* Geçiş yok */
}

footer.in-view .footer-column {
    opacity: 1;
    transform: none;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

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

.footer-column p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

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

.social-icons a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--primary-color);
}

.footer-logo {
    font-family: 'Goldman', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-top: 2rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 1; /* Daima görünür */
    transform: none; /* Hareket yok */
    animation: none !important; /* Animasyon yok */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1, .tagline, .quote {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 5%;
    }
    
    .services-container, .work-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    
    .work-item {
        height: 250px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
    }

    .app-showcase {
        flex-direction: column;
        padding: 2rem;
        align-items: center;
    }
    
    .app-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        order: 2;
    }

    .app-logo {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .app-image {
        order: 3;
        margin-bottom: 2rem;
        width: 100%;
        flex: 0 0 auto;
    }

    .screenshot-carousel {
        margin: 0 auto;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .app-store-btn, .play-store-btn {
        width: 80%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1, .tagline, .quote {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
}

/* Work/Uygulamalarımız Section */
.single-app {
    margin-bottom: 3rem;
}

.app-showcase {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(to right, #f9f9f9, #fff);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.app-showcase:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.app-logo {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.in-view .app-logo {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}

.app-logo-img {
    max-width: 200px;
    height: auto;
}

.app-info {
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.in-view .app-info {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.app-info h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.app-info p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-features {
    margin-bottom: 2rem;
}

.app-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.app-features li i {
    color: var(--button-color);
    margin-right: 0.5rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
}

.app-store-btn, .play-store-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.app-store-btn:hover, .play-store-btn:hover {
    background-color: var(--button-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.app-store-btn i, .play-store-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.app-image {
    flex: 0 0 300px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.in-view .app-image {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 8px solid white;
}

/* App Screenshot Slider */
.app-screenshots {
    position: relative;
    margin-bottom: 1rem;
}

.screenshot-carousel {
    position: relative;
    width: 270px;
    height: 578px;
    overflow: hidden;
    border-radius: 42px;
    box-shadow: 0 30px 30px rgba(0,0,0,0.2);
    border: 12px solid var(--primary-color);
    position: relative;
    background-color: var(--primary-color);
}

/* Power butonu */
.screenshot-carousel::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 60px;
    background-color: var(--primary-color);
    right: -14px;
    top: 120px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    z-index: 2;
}

/* Ses butonları */
.app-image::before, .app-image::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 32px;
    background-color: var(--primary-color);
    left: -1px;
    z-index: 2;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.app-image::before {
    top: 100px;
}

.app-image::after {
    top: 145px;
}

/* Silent mode switch */
.app-image .switch {
    content: "";
    position: absolute;
    width: 10px;
    height: 18px;
    background-color: var(--primary-color);
    left: -2px;
    top: 60px;
    border-radius: 4px;
    z-index: 2;
}

/* Yeni basitleştirilmiş slider stili */
.screenshot-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
}

.screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 0;
}

.screenshot.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

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

.screenshot-dots {
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
    gap: 0.5rem;
}

.s-dot {
    width: 15px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--dark-gray);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s-dot.active {
    background-color: var(--button-color);
    opacity: 1;
    width: 25px;
}

/* About Section */
.about-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 1rem;
}

#about {
    min-height: auto;
    padding-bottom: 2rem;
}

.about-image {
    flex: 0 0 40%;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.in-view .about-image {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.in-view .about-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.about-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--button-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Tech Grid Styles */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.tech-column {
    opacity: 1;
    transform: none;
}

.tech-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: var(--button-color);
}

.tech-list {
    list-style: none;
}

.tech-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1rem;
}

.tech-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

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

/* Form öğeleri için cursor ince ayarları */
input, 
textarea, 
select,
iframe {
    cursor: auto !important; /* Form elementlerinde normal imleç davranışını koru */
}

/* Metin seçimi için cursor ince ayarları */
p, h1, h2, h3, h4, h5, h6, span, div {
    cursor: none;
}

/* Tıklanabilir öğelerde cursor efekti */
a, button, .book-call-btn, .s-dot, .social-icons a, 
.app-store-btn, .play-store-btn {
    cursor: none;
}

/* Footer içindeki interaktif elementlerin hover durumları */
#footer a,
#footer button,
#footer .social-icons a {
    position: relative;
    z-index: 1;
}

/* Book Call button hoverı için ek stil - sarı butonun üzerinde siyah cursor dot */
.book-call-btn:hover ~ .cursor-dot {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

/* Footer ve sarı alanlarla daha güçlü özel cursor stilleri */
footer * {
    cursor: none !important;
}

/* Footer özel cursor-dot stili - doğrudan footer elementine bağlı */
footer ~ .cursor-dot,
#footer ~ .cursor-dot,
footer .cursor-dot,
#footer .cursor-dot,
body:has(footer:hover) .cursor-dot {
    background-color: var(--primary-color) !important;
    transition: background-color 0.1s ease, width 0.2s, height 0.2s;
}

/* Footer üzerinde cursorDot değişimi için body sınıfı */
body.cursor-on-footer .cursor-dot {
    background-color: var(--primary-color) !important;
    transition: background-color 0s !important; /* Anında değiş */
} </pre></body></html>