/* Genel Ayarlar */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

/* Navbar */
.navbar {
  background-color: #ffffff !important;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 80px;
}

.navbar .nav-link {
  color: #212529 !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #0d6efd !important;
}

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #0d6efd;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* önemli */
  justify-content: space-between;
  background-color: #ffffff;
  padding: 80px 5%;
  position: relative;
  min-height: 500px; /* sabit yükseklik verirsen resim zıplamaz */
}

.hero-left, .hero-right {
  flex: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #e6f0ff;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-left {
  


  position: relative;
  z-index: 2;
  max-width: 600px;
}



.hero-left h1 {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 20px;
}

.hero .d-flex {
  justify-content: center; /* Butonları yatayda ortalar */
  gap: 20px; /* Butonlar arasındaki mesafeyi arttırır */
}
.hero .btn {
  padding: 12px 30px; /* Butonların içeriğine biraz daha padding ekleyelim */
  font-size: 1.1em; /* Buton yazı boyutunu biraz büyütelim */
  border-radius: 5px;
}
.hero .btn-primary {
  background-color: #003366; /* Mavi tonlarında buton rengi */
  border: none;
}

.hero .btn-outline-success {
  border-color: #28a745; /* Başka bir renk kullanarak farklılaştırdık */
  color: #28a745;
}

.hero .btn:hover {
  opacity: 0.9; /* Hover efekti ekleyelim */
}

.slogan-slider {
  font-size: 1.25rem;
  font-weight: 500;
  min-height: 40px;
  margin: 20px 0;
  transition: opacity 0.5s ease;
}

.slogan-text {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.hero-right {
  position: relative;
  z-index: 2;
  flex: 1;
  padding-left: 40px;
}

 
.hero-right img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}


/* Butonlar */
.btn-primary {
  background-color: #0d6efd;
  border: none;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

.btn-outline-success {
  border: 2px solid #198754;
  color: #198754;
  background-color: transparent;
}

.btn-outline-success:hover {
  background-color: #198754;
  color: #fff;
}

/* Footer */
footer {
  background-color: #212529;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2rem;
}

footer a:hover {
  color: #0d6efd;
}

/* Genel servis kartları stil */
.services {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 100px 0;
  flex-wrap: wrap;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  width: 30%;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, font-size 0.3s;
  opacity: 0;
  transform: translateY(50px); /* Başlangıçta aşağıda */
}

/* Hover efekti */
.service-card:hover {
  transform: translateY(-10px); /* Yukarı kayma */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
}

/* İkon stili */
.service-card i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 20px;
  transition: color 0.3s;
}

/* İkon hover etkisi */
.service-card:hover i {
  color: #0056b3;
}

/* Yazı stilini belirleyelim */
.service-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
  color: #333;
}

.service-card p {
  font-size: 16px;
  color: #666;
}

/* Animasyon efekti */
.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobil uyumlu */
@media (max-width: 768px) {
  .service-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .service-card {
    width: 100%;
  }
}


/*seminer takvimi */
.seminar-takvimi {
  padding: 60px 0;
  background: linear-gradient(135deg, #cce6ff, #e6f7ff); /* Hafif mavi ve beyaz karışımı gradyan */
  color: #000; /* Yazı rengi siyah */
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Gölgeyi biraz daha arttırdık */
  text-align: center;
}

.seminar-takvimi h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: #003366; /* Başlık rengi mavi tonunda */
}

.seminar-takvimi p {
  font-size: 1.2em;
  margin-bottom: 30px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.8); /* Yazı rengi siyah ve biraz daha şeffaf */
}

.no-events {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid #ffffff;
  margin-top: 30px;
}

.no-events p {
  font-size: 1.4em;
  color: #000; /* Yazı rengi siyah */
  margin-bottom: 20px;
  font-weight: bold;
}

.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.dot {
  width: 20px;
  height: 20px;
  margin: 0 8px;
  border-radius: 50%;
  background-color: #000; /* Noktalar siyah olacak */
  animation: bounce 1.5s infinite ease-in-out;
}

.dot-1 {
  animation-delay: 0s;
}

.dot-2 {
  animation-delay: 0.3s;
}

.dot-3 {
  animation-delay: 0.6s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.seminar-list {
  margin-top: 40px;
  text-align: center;
}

.seminar-list p {
  font-size: 1.3em;
  color: #000; /* Yazı rengi siyah */
  font-weight: bold;
}

.icon-box {
  display: flex;
  justify-content: center; /* Ortalandı */
  align-items: center;
  gap: 20px; /* Aralarındaki mesafeyi açtık */
  margin-top: 30px;
  margin-bottom: 40px;
}

.icon-box .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #003366;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.5em; /* İkon boyutunu büyüttük */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.icon-box .icon:hover {
  transform: scale(1.1);
  background-color: #00509E;
}

.icon-box .icon i {
  color: white;
}

@media (max-width: 768px) {
  .icon-box {
    flex-direction: row;
  }
}




/*animasyon */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-in-out;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}










/*Neden biz sayfası */
.neden-biz-section {
  background: linear-gradient(to right, #f0f8ff, #e6f0ff); /* Açık mavi-beyaz gradyan */
  color: #222;
}

.neden-biz-section h2 {
  font-weight: 700;
  color: #003366;
}

.neden-biz-section .card {
  transition: all 0.3s ease;
  border: none;
  background-color: #fff;
  border-radius: 8px;
}

.neden-biz-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.neden-biz-section .card i {
  transition: transform 0.3s ease;
}

.neden-biz-section .card:hover i {
  transform: scale(1.2);
  color: #0056b3;
}

.neden-biz-section .card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0056b3;
}

.neden-biz-section .card-text {
  font-size: 0.95rem;
  color: #444;
}



/*hakkımızda carasel */
.carousel-item img {
  max-height: 450px;
  object-fit: cover;
}








/*Hizmet talep form css kodları */
.hizmet-talep-section {
  background: #f0f4f8;
  padding: 40px 15px;
  text-align: center;
}

.hizmet-talep-section h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #003366;
}

.hizmet-talep-section p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #555;
}

.talep-form {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  font-size: 0.85rem;
}

.talep-form .form-group {
  margin-bottom: 12px;
  text-align: left;
}

.talep-form label {
  font-size: 0.85rem;
  margin-bottom: 4px;
  display: block;
  color: #333;
}

.talep-form input,
.talep-form select,
.talep-form textarea {
  width: 100%;
  padding: 7px 10px;
  font-size: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.talep-form textarea {
  resize: vertical;
  min-height: 80px;
}

.talep-form input:focus,
.talep-form select:focus,
.talep-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.talep-form .g-recaptcha {
  transform: scale(0.9);
  transform-origin: left;
  margin: 10px 0;
}

.talep-form button {
  width: 100%;
  padding: 9px;
  background: #003366;
  color: white;
  border: none;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.talep-form button:hover {
  background: #00509e;
}

@media (max-width: 480px) {
  .talep-form {
    padding: 15px;
  }

  .talep-form label {
    font-size: 0.8rem;
  }

  .talep-form input,
  .talep-form select,
  .talep-form textarea {
    font-size: 0.8rem;
    padding: 6px 8px;
  }
}











/*istatstikler  */
.istatistikler-section {
  background: linear-gradient(to bottom right, #eaf6ff, #ffffff);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.istatistik-box {
  background-color: #fff;
  padding: 30px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.istatistik-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.istatistik-box i {
  display: block;
}

.istatistik-box h3 {
  font-size: 2rem;
  font-weight: bold;
  margin: 10px 0;
}

.istatistik-box p {
  margin: 0;
  font-size: 1rem;
}






/*iletişim sayfasıbaşı*/

.iletisim-section {
  padding: 60px 15px;
  background: #f4f7fa;
  text-align: center;
}

.iletisim-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #003366;
}

.iletisim-section p {
  color: #555;
  margin-bottom: 30px;
}

.iletisim-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.iletisim-form {
  flex: 1 1 300px;
  max-width: 500px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: left;
}

.iletisim-form .form-group {
  margin-bottom: 15px;
}

.iletisim-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #333;
}

.iletisim-form input,
.iletisim-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.iletisim-form button {
  width: 100%;
  padding: 10px;
  background: #003366;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.iletisim-bilgileri {
  flex: 1 1 250px;
  text-align: left;
  max-width: 350px;
}

.iletisim-bilgileri h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #003366;
}

.iletisim-bilgileri p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.iletisim-bilgileri i {
  margin-right: 8px;
  color: #007bff;
}

.sosyal a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #003366;
}

.sosyal a:hover {
  color: #007bff;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .iletisim-grid {
    flex-direction: column;
    align-items: center;
  }

  .iletisim-form, .iletisim-bilgileri {
    width: 100%;
    max-width: 100%;
  }
}


/*iletişim sayfa sonu*/






/* Hızlı iletişim butonları başı */
.hizli-butonlar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
  justify-content: center;
}

.hizli-butonlar .btn {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 25px;
  text-transform: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.hizli-butonlar .btn i {
  margin-right: 6px;
}

/* İletişim saatleri */
.iletisim-section p i {
  color: #007bff;
  margin-right: 8px;
}

.iletisim-section p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .hizli-butonlar {
    flex-direction: column;
    align-items: center;
  }

  .hizli-butonlar .btn {
    width: 100%;
    text-align: center;
  }
}


/* Hızlı iletişim butonları sonu */






/*calışmasaatleribaş*/

.calisma-saatleri {
  margin-top: 30px;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.calisma-saatleri p {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.calisma-saatleri i {
  width: 24px;
  text-align: center;
  margin-right: 10px;
  font-size: 1rem;
}

/* Renkler */
.calisma-saatleri .fa-clock {
  color: #007bff;
}

.calisma-saatleri .fa-times-circle {
  color: #dc3545;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/*calışmasaatlerisonu*/






/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-right {
    padding-left: 0;
    margin-top: 30px;
  }

  .navbar .nav-link::after {
    display: none;
  }
}



/*footer bas*/
.site-footer {
  background-color: #111;
  color: #ccc;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-column p,
.footer-column li {
  margin-bottom: 10px;
  color: #bbb;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 4px;
}

.social-icons a {
  color: #bbb;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-column i {
  color: #007bff;
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}
/*footer son*/
