/* Angelica Fontu ve Temel Renkler */
@font-face {
    font-family: 'Angelica';
    src: url('Angelica.ttf') format('truetype');
}

:root {
    --bg-main: #050810;
    --bg-alt: #0a0f1c;
    --card-bg: rgba(16, 24, 43, 0.4);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --accent-primary: #00f0ff;
    --accent-secondary: #0066ff;
    --glow-primary: rgba(0, 240, 255, 0.15);
    --glow-secondary: rgba(0, 102, 255, 0.15);
    --font-heading: 'Lora', serif;
    --font-body: 'Outfit', sans-serif;
}

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

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

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

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 102, 255, 0.5);
}

/* Cyber Grid Background (Only for Projects Section) */
#projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* Background Glow Effects */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    z-index: 0;
    pointer-events: none;
    animation: floatGlow 25s infinite alternate ease-in-out;
}

.glow-1 {
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(0, 102, 255, 0.15);
}

.glow-2 {
    top: 30%;
    right: -20%;
    width: 40vw;
    height: 40vw;
    background: rgba(0, 240, 255, 0.12);
    animation-delay: -8s;
}

.glow-3 {
    bottom: -20%;
    left: 10%;
    width: 60vw;
    height: 60vw;
    background: rgba(0, 102, 255, 0.15);
    animation-delay: -15s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5vw, 5vh) scale(1.1);
    }

    66% {
        transform: translate(-3vw, 8vh) scale(0.9);
    }

    100% {
        transform: translate(-5vw, -5vh) scale(1);
    }
}

/* Navigasyon */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

#navbar.scrolled {
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 15px 0;
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-placeholder {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-primary);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-sv-placeholder {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.4s ease;
}

.nav-sv-logo {
    height: 35px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1001;
}

.nav-sv-link:hover .nav-sv-logo {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

#navbar.scrolled .nav-sv-placeholder {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

/* Hero Düzeni */
.hero {
    height: 100vh;
    background-image: url('altay.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 8, 16, 0.95) 0%, rgba(5, 8, 16, 0.7) 50%, rgba(5, 8, 16, 0.95) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-side {
    flex: 1;
    max-width: 650px;
}

.hero-logo-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    perspective: 1000px;
}

.hero-title-cyrillic {
    font-family: 'Angelica', serif;
    font-size: 6rem;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.8), 0 0 60px rgba(0, 240, 255, 0.4);
    animation: glowText 3s infinite alternate;
}

@keyframes glowText {
    0% {
        text-shadow: 0 0 20px rgba(0, 102, 255, 0.6), 0 0 40px rgba(0, 240, 255, 0.2);
    }

    100% {
        text-shadow: 0 0 40px rgba(0, 102, 255, 0.9), 0 0 80px rgba(0, 240, 255, 0.6);
    }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-main);
    font-weight: 300;
    line-height: 1.9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-large-logo {
    width: 380px;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.4));
    transition: transform 0.1s ease-out;
    /* JavaScript için */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
        filter: drop-shadow(0 0 45px rgba(0, 240, 255, 0.6));
    }

    100% {
        transform: translateY(0px);
    }
}

/* Başarılarımız (Success Slider) */
.success-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    padding: 20px 5px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
}

.success-slider-container::-webkit-scrollbar {
    display: none;
}

.success-slider-container:active {
    cursor: grabbing;
}

.success-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: max-content;
    padding-bottom: 20px;
}

.success-item {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    width: 500px;
    flex-shrink: 0;
    text-decoration: none;
    display: block;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.success-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

.success-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.5);
}

.success-item:hover::after {
    opacity: 1;
    transform: scale(2.5);
}

.success-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

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

.success-item:hover .success-img {
    transform: scale(1.05);
}

.success-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.success-date {
    color: var(--accent-primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 1px;
}

.success-content h4 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.success-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Stats Alanı */
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
    /* Haberlerden sonra boşluk bırakır */
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 160px;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow-primary);
    border-color: rgba(0, 240, 255, 0.4);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 5px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* Birimler ve Ortak Section Stilleri */
.section {
    padding: 80px 40px;
    position: relative;
    z-index: 2;
    scroll-margin-top: 100px;
}

.alt-bg {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 23, 0.4) 15%, rgba(10, 14, 23, 0.4) 85%, transparent 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 70px;
    text-align: center;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
    border-radius: 2px;
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.unit-card {
    background: var(--card-bg);
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.unit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.unit-card:hover {
    transform: translateY(-12px);
    background: rgba(22, 32, 56, 0.7);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(0, 240, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.unit-card:hover::before {
    left: 100%;
}

.unit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.unit-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Projeler Horizontal Slider */
.projects-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    padding: 20px 5px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    cursor: grab;
}

.projects-slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.projects-slider-container:active {
    cursor: grabbing;
}

.projects-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: max-content;
    padding-bottom: 15px;
    /* prevent hover shadow clip */
}

.project-item {
    background: linear-gradient(145deg, rgba(20, 30, 50, 0.5) 0%, rgba(10, 15, 28, 0.8) 100%);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 450px;
    flex-shrink: 0;
    text-decoration: none;
    display: block;
}

.project-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: 0.4s;
}

.project-item:hover {
    transform: scale(1.03);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.2);
}

.project-item:hover::after {
    opacity: 1;
    transform: scale(2);
}

.project-item h4 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.project-item p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.project-github-icon {
    position: absolute;
    bottom: 30px;
    right: 35px;
    font-size: 2.2rem;
    color: var(--text-muted);
    opacity: 0.3;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-item:hover .project-github-icon {
    opacity: 1;
    color: #fff;
    transform: scale(1.15) rotate(8deg) translateY(-5px);
    filter: drop-shadow(0 0 20px var(--accent-primary));
}

/* Genel Butonlar */
.btn-primary {
    display: inline-block;
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid var(--accent-primary);
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 40px;
}

.btn-primary:hover {
    background: var(--accent-primary);
    color: #050810;
    box-shadow: 0 0 20px var(--glow-primary);
}

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

/* Blog Vertical Slider */
.blog-slider-container {
    max-width: 850px;
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    height: 330px;
    /* ~3 öğe yüksekliği */
    padding: 10px 5px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
}

.blog-slider-container::-webkit-scrollbar {
    display: none;
}

.blog-slider-container:active {
    cursor: grabbing;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    padding: 25px 35px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.blog-link:hover {
    background: rgba(22, 32, 56, 0.9);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-date {
    color: var(--accent-primary);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    min-width: 140px;
    position: relative;
    z-index: 2;
}

.blog-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    flex: 1;
    margin-left: 20px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    text-align: center;
    padding: 70px 0 40px;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.6) 0%, rgba(3, 5, 10, 0.95) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    margin-bottom: 45px;
}

.footer-partner-logo {
    height: 45px;
    opacity: 0.85;
    transition: all 0.4s ease;
    filter: none;
}

.footer-partner-logo:hover {
    opacity: 1;
    transform: scale(1.10);
}

.footer-altay-logo {
    height: 55px;
    opacity: 0.85;
    transition: all 0.4s ease;
    filter: none;
}

.footer-altay-logo:hover {
    opacity: 1;
    transform: scale(1.10);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: all 0.4s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glow-color, rgba(0, 240, 255, 0.2));
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

.social-icons a i {
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.social-icons a:hover {
    color: #fff;
    box-shadow: 0 0 20px var(--glow-color, rgba(0, 240, 255, 0.6));
    border-color: var(--glow-color, rgba(0, 240, 255, 0.6));
    transform: translateY(-5px);
}

.social-icons a:hover::before {
    opacity: 1;
}

/* Specific Colors */
.social-x {
    --glow-color: rgba(255, 255, 255, 0.6);
}

.social-linkedin {
    --glow-color: rgba(0, 119, 181, 0.6);
}

.social-github {
    --glow-color: rgba(150, 150, 150, 0.6);
}

.social-instagram {
    --glow-color: rgba(225, 48, 108, 0.6);
}

.social-telegram {
    --glow-color: rgba(0, 136, 204, 0.6);
}

footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Animasyonlar */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    /* Navbar ve Hamburger */
    .nav-container { padding: 0 20px; }
    .hamburger { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(5, 8, 16, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 1000;
        border-left: 1px solid rgba(0, 240, 255, 0.1);
    }
    
    .nav-links.active { right: 0; }
    .nav-sv-placeholder { display: none; }
    
    /* Hero */
    .hero-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-text-side { margin-bottom: 50px; max-width: 100%; }
    .hero-title-cyrillic { font-size: 4rem; }
    .hero-description { font-size: 1.05rem; padding: 20px; text-align: left; }
    .hero-large-logo { width: 240px; }
    
    /* Ortak ve Gridler */
    .section { padding: 60px 20px; }
    .section-title { font-size: 2.2rem; margin-bottom: 50px; }
    
    .stats-container { gap: 20px; }
    .stat-item { min-width: 45%; padding: 20px; }
    .stat-number { font-size: 2.5rem; }
    
    .units-grid { grid-template-columns: 1fr; gap: 20px; }
    .unit-card { padding: 30px 20px; }
    
    .success-wrapper, .projects-wrapper { gap: 15px; }
    .success-item, .project-item { width: 280px; padding: 25px; }
    
    .blog-link { flex-direction: column; align-items: flex-start; gap: 15px; padding: 20px; }
    .blog-title { margin-left: 0; font-size: 1.1rem; }
    .blog-slider-container { height: 400px; }
    
    /* Footer */
    .footer-logos { flex-direction: column; gap: 30px; }
    .footer-partner-logo, .footer-altay-logo { height: 40px; }
}

@media (max-width: 480px) {
    .hero-title-cyrillic { font-size: 3rem; }
    .stat-item { min-width: 100%; }
    .success-item, .project-item { width: 260px; }
}