body {
  font-family: 'Poppins', sans-serif;
  padding-top: 0;
  margin: 0;
}
/* FOOTER GENEL STİL */
/* custom.css */
/* === Genel Stil === */

/* ========== TOPBAR ========== */
.top-bar {
  background-color: #022b4e;
  padding: 10px 0;
  font-size: 14px;
}

/* Mobil cihazlarda top bar'ı gizle */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
  
  /* Top bar olmadığında sticky header için düzeltme */
  .main-nav.sticky {
    top: 0;
  }
}

.top-contact-info {
  display: flex;
  align-items: center;
}

.contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.contact-link:hover {
  color: #ffd600;
}

.social-links {
  display: flex;
  align-items: center;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 12px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.social-links a:hover {
  color: #022b4e;
  background-color: #ffd600;
}

/* ========== MAIN NAV ========== */
.main-nav {
  background-color: #ffffff;
  padding: 10px 0;
  position: relative;
}

.logo {
  display: block;
}

.logo img {
  height: 80px;
  max-width: 100%;
}

.logo .logo-dark {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0 5px;
  position: relative;
}
.fa-solid, .fas {
  font-weight: 900;
  color: #275acf;
}
.mobile-social-links a {
  width: 32px;
  height: 32px;
  display: flex
;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255);
  border-radius: 50%;
  transition: all 0.3s;
}
.nav-menu li a {
  color: #000000;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 17px;
}

.nav-menu li a:hover {
  color: #0051ff;
}

/* Desktop Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  color: #022b4e;
  padding: 8px 20px;
  font-weight: 400;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;
  color: #0070cc;
  padding-left: 25px;
}

.btn-call {
  background: #0252ff;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  margin-left: 15px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.btn-call:hover {
  background: #ffd600;
  color: #3f3f3f;
}

/* Mobile Menu */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #0070cc;
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 15px;
  text-align: right;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Mobil menü iletişim bilgileri */
.mobile-contact-info {
  background-color: #0080ff;
  border-radius: 8px;
  margin: 0 15px 15px;
}
.fa-solid, .fas {
  font-weight: 900;
  color: #dadada;
}
.mobile-contact-info a,
.mobile-contact-info div {
  font-size: 14px;
  transition: color 0.3s;
  text-decoration: none;
}

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

.mobile-social-links {
  display: flex;
  gap: 10px;
}

.mobile-social-links a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  transition: all 0.3s;
}

.mobile-social-links a:hover {
  background-color: #ffd600;
  color: #022b4e !important;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-menu li a {
  color: white;
  text-decoration: none;
  padding: 15px;
  display: block;
  font-weight: 500;
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.mobile-dropdown-menu.show {
  display: block;
}

.mobile-dropdown-menu li {
  border-bottom: none;
}

.mobile-dropdown-menu li a {
  padding-left: 30px;
  font-size: 14px;
}

/* Sticky Header */
.main-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  animation: slideDown 0.3s forwards;
}

.main-nav.sticky .logo .logo-white {
  display: none;
}

.main-nav.sticky .logo .logo-dark {
  display: block;
}

.main-nav.sticky {
  background-color: #fff;
}

.main-nav.sticky .nav-menu li a {
  color: #022b4e;
}

.main-nav.sticky .nav-menu li a:hover {
  color: #0070cc;
}

.main-nav.sticky .dropdown-menu li a {
  color: #022b4e;
}

.main-nav.sticky .dropdown-menu li a:hover {
  color: #0070cc;
}

.main-nav.sticky .mobile-menu-toggle {
  color: #022b4e;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .main-nav {
    padding: 10px 0;
  }
  
  .logo img {
    height: 35px;
  }
}

@media (max-width: 767px) {
  .social-links {
    justify-content: center;
    margin-top: 5px;
  }
  
  .top-contact-info {
    justify-content: center;
    margin-bottom: 5px;
  }
}

/* ========== NAVBAR (OLD) ========== */
.navbar {
  font-family: 'Poppins', sans-serif;
  padding: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
}

.navbar-brand img {
  max-height: 90px;
}

/* ========== NAV LINKS ========== */
.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  color: #0d2b52;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #ffbc13;
  text-decoration: none;
}

#mainNavbar {
  position: fixed;
  top: 40px; /* topbar'ın yüksekliğine göre ayarla */
  left: 0;
  right: 0;
  z-index: 1050;
}


#mainNavbar.navbar-visible {
  transform: translateY(0);
}

/* ========== DROPDOWN ========== */
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease-in-out;
  margin-top: 0;
}

.dropdown-item {
  font-size: 15px;
  padding: 10px 18px;
  color: #0d2b52;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #ffbc13;
}

/* Dropdown açıldığında ekstra ok simgesi eklenmesin */
.nav-item.dropdown .dropdown-toggle::after {
  display: none;
}

/* ========== MOBİL UYUMLULUK ========== */
/* Mobilde taşma ve boşlukları sıfırla */
@media (max-width: 768px) {
  body, html {
    overflow-x: hidden;
  }

  .container-fluid,
  .navbar,
  .navbar-brand,
  .navbar-brand img,
  .header,
  .header-topbar {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .navbar-brand img {
    max-height: 20px;
    height: auto;
    width: auto;
    padding-left: 10px;
    margin-bottom: 15px;
  }

  .navbar-toggler {
    margin-left: auto;
    margin-right: 10px;
  }

  .navbar-collapse {
    width: 100%;
    padding: 0 15px;
  }

  .row,
  .col-12,
  .col-sm-12,
  .col-md-12 {
    margin: 0;
    padding: 0;
  }
}


/* ========== ANİMASYON ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========== FOOTER GENEL ========== */
footer {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  background-color: #0d2b52;
  color: #ffffff;
  padding: 60px 0 30px;
}

/* === LOGO === */
.footer__logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

/* === BAŞLIKLAR === */
.footer-widget__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  text-transform: uppercase;
}

/* === METİN VE LİSTELER === */
.footer-widget-contact ul,
.footer-widget-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget-contact li,
.footer-widget-nav li {
  color: #cccccc;
  font-size: 15px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-widget-contact li i,
.footer-widget-nav li i {
  margin-right: 8px;
  color: #ffbc13;
}

.footer-widget-nav li a {
  color: #dddddd;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-widget-nav li a:hover {
  color: #ffbc13;
  text-decoration: underline;
}

/* === TELEFON VURGULAMA === */
.phone__number {
  color: #ffbc13;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.phone__number i {
  margin-right: 8px;
}

/* === SOSYAL MEDYA === */
.footer-widget-social .social-icons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.footer-widget-social .social-icons li {
  list-style: none;
}

.footer-widget-social .social-icons li a {
  font-size: 20px;
  background-color: transparent;  /* sade görünüm */
  color: #ffffff;                 /* beyaz ikon */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3); /* yarı saydam çerçeve */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-widget-social .social-icons li a:hover {
  background-color: #ffbc13;  /* sarı arka plan */
  color: #0d2b52;             /* lacivert ikon */
  border-color: #ffbc13;      /* sarı çerçeve */
}


/* ========== ALT FOOTER ========== */
.footer-secondary {
  background-color: #062246;
  border-top: 1px solid #1a3a61;
  padding: 15px 0;
  font-size: 14px;
  color: #ffffff;
  display: flex;
  flex-direction: column; /* satır içine alma */
  align-items: center;     /* ortalama */
  justify-content: center; /* ortalama */
  text-align: center;
  gap: 10px;
}

.footer__bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer__bottom-links li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer__bottom-links li a:hover {
  color: #ffbc13;
  text-decoration: underline;
}

/* ========== RESPONSIVE (Mobil Uyum) ========== */
@media (max-width: 992px) {
  .footer-secondary {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 40px 20px 30px;
    font-size: 15px;
  }

  .footer__logo {
    margin-bottom: 20px;
  }

  .footer-widget-social .social-icons {
    justify-content: center;
  }
}


/* YUKARI ÇIK BUTONU */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 100px; /* WhatsApp butonuyla çakışmasın diye biraz sola */
  width: 48px;
  height: 48px;
  background-color: #ffbc13;
  color: #0d2b52;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  display: none;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  justify-content: center;
  align-items: center;
  display: flex; /* ikonu ortalamak için */
}
#scrollTopBtn:hover {
  background-color: #ffc107;
}



/* WhatsApp Sabit Butonu */
.whatsapp-fixed {
  position: fixed;
  bottom: 90px;
  left: 30px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s;
}

.whatsapp-fixed:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

/* galeri image kart */
    .gallery-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .gallery-card:hover {
      transform: translateY(-5px);
    }
    .gallery-thumb {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    .video-thumb {
      position: relative;
    }
    .video-thumb::after {
      content: '\f04b';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 2rem;
      color: #fff;
      background: rgba(0,0,0,0.4);
      border-radius: 50%;
      padding: 10px 14px;
    }

    .modal-content {
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #modalContent img,
  #modalContent video {
    max-height: 50vh;
    object-fit: contain;
  }
}

#modalContent img,
#modalContent video {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.modal-body {
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-title {
  color: #fff !important;
  font-weight: 600;
}

.gallery-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
@media (max-width: 576px) {
  .gallery-thumb {
    height: 120px;
  }
}

/* ========== Görsel Düzeltmeleri ========== */
/* Slider ve bölüm görsellerindeki üçgen şekli ve mavi overlay düzeltmesi */
.bg-img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Görsel üçgen düzeltmesi */
.bg-img::before,
.bg-img::after {
  display: none !important;
}

/* Mavi overlay kaldırma */
.bg-overlay::before {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

/* Slider görsellerini düzgün göster */
.slide-item .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Post görsellerinin düzgün görüntülenmesi */
.post__img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 220px;
}

.post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-item:hover .post__img img {
  transform: scale(1.05);
}

/* Sidebar widget post görselleri */
.widget-post__img {
  width: 80px;
  height: 60px;
  overflow: hidden;
  border-radius: 5px;
}

.widget-post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Galeri görselleri */
.gallery-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 8px;
  height: 250px;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

/* Video thumbnail */
.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 250px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2983fd;
  font-size: 20px;
}

.features-layout1 {
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
}

.features-layout1 .bg-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.features-layout1 .container {
  position: relative;
  z-index: 2;
}

.heading-light h2,
.heading-light h3,
.heading-light p {
  color: #fff;
}

.feature-item {
  background: #fff;
  color: #222;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feature__icon {
  font-size: 40px;
  color: #007bff;
  flex-shrink: 0;
}

.feature__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature__desc {
  font-size: 16px;
  opacity: 0.85;
}

.btn__white.btn__bordered {
  background: #ffffff;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn__white.btn__bordered:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}


/* Preloader düzeltmesi */
/* Blog Tags Styles */
.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.blog-tag {
  display: inline-block;
  background: linear-gradient(135deg, #0252ff, #275acf);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-tag:hover {
  background: linear-gradient(135deg, #275acf, #0252ff);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(2, 82, 255, 0.3);
}

/* Blog Detail Tags */
.blog-detail-tags {
  margin: 20px 0;
}

.blog-detail-tags .blog-tag {
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  padding: 6px 15px;
}

/* Responsive Blog Tags */
@media (max-width: 768px) {
  .blog-card__tags {
    margin-top: 10px;
  }
  
  .blog-tag {
    font-size: 11px;
    padding: 3px 10px;
  }
  
  .blog-detail-tags .blog-tag {
    font-size: 12px;
    padding: 5px 12px;
  }
}

.preloader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}


