/* 
 * Trakya Yazılım - Modern Stil Dosyası
 */

/* =============== GENEL STILLER =============== */
:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #818CF8;
    --secondary: #8B5CF6;
    --accent: #06B6D4;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --dark: #111827;
    --light: #F9FAFB;
    --white: #ffffff;
    --gray: #6B7280;
    --section-padding: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background-color: #0F172A;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.1px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: scroll-position;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--dark);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
}

.accent-text {
    color: var(--accent);
}

.highlight {
    color: var(--accent);
    font-weight: 500;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradientFlow 3s infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* =============== BUTTONS =============== */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::after {
    height: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border: none;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.3);
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
}

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

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    border: none;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

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

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* =============== NAVBAR =============== */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
}

.navbar.scrolled {
    position: fixed;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    animation: fadeInDown 0.5s forwards;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    display: block !important;
    height: 38px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.navbar-brand span {
    color: var(--accent);
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1.2rem;
    margin: 0 0.25rem;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    transition: all 0.3s ease;
    border-radius: 50%;
    opacity: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
}

/* =============== HERO SECTION =============== */
.hero-section {
    position: relative;
    min-height: unset;
    display: block;
    overflow: hidden;
    padding-top: 0;
    background-color: #0F172A;
    background-image: linear-gradient(to bottom, #0F172A, #1E293B);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    color: var(--white);
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tech-stack {
    margin-top: 3rem;
}

.tech-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 1rem;
    color: var(--white);
}

.tech-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.tech-icons i {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.tech-icons i:nth-child(1) { 
    color: #E44D26; /* HTML5 rengi */
    animation-delay: 0s; 
}

.tech-icons i:nth-child(2) { 
    color: #264DE4; /* CSS3 rengi */
    animation-delay: 0.5s; 
}

.tech-icons i:nth-child(3) { 
    color: #F7DF1E; /* JavaScript rengi */
    animation-delay: 1s; 
}

.tech-icons i:nth-child(4) { 
    color: #61DAFB; /* React rengi */
    animation-delay: 1.5s; 
}

.tech-icons i:nth-child(5) { 
    color: #777BB3; /* PHP rengi */
    animation-delay: 2s; 
}

.tech-icon {
    opacity: 0.7;
    transition: all 0.3s;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.tech-icon:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0.5;
}

.animated-bg::before, 
.animated-bg::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: -1;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 60%);
    animation: rotateBg 60s linear infinite;
}

.animated-bg::after {
    animation: rotateBg 40s linear infinite reverse;
    opacity: 0.7;
}

/* Gradient Overlay - Izgara yerine daha yumuşak bir geçiş */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    z-index: 0;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 3D Hero Object */
.hero-3d-object {
    position: relative;
    height: 500px;
    width: 100%;
}

#heroCanvas {
    width: 100%;
    height: 100%;
}

.floating-cube {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.cube1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.cube2 {
    top: 50%;
    left: 20%;
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}

.cube3 {
    top: 30%;
    right: 10%;
    width: 90px;
    height: 90px;
    animation-delay: 2s;
}

.cube4 {
    bottom: 20%;
    right: 20%;
    width: 70px;
    height: 70px;
    animation-delay: 3s;
}

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

/* Mouse Scroll */
.mouse-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.5s infinite;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Glow Effects */
.glow {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
}

.glow-1 {
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(79, 70, 229, 0.2);
}

.glow-2 {
    bottom: 0;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(6, 182, 212, 0.15);
}

/* =============== COUNTER SECTION =============== */
.counter-section {
    padding: 60px 0;
    position: relative;
    margin-top: 0;
    z-index: 2;
    background: rgba(255,255,255,.03);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.counter-row {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    padding: 50px 20px;
    backdrop-filter: blur(10px);
    color: #fff;
}

.counter-box {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-10px);
}

.counter-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-title {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

/* =============== SERVICES SECTION =============== */
.services-section {
    padding: var(--section-padding) 0;
    position: relative;
    background-color: #0F172A;
    background-image: linear-gradient(to bottom, #0F172A, #1E293B);
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-pre-title {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 20px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    backdrop-filter: blur(10px);
    color: #fff;
    contain: layout style paint;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translate3d(0, -10px, 0) translateZ(0);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.1);
    will-change: transform;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-list li {
    color: var(--white);
}

.service-card:hover .service-icon {
    background-color: rgba(255,255,255,0.2);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.service-card:hover .service-link {
    color: var(--white);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 32px;
    margin-bottom: 25px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
    position: relative;
    z-index: 2;
    transform: translateZ(0);
    will-change: transform;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(79, 70, 229, 0.2);
    border-radius: 20px;
    z-index: -1;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon::after {
    transform: scale(1.2);
    opacity: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    transition: all 0.3s ease;
}

.service-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.service-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.service-card:hover .service-list li::before {
    background: var(--white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    color: var(--white);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 0;
    opacity: 0.5;
}

.element-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-light);
    border-radius: 20px;
    transform: rotate(-15deg);
    animation: float 8s ease-in-out infinite;
}

.element-2 {
    top: 30%;
    right: 8%;
    width: 80px;
    height: 80px;
    background-color: rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.element-3 {
    bottom: 15%;
    left: 10%;
    width: 120px;
    height: 120px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.element-4 {
    bottom: 25%;
    right: 15%;
    width: 100px;
    height: 100px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 10px;
    transform: rotate(30deg);
    animation: float 9s ease-in-out infinite;
    animation-delay: 3s;
}

/* =============== PROJECTS SECTION =============== */
.projects-section {
    padding: var(--section-padding) 0;
    position: relative;
    color: var(--white);
    background-color: #0F172A;
    background-image: linear-gradient(to bottom, #1E293B, #0F172A);
    overflow: hidden;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background-color: var(--white);
    color: var(--primary);
}

.projects-container {
    position: relative;
    margin-bottom: 50px;
}

.swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 60px;
}

.project-card {
    background: linear-gradient(135deg, rgba(79,70,229,.15), rgba(16,185,129,.1));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,.3);
    height: 450px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s ease;
}

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

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.8), rgba(139, 92, 246, 0.8));
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
    border-radius: 15px;
}

.project-card:hover::before {
    opacity: 0.9;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 30px;
    transition: all 0.5s ease;
    z-index: 2;
    opacity: 0;
}

.project-card:hover .project-overlay {
    bottom: 0;
    opacity: 1;
}

.project-category {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.project-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Swiper Navigation & Pagination */
.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    width: 10px;
    height: 10px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--white);
}

/* 3D Tilt Effect */
.tilt-box {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.tilt-box-inner {
    transform: translateZ(20px);
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--white);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Decorative Elements */
.decoration {
    position: absolute;
    z-index: 0;
    opacity: 0.15;
}

.circle-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--white);
    border-radius: 50%;
}

.circle-2 {
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    border: 2px solid var(--white);
    border-radius: 50%;
}

.square {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px solid var(--white);
    border-radius: 20px;
}

/* =============== CTA SECTION =============== */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #4F46E5;
    background-image: linear-gradient(135deg, #4F46E5, #8B5CF6);
}

.cta-box {
    color: var(--white);
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--white);
}

.cta-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* =============== SIDE PANELS =============== */
/* Side panel styling was moved to header.php */

/* =============== ANIMATIONS =============== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.8s;
    transition-delay: 0.4s;
}

.delay-5 {
    animation-delay: 1s;
    transition-delay: 0.5s;
}

.delay-6 {
    animation-delay: 1.2s;
    transition-delay: 0.6s;
}

/* =============== RESPONSIVE STYLES =============== */
@media (max-width: 1199.98px) {
    :root {
        --section-padding: 100px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-3d-object {
        height: 450px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-box h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-3d-object {
        height: 400px;
        margin-top: 50px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons, .tech-icons {
        justify-content: center;
    }
    
    .counter-number {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .cta-box p {
        font-size: 1.1rem;
    }
    
    .side-panel {
        display: none; /* Hide side panels on medium and small screens */
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-3d-object {
        height: 300px;
    }
    
    .tech-icons {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-buttons {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .projects-filter {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .project-card {
        height: 400px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-3d-object {
        height: 250px;
    }
    
    .tech-icon {
        height: 30px;
    }
    
    .counter-icon {
        font-size: 30px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .project-card {
        height: 350px;
    }
    
    .project-overlay {
        padding: 20px;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
}