/* Navbar arka plan rengini değiştiren sınıf */
.bg-custom {
    background-color: #57cbce; /* İstediğiniz arka plan rengi */
}

/* Navbar öğelerinin renkleri */
.navbar-nav .nav-link {
    color: #333 !important; /* Ögelerin renkleri siyah olacak */
}

/* Mobil modda menü çubuğunun tam altına açılması */
@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

        .navbar-nav .nav-item {
            width: 100%;
            text-align: right; /* Sağ tarafa hizala */
        }

            .navbar-nav .nav-item .nav-link {
                width: 100%;
            }
}

@font-face {
    font-family: 'Param';
    src: url('../font/param/Param-ExtraBold.eot');
    src: url('../font/param/Param-ExtraBold.eot?#iefix') format('embedded-opentype'), url('../font/param/Param-ExtraBold.woff2') format('woff2'), url('../font/param/Param-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Param';
    src: url('../font/param/Param-Bold.eot');
    src: url('../font/param/Param-Bold.eot?#iefix') format('embedded-opentype'), url('../font/param/Param-Bold.woff2') format('woff2'), url('../font/param/Param-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Param';
    src: url('../font/param/Param-Regular.eot');
    src: url('../font/param/Param-Regular.eot?#iefix') format('embedded-opentype'), url('../font/param/Param-Regular.woff2') format('woff2'), url('../font/param/Param-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Param';
    src: url('../font/param/Param-Medium.eot');
    src: url('../font/param/Param-Medium.eot?#iefix') format('embedded-opentype'), url('../font/param/Param-Medium.woff2') format('woff2'), url('../font/param/Param-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Param';
    src: url('../font/param/Param-Light.eot');
    src: url('../font/param/Param-Light.eot?#iefix') format('embedded-opentype'), url('../font/param/Param-Light.woff2') format('woff2'), url('../font/param/Param-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Varsayılan site stilleri */
body {
    font-family: "Param";
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.what-we-do > .container > p {
    font-weight: 400;
    font-size: 1.125rem;
}

.what-we-do > .container > h3 {
    text-align: left;
    padding-left: 1.8em;
}

.what-we-do > .container > ul > li {
    text-align: left;
    font-size: 1.125rem;
    padding-left: 3em;
}


header {
    color: white;
    text-align: center;
}

    header img {
        max-width: 150px;
    }

nav {
    display: flex;
    justify-content: center;
    background-color: #333;
}

    nav a {
        color: #fff;
        padding: 14px 20px;
        text-decoration: none;
        text-align: center;
    }

        nav a:hover {
            background-color: #57cbce;
        }

.container {
    flex: 1;
    padding: 20px;
}

/* Anasayfa stilleri */
.welcome-text {
    background-color: #57cbce;
    color: #fff;
    padding: 50px 20px;
}

    .welcome-text h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

.about-text {
    background-color: #57cbce;
    color: #fff;
    padding: 50px 20px;
}

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1.2rem;
        line-height: 1.6;
    }

/* Hakkımızda kısmı */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-header {
    text-align: center;
    margin-bottom: 20px;
}

    .about-header h2 {
        font-size: 2.5rem;
        color: #57cbce;
    }

.about-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

    .about-content p {
        margin-bottom: 20px;
    }

    .about-content strong {
        font-size: 1.3rem;
        color: #444;
    }

    .about-content h3 {
        font-size: 1.5rem;
        color: #57cbce;
        margin-top: 30px;
        margin-bottom: 10px;
    }

        .about-content h3::after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background-color: #57cbce;
            margin-top: 5px;
        }

    .about-content p:last-child {
        margin-bottom: 0;
    }

.slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

    .slides img {
        width: 100%;
        height: auto;
    }

.navigation-manual {
    position: absolute;
    width: 100%;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid #57cbce;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

    .manual-btn:not(:last-child) {
        margin-right: 40px;
    }

    .manual-btn:hover {
        background: #57cbce;
    }


.what-we-do {
 
    color: black;
    display: flex;
    justify-content: center;
    align-items: center; /* Dikeyde ortalama için eklenen satır */
    position: relative;
    text-align: center; /* Metinlerin içeride ortalanmasını sağlar */
    padding: 50px 0; /* İsteğe bağlı, üst ve alt boşluk */
}

    .what-we-do h2, .what-we-do h3 {
        color: #00838F;
        padding: 25px 0;
    }

    .what-we-do p, .what-we-do ul {
        color: #424242;
    }

    .what-we-do ul {
        list-style-type: none;
        padding: 0;
    }

        .what-we-do ul li {
            margin-bottom: 10px;
        }

            .what-we-do ul li strong {
                color: #424242
            }

.picture-about {
    position: absolute;
    margin-top: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*İşlem sayısı Tasarım*/
.png-about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0; /* Görselin etrafında boşluk bırakmak için */
    /* İsteğe bağlı arka plan rengi */
}

    .png-about .img {
        margin: 0 15px; /* Her bir görsel arasına boşluk bırakmak için */
    }
/*Fotoğraf Altı*/
.picture-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .picture-about h2 {
        margin: 0;
    }

    .picture-about p {
        margin-top: 100px; /* Gerektiği kadar boşluk bırakabilirsiniz */
    }

.png-about img {
    object-fit: contain; /* Görseli konteyner içine sığdır ve oranları koru */
    object-position: center; /* Görseli yatayda ve dikeyde ortala */
    background-color: transparent; /* Saydam arka plan rengi */
    max-width: 100%; /* Görselin taşmasını önlemek için maksimum genişlik ayarı */
    height: auto; /* Yüksekliği otomatik ayarla */
}
/* Varsayılan site stilleri */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0; /* Görselin etrafında boşluk bırakmak için */
    /* İsteğe bağlı arka plan rengi */
}

    .image-section img {
        max-width: 100%;
        height: auto;
        border-radius: 50px; /* İsteğe bağlı, köşeleri yuvarlatmak için */
        object-fit: contain; /* Görseli konteyner içine sığdır ve oranları koru */
        object-position: center; /* Görseli yatayda ve dikeyde ortala */
    }

/* Mobil uyumluluk için media query */
@media (max-width: 768px) {
    .image-section img {
        height: auto; /* Oranları koru */
        max-width: 100%; /* Konteyner genişliğine sığacak şekilde */
        object-fit: contain; /* Görseli konteyner içine sığdır ve oranları koru */
        object-position: center; /* Görseli yatayda ve dikeyde ortala */
    }
}
/* Hero bölümü için düzenlemeler */
.hero-about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta gelmesini sağlar */
    padding: 50px 0; /* İsteğe bağlı, üst ve alt boşluk */
}

/* Fotoğraf altı açıklamalarını düzenleme */
.text-section {
    /*background-color: rgba(255, 255, 255, 0.8);*/ /* Yarı saydam beyaz arka plan */
    border: 1px solid #ddd; /* Hafif gri kenarlık */
    border-radius: 8px; /* Kenarları yuvarlat */
    padding: 15px 20px; /* İçerideki metin için boşluk */
    margin-top: 15px; /* Fotoğraf ile açıklama arasındaki boşluk */
    text-align: center; /* Metinlerin ortalanmasını sağlar */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}

    .text-section h2 {
        font-size: 2rem; /* Başlık boyutu */
        color: #424242; /* Başlık rengi */
        margin-bottom: 10px; /* Başlık altındaki boşluk */
    }

    .text-section p {
        font-size: 1.2rem; /* Açıklama metin boyutu */
        color: #333; /* Açıklama metin rengi */
        margin: 0; /* Açıklama altındaki boşluk kaldırıldı */
    }

/* Mobil cihazlar için medya sorgusu */
@media (max-width: 576px) {
    .text-section {
        padding: 10px 15px; /* Daha küçük ekranlar için padding ayarı */
    }

        .text-section h2 {
            font-size: 1.5rem; /* Daha küçük ekranlar için başlık boyutu */
        }

        .text-section p {
            font-size: 1rem; /* Daha küçük ekranlar için metin boyutu */
        }
}

.image-section {
    flex: 1;
    text-align: center; /* Görselin ortalanmasını sağlar */
}

    .image-section img {
        width: 100%;
        height: 300px; /* Görselin yüksekliğini belirleyin */
        object-fit: cover; /* Görselin kırpılmasını sağlar */
        object-position: center; /* Görselin ortalanmasını sağlar */
        border-radius: 8px; /* İsteğe bağlı, köşeleri yuvarlatmak için */
    }

.hero-section {
   
    color: #424242;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative; /* İçeriği konumlandırmak için */
}

.hero-about {
   
    color: #424242;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative; /* İçeriği konumlandırmak için */
}

/*Sıkça sorulan sorular*/
.faq-section {
    padding: 50px 0;
}

.accordion-button::after {
    margin-left: auto;
}

.accordion-item {
    border: none;
}


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 767.98px) {
    .hero-section .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        margin-top: 50px; /* Buton ile fotoğraf arasına boşluk koymak için */
    }
}

@media (min-width: 768px) {
    .hero-image {
        /*border-radius: 50%;*/ /* Yuvarlak resim */
        overflow: hidden;
        width: 200px;
        height: 400px;
        margin-bottom: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
        transition: transform 0.3s ease-in-out; /* Geçiş efekti */
        margin-left: 220px; /* Fotoğrafı sağa taşımak için */
        flex: 1 0 100%; /* Her bir hero-image'ın genişliğini %100 yap */
        max-width: 300px; /* Maksimum genişlik belirle */
        align-items: center;
    }
}

@media (min-width: 768px) {
    .hero-image {
        flex: 1 0 30%; /* Orta ve büyük ekranlarda genişliği %30 yap */
        align-items: center;
    }
}

.images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content h1 {
    margin-top: 20px; /* Başlığın yukarıdan boşluk bırakması için */
    margin-bottom: 10px; /* Başlığın aşağıdan boşluk bırakması için */
    color: #30302f;
}

.hero-content p {
    margin-bottom: 20px; /* Paragrafın aşağıdan boşluk bırakması için */
    color: #30302F;
}

.hero-content .btn-primary {
    background-color: #f4f4f4;
    border-color: #57cbce;
    color: rgba(0, 0, 0, 0.1);
}

    .hero-content .btn-primary:hover {
        background-color: #6e8a92;
        border-color: #5d91a0;
        color: white;
    }

.hero-description {
    margin-top: 10px; /* Fotoğraf ile metin arasındaki boşluk */
    font-size: 0.9rem; /* Metin boyutu */
    color: rgba(0, 0, 0, 0.1); /* Metin rengi */
    text-align: center;
}

footer {
    background-color: #343a40; /* Footer arka plan rengi */
    color: #ffffff; /* Metin rengi */
    padding: 20px 0; /* Üst ve alt boşluklar küçültüldü */
    font-size: 0.9rem; /* Yazı boyutu küçültüldü */
}

    footer h5 {
        color: #57cbce; /* Başlık rengi */
        margin-bottom: 10px; /* Başlık altı boşluk azaltıldı */
    }

    footer p,
    footer a {
        color: #adb5bd; /* Metin ve bağlantı rengi */
        margin: 0; /* Paragraf altı boşluk kaldırıldı */
        font-size: 0.9rem; /* Metin boyutu küçültüldü */
    }

        footer a:hover {
            color: #57cbce; /* Bağlantı hover rengi */
            text-decoration: none; /* Hover altında çizgi kaldırıldı */
        }

    footer .fab {
        font-size: 1rem; /* Simge boyutu küçültüldü */
        margin-right: 5px; /* Simge ve metin arası boşluk azaltıldı */
    }

    footer .list-unstyled {
        padding-left: 0; /* Liste sol boşluk kaldırıldı */
        margin: 0; /* Liste altı boşluk kaldırıldı */
    }

        footer .list-unstyled li {
            margin-bottom: 5px; /* Liste elemanları arası boşluk azaltıldı */
        }

    footer .text-muted {
        color: #6c757d !important; /* Metin rengi */
        margin: 0; /* Paragraf altı boşluk kaldırıldı */
    }

    footer .container {
        max-width: 960px; /* Konteyner genişliği */
        margin: 0 auto; /* Konteyner ortalanması */
    }

    footer .row {
        margin-bottom: 10px; /* Satır arası boşluk */
    }

    footer .col-md-4 {
        padding: 10px 15px; /* Kolon içi boşluk azaltıldı */
    }

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(87, 203, 206, 0.9); /* Saydam arka plan rengi */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1s ease-out;
}

.loading-logo {
    width: 150px;
    animation: spin 2s linear infinite, pulse 2s infinite;
}
/*Dalga Animasyonu*/
@keyframes wave-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200%;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    clip-path: polygon(0 100%, 50% 0, 100% 100%, 0% 100%);
    animation: wave-animation 3s ease-in-out infinite;
}
/* Hakkımızda kısmının arka plan rengini ve metin rengini değiştirmek için */
@media (max-width: 576px) {
    .about-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: black;
    }
}

.about-section .container {
    margin-bottom: 20px;
}

.about-section .images-container {
    display: flex;
    justify-content: center;
    gap: 10px; /* Fotoğraflar arasında boşluk */
}

.about-section .hero-description {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
}

/*Dalga Animasyonu*/
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}
/* Mobil cihazlar için medya sorguları */
@media (max-width: 576px) {
    .hero-section .hero-image, .about-section .hero-image {
        margin-bottom: 20px;
        text-align: center;
    }

        .hero-section .hero-image img, .about-section .hero-image img {
            width: 100%;
            height: auto;
        }

    .hero-description {
        text-align: center;
    }
}
