/**
 * ARAZ ALUMINUM® - Ana Stil Dosyası
 * © 2025 ARAZ ALUMINUM®
 *
 * @author AKASOFTY
 * @version 2.0
 */

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #059669;
    --dark-color: #111827;
    --light-gray: #f8f9fa;
    --text-color: #343a40;
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: #fff;
}

/* --- Header --- */
.header-main-section .navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.header-main .navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.header-main .navbar-nav .nav-link:hover,
.header-main .navbar-nav .nav-link.active {
    color: #fff;
}

.header-actions .btn {
    font-weight: 600;
}

/* --- Hakkımızda Bölümü Düzeltmesi --- */
.about-section {
    padding: 5rem 0;
}

.about-visual .row {
    align-items: center;
}

.about-visual img {
    height: auto;
    width: 100%;
    object-fit: cover;
}

/* Kayan istatistik kutusu için yeni stiller */
.floating-stat {
    position: absolute;
    bottom: -30px; /* Kutuyu biraz aşağı taşı */
    left: -30px;  /* Kutuyu biraz sola taşı */
    z-index: 2;
}

.stat-card {
    text-align: center;
    min-width: 150px; /* Genişliği artır */
    backdrop-filter: blur(5px);
    background-color: rgba(30, 58, 138, 0.9) !important; /* Yarı şeffaf arka plan */
    border: 2px solid rgba(255,255,255,0.5);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
}
.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
}


/* --- İstatistikler Bölümü Düzeltmesi --- */
.statistics-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.stat-item .stat-icon i {
    font-size: 2.5rem; /* İkonları küçült */
    margin-bottom: 1rem;
}

.stat-item .stat-number {
    font-size: 2.8rem; /* Rakamları büyüt */
}

.stat-item .stat-label {
    font-size: 1.1rem; /* Yazıyı büyüt */
    font-weight: 500;
}

/* --- Genel İyileştirmeler --- */
.section-title {
    font-weight: 700;
}
.section-subtitle {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
