/* Sadece geniş ekranlarda hover ile aç */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0 ;
    }
} 
 
.navbar {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000; /* her şeyin üstünde olsun */
}

.navbar-toggler {
  margin-left: auto;  
}

/* Varsayılan bootstrap ikonunu tamamen kapat */
.navbar-toggler .navbar-toggler-icon {
  display: none !important;
}

/* Hamburger buton */
.custom-toggler {
  border: none;
  background: transparent;
  outline: none;
  padding: 5px;
  box-shadow: none !important;
}

/* Hamburger çizgileri */
.custom-toggler .toggler-icon {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  background-color: #045174; /* istediğin renk */
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Menü açılınca X işaretine dönüşsün */
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* Scroll sonrası tam renk */
.navbar.scrolled {
    background-color: #ffffff !important; /* Bootstrap Primary */
}

/* Menü link hover efekti */
.navbar .nav-link {
    transition: color 0.3s ease;
}
.navbar .nav-link:hover {
    color: #410bd6 !important;
}
/* Dropdown alt eleman hover rengi */
.dropdown-menu .dropdown-item:hover {
    background-color: #045174; /* Mavi ton */
    color: #fff; /* Yazı beyaz */
    transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar .nav-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.05rem;
}

   body#hakkimizda .hero {
      background: linear-gradient(
          #045174,
          rgba(13, 110, 253, 0.7)
        ),
        url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1470&q=80')
          no-repeat center center/cover;
      color: white;
      padding: 100px 0;
      text-align: center;
    }
    body#hakkimizda .section-title {
      font-weight: 700;
      margin-bottom: 2rem;
      color: #0d6efd;
    }
    /* Vizyon-misyon-değerler kartları */
    body#hakkimizda.card-icon {
      font-size: 3rem;
      color: #e6e9eb;
      margin-bottom: 15px;
    }
    /* Güven artırıcı bölüm kartları */
    body#hakkimizda.stats-card {
      border: none;
      text-align: center;
      padding: 30px;
      box-shadow: 0 4px 15px rgb(13 110 253 / 0.2);
      border-radius: 10px;
      transition: transform 0.3s ease;
      background-color: #fff;
      color: #045174;
    }
    body#hakkimizda.stats-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgb(13 110 253 / 0.35);
    }
    body#hakkimizda.stats-number {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .hero-slide {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}



    .hero-section {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
  position: relative;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}


#hizmethero.hero-section {
  height: 50vh;
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
  position: relative;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* Renkli overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
/*  background: rgba(13, 110, 253, 0.5); Bootstrap primary yarı saydam */
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 8rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #045174;
}

.btn-outline-light {
  border-color: white;
  color: white;
}

.btn-outline-light:hover {
  background-color: white;
  color: #0d6efd;
}

/* Responsive font */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

#ozellikler .card {
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ozellikler .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

#ozellikler .icon {
  font-size: 3rem;
}



/* Flip Card Stili */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 400px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.flip-card-front {
  background: #ffffff;
  color: #291e1e;
}

.flip-card-back {
  background: linear-gradient(135deg, #045174, #045174);
  color: white;
  transform: rotateY(180deg);
}

#vizyon-misyon .card-title {
  color: #0d6efd;
}

/* Kart ikonları */
#vizyon-misyon .card-icon {
  color: #0d6efd;
}

/* Kart metni */
#vizyon-misyon .card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}
.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}




/* Kartların görünümü */
#web .card {
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8f9fa, #eef3ff);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
#web .card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #045174,#d6c0f0 );
  color: #fff;
}

/* İkon kutusu */
#web .icon-box {
  width: 70px;
  height: 70px;
  background: #edfd10;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
#web .card:hover .icon-box {
  background: #198754;
  transform: rotate(15deg) scale(1.1);
}

/* Başlık alt çizgi animasyonu */
#web .card h5 {
  position: relative;
  display: inline-block;
}
#web .card h5::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  bottom: -6px;
  background: #fff;
  transition: width 0.3s ease;
}
#web .card:hover h5::after {
  width: 100%;
}

/* Hizmet Kartları Animasyonu */
#hizmetler .service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

#hizmetler .service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Fade-in animasyonu */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Genel Stil */
#iletisim {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

#iletisim h2 {
  font-size: 2.2rem;
  color: #045174;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

#iletisim h2::after {
  content: "";
  width: 60%;
  height: 3px;
  background: #045174;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 2px;
}

/* Kart */
#iletisim .shadow {
  transition: all 0.3s ease;
}

#iletisim .shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Linkler */
#iletisim .contact-link {
  color: #045174;
  text-decoration: none;
  transition: all 0.3s ease;
}

#iletisim .contact-link:hover {
  color: #045174;
  text-decoration: underline;
}

/* Sosyal Medya */
#iletisim .social-links {
  margin-top: 10px;
}

#iletisim .social-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  background: #f8f9fa;
  color: #045174;
  transition: all 0.3s ease;
}

#iletisim .social-icon:hover {
  background: #045174;
  color: #fff;
}

/* Harita */
#iletisim iframe {
  border-radius: 10px;
  filter: grayscale(20%) contrast(105%);
  transition: filter 0.3s ease;
}

#iletisim iframe:hover {
  filter: grayscale(0%) contrast(100%);
}

/* WhatsApp Sabit Buton */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.footer {
  font-size: 15px;
  line-height: 1.7;
  background: linear-gradient(135deg, #0d0d0d, #1a1a2e);
  color: #ddd;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-in-out;
}

.footer h5 {
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.footer .footer-link {
  color: #bbb;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.footer .footer-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background: #25D366;
  transition: width 0.3s;
}

.footer .footer-link:hover {
  color: #25D366;
  transform: translateX(3px);
}

.footer .footer-link:hover::after {
  width: 100%;
}

.footer .social-links a {
  display: inline-block;
  margin-right: 12px;
  font-size: 22px;
  color: #bbb;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  color: #25D366;
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(37, 211, 102, 0.7);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.2);
}

.footer p {
  color: #aaa;
}

/* Fade-in animasyonu */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#blog .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
}

#blog .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

#blog h2 {
  font-size: 2.2rem;
  color: #222;
}

#blog .btn-primary {
  background: #0d6efd;
  border: none;
  border-radius: 25px;
  padding: 5px 15px;
  transition: background 0.3s;
}

#blog .btn-primary:hover {
  background: #084298;
}

#blog .blog-detail {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}


#eimza-fiyatlandirma .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#eimza-fiyatlandirma .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#eimza-fiyatlandirma .btn {
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#eimza-fiyatlandirma .btn-success:hover,
#eimza-fiyatlandirma .btn-outline-success:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

/* Portal Girişi Butonu */
.portal-btn {
  background: linear-gradient(135deg, #045174, #007bff);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.portal-btn:hover {
  background: linear-gradient(135deg, #007bff, #045174);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.45);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.portal-btn i {
  font-size: 1.1rem;
}

/* Gerekli Yazılımlar Bölümü */
#yazilimlar h2 {
  position: relative;
}

#yazilimlar .icon-box {
  width: 70px;
  height: 70px;
  background: #045174;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

#yazilimlar .yazilim-card {
  border: none;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

#yazilimlar .yazilim-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

#yazilimlar .yazilim-card:hover .icon-box {
  background: #198754;
  transform: rotate(10deg) scale(1.1);
}

#yazilimlar .btn-primary {
  border-radius: 30px;
  background: linear-gradient(135deg, #045174, #0d6efd);
  border: none;
  transition: all 0.3s ease;
}

#yazilimlar .btn-primary:hover {
  background: linear-gradient(135deg, #0d6efd, #045174);
  transform: scale(1.05);
}

/* Referanslar Bölümü */
#referanslar h2 {
  
  position: relative;
  display: inline-block;
}

#referanslar p {
  font-size: 1.1rem;
  color: #d16c6c;
}

.ref-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
}

.ref-card img {
  max-height: 500px;
  object-fit: contain;
  filter: grayscale(25%) brightness(0.8);
  transition: all 0.3s ease;
}

.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.ref-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}

/* Çoklu Versiyon Kart */
.multi-version {
  padding: 35px 25px;
}

/* Başlık */
.software-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.software-desc {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 20px;
}

/* Versiyon Listesi */
.version-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Versiyon Butonları */
.version-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.85rem;
  background: #f8f9fa;
  border: 1px solid #e6e6e6;
  color: #333;
  transition: all 0.3s ease;
}


.version-list a i {
  margin-right: 8px;
}


.file-size {
  font-size: 0.75rem;
  color: #888;
}


.version-list a:hover {
  background: linear-gradient(135deg, #045174, #0d6efd);
  color: #fff;
  transform: translateX(6px);
  box-shadow: 0 6px 18px rgba(13,110,253,0.3);
}

.version-list a:hover .file-size {
  color: rgba(255,255,255,0.8);
}



.software-section {
  background: #f7f9fc;
}

.section-header h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #1b1f24;
}

.section-header p {
  color: #6c757d;
  margin-top: 10px;
}

/* Ana kutu */
.software-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  border: 1px solid #e9ecef;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.software-box:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Üst alan */
.software-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.software-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #045174, #0d6efd);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}

.software-top h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.software-top span {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Divider */
.software-divider {
  height: 1px;
  background: #e9ecef;
  margin: 25px 0;
}

/* Download list */
.software-downloads {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.software-downloads a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 10px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  text-decoration: none;
  color: #1b1f24;
  transition: all 0.3s ease;
}

.software-downloads a small {
  display: block;
  font-size: 0.75rem;
  color: #6c757d;
}

.software-downloads a i {
  font-size: 1.1rem;
  color: #045174;
}

.software-downloads a:hover {
  background: #ffffff;
  border-color: #0d6efd;
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(13,110,253,0.15);
}


.social-icon i {
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-icon i:hover {
  color: #E1306C;
  transform: scale(1.2);
}



.software-downloads a:hover i {
  color: #0d6efd;
}


/* Küçük ekran uyumu */
@media (max-width: 576px) {
  .ref-card {
    padding: 15px;
  }
  .ref-card img {
    max-height: 55px;
  }


  
}
