
/* RESET VE TEMEL AYARLAR */

:root {
    --main-color: #607077;
    --secondary-color: #607077;
    --scroll-button-color: #ff4500;
    --bottom-button-color: #212529;
    --bottom-button-hover-color: #000000;
    --side-button-color: #25d366;
    --title-font: 'Poppins', sans-serif;
    --text-font: 'Roboto', sans-serif;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background-size: cover;
    background-position: center;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #607077;
    line-height: 1.6;

}

/* Tarayıcı varsayılan margin'ini kesin olarak ezdik */
body {
    position: relative;
    display: block;
    margin: 0 !important;
    /* Bu satır çok önemli */
}



/* SELECTION STİLLERİ */
::selection {
    color: #fff;
    background: #068293;
    /* --secondary-color değişkeni yerine direkt renk */
}

/* LİNK STİLLERİ */
a {
    color: #0cb8cf;
    /* --main-color */
    text-decoration: none;
    transition: all 0.3s ease;
}


a:link, a:hover, a:active, a:visited {
  text-decoration: none;
}


ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

textarea, textarea:focus, input, input:focus, button, button:focus {
  outline: none;
  resize: inherit;
}

.owl-carousel .owl-item img {
  display: block;
  width: auto;
}

/* KONTEYNER */ .container {
    max-width: 1200px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* ---------------------------------------------------------------- */
/* 02.Typography
/* ---------------------------------------------------------------- */
/* BAŞLIKLAR */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #068293;
    /* --secondary-color */
}

h1, .h1 {
  font-size: 60px;
}

h2, .h2 {
  font-size: 36px;
}


h4, .h4 {
  font-size: 2.5rem;
}

h5, .h5 {
  font-size: 1.467rem;
}

h6, .h6 {
  font-size: 16px;
}

p {
  line-height: 1.9;
  margin: 0;
}

/* ---------------------------------------------------------------- */
/* 03.Helper Class
/* ---------------------------------------------------------------- */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

.section {
  padding: 100px 0;
}
.section .section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section .section-heading h2 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  text-align: center;
  display: block;
  position: relative;
}
.section .section-heading h2:after {
  content: "";
  bottom: 0;
  left: 50%;
  height: 4px;
  width: 50px;
  position: absolute;
  background: var(--main-color);
  transform: translateX(-50%);
}
.section .section-heading span {
  font-size: 14px;
  border-radius: 50px;
  color: #fff;
  padding: 8px 18px;
  margin-bottom: 10px;
  display: inline-block;
  background: var(--main-color);
}

.section .section-heading-left {
  text-align: left;
  margin-bottom: 50px;
}
.section .section-heading-left h2 {
  display: block;
  text-align: left;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.section .section-heading-left h2:before, .section .section-heading-left h2:after {
  bottom: 0;
  height: 4px;
  content: "";
  position: absolute;
  background: var(--main-color);
}
.section .section-heading-left h2:before {
  left: 0;
  width: 20px;
}
.section .section-heading-left h2:after {
  left: 30px;
  width: 40px;
}
.section .section-heading-left span {
  font-size: 14px;
  border-radius: 50px;
  color: #fff;
  padding: 8px 18px;
  margin-bottom: 10px;
  display: inline-block;
  background: var(--main-color);
}

.bg-primary-light {
  background: rgba(255, 69, 0, 0.05);
}


.pb-minus-70 {
  padding-bottom: 70px;
}

.pb-minus-76 {
  padding-bottom: 76px;
}

#testimonialCarousel.owl-carousel .owl-item img, #blogCarousel.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}
#testimonialCarousel.owl-carousel .owl-nav, #blogCarousel.owl-carousel .owl-nav {
  margin-top: 0;
  position: absolute;
  top: -130px;
  right: 0;
  display: inline-block;
}
#testimonialCarousel.owl-carousel .owl-nav button, #blogCarousel.owl-carousel .owl-nav button {
  margin: 0;
  padding: 5px !important;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: transparent;
  display: inline-block;
  transition: all 0.5s ease;
  border: 2px solid var(--main-color);
}
#testimonialCarousel.owl-carousel .owl-nav button span, #blogCarousel.owl-carousel .owl-nav button span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: all 0.5s ease;
  background: var(--main-color);
}

#testimonialCarousel.owl-carousel .owl-nav button.owl-prev, #blogCarousel.owl-carousel .owl-nav button.owl-prev {
  margin-right: 10px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
  .section .section-heading h2 {
    font-size: 2rem;
  }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  #testimonialCarousel.owl-carousel .owl-nav, #blogCarousel.owl-carousel .owl-nav {
    top: 0;
    position: static;
    margin-bottom: 24px;
  }
}

/* ---------------------------------------------------------------- */
/* 04.Buttons
/* ---------------------------------------------------------------- */
.white-btn {
  z-index: 1;
  padding: 0;
  border: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  letter-spacing: 1px;
  align-items: center;
  display: inline-flex;
  transition: all 0.5s ease;
  background: var(--main-color);
}
.white-btn .text {
  padding: 0 20px 0 30px;
  text-transform: uppercase;
  color: #fff !important;
}
.white-btn .icon {
  padding: 5px;
  border-radius: 50%;
  transition: all 0.5s ease;
  border: 2px solid #fff;
}
.white-btn .icon i {
  width: 46px;
  height: 46px;
  font-size: 16px;
  border-radius: 50%;
  line-height: 46px;
  text-align: center;
  color: var(--main-color);
  display: inline-block;
  background: #fff;
  transition: all 0.5s ease;
}

.primary-btn {
  z-index: 1;
  padding: 0;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  letter-spacing: 1px;
  align-items: center;
  display: inline-flex;
  justify-content: space-between;
  transition: all 0.5s ease;
  background: var(--main-color);
}
.primary-btn .text {
  padding: 0 20px 0 30px;
  text-transform: uppercase;
  color: #fff !important;
}
.primary-btn .icon {
  padding: 5px;
  border-radius: 50%;
  transition: all 0.5s ease;
  border: 2px solid #fff;
}
.primary-btn .icon i {
  width: 46px;
  height: 46px;
  font-size: 16px;
  border-radius: 50%;
  line-height: 46px;
  text-align: center;
  display: inline-block;
  background: #fff;
  color: var(--main-color);
}
.scroll-top-btn {
  bottom: 0;
  opacity: 0;
  right: 10px;
  padding: 5px;
  z-index: 144;
  position: fixed;
  text-align: center;
  border-radius: 50%;
  visibility: hidden;
  transition: all 0.5s ease;
  border: 2px solid var(--main-color);
}
.scroll-top-btn i {
  width: 46px;
  height: 46px;
  font-size: 16px;
  color: #fff;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.5s ease;
  background: var(--main-color);
}


/* ---------------------------------------------------------------- */
/* 08.Preloader
/* ---------------------------------------------------------------- */
#preloader-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5555;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
}


/* ---------------------------------------------------------------- */
/* 09.Header
/* ---------------------------------------------------------------- */
.header {
    padding: 10px 0;
  transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #068293;
    position: relative;
    z-index: 1000;
}
.header .navbar-brand {
  padding: 0;
  color: #fff;
  margin-right: 0;
  text-transform: capitalize;
}
.header .navbar-brand img {
  display: none;
}
.header .navbar-brand img.logo-transparent {
  display: block;
}

.header .nav-item .nav-link {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 28px 20px;
  text-transform: uppercase;
  display: block;
  position: relative;
  line-height: 28px;
  opacity: 0.8;
}
.header .nav-item .nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: #fff;
}

.header .nav-item .nav-link:not(.active):after {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  z-index: 7;
  content: "";
  position: absolute;
  transform: scaleX(0);
  transform-origin: 100% 0;
  background: #fff;
  transition: transform 0.4s ease;
}
 .header .navbar-toggler {
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0 10px 0 0;
  box-shadow: none;
} 
.header .navbar-toggler .togler-icon-inner span {
  height: 3px;
  margin: 5px;
  width: 30px;
  display: block;
  background: #fff;
  transition: all 0.3s ease;
}
.header .navbar-toggler .togler-icon-inner span:nth-child(2) {
  width: 20px !important;
  margin-left: auto;
}
.header .navbar-toggler .togler-icon-inner span:last-child {
  margin-bottom: 0;
}



/* ---------------------------------------------------------------- */
/* Header Masaüstü Düzenlemesi – Platin Veteriner */
/* ---------------------------------------------------------------- */
@media (min-width: 992px) {
    .header {
        flex-wrap: nowrap;
    }

    .header .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .header .navbar-collapse {
        display: flex !important;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        position: static !important;
        max-height: none !important;
        background: transparent !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .header .navbar-nav {
        flex-direction: row;
        align-items: center;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        background: none;
    }

    .header .navbar-toggler {
        display: none !important;
    }

    .header .main-menu .navbar-nav .nav-link {
        color: #fff !important;
        border: none !important;
        padding: 28px 20px !important;
        opacity: 0.8;
        font-weight: 600;
        text-transform: uppercase;
    }

    .header .main-menu .navbar-nav .nav-link:after {
        display: block;
    }
}




/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */


.navbar-nav {
    display: flex !important; /* Desktop menüyü kesinlikle göster */
}

  .header .navbar-brand {
    padding: 10px 0 10px 15px;
  }
  .header .main-menu {
    background: #fff;
  }
  .header .main-menu .navbar-nav {
    max-height: 243px;
    overflow: hidden;
    overflow-y: auto;
  }

  .header .main-menu .navbar-nav .nav-link {
    color: #000;
    padding: 7px 15px !important;
    transition: all 0.25s linear;
    opacity: 1;
    border-bottom: 1px solid #e0e0e0;
  }
  .header .main-menu .navbar-nav .nav-link:after {
    display: none;
  }

  .navbar-btn-resp {
    display: none !important;
  }
  /* Header Shrink */
  


/* ---------------------------------------------------------------- */
/* 10.Hero
/* ---------------------------------------------------------------- */
.hero-banner {
  display: flex;
  min-height: 100vh;
  position: relative;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--secondary-color);
  background-position: center center;
}


/* Yeni hizalama düzeni */
.hero-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    /* Mobil uyumu için */
    gap: 40px;
    /* İsteğe bağlı boşluk */
}

.hero-inner {
    flex: 1;
    max-width: 600px;
    /* Metnin genişliğini sınırla */
}

.hero-banner .hero-inner h1 {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: #fff;
}
.hero-banner .hero-inner h2 {
    display: flex;
        align-items: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  color: #fff;
  margin-bottom: 40px;
  padding-right: 60px;
  font-family: var(--text-font);
}
.hero-img {
  flex: 1;
  text-align: center;
  margin-top: -100px; /* Tüm grubu yukarı kaydırır (değeri ihtiyaca göre artır/azalt) */
  transform: translateX(-150px);
}

.hero-img img {
  border-radius: 50%;
  border: 20px solid var(--main-color);
  width: 450px;
  height: 450px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.hero-img .border-line-outer, 
.hero-img .border-line-inner {
  padding: 20px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #fff;
  position: relative;
}
.hero-social-list {
  top: 50%;
  right: 30px;
  z-index: 1115;
  position: absolute;
  transform: translateY(-50%);
}

.scroll-down-btn, .hero-email-link {
  bottom: 30px;
  font-size: 0.7rem;
  position: absolute;
  color: #fff;
  letter-spacing: 3px;
  writing-mode: vertical-lr;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.hero-email-link {
  right: 30px;
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 400.642px) {
  .hero-banner {
    text-align: center;
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 110px;
    display: flex;
    align-items: center; /* Dikeyde hizalar */
    justify-content: space-between; /* Yazı ve görseli birbirine yakın yapar */
}

  }
  .hero-banner .row {
    justify-content: center;
  }
  .hero-banner .hero-inner h2 {
    padding-right: 0;
  }
  .hero-banner .hero-img-resp {
    text-align: right;
  }
  .hero-banner .hero-img-resp .hero-img {
    margin-top: -550px;
    max-width: 250px;
    display: inline-block;
  }
  .hero-banner .hero-img-resp .hero-img img {
    border: 10px solid var(--main-color);
  }
  .hero-social-list, .hero-email-link, .scroll-down-btn {
    display: none;
  }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
  .hero-banner .hero-inner h1 {
    font-size: 1.467rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .hero-banner .hero-inner h2 {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
}


/* ---------------------------------------------------------------- */
/* 12.Resume
/* ---------------------------------------------------------------- */
.resume-item {
  padding: 30px;
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  border-radius: 50px;
  background: #fff;
  transition: all 0.5s ease;
  justify-content: space-between;
  box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
}
.resume-item .body {
  display: flex;
}
.resume-item .body .text h6 {
  font-family: var(--text-font);
  margin-bottom: 10px;
  color: var(--main-color);
  text-transform: uppercase;
}
.resume-item .body .text h5 {
  margin-bottom: 10px;
}
.resume-item .body .text span {
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
}
.resume-item .body .icon-outer-line {
  padding: 10px;
  height: 110px;
  width: 110px;
  margin-right: 20px;
  border-radius: 50%;
  transition: all 0.5s ease;
  border: 2px solid var(--main-color);
}
.resume-item .body .icon-outer-line .icon-inner-line {
  padding: 10px;
  border-radius: 50%;
  transition: all 0.5s ease;
  border: 2px solid var(--main-color);
}
.resume-item .body .icon-outer-line .icon-inner-line span {
  width: 60px;
  height: 60px;
  font-size: 25px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  transition: all 0.5s ease;
  background: var(--main-color);
}


/* ---------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
  .resume-item .body {
    display: block;
  }
  .resume-item .body .text {
    margin-top: 15px;
  }
  .resume-item .body .icon-outer-line {
    margin: 0;
  }
}
/* ---------------------------------------------------------------- */
/* 13.Services
/* ---------------------------------------------------------------- */
.services-item {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  border-radius: 50px;
  background: #fff;
  transition: all 0.5s ease;
  padding: 30px 30px 50px 30px;
  box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
}

.services-item .body {
  z-index: 1;
  position: relative;
}
.services-item .body h4 {
  font-size: 50px;
  margin-bottom: 10px;
  color: var(--main-color);
}
.services-item .body h5 {
  margin-bottom: 15px;
}
.services-item .body p {
  margin-bottom: 30px;
}
.services-item .body a, .services-item .body i {
  transition: all 0.5s ease;
}
.services-item .body a {
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
}
.services-item .body a i {
  margin-left: 5px;
  color: var(--main-color);
}

.services-item .icon {
  left: 50%;
  bottom: -30px;
  position: absolute;
  transform: translateX(-50%);
}
.services-item .icon span {
  width: 60px;
  height: 60px;
  font-size: 20px;
  position: relative;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background: var(--main-color);
  transition: all 0.5s ease;
}
.services-item .icon-border {
  left: 50%;
  bottom: 0;
  z-index: -3;
  position: absolute;
  margin-left: 30px;
  transform: translateX(-50%);
}
.services-item .icon-border:after, .services-item .icon-border:before {
  top: 0;
  content: "";
  position: absolute;
  border-radius: 50%;
  transition: all 0.5s ease;
  transform: translateY(-50%);
  border: 2px solid var(--main-color);
}
.services-item .icon-border:after {
  right: -10px;
  width: 80px;
  height: 80px;
  line-height: 80px;
}
.services-item .icon-border:before {
  right: -20px;
  width: 100px;
  height: 100px;
  line-height: 100px;
}

#team .section-heading {
  margin-bottom: 26px;
}

.team-card {
  position: relative;
  margin-top: 124px;
}
.team-card .img {
  left: 50%;
  top: -100px;
  padding: 10px;
  position: absolute;
  border-radius: 50%;
  transition: all 0.5s ease;
  transform: translateX(-50%);
  border: 10px solid var(--secondary-color);
}
.team-card .img img {
  border-radius: 50%;
  position: relative;
}
.team-card .body {
  text-align: center;
  border-radius: 80px;
  transition: all 0.5s ease;
  background: var(--secondary-color);
  padding: 150px 30px 30px 30px;
}
.team-card .body .text {
  margin-bottom: 30px;
}
.team-card .body .text h5 {
  color: #fff;
  margin-bottom: 10px;
}
.team-card .body .text p {
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.blog-item {
  margin-bottom: 24px;
  align-items: center;
  border-radius: 50px;
  background: #fff;
  transition: all 0.5s ease;
  justify-content: space-between;
  box-shadow: 0 10px 30px 0 rgba(255, 69, 0, 0.15);
}
.blog-item .blog-img {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}
.blog-item .blog-img img {
  border-radius: 30px;
  transition: all 0.5s ease;
}

.blog-item .blog-body {
  position: relative;
  padding: 50px 30px 30px 30px;
}

.blog-item .blog-body .blog-meta {
  margin-bottom: 15px;
}
.blog-item .blog-body .blog-meta a {
  font-size: 15px;
  margin-right: 10px;
  font-weight: 600;
  color: var(--secondary-color);
}
.blog-item .blog-body .blog-meta a i {
  margin-right: 10px;
  color: var(--main-color);
}

.blog-item .blog-body h5 {
  margin-bottom: 20px;
}
.blog-item .blog-body h5 a {
  color: inherit;
}

.blog-item .blog-body .blog-link {
  color: var(--main-color);
  font-weight: 600;
}

.blog-item .blog-body .blog-link i {
  margin-left: 5px;
}
.blog-item .blog-body p {
  margin-bottom: 15px;
}
.google-map {
  width: 100%;
  line-height: 0;
}
.google-map iframe {
  width: 100%;
  min-height: 500px;
  border: none;
}
.footer {
    background: var(--secondary-color);
    padding: 30px 0;
    /* Daha geniş padding */
    width: 100%;
    /* Genişliği tam yapıyoruz */
}

.footer .footer-top {
    padding: 30px 0;
    /* Daha geniş padding */
}

.footer .footer-top .footer-widget {
    margin-bottom: 20px;
    /* Aralıkları büyütüyoruz */
}

.footer .footer-top .footer-widget .footer-logo {
    margin-bottom: 15px;
    /* Logo altı mesafeyi büyüttük */
}

.footer .footer-top .footer-widget .footer-desc {
    opacity: 0.85;
    color: #fff;
    margin-bottom: 20px;
    /* Daha fazla boşluk */
    font-size: 14px;
    /* Yazı boyutunu büyüttük */
}

.footer .footer-top .footer-widget .footer-title {
    font-size: 18px;
    /* Başlık boyutunu büyüttük */
    font-weight: 700;
    /* Daha kalın font */
    color: #fff;
    margin-bottom: 15px;
    /* Başlık altı mesafe büyütüldü */
    position: relative;
    letter-spacing: 1px;
    /* Harf aralıklarını arttırdık */
    text-transform: capitalize;
}

.footer .footer-top .footer-widget .footer-title:after {
    width: 40px;
    /* Çizgi daha büyük */
    height: 3px;
    content: "";
    display: block;
    margin-top: 10px;
    background: var(--main-color);
}

.footer .footer-top .footer-widget .footer-social-links a {
    padding: 8px;
    text-align: center;
    margin-right: 10px;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);}

.footer .footer-top .footer-widget .footer-social-links a i {
    width: 30px;
    /* Sosyal medya ikonları büyütüldü */
    height: 30px;
    font-size: 18px;
    /* İkon boyutu büyütüldü */
    color: #fff;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.1);
}

.footer .footer-top .footer-widget .footer-contact-info-list li {
    margin-bottom: 10px;
    /* Liste elemanları arasındaki mesafeyi büyüttük */
}

.footer .footer-top .footer-widget .footer-contact-info-list li:last-child {
    margin-bottom: 0;
}

.footer .footer-top .footer-widget .footer-contact-info-list li h6 {
    font-weight: 700;
    /* Başlıkları daha kalın yaptık */
    color: #fff;
    margin-bottom: 10px;
    /* Başlık altı mesafesi büyütüldü */
    font-size: 16px;
    /* Başlık boyutu büyütüldü */
}

.footer .footer-top .footer-widget .footer-contact-info-list li p {
    color: #fff;
    opacity: 0.85;
    vertical-align: middle;
    font-size: 14px;
    /* Yazı boyutunu büyütüldü */
}

.footer .footer-top .footer-widget .footer-links li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /* Bağlantılar arasındaki mesafe büyütüldü */
}

.footer .footer-top .footer-widget .footer-links li:last-child {
    margin-bottom: 0;
}

.footer .footer-top .footer-widget .footer-links li span {
    color: #fff;
    font-size: 14px;
    /* Link yazı boyutu büyütüldü */
}

.footer .footer-top .footer-widget .footer-links li:before {
   /* content: "\f054"; */
    font-weight: 600;
    margin-right: 15px;
    /* Link simgesi ile metin arasındaki mesafe arttırıldı */
    display: inline-block;
    color: var(--main-color);
    transition: all 0.5s ease;
    font-family: "Font Awesome 5 Free";
}