/* ===================================
   CSS Variables
   =================================== */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --dark-secondary: #1e293b;
    --dark-tertiary: #334155;
    --light-text: #f1f5f9;
    --gray-text: #94a3b8;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --box-shadow-hover: 0 20px 50px rgba(99, 102, 241, 0.4);
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 900px;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 3rem;
    transition: var(--transition);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border-radius: 60px;
}

.navbar.scrolled {
    top: 10px;
    padding: 0.8rem 2.5rem;
    background: rgba(30, 41, 59, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.logo img {
    height: 100px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 80px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    color: var(--light-text);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: var(--transition);
    border-radius: 3px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
}

.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    perspective: 1500px;
    position: relative;
}

.hero-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite, logoSpin 20s linear infinite, logoPulse 2s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.8)) drop-shadow(0 0 60px rgba(139, 92, 246, 0.6));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
    filter: blur(20px);
}

.hero-logo:hover {
    transform: scale(1.15) rotateZ(5deg);
    filter: drop-shadow(0 0 50px rgba(99, 102, 241, 1)) drop-shadow(0 0 80px rgba(236, 72, 153, 0.8));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(2deg);
    }

    66% {
        transform: translateY(-25px) rotate(-2deg);
    }
}

@keyframes logoSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.8)) drop-shadow(0 0 60px rgba(139, 92, 246, 0.6));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(139, 92, 246, 1)) drop-shadow(0 0 80px rgba(236, 72, 153, 0.8));
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(5deg);
    }

    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* Section Background Logos */
.floating-logos-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.floating-logo {
    position: absolute;
    width: 70px;
    height: 70px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(0%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: dynamicFloat 8s ease-in-out infinite;
    z-index: 1;
}

.floating-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.7), transparent 70%);
    animation: rgbGlow 6s ease-in-out infinite;
    z-index: -1;
    filter: blur(20px);
}

.floating-logo:nth-child(1) {
    animation-delay: 0s;
}

.floating-logo:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-logo:nth-child(3) {
    animation-delay: 1s;
}

.floating-logo:nth-child(4) {
    animation-delay: 1.5s;
}

.floating-logo:nth-child(5) {
    animation-delay: 2s;
}

.floating-logo:nth-child(6) {
    animation-delay: 2.5s;
}

.floating-logo:nth-child(7) {
    animation-delay: 3s;
}

.floating-logo:nth-child(8) {
    animation-delay: 3.5s;
}

.floating-logo:nth-child(9) {
    animation-delay: 4s;
}

.floating-logo:nth-child(10) {
    animation-delay: 0.3s;
}

.floating-logo:nth-child(11) {
    animation-delay: 1.2s;
}

.floating-logo:nth-child(12) {
    animation-delay: 2.7s;
}

.floating-logo:nth-child(13) {
    animation-delay: 0.8s;
}

.floating-logo:nth-child(14) {
    animation-delay: 1.8s;
}

.floating-logo:nth-child(15) {
    animation-delay: 2.3s;
}

.floating-logo:nth-child(16) {
    animation-delay: 3.2s;
}

.floating-logo:nth-child(17) {
    animation-delay: 0.6s;
}

.floating-logo:nth-child(18) {
    animation-delay: 1.4s;
}

.floating-logo:nth-child(19) {
    animation-delay: 2.9s;
}

.floating-logo:nth-child(20) {
    animation-delay: 3.8s;
}

.floating-logo:nth-child(21) {
    animation-delay: 0.4s;
}

.floating-logo:nth-child(22) {
    animation-delay: 1.6s;
}

.floating-logo:nth-child(23) {
    animation-delay: 2.1s;
}

.floating-logo:nth-child(24) {
    animation-delay: 3.4s;
}

.floating-logo:nth-child(25) {
    animation-delay: 0.9s;
}

.floating-logo:nth-child(26) {
    animation-delay: 1.3s;
}

.floating-logo:nth-child(27) {
    animation-delay: 2.6s;
}

.floating-logo:nth-child(28) {
    animation-delay: 3.6s;
}

.floating-logo:nth-child(29) {
    animation-delay: 0.7s;
}

.floating-logo:nth-child(30) {
    animation-delay: 2.4s;
}

.floating-logo:nth-child(1)::before {
    animation-delay: 0.5s;
}

.floating-logo:nth-child(2)::before {
    animation-delay: 1s;
}

.floating-logo:nth-child(3)::before {
    animation-delay: 1.5s;
}

.floating-logo:nth-child(4)::before {
    animation-delay: 2s;
}

.floating-logo:nth-child(5)::before {
    animation-delay: 2.5s;
}

.floating-logo:nth-child(6)::before {
    animation-delay: 3s;
}

.floating-logo:nth-child(7)::before {
    animation-delay: 3.5s;
}

.floating-logo:nth-child(8)::before {
    animation-delay: 4s;
}

.floating-logo:nth-child(9)::before {
    animation-delay: 4.5s;
}

.floating-logo:nth-child(10)::before {
    animation-delay: 0.8s;
}

.floating-logo:nth-child(11)::before {
    animation-delay: 1.7s;
}

.floating-logo:nth-child(12)::before {
    animation-delay: 3.2s;
}

.floating-logo:nth-child(13)::before {
    animation-delay: 1.3s;
}

.floating-logo:nth-child(14)::before {
    animation-delay: 2.3s;
}

.floating-logo:nth-child(15)::before {
    animation-delay: 2.8s;
}

.floating-logo:nth-child(16)::before {
    animation-delay: 3.7s;
}

.floating-logo:nth-child(17)::before {
    animation-delay: 1.1s;
}

.floating-logo:nth-child(18)::before {
    animation-delay: 1.9s;
}

.floating-logo:nth-child(19)::before {
    animation-delay: 3.4s;
}

.floating-logo:nth-child(20)::before {
    animation-delay: 4.3s;
}

.floating-logo:nth-child(21)::before {
    animation-delay: 0.9s;
}

.floating-logo:nth-child(22)::before {
    animation-delay: 2.1s;
}

.floating-logo:nth-child(23)::before {
    animation-delay: 2.6s;
}

.floating-logo:nth-child(24)::before {
    animation-delay: 3.9s;
}

.floating-logo:nth-child(25)::before {
    animation-delay: 1.4s;
}

.floating-logo:nth-child(26)::before {
    animation-delay: 1.8s;
}

.floating-logo:nth-child(27)::before {
    animation-delay: 3.1s;
}

.floating-logo:nth-child(28)::before {
    animation-delay: 4.1s;
}

.floating-logo:nth-child(29)::before {
    animation-delay: 1.2s;
}

.floating-logo:nth-child(30)::before {
    animation-delay: 2.9s;
}

.floating-logo:hover {
    opacity: 0.9;
    transform: scale(1.3) rotate(10deg);
}

.section-bg-logo::before {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(147, 197, 253, 0.6), rgba(196, 181, 253, 0.4), transparent 60%);
    animation: rgbGlow 8s ease-in-out infinite;
    z-index: -1;
    filter: blur(20px);
}



@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(5deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes dynamicFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) translateX(-10px) rotate(-5deg);
    }

    75% {
        transform: translateY(-25px) translateX(5px) rotate(3deg);
    }
}

@keyframes rgbGlow {
    0% {
        background: radial-gradient(circle, rgba(147, 197, 253, 0.6), rgba(191, 219, 254, 0.3), transparent 70%);
    }

    20% {
        background: radial-gradient(circle, rgba(167, 243, 208, 0.6), rgba(209, 250, 229, 0.3), transparent 70%);
    }

    40% {
        background: radial-gradient(circle, rgba(252, 211, 77, 0.6), rgba(254, 240, 138, 0.3), transparent 70%);
    }

    60% {
        background: radial-gradient(circle, rgba(251, 146, 60, 0.6), rgba(254, 215, 170, 0.3), transparent 70%);
    }

    80% {
        background: radial-gradient(circle, rgba(196, 181, 253, 0.6), rgba(221, 214, 254, 0.3), transparent 70%);
    }

    100% {
        background: radial-gradient(circle, rgba(147, 197, 253, 0.6), rgba(191, 219, 254, 0.3), transparent 70%);
    }
}



.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
.animate-fade-in {
    animation: fadeInUp 1s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* ===================================
   Sections
   =================================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--dark-secondary);
    position: relative;
    z-index: 1;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.services-row {
    display: grid;
    gap: 2rem;
}

.services-row:nth-child(1) {
    grid-template-columns: repeat(2, 1fr);
}

.services-row:nth-child(2) {
    grid-template-columns: repeat(3, 1fr);
}

.services-row:nth-child(3) {
    grid-template-columns: repeat(2, 1fr);
}

.service-card {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            rgba(99, 102, 241, 0.4),
            transparent 30%,
            transparent 60%,
            rgba(139, 92, 246, 0.4),
            transparent 90%);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--dark-bg);
    border-radius: 18px;
    z-index: 1;
}

.service-card>* {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.5),
        0 0 60px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 1;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.service-card p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.tech-stack {
    margin: 1.5rem 0;
    padding: 2rem 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-stack-slider {
    display: flex;
    animation: techSlide 25s linear infinite;
    gap: 2rem;
}

.tech-stack-slider:hover {
    animation-play-state: paused;
}

.tech-stack-static {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 1rem;
}

.tech-stack-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 255, 0.95));
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tech-stack-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #4facfe);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.tech-stack-item:hover::before {
    opacity: 1;
}

.tech-stack-item:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.tech-stack img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-stack-item:hover img {
    transform: scale(1.1);
}

@keyframes techSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.7rem 0;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

/* Target Audience */
.target-audience {
    background: var(--dark-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.target-audience h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.audience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 15px;
    transition: var(--transition);
    cursor: default;
}

.audience-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-5px);
}

.audience-item i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audience-item span {
    font-weight: 600;
    color: var(--light-text);
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--dark-secondary);
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-text);
    font-weight: 500;
}

/* SEO Accordion Styles */
.seo-accordion {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    background: var(--dark-bg);
    border: 1px solid var(--dark-tertiary);
}

.seo-accordion-toggle {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.seo-accordion-toggle:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
}

.seo-accordion-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.seo-accordion-icon.rotated {
    transform: rotate(180deg);
}

.seo-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 1.5rem;
}

.seo-accordion-content.open {
    max-height: 350px;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Custom Scrollbar for SEO Accordion */
.seo-accordion-content::-webkit-scrollbar {
    width: 8px;
}

.seo-accordion-content::-webkit-scrollbar-track {
    background: var(--dark-tertiary);
    border-radius: 4px;
}

.seo-accordion-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.seo-accordion-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.seo-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--dark-tertiary);
}

.seo-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.seo-section h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.seo-section p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.work-platforms {
    margin-top: 3rem;
}

.work-platforms h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.platform-link {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 300% 300%;
    border: 2px solid transparent;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
    animation: platformRgbGlow 8s ease infinite;
    overflow: hidden;
}

.platform-link::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: rgba(241, 245, 249, 0.95);
    border-radius: 13px;
    z-index: 1;
    transition: var(--transition);
}

.platform-link img {
    position: relative;
    z-index: 2;
}

.platform-link img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.platform-link img[alt="Armut"],
.platform-link img[alt="Fiverr"] {
    max-height: 95px;
}

.platform-link img[alt="Freelancer"] {
    max-height: 90px;
}

.platform-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
    animation: platformRgbGlow 3s ease infinite;
}

.platform-link:hover::before {
    background: rgba(255, 255, 255, 0.98);
}

.platform-link:hover img {
    transform: scale(1.08);
}

@keyframes platformRgbGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}

.contact-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-center-row {
    display: flex;
    justify-content: center;
}

.contact-center-row .contact-item {
    max-width: 450px;
    width: 100%;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-center {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.contact-center .contact-item {
    max-width: 400px;
    width: 100%;
}

/* Collapsible Mail Form Accordion */
.contact-form-accordion {
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
    background: var(--dark-secondary);
    box-shadow: var(--box-shadow);
}

.contact-form-toggle {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 50px;
}

.contact-form-toggle:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
}

.contact-form-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.contact-form-icon.rotated {
    transform: rotate(180deg);
}

.contact-form-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 2rem;
}

.contact-form-content.open {
    max-height: 500px;
    padding: 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--dark-secondary);
    border-radius: 15px;
    transition: var(--transition);
    align-items: center;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(99, 102, 241, 0.1);
}

/* Tıklanabilir iletişim kartları */
a.contact-item-clickable {
    cursor: pointer;
    text-decoration: none;
}

a.contact-item-clickable:hover {
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Discord için beyaz arka plan */
.contact-icon-discord {
    background: #ffffff !important;
}

/* Diğer logolar için gradient arka plan kaldır */
.contact-icon-gmail,
.contact-icon-outlook,
.contact-icon-phone,
.contact-icon-whatsapp,
.contact-icon-yandex {
    background: transparent !important;
}

.contact-details h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details a,
.contact-details span {
    color: var(--gray-text);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.social-links {
    padding: 1.5rem;
    background: var(--dark-secondary);
    border-radius: 15px;
}

.social-links h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(241, 245, 249, 0.95);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 8px;
}

.social-icons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.social-icons a:hover img {
    transform: scale(1.1);
}

/* ===================================
   Form Section
   =================================== */
.form-section {
    background: var(--dark-secondary);
    position: relative;
    z-index: 1;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem 1.5rem;
    background: var(--dark-bg);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    color: var(--light-text);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-text);
    opacity: 0.7;
}

.form-group select {
    color: var(--light-text);
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--light-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(30, 41, 59, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

/* Form Social Links */
.form-social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(99, 102, 241, 0.2);
}

.form-social-links h4 {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.form-social-icons a:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.form-social-icons a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: var(--transition);
}

.form-social-icons a:hover img {
    transform: scale(1.1);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--gray-text);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-text);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-contact-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-contact-center {
    display: flex;
    justify-content: center;
}

.footer-contact-row-mobile {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Desktop rows - now hidden for unified layout */
.footer-row-center-desktop,
.footer-row-bottom-desktop {
    display: none;
}

/* Mobile row for Gmail/Hotmail/Yandex - now always visible */
.footer-contact-row-mobile {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.footer-contact-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 150px;
}

.footer-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 15px;
    padding: 0.8rem;
    transition: var(--transition);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.footer-icon:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--gray-text);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.scroll-top.show {
    display: flex;
}

/* ===================================
   AOS Animations
   =================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet - Landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .services-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .platform-link {
        min-height: 100px;
        padding: 1.5rem;
    }

    .platform-link img {
        max-height: 60px;
    }
}

/* Tablet - Portrait */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .services-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .image-wrapper img {
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .contact-form-content.open {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - Large */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Hide background logos on mobile */
    .section-bg-logos {
        display: none;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero-logo img {
        width: 100%;
        height: 100%;
    }

    .navbar {
        top: 10px;
        width: calc(100% - 40px);
        padding: 0.8rem 1.5rem;
        left: 20px;
        transform: translateX(0);
    }

    .navbar.scrolled {
        top: 5px;
        padding: 0.6rem 1.2rem;
    }

    .logo img {
        height: 70px;
    }

    .nav-wrapper {
        gap: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        background: rgba(30, 41, 59, 0.98);
        width: calc(100% - 40px);
        max-width: 400px;
        padding: 2rem;
        padding-top: 1.5rem;
        gap: 1rem;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        border-radius: 20px;
        opacity: 0;
        pointer-events: none;
        z-index: 999;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .tech-stack {
        padding: 1.5rem 0.8rem;
    }

    .tech-stack-item {
        width: 70px;
        height: 70px;
        padding: 0.8rem;
    }

    .tech-stack-slider {
        gap: 1.5rem;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .audience-item {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .platform-link {
        padding: 1.5rem 1rem;
        min-height: 90px;
    }

    .platform-link img {
        max-height: 50px;
    }

    .platform-link img[alt="Armut"],
    .platform-link img[alt="Fiverr"] {
        max-height: 65px;
    }

    .platform-link img[alt="Freelancer"] {
        max-height: 60px;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .about-image {
        margin: 0 auto;
        max-width: 250px;
    }

    .image-wrapper {
        max-width: 250px;
    }

    .image-wrapper::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }

    .contact-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .contact-icon {
        width: 70px !important;
        height: 70px !important;
        flex-shrink: 0;
        padding: 14px;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-social-icons {
        gap: 0.8rem;
    }

    .form-social-icons a {
        width: 40px;
        height: 40px;
    }

    .form-social-icons a img {
        width: 24px;
        height: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-contact-icons {
        margin: 0 auto;
    }

    /* Footer contact mobile layout */
    .footer-contact-grid {
        max-width: 100%;
    }

    .footer-row-top {
        justify-content: center;
    }

    .footer-row-center-desktop,
    .footer-row-bottom-desktop {
        display: none;
    }

    .footer-contact-row-mobile {
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }
}

/* Mobile - Medium */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .logo img {
        height: 60px;
    }

    .about-image {
        max-width: 200px;
    }

    .image-wrapper {
        max-width: 200px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .tech-stack-item {
        width: 65px;
        height: 65px;
        padding: 0.7rem;
    }

    .tech-stack-slider {
        gap: 1.2rem;
    }

    .service-features li {
        font-size: 0.9rem;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .platform-link {
        padding: 1rem;
        min-height: 80px;
    }

    .platform-link img {
        max-height: 40px;
    }

    .platform-link img[alt="Armut"],
    .platform-link img[alt="Fiverr"] {
        max-height: 50px;
    }

    .platform-link img[alt="Freelancer"] {
        max-height: 45px;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .audience-item {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .audience-item i {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-icon {
        width: 65px !important;
        height: 65px !important;
        padding: 12px;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-details a,
    .contact-details span {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-icon {
        width: 45px;
        height: 45px;
    }
}

/* Hide floating tech logos on mobile */
@media (max-width: 768px) {
    .floating-logos-container {
        display: none;
    }
}

/* Mobile - Small */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        width: calc(100% - 30px);
        left: 15px;
        padding: 0.7rem 1rem;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .about-image {
        max-width: 180px;
    }

    .image-wrapper {
        max-width: 180px;
    }

    .image-wrapper::before {
        top: -8px;
        left: -8px;
        right: 8px;
        bottom: 8px;
    }

    .service-card {
        padding: 1.2rem;
    }

    .tech-stack {
        padding: 1.2rem 0.5rem;
    }

    .tech-stack-item {
        width: 60px;
        height: 60px;
        padding: 0.6rem;
    }

    .tech-stack-slider {
        gap: 1rem;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .platform-link {
        min-height: 70px;
        padding: 1rem 1.5rem;
    }

    .platform-link img {
        max-height: 45px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        width: 80px !important;
        height: 80px !important;
        padding: 16px;
    }

    .form-social-icons {
        gap: 0.6rem;
    }

    .form-social-icons a {
        width: 38px;
        height: 38px;
    }

    .form-social-icons a img {
        width: 22px;
        height: 22px;
    }

    .footer-contact-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 130px;
    }

    .footer-icon {
        width: 40px;
        height: 40px;
        padding: 0.4rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    section {
        padding: 50px 0;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}