* {
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
}

body {
    background-color: #ffffff;
    color: #010101;

}


.top-info {
    width: 60%;

}

.top-info span {
    font-size: 10px;
    color: #ffffff;
}

.top-info a {
    text-decoration: none;
    color: inherit;
}

.top-info-a:hover {
    color: #000000;
}

.top-info .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.top-info span {
    color: #111111;
}

.hero {
    width: 100%;
}

.mySwiper {
    width: 100%;
    height: 520px;
}

.swiper-button-next,
.swiper-button-prev {
    background: transparent !important;
    box-shadow: none !important;

}

.swiper-slide {
    position: relative;
    overflow: hidden;
}


.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.caption {
    position: absolute;
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    max-width: 520px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0, 06);
    background-color: transparent !important;
}

.caption h1,
.caption p {
    display: inline-block;
    background: transparent;
}

.btn {
    display: inline-block;
    background: #111827;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .mySwiper {
        height: 380px;
    }

    .caption h1 {
        font-size: 28px;
    }
}

header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px 0;
    /* boşluğu azaltır */
}

/* LOGO */
.logo img {
    height: 115px;
    width: auto;
    display: block;
}

/* MENU */
header nav {
    display: flex;
    /* linkleri yan yana dizer */
    align-items: center;
    gap: 18px;
    /* link aralığı */
}

header nav a {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
}

header nav a:hover {
    color: #010101;
}



.logo img {
    height: 120px;
    display: block;
    margin: 0 auto;
}

.logo {
    font-size: 8px;
    font-weight: bold;
    color: #222;
}

nav a {
    text-decoration: none;
    color: #000000;
    margin: 0 10px;
    font-size: 15px;
}


nav a :hover {
    color: #000;
}

footer {
    background: #ffffff;
    padding: 20px 10%;
    text-align: center;
    font-size: 14px;
    color: #777;
}

header {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 35px;
    flex-wrap: wrap;
    /* ekran daralırsa taşmasın */
}

header .logo {
    flex: 0 0 auto;
}

header nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0 !important;
    padding: 0 !important;
}

header nav a {
    display: inline-block !important;
    /* alt alta olmayı engeller */
    margin: 0 !important;
    /* eski marginleri sıfırlar */
    padding: 6px 10px;
    white-space: nowrap;
    /* kelime bölünmesin */
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 60px 10%;
    background: #f8f9fa;
}

.feature-box {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0, 05);
    transition: 0.03;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}

.feature-section {
    padding: 70px 10%;
    background: #f6f8fb;
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.10);
    border-color: rgba(0, 0, 0, 0.10);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* koyu modern */

    margin-bottom: 14px;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.20);
}

.feature-icon i {
    font-size: 20px;
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #111827;
}

.feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .feature-section {
        padding: 55px 6%;
    }

    .feature-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {
    .features {
        flex-direction: column;
    }
}

.split-section {
    padding: 70px 10%;
    background: #ffffff;
}

.split-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 38px;
    align-items: center;
}

.split-text h2 {
    margin: 0 0 12px;
    font-size: 44px;
    color: #111827;
    letter-spacing: -0.5px;
}

.split-text p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 620px;
}

.split-btn {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgb(15, 15, 15);
    /* buton rengi */
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: .2s;
}

.split-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
}

.split-media {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.split-media img {
    width: 100%;
    height: 420px;
    /* istersen 380 yap */
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .split-wrap {
        grid-template-columns: 1fr;
    }

    .split-text h2 {
        font-size: 38px;
    }

    .split-media img {
        height: 360px;
    }
}

@media (max-width: 600px) {
    .split-section {
        padding: 55px 6%;
    }

    .split-text h2 {
        font-size: 32px;
    }

    .split-media img {
        height: 300px;
    }
}

.markalar {
    background: #ffffff;
    padding: 50px 0;
    text-align: center;
    color: #7e7e7e;
    overflow: hidden;
    /* Dışarı taşan logoları gizle */
}

.slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    /* İçeriği hizalamak için */
}

.slide-track {
    display: flex;
    /* Logoların toplam genişliği (Logo sayısı * genişlik) */
    /* Örn: 10 logo varsa ve her biri 250px ise 2500px yapar */
    width: calc(250px * 20);
    animation: scroll 40s linear infinite;
    /* Tek bir animasyon bırakıldı */
    align-items: center;
    gap: 0;
    /* Boşlukları sıfırladık, logolar peş peşe gelir */
}

.slide-track img {
    width: 250px;
    /* Sabit genişlik vererek akıcılığı sağla */
    height: auto;
    max-height: 48px;
    object-fit: contain;
    /* Logoların bozulmasını önler */
    padding: 0 40px;
    /* Logolar arası nefes payı ama şerit kesilmez */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Toplam logonun yarısı kadar sola kaydır (Döngü için) */
        transform: translateX(calc(-250px * 10));
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 500px;
    /* yüksekliği buradan ayarlayabilirsin */
    overflow: hidden;


}

.hero img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    /* resmi kırpmadan düzgün yerleştirir */

}

.hero {
    position: relative;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.hero-text * {
    background: transparent !important;
    box-shadow: none !important;
}

.hero-text h1,
.hero-text p,
.hero-text a,
.hero-text button,
.hero-text div {
    background: transparent !important;
}

.carousel-caption,
.carousel-caption * {
    background: transparent !important;
    box-shadow: none !important;
}

.ozel-bilgisayar-about {
    padding: 80px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.card-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #0056b3;
    /* Logonuzdaki mavi tonu */
}

/* Orta Kartı Öne Çıkarmak İçin */
.info-card.highlight {
    background: linear-gradient(145deg, #ffffff, #f0f7ff);
    border-top: 5px solid #0056b3;
}

.card-icon {
    font-size: 45px;
    color: #0056b3;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.corporate-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #444;
    line-height: 1.8;
    font-size: 17px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
}

.services {
    display: flex;
    width: 100%;
}

.service-item {
    position: relative;
    overflow: hidden;
    /* Taşan kısmı gizler */
    flex: 1;
    height: 400px;
    cursor: pointer;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    /* Yumuşak büyüme */
}

.service-item:hover img {
    transform: scale(1.1);
    /* Mouse gelince büyür */
}

.service-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: transparent !important;
    color: rgb(254, 254, 254);
    font-size: 24px;
    font-weight: bold;
    z-index: 2;
}

/* Hafif karartma efekti */
.service-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(52, 50, 50, 0.4);
}

@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }

    .service-item {
        height: 250px;
    }
}

.team {
    text-align: center;
    padding: 80px 20px;
    background: #eef3f7;
}

.team-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    color: #2563eb;
    font-weight: 600;
}

.team h2 {
    font-size: 42px;
    margin: 15px 0;
    color: #1f2937;
}

.team p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #6b7280;
    line-height: 1.6;
}

/* Kart */

.team-card {
    max-width: 400px;
    margin: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.team-image img {
    width: 100%;
    display: block;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    margin: 10px 0 5px;
    font-size: 20px;
}

.team-info span {
    color: #111827;
    font-weight: 600;
    font-size: 14px;
}

.team-subtitle {
    position: relative;
    font-size: 13px;
    letter-spacing: 2px;
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
    padding: 0 20px;
}

/* Sol çizgi */
.team-subtitle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 2px;
    background: #2563eb;
    transform: translate(-100%, -50%);
}

/* Sağ çizgi */
.team-subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 40px;
    height: 2px;
    background: #2563eb;
    transform: translate(100%, -50%);
}


.team-card {
    transition: 0.4s;
}

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

.site-footer {
    background: #fff;
    padding: 50px 0;
    position: relative;
}

.footer-container {
    display: flex;
    flex-direction: column;
}

.footer-left {
    width: 100%;
}

.footer-right {
    width: 100%;
    margin-top: 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.footer-col {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Sol taraf */
.footer-brand img {
    height: 60px;
}

.footer-brand img {
    height: 85px !important;
    width: auto;
}

.footer-address {
    margin: 28px 0 18px;
    font-style: normal;
    line-height: 1.8;
    color: #111;
}



.footer-contact {
    display: flex;
    gap: 25px;
    /* mail ile telefon arası boşluk */
    align-items: center;
}

.footer-phone {
    color: #111;
    text-decoration: none;
}




/* Yukarı çık butonu */
.to-top {
    position: fixed;
    /* veya absolute */
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    cursor: pointer;
}

/* Mobil düzen */
@media (max-width: 768px) {
    .footer-left {
        flex-direction: column;
        gap: 15px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }

    .footer-nav {
        justify-content: start;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

/* logo + iletişim aynı satır */
.site-footer .footer-left {
    display: flex;
    align-items: center;
    justify-content: center;
    /* ortada dursun */
    gap: 28px;
    flex-wrap: wrap;
    /* sığmazsa alta geç */
}

/* logo */
.site-footer .footer-brand {
    display: flex;
    align-items: center;
}

.site-footer .footer-brand img {
    height: 220px;
    /* logo büyüklüğü */
    width: auto;
}

/* iletişim satırı */
.site-footer .footer-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* span ve linkler */
.site-footer .footer-contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.site-footer .footer-contact a {
    color: #333;
    text-decoration: none;
}

.site-footer .footer-contact a:hover {
    text-decoration: underline;
}

/* Hizmetlerimiz */
.services {
    background: #ffffff;
    padding: 80px 0;
}

.services-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.services-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
}



.services-title {
    font-size: 56px;
    margin: 10px 0 14px;
    color: #0f172a;
}



.services-desc {
    color: #5b6472;
    line-height: 1.9;
    font-size: 18px;
}

/* Kartlar */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border-radius: 22px;
    padding: 46px 34px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .08);
}

.service-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;

    background: transparent !important;

    font-size: 30px;

}

.service-card h3 {
    font-size: 28px;
    margin: 10px 0 14px;
    color: #0f172a;
}

.service-card p {
    color: #5b6472;
    line-height: 1.9;
    font-size: 16px;
}

.service-card {
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(7, 7, 7, 0.08) 50%,
            rgba(0, 0, 0, 0) 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

/* Responsive */
@media (max-width: 980px) {
    .services-title {
        font-size: 44px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 40px 26px;
    }
}

.stats-section {
    width: 100vw;
    /* tam ekran genişlik */
    margin-left: calc(-50vw + 50%);
    /* ortadaki container sınırını kırar */
    padding: 90px 0;
    background: linear-gradient(120deg, #1e4fff, #8b2bff);
    overflow: hidden;
}

.stats-container {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: #fff;
}

.stat-box {
    transition: 0.3s ease;
}

.stat-box i {
    font-size: 34px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-box h3 {
    font-size: 52px;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-box p {
    font-size: 18px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.stat-box:hover {
    transform: translateY(-8px);
}

/* Mobil */
@media (max-width: 900px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    display: flex;
    flex-direction: column;
    /* Her şeyi alt alta dizmesini sağlar */
    align-items: center;
    /* Yatayda TAM ORTALAR */
    justify-content: center;
    text-align: center;
    /* Yazıları ortalar */
    width: 100%;
    margin-top: 100px;
    /* Menüden aşağıya doğru boşluk bırakır */

}

/* Ana kapsayıcıyı yan yana diz */
.contact-wrap {
    display: flex;
    flex-direction: row;
    /* Başlık ve İletişim kutusunu YAN YANA getirir */
    align-items: center;
    /* Dikeyde (yukarı-aşağı) aynı hizaya sokar */
    justify-content: center;
    /* Tüm bloğu sayfanın ortasında toplar */
    gap: 60px;
    /* Sol taraf ile sağ taraf arasındaki boşluk */
    width: 100%;
    margin-top: 50px;
}

/* Sol taraf (Başlık kısmı) */
.contact-left {
    flex: 0 0 auto;
    /* İçeriği kadar yer kaplasın, kısıtlamayı kaldır */
    text-align: right;
    /* Yazıyı sağdaki bilgilere doğru yaslar */
}

/* Sağ taraf (Kırmızı mail ve telefonun olduğu yer) */
.contact-right {
    flex: 0 0 auto;
    /* İçeriği kadar yer kaplasın */
    display: flex;
    flex-direction: column;
    /* Mail ve telefonu kendi içinde alt alta tutar */
    align-items: flex-start;
    /* Bilgileri sola yaslar */
    gap: 20px;
    /* Mail ve telefon arasındaki boşluk */
}

/* Tipografi */
.contact-kicker {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #111827;
}

.contact-title {
    margin: 18px 0 14px;
    font-size: 40px;
    line-height: 1.08;
    color: #111827;
}

.contact-title span {
    text-decoration: underline;
}

.contact-desc {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
}

/* Sağ kutular */
.contact-box h4 {
    margin: 0 0 6px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #111827;
}

.contact-mail {
    margin: 0 0 18px;
    font-weight: 600;
    color: #ef4444;
}

.contact-phone {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #ef4444;
}

/* Mobil */
@media (max-width: 900px) {
    .contact-wrap {
        flex-direction: column;
        gap: 28px;
    }

    .contact-left,
    .contact-right {
        flex: 1 1 auto;
    }

    .contact-right {
        flex-direction: column;
        gap: 22px;
    }

    .contact-title {
        font-size: 36px;
    }
}

/* ÜST MENÜ */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    /* istersen sabit kalsın */
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 14px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    height: 42px;
    width: auto;
}

.menu {
    display: flex;
    gap: 26px;
}

.menu a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 500;
}

.header-right {
    text-align: right;
    line-height: 1.1;
}

.support-title {
    font-size: 12px;
    color: #0f172a;
    font-weight: 600;
}

.support-phone {
    color: #f97316;
    font-weight: 800;
}


.page-hero {
    width: 100%;
    height: 250px;
    position: relative;
    background-image: url("resim1.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-inner {
    position: relative;
    /* overlay üstüne çıkması için */
    width: min(1200px, 92%);
    margin: 0 auto;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.hero-kicker {
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
}

.hero-title {
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    margin: 0;
}

.content {
    background: #394b78;
    /* örnek (mavi alan) */
    padding: 80px 0;
}

.content-wrap {
    width: min(1200px, 92%);
    margin: 0 auto;
    color: #fff;
}

/* MOBİL */
@media (max-width: 900px) {
    .menu {
        display: none;
    }

    /* istersen burger menü yaparız */
    .page-hero {
        height: 240px;
    }

    .hero-title {
        font-size: 36px;
    }
}

.referans-section {
    margin-top: 0 !important;
    padding-top: 0 !important;


    text-align: center;
    padding: 80px 20px;
    background-color: #fcfcfc;
}

.referans-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.referans-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ref-title {
    font-size: 32px;
    color: #7a7c7f;
    /* Mavi tonu */
    font-weight: bold;
    margin-bottom: 10px;
}

.referans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.ref-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(50, 49, 49, 0.05);
    /* Yumuşak gölge */
    transition: transform 0.3s ease;
    /* Üzerine gelince büyüme efekti */
}

.ref-card:hover {
    transform: translateY(-10px);
    /* Üzerine gelince hafif yukarı kalkar */
    background: #ffffff;
}

.logo-box {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ref-card h3 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .referans-section {
        padding: 60px 15px 30px;
    }

    .referans-grid {
        gap: 20px;
        margin-top: 35px;
    }

    .ref-card {
        width: 45%;
        padding: 25px;
    }

    .ref-title {
        font-size: 28px;
    }
}

/* TELEFON */
@media (max-width: 768px) {
    .referans-section {
        padding: 40px 15px 25px;
    }

    .ref-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .referans-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 25px;
    }

    .ref-card {
        width: 100%;
        max-width: 95%;
        padding: 20px;
    }

    .logo-box {
        height: 90px;
        margin-bottom: 15px;
    }

    .ref-card h3 {
        font-size: 15px;
        line-height: 1.4;
    }
}

/* KÜÇÜK TELEFON */
@media (max-width: 480px) {
    .referans-section {
        padding: 30px 10px 20px;
    }

    .ref-title {
        font-size: 20px;
    }

    .ref-card {
        max-width: 100%;
        padding: 15px;
        border-radius: 12px;
    }

    .logo-box {
        height: 75px;
    }

    .ref-card h3 {
        font-size: 14px;
    }
}

.ref-card {
    /* Bu satırı animasyon için ekliyoruz */
    animation: fadeInUp 0.8s ease backwards;
}


.ref-card:nth-child(1) {
    animation-delay: 0.2s;
}

.ref-card:nth-child(2) {
    animation-delay: 0.4s;
}

.ref-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ref-card {
    /* Bu satırı animasyon için ekliyoruz */
    animation: fadeInUp 0.8s ease backwards;
}

/* Her kartın sırayla gelmesi için gecikme ekleyelim */
.ref-card:nth-child(1) {
    animation-delay: 0.2s;
}

.ref-card:nth-child(2) {
    animation-delay: 0.4s;
}

.ref-card:nth-child(3) {
    animation-delay: 0.6s;
}

.ref-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(to right, #606267, #10b981);

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;

}

/* Genel Ayarlar */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    max-width: 1100px;

    margin: 0 auto;
    padding: 20px;
}

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(135deg, #1a1e27 0%, #34495e 100%);
    color: white;

    /* ORTALAMA İÇİN KRİTİK AYARLAR */
    min-height: 400px;
    /* Başlık alanının yüksekliğini artırdık */
    display: flex;
    /* Esnek kutu modelini açtık */
    flex-direction: column;
    /* Yazıları alt alta dizdik */
    justify-content: center;
    /* Dikeyde (yukarıdan aşağıya) tam ortalar */
    align-items: center;
    /* Yatayda (sağdan sola) tam ortalar */
    text-align: center;
    /* Metinleri kendi içinde ortalar */

    padding: 20px;
    border-bottom: 5px solid #3498db;
}

.page-header h1 {
    font-size: 48px;
    /* Başlığı daha dikkat çekici yaptık */
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    /* Kurumsal bir hava için büyük harf */
}

.page-header p {
    font-size: 20px;
    max-width: 500px;
    /* Yazı çok yayılmasın, okunabilir kalsın */
    line-height: 1.6;
    opacity: 0.9;
}

/* Kartlar Grid */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 sütun */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Başlığın üzerine biraz bindiriyoruz */

/* Detay Kartları */
.detail-card {
    border-radius: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    background: #fff;
    padding: 55px;
    text-align: center;
}

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

.detail-icon {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.detail-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Liste Maddeleri */
.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

.detail-card li i {
    color: #27ae60;
    margin-right: 10px;
}

/* Hedefimiz Bölümü */
.our-goal {
    background: #fff;
    margin-top: 50px;
    padding: 40px;
    border-radius: 15px;
    border-left: 8px solid #3498db;
    text-align: center;
}

/* Cep telefonları için ayarlar (Ekran genişliği 768px'den küçükse) */
@media (max-width: 768px) {

    /* Başlık alanını mobilde biraz daha daraltıyoruz */
    .page-header {
        min-height: 250px;
        padding: 40px 15px;
    }

    .page-header h1 {
        font-size: 28px;
        /* Yazı boyutunu küçültüyoruz ki ekrana sığsın */
        line-height: 1.2;
    }

    .page-header p {
        font-size: 16px;
        padding: 0 10px;
    }

    /* Kartların başlığın üzerine binme efektini mobilde azaltıyoruz */
    .services-detail-grid {
        margin-top: -30px;
        padding: 0 15px;
        /* Kenarlardan boşluk bırakıyoruz */
        grid-template-columns: 1fr;
        /* Kartları yan yana değil, ALT ALTA diziyoruz */
        gap: 20px;
    }

    /* Kartların içindeki yazıların daha rahat okunması için */
    .detail-card {
        padding: 20px;
    }

    .detail-card h2 {
        font-size: 18px;
    }

    /* Hedefimiz bölümünü mobilde ortalıyoruz */
    .our-goal {
        margin: 30px 15px;
        padding: 25px;
        border-left: none;
        border-top: 5px solid #3498db;
        /* Çizgiyi yana değil üste alıyoruz */
    }
}

.detail-icon i {
    color: #111827;

}



.contact-banner {
    padding: 60px 0;
    background-color: #ffffff;
    /* Temiz beyaz arka plan */
    border-bottom: 1px solid #f0f0f0;
}

.contact-content {
    display: flex;
    justify-content: center;

    align-items: center;

    gap: 80px;

    max-width: 1200px;
    margin: 0 auto;
}

.contact-text .sub-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.contact-info {
    display: flex;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.info-item i {
    font-size: 24px;
    color: #e74c3c;

}

.info-item span {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: #999;
    letter-spacing: 1px;
}

.info-item strong {
    display: block;
    font-size: 16px;
    color: #333;
    transition: 0.3s;
}


.info-item:hover strong {
    color: #e74c3c;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .contact-info {
        flex-direction: column;
        gap: 25px;
    }
}

.map-section {
    width: 100%;
    margin: 30px 0;
}

.map-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}

@media (max-width: 600px) {
    .map-container {
        width: 95%;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-btn img {
    width: 60px;
    height: 60px;
}