
/* Bu blok sendeki CSS'te muhtemelen 0 ve 30px olarak duruyor */
.animate-on-scroll {
    opacity: 1 !important;        /* 0 olan değeri 1 yap */
    transform: translateY(0) !important; /* 30px olan değeri 0 yap */
    visibility: visible !important;
}
/* Variable Definitions */
:root {
    --primary-color: #00f0ff;
    /* Neon Blue */
    --primary-glow: rgba(0, 240, 255, 0.4);
    --secondary-color: #ffffff;
    --bg-dark: #000000;
    --bg-card: #0a0a0a;
    --bg-card-hover: #111111;
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --border-color: #1f1f1f;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 25px var(--primary-glow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: #000;
}

.section {
    padding: 80px 0;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    /* Matching the medium/semi-bold weight in the image */
    letter-spacing: -0.5px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: inherit;
    /* Remove specific color span behavior */
}

/* Custom Logo Icon */
.logo-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon .dot {
    position: absolute;
    top: 2px;
    left: 4px;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.logo-icon .pill {
    position: absolute;
    width: 8px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    transform: rotate(45deg);
    top: 6px;
    left: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

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

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-glow);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.neon-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    box-shadow: 0 0 100px rgba(0, 240, 255, 0.3);
    border: 1px solid rgba(0, 240, 255, 0.1);
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Services */
.services {
    background-color: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px -10px rgba(0, 240, 255, 0.15);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* =====================================================
   ANIMATED SERVICE ICONS
   ===================================================== */

.icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
    z-index: 2;
}

.icon-box svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Service Card Premium Hover */
.service-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-color: rgba(0, 240, 255, 0.3);
}

/* === META ACCOUNTS - Pulse Ring + Checkmark === */
.pulse-ring {
    fill: none;
    stroke: #0081fb;
    stroke-width: 2;
    opacity: 0;
}

.service-card:hover .pulse-ring {
    animation: pulseRing 2s ease-out infinite;
}

.service-card:hover .pulse-ring.delay {
    animation-delay: 1s;
}

.checkmark {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    transition: stroke-dashoffset 0.6s ease;
}

.service-card:hover .checkmark {
    stroke-dashoffset: 0;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
        stroke-width: 3;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        stroke-width: 0;
    }
}

/* === META ADS - Target Bullseye === */
.target-ring {
    fill: none;
    stroke: #7c3aed;
    stroke-width: 2;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.service-card:hover .target-ring {
    opacity: 1;
    animation: targetPulse 1.5s ease infinite;
}

.target-center {
    transition: all 0.3s ease;
}

.service-card:hover .target-center {
    transform: scale(1.3);
    filter: drop-shadow(0 0 10px #7c3aed);
}

.target-arrow {
    opacity: 0;
    transform: translate(20px, -20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .target-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes targetPulse {

    0%,
    100% {
        stroke-width: 2;
    }

    50% {
        stroke-width: 4;
    }
}

/* === GOOGLE ADS - Chart Growth === */
.chart-bar {
    transform-origin: bottom;
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .bar1 {
    transform: scaleY(1);
    transition-delay: 0s;
}

.service-card:hover .bar2 {
    transform: scaleY(1);
    transition-delay: 0.1s;
}

.service-card:hover .bar3 {
    transform: scaleY(1);
    transition-delay: 0.2s;
}

.service-card:hover .bar4 {
    transform: scaleY(1);
    transition-delay: 0.3s;
}

.chart-line {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    transition: stroke-dashoffset 0.8s ease 0.4s;
}

.service-card:hover .chart-line {
    stroke-dashoffset: 0;
}

.chart-dot {
    opacity: 0;
    transition: opacity 0.3s ease 1s;
}

.service-card:hover .chart-dot {
    opacity: 1;
    animation: dotPulse 1s ease infinite 1s;
}

@keyframes dotPulse {

    0%,
    100% {
        r: 4;
    }

    50% {
        r: 6;
    }
}

/* === SOCIAL MEDIA - Heart + Bubbles === */
.heart {
    transform-origin: center;
    transition: transform 0.3s ease;
}

.service-card:hover .heart {
    animation: heartBeat 1s ease infinite;
}

.like-bubble {
    opacity: 0;
    transform: scale(0) translateY(0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .like-bubble.b1 {
    opacity: 1;
    transform: scale(1) translateY(-10px);
    transition-delay: 0.2s;
}

.service-card:hover .like-bubble.b2 {
    opacity: 1;
    transform: scale(1) translateY(-15px);
    transition-delay: 0.4s;
}

.service-card:hover .like-bubble.b3 {
    opacity: 1;
    transform: scale(1) translateY(-8px);
    transition-delay: 0.3s;
}

.like-count {
    opacity: 0;
    transition: opacity 0.3s ease 0.3s;
}

.service-card:hover .like-count {
    opacity: 1;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.05);
    }
}

/* === WEB DESIGN - Code Typing === */
.browser-frame {
    transition: all 0.3s ease;
}

.service-card:hover .browser-frame {
    stroke: #00f0ff;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.3));
}

.code-line {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .code-line.line1 {
    opacity: 1;
    transition-delay: 0.1s;
}

.service-card:hover .code-line.line2 {
    opacity: 1;
    transition-delay: 0.3s;
}

.service-card:hover .code-line.line3 {
    opacity: 1;
    transition-delay: 0.5s;
}

.cursor {
    opacity: 0;
}

.service-card:hover .cursor {
    animation: cursorBlink 0.8s step-end infinite 0.3s;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* === GRAPHIC DESIGN - Color Splashes === */
.color-splash {
    transform-origin: center;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .color-splash.c1 {
    transform: scale(1);
    transition-delay: 0s;
}

.service-card:hover .color-splash.c2 {
    transform: scale(1);
    transition-delay: 0.15s;
}

.service-card:hover .color-splash.c3 {
    transform: scale(1);
    transition-delay: 0.3s;
}

.pen,
.pen-tip {
    transition: all 0.4s ease;
}

.service-card:hover .pen {
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.5));
}

.draw-line {
    stroke-dashoffset: 50;
    transition: stroke-dashoffset 0.8s ease 0.5s;
}

.service-card:hover .draw-line {
    stroke-dashoffset: 0;
}


/* Premium Mesh Hero Styles */
.premium-hero {
    position: relative;
    padding: 180px 0 120px;
    background: #020205;
    overflow: hidden;
}

/* Simple Hero (No Gap) */
.page-hero-simple {
    padding: 150px 0 60px;
    background: radial-gradient(circle at 30% 20%, rgba(0, 129, 251, 0.15) 0%, transparent 50%),
        #020205;
    text-align: center;
}

.page-hero-simple .hero-title {
    margin-bottom: 15px;
}

.page-hero-simple .hero-subtitle {
    max-width: 600px;
    margin: 0 auto;
}


/* Meta Hero Mesh */
.hero-meta {
    background: radial-gradient(circle at 20% 30%, rgba(6, 104, 225, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
        #020205;
}

/* Google Hero Mesh */
.hero-google {
    background: radial-gradient(circle at 15% 25%, rgba(251, 188, 5, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(66, 133, 244, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(52, 168, 83, 0.1) 0%, transparent 40%),
        #020205;
}

/* Social Media Hero Mesh */
.hero-social {
    background: radial-gradient(circle at 20% 20%, rgba(220, 39, 67, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(188, 24, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 148, 51, 0.1) 0%, transparent 50%),
        #020205;
}

/* Web Design Hero Mesh */
.hero-web {
    background: radial-gradient(circle at 10% 10%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(0, 129, 251, 0.1) 0%, transparent 50%),
        #020205;
}

/* Graphic Design Hero Mesh */
.hero-graphic {
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(128, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(0, 255, 240, 0.1) 0%, transparent 50%),
        #020205;
}

.glass-content {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Keyframes */
@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

@keyframes signal-pulse {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    30% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Instagram-style Gradient Circle */
.insta-circle {
    stroke: url(#insta-grad);
    stroke-width: 4;
    fill: none;
}

.service-card:hover .insta-circle {
    animation: rotate-center 4s linear infinite;
    filter: drop-shadow(0 0 8px rgba(220, 39, 67, 0.4));
}

/* Browser/Web Animation */
.browser-top {
    fill: #1f1f1f;
}

.browser-content {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2.5;
}

.service-card:hover .browser-loading-bar {
    animation: loading-grow 2s infinite;
}

/* Keyframes */
@keyframes wave-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes rotate-center {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loading-grow {
    0% {
        transform: scaleX(0);
        opacity: 1;
    }

    70% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(1);
        opacity: 0;
    }
}

/* References */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.ref-card {
    background-color: var(--bg-card);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
}

.ref-card:hover {
    border-color: var(--secondary-color);
    color: var(--text-main);
}

/* Footer */
.footer {
    background-color: var(--bg-card);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Logo Specifics */
.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon .dot,
.footer-logo .logo-icon .pill {
    background-color: var(--text-main);
}

.footer-logo span {
    color: inherit;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-main);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #000;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

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

.footer-col ul li a,
.footer-col ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    font-size: 0.9rem;
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .nav-links {
        display: none;
        /* Add mobile menu logic later */
    }

    .header-cta .btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .glass-content {
        padding: 40px 20px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

.about-intro {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.mv-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mv-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stats-section {
    padding: 80px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.team-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.team-card:hover .team-img {
    filter: grayscale(0%);
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-socials a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}

.team-socials a:hover {
    color: var(--primary-color);
}

/* =====================================================
   NEW ENHANCEMENTS - Loader, Animations, Mobile Menu
   ===================================================== */

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 240, 255, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in.animated {
    opacity: 1;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delay for service cards */
.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card:nth-child(4) {
    transition-delay: 0.4s;
}

.service-card:nth-child(5) {
    transition-delay: 0.5s;
}

.service-card:nth-child(6) {
    transition-delay: 0.6s;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
}

.mobile-menu-links li {
    margin: 20px 0;
}

.mobile-menu-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Button Loading State */
.btn.loading {
    position: relative;
    pointer-events: none;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Enhanced Mobile Responsive */
@media (max-width: 900px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* =====================================================
   ANIMATED MARQUEE BANNER
   ===================================================== */

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
    padding: 30px 0;
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.03) 0%, transparent 50%, rgba(0, 240, 255, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-dark) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 25px;
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.marquee-item i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.marquee-item:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.5);
}

.marquee-item:hover i {
    transform: scale(1.2);
}

/* Meta Reklam Hesaplar覺 - Facebook Blue Gradient */
.meta-accounts-banner {
    background: linear-gradient(135deg, #0081fb 0%, #00c6ff 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 129, 251, 0.3);
}

.meta-accounts-banner:hover {
    box-shadow: 0 20px 50px rgba(0, 129, 251, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Meta Reklam Y繹netimi - Purple Gradient */
.meta-ads-banner {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}

.meta-ads-banner:hover {
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Google Ads - Google Colors */
.google-ads-banner {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.3);
}

.google-ads-banner:hover {
    box-shadow: 0 20px 50px rgba(66, 133, 244, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Sosyal Medya - Instagram Gradient */
.social-banner {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.3);
}

.social-banner:hover {
    box-shadow: 0 20px 50px rgba(220, 39, 67, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Web Tasar覺m - Cyan Neon */
.web-banner {
    background: linear-gradient(135deg, #00f0ff 0%, #0081fb 100%);
    color: #000;
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.3);
}

.web-banner:hover {
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Grafik Tasar覺m - Creative Colorful */
.graphic-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #ffe66d 100%);
    color: #000;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.3);
}

.graphic-banner:hover {
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Marquee Scroll Animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

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

/* Responsive Marquee */
@media (max-width: 900px) {
    .marquee-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .marquee-item i {
        font-size: 1.1rem;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 80px;
    }
}

@media (max-width: 600px) {
    .marquee-wrapper {
        margin-bottom: 30px;
        padding: 20px 0;
    }

    .marquee-item {
        padding: 10px 16px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .marquee-track {
        gap: 15px;
    }
}

/* =====================================================
   RESTORED MARQUEE ICONS
   ===================================================== */
.marquee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.meta-circle-mini::before {
    content: "\f534";
}

/* Infinity */
.target-mini::before {
    content: "\f05b";
}

/* Crosshairs */
.chart-mini::before {
    content: "\f0e7";
}

/* Bolt */
.heart-mini::before {
    content: "\f004";
}

/* Heart */
.browser-mini::before {
    content: "\f121";
}

/* Code */
.pen-mini::before {
    content: "\f5ad";
}

/* Pen Nib */

/* Specific Colors for Mini Icons */
.meta-circle-mini {
    background: linear-gradient(135deg, #1877f2, #00c6ff);
}

.target-mini {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.chart-mini {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.heart-mini {
    background: linear-gradient(135deg, #fcaf45, #e1306c);
}

.browser-mini {
    background: linear-gradient(135deg, #00f0ff, #0081fb);
}

.pen-mini {
    background: linear-gradient(135deg, #ff6b6b, #ffe66d);
    color: #000;
}

/* =====================================================
   CUSTOM CURSOR DOT
   ===================================================== */

.cursor-dot {
    position: fixed;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    will-change: left, top;
}

.cursor-dot.hover {
    width: 60px;
    /* Slightly larger to look like a spotlight */
    height: 60px;
    opacity: 0.1;
    /* Much more transparent */
    background-color: #fff;
    /* Ensure it stays white base */
    mix-blend-mode: difference;
    /* Ensure blend mode persists */
}

.cursor-dot.hidden {
    opacity: 0;
}

/* Hide cursor dot on mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot {
        display: none;
    }
}

/* =====================================================
   NEW ANIMATED SERVICE ICONS (SVG)
   ===================================================== */

.icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.icon-box .service-svg {
    width: 60%;
    /* Relative to 80px container -> 48px */
    height: 60%;
    transition: all 0.5s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-card:hover .service-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(0, 240, 255, 0.4));
    stroke-width: 2px;
}

/* =====================================================
   STYLISH NEON ICONS
   ===================================================== */

.icon-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.service-card:hover .icon-box {
    border-color: var(--primary-color) !important;
    background: rgba(0, 240, 255, 0.05) !important;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(0, 240, 255, 0.1) !important;
}

.service-svg {
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.2));
}

.service-card:hover .service-svg {
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8)) !important;
}

/* Specific Shadow Colors */
.service-card:nth-child(2):hover .service-svg {
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.8)) !important;
}

.service-card:nth-child(3):hover .service-svg {
    filter: drop-shadow(0 0 20px rgba(251, 188, 5, 0.8)) !important;
}

.service-card:nth-child(4):hover .service-svg {
    filter: drop-shadow(0 0 20px rgba(220, 39, 67, 0.8)) !important;
}

.service-card:nth-child(6):hover .service-svg {
    filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.8)) !important;
}
<link rel="stylesheet" href="style.css">

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Normalde gizli */
        /* Diğer mobil stil ayarlarınız... */
    }

    .nav-menu.active {
        display: block; /* Butona basınca görünür yap */
        /* Veya transform: translateX(0); gibi animasyonunuz varsa onu tetikleyin */
    }
}

/* Mobil Menü Başlangıç Hali (Gizli) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Sayfanın sağında dışarıda bekler */
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95); /* Koyu arka plan */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

/* Menü Aktif Olduğunda (JS ile eklenir) */
.mobile-menu.active {
    right: 0; /* İçeri kayar */
}

.mobile-toggle {
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}/* Mobil Menü Temel Stili */
#mobile-nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; /* Başlangıçta sağda gizli */
    width: 100% !important;
    height: 100vh !important;
    background: #000000 !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    transition: right 0.4s ease-in-out !important;
}

/* Menü Açıldığında Gelecek Klas */
#mobile-nav.active {
    right: 0 !important;
}

.mobile-menu-links {
    list-style: none !important;
    text-align: center !important;
    padding: 0 !important;
}

.mobile-menu-links li {
    margin: 20px 0 !important;
}

.mobile-menu-links a {
    color: white !important;
    text-decoration: none !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.mobile-menu-close {
    position: absolute !important;
    top: 30px !important;
    right: 30px !important;
    color: white !important;
    font-size: 35px !important;
}

/* MOBILE MENU */
.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    font-size: 28px;
    color: #fff;
    text-align: right;
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    padding: 60px 0 0;
}

.mobile-menu-links li {
    margin-bottom: 20px;
}

.mobile-menu-links a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
}

/* MOBILE BREAKPOINT */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}
/* --- Mobil Menü --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background-color: #111;
    color: white;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    text-align: right;
    font-size: 28px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: #ff6b6b;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
}

.mobile-menu-links li a:hover {
    color: #00f0ff;
}

/* Mobil toggle butonu hover */
.mobile-toggle i {
    transition: color 0.2s;
}

.mobile-toggle i:hover {
    color: #00f0ff;
}

/* Küçük ekranlar için navbar gizleme */
@media (max-width: 992px) {
    .navbar {
        display: none;
    }
    .header-cta {
        display: flex;
        align-items: center;
    }
}


