/* Genel Stiller */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar Stilleri */
.navbar {
    transition: all 0.3s ease;
    padding: 0 0;
    position: relative;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95) !important;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #208838;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobil menü için düzenlemeler */
@media (max-width: 991.98px) {
    .btn-primary {
        margin: 1rem 0 0 0 !important;
        width: 100%;
    }

    .visibility {
        display: none;
    }

    .navbar-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2px;
        padding-left: 0;
    }

    .nav-item {
        margin-bottom: 0; /* Alt boşlukları kaldır */
    }
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    padding: 180px 0 60px;
}

.initial {
    position: relative;
    text-align: center;
}

.initial-center {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
}

.initial-center h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700 !important;
}

.initial-center p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600 !important;
}

.initial img {
    width: 100%;
    height: 100vh;
    opacity: 0.5;
}

.sevgi-slider {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hizmetler Kartları */
.services .card {
    transition: transform 0.3s ease;
}

.services .card:hover {
    transform: translateY(-5px);
}

.services .card i {
    color: #208838;
}

/* Animasyonlar */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 100px 0 40px;
    }

    .hero img {
        margin-top: 2rem;
    }
}

/* Footer Stilleri */
footer {
    background-color: #343a40;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #208838 !important;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Sayfa Başlığı */
.page-header {
    background-size: cover;
    background-position: center;
}

/* Profil Bölümü */
.experience-badge {
    max-width: 130px;
    background: #208838;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-section img {
    border: 5px solid white;
}

/* Sertifikalar */
.certifications .card {
    transition: transform 0.3s ease;
}

.certifications .card:hover {
    transform: translateY(-5px);
}

/* Breadcrumb */
.breadcrumb-item a {
    color: #208838;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Hizmet Kartları */
.service-card {
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.service-card .list-unstyled li {
    position: relative;
    padding-left: 1.5rem;
}

.service-card .list-unstyled li i {
    position: absolute;
    left: 0;
    top: 5px;
}

/* Neden Biz Bölümü */
.feature {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
    background: rgba(0, 123, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* İletişim Sayfası Stilleri */
.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}

.contact-info a:hover {
    color: #208838 !important;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Form Stilleri */
.form-control:focus,
.form-select:focus {
    border-color: #208838;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.form-control,
.form-select {
    padding: 0.75rem;
}

/* Form Animasyonları */
.form-control,
.form-select {
    transition: all 0.3s ease;
}

.form-control:hover,
.form-select:hover {
    border-color: #208838;
}

/* Blog Sayfası Stilleri */
.blog-card {
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 100%;
    object-fit: cover;
}

.blog-meta small {
    font-size: 0.875rem;
}

/* Sidebar Stilleri */
.sidebar-widget {
    margin-bottom: 2rem;
}

.categories-list li a {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.categories-list li a:hover {
    color: #208838 !important;
    padding-left: 0.5rem;
}

.post-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.popular-posts .post-item {
    transition: all 0.3s ease;
}

.popular-posts .post-item:hover {
    transform: translateX(5px);
}

/* Pagination Stilleri */
.pagination .page-link {
    color: #208838;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 5px;
}

.pagination .page-item.active .page-link {
    background-color: #208838;
    color: white;
}

.pagination .page-link:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

/* Hero Image Stilleri */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: -20px;
    left: -20px;

    border-radius: 1rem;
    z-index: -1;
}

.hero-image img {
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-5px);
}

@media (max-width: 991.98px) {
    .hero-image {
        text-align: center;
        margin-top: 2rem;
    }

    .hero-image img {
        max-width: 400px !important;
        margin: 0 auto;
    }

    .margin-mobil {
        margin-top: 45px;
    }
}


.green-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* Çizginin kalınlığı */
    background-color: #208838;
    /* Logonuzdaki yeşil renk */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar-brand {
    position: relative;
}

.navbar-brand:hover .green-line {
    transform: scaleX(1);
}

.animation {
    width: 200px;
    height: auto;
    animation: animate 2s linear infinite;
}

@keyframes animate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.custom-green-btn {
    background-color: #208838;
    /* Bootstrap'in success rengi */
    color: #ffffff;
    /* Yazı rengi beyaz */
    border: none;
}

.custom-green-btn:hover {
    background-color: #218838;
    /* Hover durumunda biraz daha koyu yeşil */
}

.carousel-item img {
    width: 600px;
    height: 500px;
    /* Yüksekliği istediğiniz gibi ayarlayabilirsiniz */
    object-fit: cover;
    /* Resmi kutuya tam uydurur */
    margin: 0 auto;
    display: auto;
}

* Carousel container'ı merkezi hizalamak için */
 .carousel-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* İleri ve geri butonlarına stil */
.carousel-control-prev,
.carousel-control-next {
    z-index: 5;
    /* Butonları ön planda tutar */
}

/* İlgili düğmelere odaklanıldığında görsel efekt ekleyebiliriz */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    /* Buton ikonlarının görünürlüğünü artırır */
}