

/* Navbar Stili */
.navbar {
    background: linear-gradient(90deg, #4a82b0, #1A4B7B); /* Açık mavi tonunda başlar, koyuya geçer */
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

    .navbar-brand span {
        font-size: 1.8rem;
        margin-left: 10px;
        font-weight: bold;
        color: #fff;
    }

.navbar-toggler {
    border: none;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .navbar-nav .nav-link::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #fff;
        bottom: 0;
        left: 0;
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.3s ease-in-out;
    }

.navbar-brand img {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Logo etrafına gölge ekleniyor */
}

.navbar-nav .nav-link:hover {
    color: #1A4B7B;
    transform: translateY(-3px); /* Hoverda link hafifçe yukarı kayar */
}

    .navbar-nav .nav-link:hover::before {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

.navbar-nav .nav-item:not(:last-child) {
    margin-right: 20px; /* Menü elemanları arasına boşluk ekleyelim */
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }

        .navbar-nav .nav-link {
            padding: 15px;
        }

    .navbar-brand span {
        font-size: 1.5rem; /* Mobilde font boyutunu küçültelim */
    }
}

/* Hero Section */
.hero {
    background: url('/images/index/resim8.jpg') no-repeat center center/cover; /* Resmi ekliyoruz */
    min-height: 100vh;
    position: relative;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.1); /* Daha hafif şeffaf bir overlay, görselin detaylarını görmek için */
        z-index: 1;
    }

    .hero h1 {
        font-size: 4rem; /* Başlık font boyutunu biraz büyütüyoruz */
        font-weight: 700;
        margin-top: 80px;
        z-index: 2;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6); /* Yazıya gölge ekliyoruz, daha belirgin olması için */
    }

    .hero p {
        font-size: 1.5rem;
        margin-bottom: 30px;
        z-index: 2;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); /* Açıklamaya da hafif bir gölge ekliyoruz */
    }

    .hero .btn-primary {
        background-color: #1A4B7B; /* Buton için vurgulu mavi renk */
        border: none;
        padding: 15px 35px;
        font-size: 1.5rem;
        border-radius: 50px;
        text-transform: uppercase;
        font-weight: 600;
        transition: all 0.3s ease;
        z-index: 2;
    }

        .hero .btn-primary:hover {
            background-color: #165a74; /* Hover durumunda koyu mavi */
            transform: translateY(-5px); /* Hoverda buton yukarı kayar */
        }




/* Hakkımızda Section */
.hakkimizda {
    background-color: #f9f9f9;
    color: #333;
}

    .hakkimizda h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #1A4B7B; /* Başlık için mavi tonları */
    }

    .hakkimizda .lead {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }

.counter-box {
    background-color: #fff;
    border: 2px solid #1A4B7B;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

    .counter-box h3 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1A4B7B;
    }

    .counter-box p {
        font-size: 1.1rem;
        color: #555;
    }

    .counter-box:hover {
        transform: translateY(-10px); /* Hoverda kutular yukarı kayar */
    }

@media (max-width: 768px) {
    .hakkimizda h2 {
        font-size: 2.5rem; /* Başlık boyutunu mobilde küçültüyoruz */
    }

    .hakkimizda .lead {
        font-size: 1rem;
    }

    .counter-box {
        padding: 15px;
    }

        .counter-box h3 {
            font-size: 2rem; /* Mobilde başlık font boyutunu küçültüyoruz */
        }

        .counter-box p {
            font-size: 1rem;
        }
}



/* Proje Görselleri Bölümü */
.projeler {
    background-color: #f9f9f9; /* Açık gri arka plan */
    padding-top: 60px;
    padding-bottom: 60px;
}

    .projeler h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #1A4B7B; /* Başlık rengi mavi */
    }

.project-box {
    position: relative;
    overflow: hidden; /* Görselin dışına taşmasını engelliyoruz */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}

    .project-box img {
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .project-box:hover img {
        transform: scale(1.1); /* Hoverda görseli hafifçe büyütüyoruz */
        filter: brightness(80%); /* Görselin parlaklığını azaltıyoruz */
    }

.project-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı şeffaf siyah arka plan */
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    width: 80%;
    z-index: 2; /* Başlık ve açıklama görselin önünde */
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.project-box:hover .project-info {
    opacity: 1;
    visibility: visible; /* Hoverda bilgi kutusunu görünür yapıyoruz */
}

.project-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 1rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .projeler h2 {
        font-size: 2.5rem; /* Mobilde başlık boyutunu küçültüyoruz */
    }

    .project-info {
        width: 90%; /* Mobilde bilgi kutusunun genişliğini artırıyoruz */
    }

        .project-info h4 {
            font-size: 1.2rem;
        }

        .project-info p {
            font-size: 0.9rem;
        }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem; /* Mobilde başlık boyutunu küçültüyoruz */
    }

    .hero p {
        font-size: 1.2rem; /* Açıklama yazısının boyutunu küçültüyoruz */
    }

    .hero .btn-primary {
        font-size: 1.2rem; /* Butonun font boyutunu küçültüyoruz */
        padding: 12px 30px;
    }
}

/* Proje Görselleri */
.projeler img {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Hizmetlerimiz Section */
.hizmetler {
    background-color: #f9f9f9;
}

    .hizmetler .card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .hizmetler .card:hover {
            transform: translateY(-10px);
        }

    .hizmetler .card-img-top {
        border-radius: 10px 10px 0 0;
        height: 200px;
        object-fit: cover;
    }

    .hizmetler .card-body {
        padding: 20px;
        text-align: center;
    }

    .hizmetler .card-title {
        font-weight: 600;
        font-size: 1.25rem;
    }

    .hizmetler .card-text {
        font-size: 1rem;
    }






/* Responsive Tasarım */
@media (max-width: 767px) {
    .minimal-iletisim h2 {
        font-size: 1.5rem;
    }

    .minimal-iletisim .lead {
        font-size: 1rem;
    }

    .minimal-iletisim ul li {
        font-size: 1rem;
    }
}


/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn {
        font-size: 1.1rem;
        padding: 10px 25px;
    }

    .hizmetler .card-img-top {
        height: 150px;
    }

    .hizmetler .card-title {
        font-size: 1.1rem;
    }

    .hizmetler .card-text {
        font-size: 0.9rem;
    }
}
