body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #fcfcfc;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.site-title {
    color: #d14a70;
    font-size: 2.8em;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 700;
}

.site-slogan {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 0;
    font-style: italic;
}
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero-section {
    text-align: center;
    margin-bottom: 30px;
}

.responsive-img {
    max-width: 80%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    border: 15px solid #007237; 
    border-radius: 15px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px;
    transition: all 0.3s ease-in-out;
}
.responsive-img:hover {
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.sticky-header {
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.header-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 15px 20px;
}
.contact-button {
    font-size: 1em;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}
.contact-button:hover {
    background-color: #128C7E !important;
}
.about-us {
    padding: 40px 10px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.about-us h2, .section-padding h2 {
    font-size: 2.4em;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.about-us h2::after, .section-padding h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #d14a70;
    border-radius: 2px;
}

.about-us p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.card-carousel-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background-color: #f8f8f8;
}

.card-carousel-container {
    max-width: 1200px;
    width: 90%;
    overflow: hidden;
}

.card-carousel-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card-carousel-item {
    flex: 1 1 250px;
    max-width: 250px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card-carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.card-carousel-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.card-carousel-item h3 {
    padding: 15px 10px;
    font-size: 1.1em;
    color: #333;
    font-weight: 600;
}

.section-padding {
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 30px;
}
.section-padding p {
    font-size: 1.1em;
    color: #666;
    margin-top: 10px;
    margin-bottom: 30px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
    margin-top: 50px;
}
footer p {
    margin: 0;
}

.stats-section {
    height: auto;
    background-color: #333;
    color: #fff;
    padding: 0px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.stats-slogan {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 40px;
}

.stats-track {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.stats-item {
    flex: 1 1 180px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
}

.stats-icon {
    font-size: 3em;
    color: #fff;
    background-color: transparent;
    border-radius: 50%;
    padding: 5px;
    margin-bottom: 10px;
}

.stats-icon svg {
    width: 1.5em;
    height: 1.5em;
}

.stats-number {
    font-size: 2.8em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 1.1em;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0;
}
.stats-title.service {
    font-size: 2rem;
    font-weight: 600;
    color: #000000; /* Koyu Gri */
    text-align: center;
    margin-bottom: 0px;
    padding-top: 0px;
    display: block !important; 
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 992px) {
    .site-title {
        font-size: 2.2em;
    }
    .site-slogan {
        font-size: 1.1em;
    }
    .card-carousel-item {
        transform: scale(0.95);
    }
}

@media (max-width: 768px) {
    .site-title {
        font-size: 0.8em;
    }
    .site-slogan {
        font-size: 0.8em;
    }
    .about-us h2, .section-padding h2 {
        font-size: 2em;
    }
    .about-us p {
        font-size: 1em;
        text-align: left;
    }
    .contact-button {
        font-size: 0.9em;
        padding: 8px 16px;
    }
    
    .stats-section {
        padding: 0px 0px;
    }
    .stats-track {
        justify-content: space-evenly;
        gap: 10px 15px;
    }
    .stats-item {
        flex: 0 0 calc(50% - 30px);
    }
    .card-carousel-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    .stats-number {
        font-size: 1em; 
        margin-bottom: 0;
    }
    .stats-title {
        font-size: 1.1em;
    }
    .stats-label {
        font-size: 0.8em; 
    }
    .stats-icon {
        font-size: 1.2em; 
        padding: 0;
        margin-bottom: 0;
    }
}

/* 480px Altı (Mobile) */
@media (max-width: 480px) {
        .stats-section {
        padding: 0px 0px;
    }
    .main-header {
        padding: 15px 10px;
    }
    .header-content-inner {
        padding: 15px 15px;
        text-align: center;
    }
    .about-us, .section-padding {
        padding: 20px 10px;
    }
    .contact-button {
        font-size: 0.8em;
        padding: 6px 12px;
    }

    .card-carousel-item {
        flex: 0 0 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }

    .stats-item {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0 auto;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .stats-item:last-child {
        border-bottom: none;
    }
    .stats-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.2;
    }
    .stats-number {
        font-size: 2.2em;
        margin-bottom: 0;
    }
    .stats-label {
        font-size: 1em;
    }
        .stats-track {
        justify-content: space-evenly;
        gap: 10px 15px;
    }
    .stats-icon {
        font-size: 3em;
        padding: 0;
        margin-bottom: 0;
    }
        .stats-number {
        font-size: 1em; 
        margin-bottom: 0;
    }
    .stats-label {
        font-size: 1em;
    }
    .stats-icon {
        font-size: 1.2em; 
        padding: 0;
        margin-bottom: 0;
    }
}

@media (min-width: 769px) {
    .stats-track > .stats-item:not(:last-child) {
        position: relative;
    }
    .stats-track > .stats-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 20%;
        right: -15px;
        width: 1px;
        height: 60%;
        background-color: rgba(255, 255, 255, 0.2);
    }
}





















