/* Arka Plan Izgarası (Grid) ve Genel Yapı */


/* 19 Yıllık Tecrübe Badge Tasarımı */
.experience-badge {
    display: inline-block;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    color: white;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}



/* Başlık Stili */
.hero-title,.hero-title-blue {
    font-weight: 800;
    color: #004a8c; /* Resimdeki koyu mavi tonu */
    font-size: 50px;
  	line-height: 67px;
  	font-family: Poppins;
}
.hero-title-blue {
    color: #068bdb; /* Resimdeki koyu mavi tonu */
  
}



/* Alt Metin Stili */
.hero-desc {
    color: #555;
    font-size: 1.1rem;
    max-width: 500px;
}

/* Breadcrumb Stili */
.home-breadcrumb {
    font-size: 0.9rem;
    font-weight: 600;
}
.home-breadcrumb a {
    color: #333;
    text-decoration: none;
}
.blue-breadcrumb {
    color: #00a8e8; /* Açık mavi tonu */
}
.img-fluid {
    max-width: 328px;
    height: auto;
}

/* Başlık Renkleri */
.section-title {
    font-weight: 800;
    color: #333;
}
.text-primary-blue {
    color: #0082cf;
}

/* Sidebar Menü Tasarımı */
.sidebar-menu {
    background: #fdfdfd;
}
.alt-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #666;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}
.alt-menu-item:hover {
    background: #e9ecef;
    color: #0082cf;
}
.alt-menu-item.active {
    background: linear-gradient(90deg, #0082cf, #002941);
    color: white;
}
.svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

/* Vizyon Kartı Gradient */
.card-vision {
    background: linear-gradient(90deg, #002941, #0082cf); /* Vizyon daha koyu tonda */
    border-radius: 15px;
    min-height: 180px;
}

/* Misyon Kartı Gradient */
.card-mission {
    background: linear-gradient(90deg, #0082cf, #58b5eb); /* Misyon verdiğin 2. kod */
    border-radius: 15px;
    min-height: 180px;
}

.card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
}
/* Ana Kapsayıcı */
.ni-service-wrapper {
    padding: 15px;
    transition: transform 0.3s ease;
}

/* Hover efekti (opsiyonel) */
.ni-service-wrapper:hover {
    transform: translateY(-5px);
}

/* İkon Alanı */
.ni-icon-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Metin İçerik Alanı */
.ni-content-box {
    padding-top: 5px;
}

/* Başlık Stili */
.ni-title {
    font-weight: 700;
    color: #003366; /* Koyu Lacivert */
    font-size: 20px;
  	line-height: 28px;
  	display: flex;
  	font-family: Poppins;
}

/* Vurgulu Mavi Kelime */
.ni-blue-highlight {
    color: #00a8e8; /* Açık Mavi */
}

/* Açıklama Metni */
.ni-description {
    font-size: 16px;
  	line-height: 24px;
  	font-family: Poppins;
  	color: rgba(51, 51, 51, 0.8);
}

/* Responsive: Mobil Cihazlarda İkonu Üste Almak İstersen */
@media (max-width: 576px) {
    .ni-service-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .ni-icon-container {
        margin-right: 0 !important;
        margin-bottom: 15px;
        width: 100%;
    }
}
