/*HEADER*/

.custom-button {
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #FDB827;
    text-decoration: none;
    /* Remove underline */
    color: black;
    /* Set text color to black */
    border: none;
    /* Remove border */
    cursor: pointer;
}


/*GRİ CONTAİNER*/

.grey-container {
    margin-top: 80px;
    position: relative;
    background: #F4F8FB;
    flex-shrink: 0;
}

.serviceCard {
    aspect-ratio: 2 / 1.5;
}

.grey-container h1 {
    padding-top: 2rem;
    padding-bottom: 1rem;
    color: var(--Neutrals-700, #344054);
    font-kerning: none;
    font-variant-numeric: slashed-zero;
    font-feature-settings: 'ss01'on, 'cv02'on;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

.grey-container p {
    padding-bottom: 2rem;
    text-align: center;
    color: var(--Neutrals-500, #707B93);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.otoekspertiz {
    width: 432px;
    height: 432px;
    flex-shrink: 0;
}

.button-container {
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.serviceCard {
    position: relative;
    overflow: hidden;
}

.cardOverlay {
    position: absolute;
    bottom: -5rem;
    left: 5%;
    width: 90%;
    background: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .4s;
}

.serviceCard:hover .cardOverlay {
    bottom: 17px;
    transition: .4s;
}

.serviceCardLink {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #152037;
}

.serviceCard:hover {
    transition: .4s;
}

@media only screen and (max-width: 1330px) {
    .cardOverlay {
        position: absolute;
        bottom: -90px;
        left: 5%;
        width: 90%;
        background: white;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: .4s;
    }
}

@media only screen and (max-width:991px) {
    .cardOverlay {
        bottom: 1rem;
    }
}

/* =========================================
   DİĞER SAYFALAR MASAÜSTÜ NAVBAR
========================================= */

.inner-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Logo */
.inner-navbar .navbar-brand img {
    max-height: 55px;
    width: auto;
}

/* Menü linkleri */
.inner-navbar .nav-link {
    color: #000 !important;
    font-weight: 500;
    transition: 0.3s;
}

/* Hover */
.inner-navbar .nav-link:hover {
    color: #FCC737 !important;
}

/* Aktif sayfa */
.inner-navbar .nav-link.active {
    color: #000 !important;
    font-weight: 700;
}

/* Menü aralıkları */
.inner-navbar .navbar-nav {
    gap: 10px;
}


/* =========================================
   MOBİL HEADER
========================================= */

.mobile-menu-btn {
    font-size: 30px;
    cursor: pointer;
    color: #000;
    line-height: 1;
}


/* =========================================
   RESPONSIVE
========================================= */

/* Masaüstünde mobil navbar gizle */
@media (min-width: 992px) {

    .mobile-navbar {
        display: none;
    }

}


/* Mobilde masaüstü navbar gizle */
@media (max-width: 991px) {

    .inner-navbar {
        display: none;
    }

    .mobile-navbar {
        display: block;
    }

}

.gallery-section {
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Başlık ve Açıklama */
.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0b1f3a;
    /* Koyu lacivert/mavi tonu */
    margin-bottom: 12px;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
}

/* Görsel Izgarası (Grid) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    aspect-ratio: 4 / 5;
    /* Görsellerin dikey oranını korur */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Görselin bozulmadan alanı doldurmasını sağlar */
    display: block;
    transition: transform 0.3s ease;
}

/* Hafif büyütme efekti (Opsiyonel) */
.gallery-item:hover img {
    transform: scale(1.03);
}

/* Mobil ve Tablet Uyumlu (Responsive) Ayarlar */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-title {
        font-size: 1.6rem;
    }

    .gallery-subtitle {
        font-size: 1rem;
    }
}

.container-fluid.markalar {
    background-color: #1E1E1C;
    padding: 40px;
}