body {
  padding-top: 80px;
  padding-bottom: 160px;
  font-family: 'Arial', sans-serif;
}

/* Sabit Navbar */
.navbar-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.navbar .navbar-brand {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  margin-right: 50px;
}

/* Sabit Footer */
.fixed-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa;
  padding: 5px 0;
  text-align: center;
  z-index: 1000;
  font-size: 14px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
/* Sabit Butonlar */
.fixed-buttons {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.btn-floating {
  flex: 1;
  margin: 0 10px;
  text-align: center;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-floating:hover {
  background-color: #218838;
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.btn-floating i {
  margin-right: 8px;
}




.carousel-item {
  height: 100%;
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover; /* Görseli taşmadan sığdır */
  object-position: center; /* Ortalansın */
}



/* Başlık ve yazı animasyonları */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 10px;
  max-width: 90%;
  margin: auto;
  animation: fadeInUp 1s ease-in-out;
}
.carousel-caption h5 {
  font-size: 1.5rem;
}
.carousel-caption p {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .carousel-caption h5 {
    font-size: 1.2rem;
  }
  .carousel-caption p {
    font-size: 0.9rem;
  }
}

/* Bayrak Slaytı */
#flagCarousel {
  max-width: 250px;
  margin: 0 auto;
}
#flagCarousel .carousel-item img {
  width: 60%;
  height: auto;
}
#flagCarousel .carousel-item h5 {
  font-size: 1rem;
  text-align: center;
  margin-top: 10px;
}

/* Profil Kartları */
.profile-pic {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
}
.card {
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* Hizmetler */
#hizmetler {
  scroll-margin-top: 100px;
}
.services-showcase {
  position: relative;
  margin: 70px 0 50px;
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(0, 123, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef6ff 100%);
  overflow: hidden;
}
.services-showcase::before,
.services-showcase::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.08);
  z-index: 0;
}
.services-showcase::before {
  width: 260px;
  height: 260px;
  top: -90px;
  right: -90px;
}
.services-showcase::after {
  width: 180px;
  height: 180px;
  bottom: -70px;
  left: -60px;
}
.services-showcase .container {
  position: relative;
  z-index: 1;
}
.section-badge {
  display: inline-block;
  background: rgba(0, 123, 255, 0.10);
  color: #007bff;
  border: 1px solid rgba(0, 123, 255, 0.20);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}
#hizmetler .section-title h3 {
  font-size: 38px;
  font-weight: 800;
  color: #162033;
  margin-bottom: 14px;
}
.hizmetler-aciklama {
  max-width: 850px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
}
.service-grid {
  align-items: stretch;
}
.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 30px 26px 26px;
  box-shadow: 0 14px 38px rgba(20, 54, 95, 0.10);
  border: 1px solid rgba(0, 123, 255, 0.10);
  transition: all 0.35s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00b4d8, #28a745);
}
.service-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.07);
  transition: all 0.35s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(20, 54, 95, 0.18);
  border-color: rgba(0, 123, 255, 0.28);
}
.service-card:hover::after {
  transform: scale(1.25);
  background: rgba(0, 123, 255, 0.12);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.service-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007bff, #00b4d8);
  color: #ffffff;
  font-size: 31px;
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.26);
}
.service-number {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 123, 255, 0.12);
}
.service-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #162033;
}
.service-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #5f6b7a;
  margin-bottom: 18px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 15px;
  color: #334155;
}
.service-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: #28a745;
}
.featured-service {
  background: linear-gradient(135deg, #0d6efd 0%, #0aa2c0 100%);
  color: #ffffff;
}
.featured-service::before {
  background: rgba(255, 255, 255, 0.65);
}
.featured-service .service-icon {
  background: #ffffff;
  color: #007bff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.13);
}
.featured-service .service-number {
  color: rgba(255, 255, 255, 0.22);
}
.featured-service h4,
.featured-service p,
.featured-service ul li {
  color: #ffffff;
}
.featured-service ul li::before {
  color: #ffffff;
}
@media (max-width: 768px) {
  .services-showcase {
    padding: 50px 0;
    margin: 45px 0 35px;
  }
  #hizmetler .section-title h3 {
    font-size: 30px;
  }
  .service-card {
    padding: 26px 22px;
  }
}

/* İletişim Bilgileri */
#iletisim {
  background-color: #f4f7fa;
  padding: 5px 0;
  margin-top: 10px;
  border-top: 2px solid #007bff;
}
#iletisim .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}
#iletisim .section-content {
  text-align: center;
  font-size: 18px;
  color: #666;
}
#iletisim .contact-info-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: center;
}
#iletisim .contact-info-item i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}
#iletisim .contact-info-item h4 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}
#iletisim .contact-info-item p {
  font-size: 18px;
  color: #666;
}
#iletisim .contact-info-item a {
  color: #007bff;
  text-decoration: none;
}
#iletisim .contact-info-item a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .contact-info-item {
    margin-bottom: 20px;
  }
}

/* Dil Seçici */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: #eef5ff;
  border: 1px solid rgba(0, 123, 255, 0.18);
  border-radius: 999px;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: #1f2937;
  font-weight: 800;
  font-size: 13px;
  padding: 7px 11px;
  border-radius: 999px;
  transition: all .25s ease;
  cursor: pointer;
}
.lang-btn:hover,
.lang-btn.active {
  background: #007bff;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 123, 255, 0.22);
}
@media (max-width: 991px) {
  .language-switcher {
    margin-top: 6px;
  }
}

/* Mobil düzeltme paketi */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  padding-top: 74px;
}
.navbar .container-fluid {
  max-width: 1200px;
}
.navbar-brand img {
  width: 135px;
  max-height: 58px;
  object-fit: contain;
}
#companyCarousel .carousel-inner,
#companyCarousel .carousel-item {
  height: 590px;
}
#companyCarousel .carousel-caption {
  left: 8%;
  right: 8%;
  bottom: 38px;
  text-align: center !important;
}
.services-showcase .service-grid.row {
  display: flex;
}
.fixed-buttons {
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
}
.fixed-buttons .btn-floating {
  margin: 0;
}

@media (max-width: 991px) {
  body {
    padding-top: 76px;
    padding-bottom: 96px;
  }
  .navbar-brand img {
    width: 118px;
  }
  .navbar-collapse {
    background: #fff;
    padding: 10px 0 14px;
    border-top: 1px solid #eee;
    margin-top: 8px;
  }
  .navbar-nav {
    align-items: center;
    gap: 4px;
  }
  .language-switcher {
    justify-content: center;
  }
  #companyCarousel .carousel-inner,
  #companyCarousel .carousel-item {
    height: 430px;
  }
  #companyCarousel .carousel-caption {
    bottom: 24px;
    padding: 12px;
  }
  #companyCarousel .carousel-caption h5 {
    font-size: 22px !important;
  }
  #companyCarousel .carousel-caption p {
    font-size: 14px !important;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }
  .container,
  .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }
  .navbar {
    min-height: 68px;
  }
  .navbar-brand {
    margin-right: 0 !important;
  }
  .navbar-brand img {
    width: 105px;
  }
  .navbar-toggler {
    padding: 6px 9px;
  }
  #companyCarousel .carousel-inner,
  #companyCarousel .carousel-item {
    height: 360px;
  }
  #companyCarousel .carousel-item img {
    object-fit: cover;
  }
  #companyCarousel .carousel-caption {
    left: 12px;
    right: 12px;
    bottom: 18px;
    max-width: none;
  }
  #companyCarousel .carousel-caption h5 {
    font-size: 19px !important;
    margin-bottom: 6px;
  }
  #companyCarousel .carousel-caption p {
    font-size: 13px !important;
    margin-bottom: 0;
  }
  .profile-pic {
    margin-top: 0;
  }
  .services-showcase {
    padding: 42px 0;
  }
  #hizmetler .section-title h3 {
    font-size: 26px;
  }
  .hizmetler-aciklama {
    font-size: 15px;
    line-height: 1.65;
  }
  .service-card {
    border-radius: 18px;
    padding: 22px 18px;
  }
  .service-icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
    border-radius: 18px;
  }
  .service-number {
    font-size: 34px;
  }
  .service-card h4 {
    font-size: 19px;
  }
  .fixed-buttons {
    padding: 10px;
    gap: 8px;
  }
  .fixed-buttons .btn-floating {
    padding: 11px 8px;
    font-size: 14px;
    border-radius: 999px;
  }
}


/* Modern Footer */
.modern-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #07111f 0%, #0b2341 48%, #063b53 100%);
  color: #ffffff;
  padding: 70px 0 18px;
  margin-bottom: 74px;
}
.modern-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .55;
}
.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .22;
}
.footer-glow-1 {
  width: 280px;
  height: 280px;
  background: #0d6efd;
  top: -90px;
  right: -70px;
}
.footer-glow-2 {
  width: 220px;
  height: 220px;
  background: #28a745;
  left: -80px;
  bottom: 20px;
}
.footer-top {
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.footer-brand-box h4 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .5px;
  margin: 18px 0 12px;
}
.footer-logo {
  width: 130px;
  background: #ffffff;
  border-radius: 18px;
  padding: 9px 12px;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.footer-brand-box p,
.footer-widget li a,
.footer-contact-item,
.footer-bottom p {
  color: rgba(255,255,255,.78);
}
.footer-brand-box p {
  max-width: 360px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.15);
  text-decoration: none;
  transition: all .28s ease;
}
.footer-social a:hover {
  background: #0d6efd;
  transform: translateY(-4px);
}
.footer-widget h5 {
  position: relative;
  font-size: 18px;
  font-weight: 850;
  margin-bottom: 20px;
  padding-bottom: 12px;
}
.footer-widget h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #0d6efd, #28a745);
}
.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-widget li {
  margin-bottom: 11px;
}
.footer-widget li a {
  text-decoration: none;
  transition: all .25s ease;
}
.footer-widget li a:hover {
  color: #ffffff;
  padding-left: 7px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
  text-decoration: none;
}
.footer-contact-item i {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,.22);
  color: #ffffff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px 0;
  font-size: 14px;
}
.footer-bottom p {
  margin: 0;
}
.footer-top-link {
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  padding: 9px 14px;
  border-radius: 999px;
  transition: all .25s ease;
  white-space: nowrap;
}
.footer-top-link:hover {
  background: #ffffff;
  color: #0b2341;
}
@media (max-width: 768px) {
  .modern-footer {
    padding: 44px 0 16px;
    margin-bottom: 76px;
  }
  .footer-top {
    padding: 24px 20px;
    border-radius: 22px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-widget h5 {
    margin-top: 12px;
  }
}

/* Mail adresleri mobilde taşmasın */
.contact-info-item a,
.footer-contact-item span {
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-contact-item span {
  min-width: 0;
}
@media (max-width: 576px) {
  .footer-contact-item {
    align-items: center;
  }
}

/* Mobil menü kullanım düzeltmesi */
@media (max-width: 991.98px) {
  #navbarNav {
    background: #ffffff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.10);
    margin-top: 10px;
    padding: 12px 16px;
  }
  #navbarNav .nav-link {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  #navbarNav .nav-item:last-child .nav-link {
    border-bottom: 0;
  }
}

/* Fotoğraf Galerisi */
#galeri {
  scroll-margin-top: 100px;
}
.photo-gallery {
  position: relative;
  padding: 70px 0;
  background:
    linear-gradient(135deg, rgba(11,35,65,.96), rgba(6,59,83,.94)),
    url('1.jpg') center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}
.photo-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .45;
}
.photo-gallery .container {
  position: relative;
  z-index: 1;
}
.photo-gallery .section-badge {
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border-color: rgba(255,255,255,.18);
}
.photo-gallery .section-title h3 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 12px;
}
.gallery-desc {
  color: rgba(255,255,255,.78) !important;
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
}
.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  height: 245px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.gallery-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 12px 14px;
  text-align: left;
}
.gallery-card span i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,.82);
}
.gallery-card:hover img {
  transform: scale(1.08);
  filter: brightness(.82);
}
.gallery-modal .modal-content {
  background: #07111f;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  overflow: hidden;
}
.gallery-modal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #ffffff;
}
.gallery-modal .modal-body {
  padding: 0;
  background: #000;
}
.gallery-modal .modal-body img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}
@media (max-width: 768px) {
  .photo-gallery {
    padding: 48px 0;
  }
  .photo-gallery .section-title h3 {
    font-size: 29px;
  }
  .gallery-card {
    height: 230px;
    border-radius: 20px;
  }
}


/* Galeri video desteği */
.gallery-card video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-card:hover video {
  transform: scale(1.06);
}

.video-gallery-card {
  position: relative;
}

.video-gallery-card::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 2;
}

.gallery-modal .modal-body video {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0 0 18px 18px;
  background: #000;
}


/* Footer yapımcı bilgisi */
.footer-producer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-producer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #25d366;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-producer a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}


.footer-producer{
  margin-top:14px;
}

.producer-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  text-decoration:none;
  color:rgba(255,255,255,0.72);
  font-size:13px;
  transition:all .25s ease;
  backdrop-filter:blur(8px);
}

.producer-link i{
  color:#25D366;
  font-size:15px;
}

.producer-link:hover{
  transform:translateY(-1px);
  color:#fff;
  background:rgba(255,255,255,0.08);
}
