* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-y: auto;
  overflow-x: hidden;
}

.container {
  width: 1300px;
  max-width: 90%;
  margin: auto;
}

@font-face {
  font-family: "SF-Pro-Display-Regular";
  src: url("../assets/font/SF-Pro-Display-Regular.otf") format("opentype");
}

@font-face {
  font-family: "SF-Pro-Display-Medium";
  src: url("../assets/font/SF-Pro-Display-Medium.otf") format("opentype");
}

@font-face {
  font-family: "SF-Pro-Display-Light";
  src: url("../assets/font/SF-Pro-Display-Light.otf") format("opentype");
}

@font-face {
  font-family: "SF-Pro-Display-Heavy";
  src: url("../assets/font/SF-Pro-Display-Heavy.otf") format("opentype");
}

.header {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 110px;
  padding: 2px 1rem;
  box-sizing: border-box;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  padding-top: 23px;
}

/* Logo */
.logo img {
  width: 220px;
  height: auto;
  position: relative;
  right: 14px;
}

.header-nav {
  flex-grow: 1;
  margin: 0 30px;
}

.nav-menu {
  display: flex;
  list-style: none;
  justify-content: flex-start;
  padding-left: 9%;
  gap: 40px;
}

.nav-menu > li {
  position: relative;
  padding: 10px 0;
  list-style: none;
}

.nav-menu > li > a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.nav-menu > li > a:hover {
  color: #5aaaac;
}

/* Dropdown Menüler */
.dropdown-menu,
.nested-dropdown-menu {
  position: absolute;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 259px;
  padding: 10px 0;
  margin: 1rem 0.5rem;
  box-shadow: 0 8px 25px rgba(90, 170, 172, 0.3);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.nested-dropdown-menu {
  left: calc(100% + 60px);
  top: 0;
}

.nav-menu > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-menu > li > a:hover {
  color: #5aaaac;
}

.nested-dropdown:hover .nested-dropdown-menu {
  opacity: 1;
  visibility: visible;
  left: 100%;
  top: 0;
}

.nav-menu > li.has-dropdown > a {
  color: #333;
  transition: color 0.3s ease;
}

.nav-menu > li.has-dropdown:hover > a {
  color: #5aaaac;
}

.dropdown-menu li,
.nested-dropdown-menu li {
  list-style: none;
  padding: 5px 25px;
}

.dropdown-menu li a:hover {
  color: #5aaaac;
}

.dropdown-menu li a,
.nested-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: #000000;
  text-decoration: none;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.dropdown-menu li a:hover,
.nested-dropdown-menu li a:hover {
  color: #5aaaac;
}

.icon-hover-bg {
  background: #aab4c8;
  transition: all 0.3s ease;
  color: white;
  border-radius: 5px;
  padding: 4px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-hover-bg i {
  font-size: 18px;
}

.icon-hover-bg:hover {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
}

.dropdown-menu li a:hover .icon-hover-bg,
.nested-dropdown-menu li a:hover .icon-hover-bg {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn {
  background-color: #f7f9fc;
  width: 55px;
  height: 55px;
  border-radius: 50%; /* Makes it circular */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-btn i {
  font-size: 21px;
}
.search-btn:hover {
  background: #e6e8ff;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  background: #4aadcb;
  color: white;
  padding: 9px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
}

.whatsapp-btn p {
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.whatsapp-btn:hover {
  background: #a0e2ff;
}

.whatsapp-btn img {
  height: 35px;
  padding-left: 1em;
}

/* Mobile Menu Styles */
.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.hamburger span {
  background: #7a859a;
  position: absolute;
  height: 3px;
  width: 100%;
  left: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* Mobil Menü */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  height: 70px;
  padding: 48px 18px;
}

.mobile-header .logo {
  width: 350px;
  max-width: 100%;
  height: auto;
}

.close-btn {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
}

#closeMenu {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #5aaaac;
  font-size: 2.5rem;
  transition: all 0.3s ease;
  width: auto;
  height: auto;
  position: absolute;
  top: 20px;
  right: 20px;
}

#closeMenu:hover {
  transform: scale(1.1);
}

.close-btn i.ri-close-line {
  font-size: inherit !important;
  color: inherit !important;
}

.mobile-menu-content {
  padding: 26px;
  padding-top: 0;
}

.mobile-menu ul {
  list-style: none;
  margin-top: 11px;
  padding: 1px;
}

.mobile-menu li {
  padding: 0.7rem 0;
  font-size: 18px;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.mobile-menu a:hover {
  color: #5aaaac;
}

.dropdown {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.dropdown.active {
  display: flex;
}

.dropdown li {
  font-size: 15px;
  padding: 0.5rem 0;
}

.contact-info-box {
  padding: 15px;
  margin: 20px -12px;
  max-width: 78%;
}

.contact-line {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.contact-icon {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  width: 47px;
  height: 47px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.dai-icon {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.contact-icon img {
  width: 24px;
  height: 24px;
}

.contact-text {
  padding: 3px;
  margin: 1px;
}

.contact-title {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #9eacc8;
  font-family: "SF-Pro-Display-Heavy", sans-serif;
}

.contact-number {
  margin: 7px 0 0 0;
  font-size: 20px;
  font-weight: 600;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  color: #7a859a;
}

.contact-address p {
  width: 129%;
  line-height: 1;
  font-size: 15px;
  color: #7a859a;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.contact-address p:first-child {
  margin-top: 28px;
  margin-left: 2px;
  line-height: 1.3;
}

.whatsapp-btn-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  background: #4aadcb;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  margin: 28px 7px;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
}

.social-mobil {
  display: flex;
  justify-content: start;
  gap: 8px;
  margin-top: 2.2em;
}

.social-mobil a {
  font-size: 20px;
  color: #7a859a;
  text-decoration: none;
  background-color: #f7f9fc;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transition: color 0.3s;
  align-items: center;
  justify-content: center;
}

.social-mobil a:hover {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  color: white;
}

/*********************************/
.header-img {
  padding: 80px 0;
  margin-top: 50px;
}

.header-orta {
  display: flex;
  max-width: 1285px;
  margin: 117px auto;
  gap: 23px;
  position: relative;
  left: 6px;
}

.header-text-overlay {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  max-width: 600px;
  padding: 40px;
  color: white;
  z-index: 2;
}

.header-text-overlay h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.header-text-overlay p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: white;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.header-text-overlay button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.header-sol {
  position: relative;
  flex: 1;
  margin-left: -4px;
}

.header-image {
  width: 100%;
  height: 630px;
  object-fit: cover;
  border-radius: 10px;
}

.header-sol h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2c3e50;
}

.header-sol p {
  padding-top: 15px;
  font-size: 15px;
  line-height: 1.3;
  width: 354px;
  color: #000;
}

.header-sol button {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  color: white;
  border: none;
  padding: 16px 21px;
  width: 173px;
  font-size: 15px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background-color 0.3s;
}

button i {
  font-size: 20px;
}

.header-sol button:hover {
  background-color: #2980b9;
}

.header-sag {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 360px;
}

.header-box {
  width: 98%;
  max-width: 100%;
  max-height: 326px;
  padding: 36px;
  box-sizing: border-box;
  border-radius: 8px;
}

.header-box:hover {
  transform: translateY(-5px);
}

.ust {
  background-color: #eddeff;
}

.alt {
  background-color: #c2f0f8;
  color: #000;
}

.header-box h2 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 15px;
  color: #9f64d9;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.header-box p {
  font-size: 15px;
  padding-left: 4px;
  margin-bottom: 87px;
  padding-top: 9px;
  line-height: 1.5;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.phone {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
  padding-left: 9px;
}

.phone i {
  padding: 17px;
  width: 55px;
  height: 55px;
  border-radius: 8px;
  background-color: white;
  font-size: 23px;
}

.phone div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.label {
  font-size: 12px;
  color: #9f64d9;
  line-height: 2;
  margin-top: -8px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "SF-Pro-Display-Medium", sans-serif;
}

.number {
  font-size: 20px;
  color: #9f64d9;
  font-weight: 600;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.arrow a {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: -2em;
  color: #128aaf;
  text-decoration: none;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  transition: color 0.3s;
  font-size: 20px;
  font-weight: bold;
}

.arrow i {
  padding: 10px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: white;
  color: #5aaaac;
  font-size: 30px;
}

.desktop-img {
  display: block;
}

.mobile-img {
  display: none;
}

.header-text-overlay h1 .highlight {
  color: #f5b9b9;
  /* #fcbbbb */
}

.header-text-overlay button:hover {
  background-color: #f5b9b9;
}

.haeder-slider {
  display: flex;
  align-items: center;
  justify-content: center;
}

section h3 p {
  color: black !important;
}

.header-slider-text {
  text-align: center;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
}

.header-slider-text h1 {
  font-size: 32px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  margin-bottom: 15px;
}

.header-slider-text p {
  padding-top: 15px;
  padding-left: 20px;
  margin: 0 auto;
  width: 53%;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.slider-tab {
  display: flex;
  gap: 10px;
  margin: 40px 0;
  /* flex-wrap: wrap; */
  justify-content: center;
}

.slider-tab button {
  padding: 10px 20px;
  width: 168px;
  height: 47px;
  border: none;
  background: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s ease;
}

.slider-tab button.active {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  color: white;
}

.slider-container {
  width: 1485px;
  /* max-width: 1519px; */
  overflow-x: hidden;
  /* scroll-snap-type: none; */
  padding-bottom: 20px;
  margin: auto;
}

.slider {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* scroll-snap-type: x mandatory; */
}

.card {
  position: relative;
  padding: 41px;
  border-radius: 16px;
  background: #f9fbfd;
  width: 413px;
  height: 300px;
  font-weight: bold;
  flex: 0 0 auto;
  /* scroll-snap-align: center; */
}

.card:hover {
  background: linear-gradient(135deg, #ffe3e3, #d6f8f0);
}

.card span {
  font-size: 14px;
  color: #000;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.card h3 {
  margin-top: 5em;
  margin-bottom: 1em;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.card p {
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 14px;
  font-weight: 100;
}

.tab-content {
  display: none;
  margin-left: 10em;
}

.tab-content.active {
  display: block;
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 25px;
    padding-left: 5%;
  }

  .header-nav {
    margin: 0 15px;
  }

  .whatsapp-btn p {
    display: none;
  }

  .whatsapp-btn img {
    padding-left: 0;
  }

  .logo img {
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 15px;
    padding-left: 3%;
  }

  .dropdown-menu,
  .nested-dropdown-menu {
    width: 220px;
  }

  .header-right {
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .hamburger {
    display: block;
    z-index: 1001;
    margin-top: -12px;
    font-size: 34px;
    color: #5aaaac;
  }

  .header-nav,
  .header-right {
    display: none;
  }

  .header-container {
    justify-content: space-between;
    padding: 20px 0;
    width: 100%; /* Tam genişlik */
    margin: 0;
  }

  .header {
    top: 0;
    height: 70px;
    padding: 0;
    background: #fff;
  }

  .mobile-menu {
    z-index: 1000;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 220px;
    margin-left: -17px;
  }

  .mobile-menu {
    max-width: 100%;
  }

  .mobile-header .logo {
    width: 212px;
    margin-left: -8px;
  }

  .call-box {
    font-size: 12px;
  }

  .call-box strong {
    font-size: 16px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: auto;
  height: auto;
}

.whatsapp-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.whatsapp-icon {
  width: 70px;
  height: 70px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite, pulse 2s infinite 1s;
}

.whatsapp-logo {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #075e54;
  color: white;
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.whatsapp-ripple {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
  animation: ripple 3s infinite;
}

.whatsapp-link:hover .whatsapp-icon {
  background-color: #128c7e;
  transform: scale(1.1) rotate(5deg);
  animation: none;
}

.whatsapp-link:hover .whatsapp-logo {
  transform: scale(1.1) rotate(-10deg);
}

.whatsapp-link:hover .whatsapp-tooltip {
  opacity: 1;
  right: 80px;
}

/* Animasyonlar */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes ripple {
  0% {
    width: 60px;
    height: 60px;
    opacity: 0.5;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .whatsapp-float {
    bottom: 25px;
    right: 25px;
  }
  .whatsapp-icon {
    width: 65px;
    height: 65px;
  }
  .whatsapp-logo {
    width: 40px;
    height: 40px;
  }
  .whatsapp-ripple {
    width: 70px;
    height: 70px;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-icon {
    width: 55px;
    height: 55px;
    animation: pulse 2s infinite;
  }
  .whatsapp-logo {
    width: 30px;
    height: 30px;
  }
  .whatsapp-tooltip {
    display: none;
  }
  .whatsapp-ripple {
    display: none;
  }
  @keyframes float {
    /* Mobilde float animasyonunu kaldırıyoruz */
    0%,
    100% {
      transform: translateY(0);
    }
  }
}

/* PAYLAŞ İCON */
.social-share {
  position: relative;
  display: inline-block;
  /* margin-top: -1px; */
}

.dai-share {
  margin-right: 15em;
}

.share-wrapper {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: 100px;
  overflow: hidden;
  margin-bottom: -2rem;
}

.share-btn {
  background: linear-gradient(135deg, #d0c8f3, #f7c5c8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 27px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 2;
  transition: all 0.3s ease;
}

/* SOSYAL İKONLAR - Başlangıçta gizli */
.social-icons-omerdai {
  display: flex;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  background: white;
  padding: 5px 15px;
  border-radius: 0 50px 50px 0;
  margin-left: -1px;
}

.social-icons-omerdai-gebelik {
  display: flex;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  background: #f7f9fc;
  padding: 5px 15px;
  border-radius: 0 50px 50px 0;
  margin-left: -1px;
}

/* HOVER ETKİSİ */
.share-wrapper:hover {
  width: 240px;
  background: white;
}

.share-wrapper:hover .social-icons-omerdai {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* İKONLAR */
.social-icons-omerdai a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  gap: 8px;
  height: 35px;
  border-radius: 50%;
  z-index: 1;
  text-decoration: none;
  color: #7a859a;
  font-size: 19px;
  transition: all 0.3s ease;
  background: white;
}

.social-icons-omerdai a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: -1;
}

.social-icons-omerdai a:hover::before {
  background: linear-gradient(135deg, #d0c8f3, #f7c5c8);
}

.social-icons-omerdai a:hover i {
  color: white;
}
/* PAYLAŞ İCON */

.hakkimda-area {
  background-color: #f7f9fc;
  padding: 5em 0px;
  margin: 52px 0;
}

.container .hakkimda-area {
  padding-left: 6%;
}

.hakkimda-alan {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  position: relative;
  left: 1%;
}

.sol-box,
.sag-box {
  border-radius: 10px;
  padding: 40px;
  background-color: white;
  box-sizing: border-box;
  height: 672px;
  cursor: pointer;
}

.sol-box {
  width: 770px;
  background: linear-gradient(140deg, #ffeaea, #e6f4f1);
  position: relative;
  padding: 6%;
}

.sag-box {
  width: 95%;
  max-width: 495px;
  padding: 60px 73px;
  background-color: #ffffff;
}

.etiket-sol {
  display: inline-block;
  background-color: #ffadad;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  color: #fff;
  font-size: 14px;
  padding: 7px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.etiket-sag {
  display: inline-block;
  background-color: #d4ccf8;
  color: white;
  font-size: 14px;
  padding: 7px 19px;
  border-radius: 19px;
  margin-bottom: 20px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.sol-box h1,
.sag-box h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 7px 0px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.sol-box h2 {
  font-size: 19px;
  font-weight: 500;
  color: #5aaaac;
  padding: 6px 5px;
  margin-bottom: 35px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.sol-box p,
.sag-box p {
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  font-weight: 400;
  margin-bottom: 44px;
  margin-top: 20px;
  padding-left: 2px;
  font-family: "SF-Pro-Display-Medium", sans-serif;
}

.sag-box p {
  width: 81%;
}

.sol-text p {
  padding: 0 1%;
}

.doctor-photo {
  position: absolute;
  top: 79px;
  right: 75px;
}

.doctor-photo img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
}

.sag-box ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.sag-box ul li {
  display: flex;
  align-items: center;
  padding-bottom: 42px;
  font-size: 18px;
  font-weight: 500;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  color: #000;
}

.sag-box ul li img {
  width: 20px;
  margin-right: 12px;
}

.daha-btn {
  margin-top: 32px;
  width: 173px;
  margin-left: 2px;
  padding: 13px 19px;
  border: 1px solid #d3d3d3;
  border-radius: 25px;
  background-color: white;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  color: #555;
  transition: all 0.3s ease;
}

.dai-btn {
  margin-top: 32px;
  width: 179px;
  margin-left: 2px;
  padding: 14px 28px;
  border: 1px solid #d3d3d3;
  border-radius: 30px;
  background-color: #f7f9fc;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #555;
  transition: all 0.3s ease;
}

.dai-btn i {
  font-size: 26px;
}

.daha-btn:hover {
  background-color: #f0f0f0;
}

.dai-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
  padding: 0 14px;
  margin: 60px 0 24px -5px;
  flex-wrap: nowrap;
  font-family: "SF-Pro-Display-Medium", sans-serif;
}

.dai-left h3 {
  color: #e9a9aa;
  font-size: 16px;
  margin-bottom: 11px;
}

.dai-left h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 12px;
}

.dai-left p {
  font-size: 16px;
  color: #333;
  max-width: 472px;
}

.dai-right {
  margin-left: auto;
  padding-top: 0;
  padding-left: 40px;
}

.dai-right a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
  margin-top: 12px;
  display: inline-block;
}

.dai-grid {
  max-width: 99%;
  gap: 25px;
  margin: 47px auto;
  display: flex;
  padding-left: 0em;
  justify-content: space-between;
}

.dai-colon {
  background-color: #ffffff;
  width: 413px;
  height: 476px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dai-colon img {
  width: 100%;
  height: 316px;
  object-fit: cover;
}

.dai-content {
  padding: 26px 23px;
}

.dai-date {
  display: flex;
  align-items: center;
  color: #7a859a;
  padding: 5px;
  font-family: "SF-Pro-Display-Medium", sans-serif;
}

.dai-date span {
  padding-left: 0px;
  font-size: 12px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.dai-date img {
  width: 18px;
  height: 17px;
  margin-right: 9px;
}

.dai-content p {
  font-size: 17px;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
  margin: 0;
  padding-top: 18px;
  padding-left: 6px;
  font-family: "SF-Pro-Display-Medium", sans-serif;
}

.dai-content p:hover {
  color: #5aaaac;
}

footer {
  padding: 10px 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  padding-left: 1.5em;
  flex: 1;
  min-width: 300px;
}

.footer-left h1 {
  font-family: "SF-Pro-Display-Medium", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-left p {
  color: #7b8491;
  font-size: 15px;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  width: 55%;
}

.footer-right {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.input-group {
  position: relative;
  display: flex;
}

.input-group input {
  padding: 17px 45px 17px 18px;
  border: none;
  border-radius: 25px;
  font-size: 12px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  width: 250px;
  color: #7a859a;
}

.dropdown-menu,
.nested-dropdown-menu {
  position: absolute;
  background: white;
  width: 250px;
  padding: 15px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
  top: 100%;
  left: -67px;
}

.nested-dropdown-menu {
  left: 100%;
  top: 0;
}

.has-dropdown:hover .dropdown-menu,
.nested-dropdown:hover .nested-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li a,
.nested-dropdown-menu li a {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s;
}

.dropdown-menu li a:hover,
.nested-dropdown-menu li a:hover {
  color: #5aaaac;
  background: #f9f9f9;
}

/* İKON STİLLERİ */
.icon-hover-bg {
  background: #e0e5f0;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.icon-hover-bg i {
  font-size: 16px;
  color: #555;
}

.dropdown-menu li a:hover .icon-hover-bg,
.nested-dropdown-menu li a:hover .icon-hover-bg {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
}

.dropdown-menu li a:hover .icon-hover-bg i,
.nested-dropdown-menu li a:hover .icon-hover-bg i {
  color: white;
}

.call-btn {
  background: linear-gradient(90deg, #c3b6f3, #f4a6b4);
  color: white;
  border: none;
  padding: 15px 23px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-weight: 600;
}

.call-btn i {
  height: 19px;
  position: relative;
  top: -1px;
}

.footer-orta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
  padding: 0 1.2em;
  gap: 46px;
}

.grid1 {
  flex: 0 0 25%;
  max-width: 25%;
}

.grid2 {
  flex: 0 0 18%;
  max-width: 18%;
}

.contact-logo img {
  max-width: 212px;
  height: auto;
  margin-top: 1px;
  margin-left: -1em;
}

.contact-info-box {
  border-radius: 10px;
  margin-top: 15px;
}

.grid2-text {
  padding: 0 10px;
}

.grid2-text h1 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #7a859a;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  padding-top: 16px;
}

.grid2-text p {
  font-size: 15px;
  color: #7a859a;
  margin-bottom: 12px;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.3s;
}

.grid2-text h2 {
  font-size: 14px;
  color: #7a859a;
  margin-top: 5px;
  cursor: pointer;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  display: inline-block;
}

.footer-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 75px 0;
}

.footer-left h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.footer-left p {
  width: 60%;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-right: 1em;
}

.input-group {
  position: relative;
}

.input-group input {
  padding: 17px 45px 17px 18px;
  border: 1px solid #d0d7df;
  border-radius: 25px;
  font-size: 12px;
  width: 250px;
  color: #7a859a;
}

.input-group .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 19px;
  opacity: 0.6;
}

.call-btn {
  background: linear-gradient(90deg, #c3b6f3, #f4a6b4);
  color: white;
  border: none;
  padding: 15px 23px;
  border-radius: 25px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  cursor: pointer;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-box {
  margin-top: 20px;
}

.contact-title {
  font-weight: bold;
  color: #7a8ca3;
  width: 120%;
}

.contact-number {
  width: 108%;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex: 3;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-links h3 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #2c3e50;
}

.footer-links p {
  margin-bottom: 8px;
  cursor: pointer;
}

.footer-links .show-all {
  color: #9daecc;
  font-weight: 600;
  cursor: pointer;
}

.footer-alt {
  background-color: #9daecc;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 97%;
  /* margin: 82px 59px; */
}

.footer-alt p {
  color: white;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  font-size: 15px;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: white;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social i {
  font-size: 18px;
  color: white;
  cursor: pointer;
}

.footer-enalt {
  width: 100vw;
  margin-left: calc(-1 * ((100vw - 100%) / 2));
  max-width: 100vw;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 3em;
  font-size: 13px;
  flex-wrap: wrap;
  color: #9dabc7;
  font-family: "SF-Pro-Display-Medium", sans-serif;
}

.footer-alt,
.footer-enalt {
  max-width: 1260px;
  /* width: 97%; */
  margin: 12px 32px;
  padding: 39px 3em;
  position: relative;
  top: 4em;
}

.footer-enalt {
  padding: 4em;
}

.breadcrumb-section {
  width: 100%;
  background: white;
  position: sticky;
  top: 110px;
  z-index: 999;
  padding: 15px 0;
  margin-top: 110px;
}

.page-navigation {
  /* max-width: 1245px; */
  margin: 1%;
}

.breadcrumb {
  font-size: 14px;
  color: #9eacc8;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.breadcrumb a {
  color: #9eacc8;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #5aaaac;
}

.tedavi-baslik-left {
  margin-left: -5px;
}

.left-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.left-search span {
  color: #5aaaac;
  font-size: 20px;
}

.left-boxs-search {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.slider-tab {
  display: flex;
  gap: 10px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.slider-tab {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider-tab::-webkit-scrollbar {
  display: none;
}

.slider-tab button {
  padding: 10px 20px;
  border: none !important;
  background: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s ease;
  border: 1px solid #d0d7df;
}

.slider-tab button.active {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  color: white;
  border: none;
}

.tedavi-title-left {
  margin-top: 46px;
  margin-left: 2%;
}

.tedavi-baslik-left h1 {
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.tedavi-baslik-left p {
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 15px;
  color: #000;
  line-height: 1.6;
  max-width: 33%;
  padding-left: 4px;
}

.boxs-left {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.left-search {
  position: relative;
  flex: 1;
  max-width: 388px;
  left: 10.8%;
  top: 1em;
}

.left-search input {
  padding: 16px 28px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  width: 100%;
  color: #7a859a;
  outline: none;
  transition: all 0.3s ease;
  background-color: #f7f9fc;
}

.left-search input:focus {
  border-color: #5aaaac;
}

.left-search .search-btn {
  position: absolute;
  right: 18px;
  top: 7px;
  width: 69px;
  height: 49px;
  border: none;
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.left-search .search-btn:hover {
  opacity: 0.9;
}

.left-boxs-search {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-right: 13em;
}

.left-boxs-search .tab-btn {
  padding: 15px 10px;
  width: 154px;
  position: relative;
  bottom: 6px;
  border-radius: 30px;
  background: #f7f9fc;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 15px;
  color: #7a859a;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.left-boxs-search .tab-btn.active,
.left-boxs-search .tab-btn:hover {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  color: white;
}

.left-boxs-search-wrapper {
  overflow-x: auto;
  max-width: 100%;
}

.cards-container {
  /* max-width: 1257px; */
  margin: 60px auto;
  /* padding-left: 9px; */
}

.cards-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-left: 11px;
}

.cards {
  position: relative;
  padding: 41px;
  border-radius: 16px;
  background: #fff7f7;
  width: calc(33.333% - 14px);
  height: 300px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.card:hover {
  background: linear-gradient(135deg, #ffe3e3, #d6f8f0);
  transform: translateY(-5px);
}

.card h3 {
  margin-top: 5em;
  margin-bottom: 1em;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 20px;
}

.card p {
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 14px;
  font-weight: 100;
  line-height: 1.5;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.pagination .page-number,
.pagination .page-arrow {
  border: none;
  background: none;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 16px;
  color: #7a859a;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pagination .page-number.active {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  color: white;
  width: 48px;
  height: 48px;
}

.pagination .page-number:hover,
.pagination .page-arrow:hover {
  opacity: 0.7;
}

.mobile-footer {
  display: none;
  background: #fff;
  padding: 20px 15px;
}

.footer-contact-mobile {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-bottom: 8px;
}

.contact-title {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.contact-number {
  font-size: 16px;
  color: #7a859a;
  font-weight: bold;
  margin: 0;
  padding-top: 7px;
}

.contact-address {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-top: 10px;
}

.mobile-accordion {
  margin: 15px 0;
}

.accordion-item {
  border-bottom: 1px solid #f0f0f0;
}

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}

.accordion-btn i {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-btn i {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 10px;
}

.accordion-item.active .accordion-panel {
  max-height: 1000px;
  padding-bottom: 15px;
}

.accordion-panel a {
  display: block;
  padding: 10px 0;
  color: #555;
  text-decoration: none;
  font-size: 14px;
}

.accordion-panel .show-all {
  color: #0066cc;
  font-weight: bold;
  margin-top: 5px;
}

.footer-bottom-mobile {
  margin-top: 20px;
  text-align: center;
}

.footer-email {
  display: block;
  color: #0066cc;
  font-weight: 600;
  margin-bottom: 15px;
  text-decoration: none;
}

.footer-social-mobile {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}

.footer-social-mobile i {
  font-size: 22px;
  color: #555;
}

.footer-links-mobile {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}

.footer-links-mobile a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.footer-copyright {
  font-size: 12px;
  color: #999;
  margin-top: 20px;
  line-height: 1.5;
}

.gebelik-title h1 {
  font-size: 32px;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  padding-left: 11px;
  padding-top: 15px;
}

.gebelik-alan {
  background-color: #f7f9fc;
  margin-top: 61px;
  padding-top: 50px;
}

.gebelik-container {
  display: flex;
  gap: 61px;
  padding: 30px 0;
  max-width: 1300px;
  margin: 0 auto;
}

.gebelik-left {
  width: 30%;
  padding-left: 20px;
}

.gebelik-right {
  width: 70%;
  height: auto;
  border-radius: 10px;
  padding-right: 2px;
}

.sidebar-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 35px;
  height: 197px;
  margin-bottom: 30px;
}

.sidebar-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000;
  padding-bottom: 10px;
  padding-left: 11px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.sidebar-boxx {
  background-color: #fff;
  border-radius: 10px;
  padding: 37px;
  height: 367px;
  margin-bottom: 30px;
}

.sidebar-boxx h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #000;
  padding-top: 3px;
  padding-bottom: 13px;
  padding-left: 11px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 15px 25px;
  border: none;
  border-radius: 30px;
  background-color: #f7f9fc;
  font-size: 14px;
  margin-top: 10px;
}

.search-box button {
  position: absolute;
  right: 2px;
  top: 12px;
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  border: none;
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  width: 52px;
  height: 44px;
  color: white;
  cursor: pointer;
}

.treatment-list {
  list-style: none;
}

.treatment-list li {
  padding: 17px 0;
  border-bottom: 1px solid #eee;
}

.treatment-list li:last-child {
  border-bottom: none;
}

.treatment-list a {
  display: flex;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 18px;
  padding-left: 14px;
  align-items: center;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.treatment-list a:hover {
  color: #5aaaac;
}

.treatment-list .icon {
  background-color: #aab4c8;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 25px;
  color: white;
  transition: background-color 0.3s;
}

.treatment-list a:hover .icon {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
}

.gebelik-img img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.gebelik-content h2 {
  font-size: 24px;
  color: #000;
  margin-bottom: 13px;
  margin-top: 40px;
  font-family: "SF-Pro-Display-Medium", sans-serif;
}

.gebelik-content p {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  color: #000;
}

.gebelik-paylas h1 {
  font-size: 22px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  padding-bottom: 25px;
  padding: 3px;
  margin-bottom: 29px;
}

.blog-yazi {
  margin-left: auto;
  position: relative;
  width: 43%;
  bottom: 47px;
  right: 30px;
}

.yazi-left {
  margin-bottom: -4em;
}

.blog-yazi .yazi-btn {
  margin-right: -15px;
  margin-top: -10px;
}

.tedavi-search {
  margin-top: -10px;
  margin-right: -1em;
}

.yazi-card-container {
  width: 100%;
  padding: 60px 0;
  background-color: #f7f9fc;
}

.yazi-card-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  margin-left: 1em;
}

.gebelikte-agri-alan {
  padding: 20px 0;
  margin-bottom: 3em;
}

.gebelik-agrı-area {
  background-color: #f7f9fc;
}

.gebelikte-agri-alan .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-agri-alan {
  font-size: 32px;
  color: #000;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  margin: 0;
  padding-left: 12px;
}

.date-agri-alan {
  display: flex;
  align-items: center;
  padding-right: 12px;
  color: #7a859a;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.date-agri-alan span {
  font-size: 13px;
}

.date-agri-alan img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.gebelik-agrı-area {
  padding: 65px 0 40px;
}

.gebelik-left-agri-alan {
  display: flex;
  gap: 30px;
}

.gebelik-main-content {
  flex: 2;
  margin-top: 1em;
}

.gebelik-sidebar {
  flex: 1;
  padding: 10px;
}

.gebelik-article {
  margin-bottom: 40px;
  margin-left: 1em;
}

.gebelik-article h2 {
  font-size: 24px;
  margin: 25px 0 15px;
  color: #000;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.gebelik-article p {
  margin-bottom: 15px;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

/* Sidebar */
.sidebar-gebelik {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  height: 197px;
}

.sidebar-gebelik h2 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #2c3e50;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  padding: 12px;
}

.sidebar-gebelik-box {
  background-color: white;
  height: 469px;
  padding: 12px 30px;
}

.sidebar-gebelik-box h2 {
  font-size: 22px;
  padding-top: 24px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.search-gebelik {
  position: relative;
}

.search-gebelik input {
  width: 100%;
  padding: 15px 24px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  background-color: #f7f9fc;
}

.gebelik-search-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  border: none;
  border-radius: 50%;
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  width: 56px;
  height: 44px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recent-post-gebelik {
  display: flex;
  gap: 15px;
  margin-top: 23px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.recent-post-gebelik:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.recent-post-gebelik img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.post-info {
  flex: 1;
  padding: 7px;
}

.post-date-gebelik {
  display: flex;
  align-items: center;
  color: #7a859a;
  font-size: 12px;
  margin-bottom: 5px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.post-title {
  font-weight: 600;
  text-wrap: nowrap;
  margin-bottom: 5px;
  font-size: 14px;
  color: #2c3e50;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.post-excerpt {
  color: #2c3e50;
  text-wrap: nowrap;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.gebelik-paylas {
  margin-top: 30px;
  padding: 45px;
}

.custom-bullets {
  list-style-type: none;
  padding-left: 4px;
  padding-top: 6px;
  font-size: 16px;
}

.custom-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #000;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.custom-bullets li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7a859a;
  font-size: 25px;
  line-height: 1;
}

.date-agri-alan img,
.post-date-gebelik img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.recent-post-gebelik:hover .post-title,
.recent-post-gebelik:hover .post-excerpt {
  color: #5aaaac !important;
  transition: color 0.3s ease;
}

.dai-area {
  margin-top: 1em;
  padding-left: 1em;
}

.dai-area h1 {
  font-size: 32px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  margin-bottom: 61px;
  padding-top: 7px;
  padding-left: 0px;
}

.dai-title {
  background: linear-gradient(135deg, #fbe5e5, #d2f0ea);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 24px;
  display: flex;
  margin-top: -1em;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 284px;
  max-width: 413px;
  text-align: center;
}

.dai-title h2 {
  font-size: 28px;
  margin-left: -3em;
  margin-top: 36px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.dai-title p {
  font-size: 18px;
  color: #5aaaac;
  margin-left: -5em;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.dai-left img {
  margin-bottom: 1px;
}

.dai-paylas {
  margin-left: 1em;
  padding-top: 26px;
}

.share-btn {
  padding: 12px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
}

.dai-iletisim {
  background-color: #f7f9fc;
  padding: 44px;
  border-radius: 16px;
  margin-top: 20px;
  min-height: 406px;
  max-width: 413px;
}

.dai-bilgi p {
  color: #7a859a;
  margin-top: -37px;
  margin-left: 10px;
  font-family: "SF-Pro-Display-Medium", sans-serif;
}

.dai-contact p {
  font-size: 12px;
  color: #7a859a;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.dai-contact h4 {
  font-size: 20px;
  color: #7a859a;
  padding-top: 10px;
}

.dai-line {
  margin-left: 9px;
  margin-top: 18px;
}

.dai-icon img {
  width: 31px;
  height: 25px;
}

.dai-rightt ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.dai-rightt ul li img {
  width: 20px;
  height: 20px;
}

/* Orta alan düzeni */
.dai-orta-area {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.dai-rightt {
  flex: 1;
  margin-top: -50px;
  margin-left: 27px;
}

.dai-rightt h1 {
  font-size: 32px;
  margin-top: 43px;
  margin-bottom: 0px;
  color: #000;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.dai-rightt p {
  margin-top: 28px;
  width: 97%;
  padding-left: 11px;
  color: #000;
  line-height: 1.6;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.dai-rightt ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.dai-rightt ul li img {
  width: 20px;
  height: 20px;
}

/* Orta alan düzeni */
.dai-orta-area {
  display: flex;
  gap: 30px;
}

.dai-rightt .specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 18px;
}

.dai-rightt .specialties li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  font-family: "SF-Pro-Display-Medium", sans-serif;
}

/* Kariyer Geçmişi iki kolon */
.dai-rightt .career-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 29px;
  margin-left: 8px;
}

.dai-rightt .career-list li {
  padding: 23px 15px;
  border-radius: 12px;
  list-style: none;
}

.career-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
  margin-top: 30px;
  padding-left: 0px;
}

.career-list li {
  position: relative;
  padding-left: 30px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.career-list li .content {
  display: flex;
  flex-direction: column;
  margin-top: -9px;
  padding-left: 19px;
}

.career-list li .title {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 21px;
  margin-top: -15px;
}

.dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: linear-gradient(180deg, #d6b0ff 0%, #ff9898 100%);
  border-radius: 50%;
}

.uzmanlik-text {
  max-width: 600px;
  width: auto;
}

/* Genel Stiller */
.uzman-kadro {
  padding: 40px 0;
  margin: 0 auto;
}

.uzman-title {
  font-size: 32px;
  text-align: start;
  margin-bottom: 40px;
  padding-left: 19px;
  color: #000;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

/* Kart Düzeni */
.kadro-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 97%;
  margin-left: 23px;
  box-sizing: border-box;
}

.kadro-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.kadro-card {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
}

.kadro-img-container {
  position: relative;
  width: 100%;
  height: 483px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.kadro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.share-wrapper.uzman-share {
  position: absolute;
  left: 15px;
  bottom: 15px;
  margin: 0;
  z-index: 3;
}

.share-btn {
  background: linear-gradient(135deg, #d0c8f3, #f7c5c8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}

.social-iconss {
  display: flex;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  background: white;
  padding: 5px 10px;
  border-radius: 0 50px 50px 0;
  margin-left: -5px;
}

.share-wrapper:hover {
  width: 245px;
}

.share-wrapper:hover .social-iconss {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.social-iconss a {
  padding-left: 9%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a859a;
  transition: all 0.3s ease;
  font-size: 19px;
}

.social-iconss a:hover {
  background: linear-gradient(135deg, #d0c8f3, #f7c5c8);
  color: white;
}

.kadro-card h2 {
  font-size: 22px;
  margin: 15px 0 5px;
  color: #2c3e50;
  font-family: "SF-Pro-Display-Medium", sans-serif;
}

.kadro-card p {
  font-size: 16px;
  color: #5aaaac;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.uzman-slider {
  padding: 60px 0;
  overflow: hidden;
}

.section-uzman-title {
  font-size: 32px;
  padding-left: 32px;
  margin-bottom: 40px;
  color: #000;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.gallery-uzman-slider {
  display: flex;
  gap: 20px;
  width: 1414px;
  padding: 10px 31px;
  user-select: none;
  overflow: hidden;
}

.gallery-uzman-slider:active {
  cursor: grabbing;
}

.gallery-uzman-slider.dragging {
  cursor: grabbing;
}

.slide {
  flex: 0 0 auto;
  width: 413px;
  height: 313px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.slide:hover {
  transform: translateY(-5px);
}

.slide:hover img {
  transform: scale(1.05);
}

.klinik {
  padding: 20px 0;
}

.klinik-text {
  padding-left: 2px;
  margin-top: 15px;
}

.klinik-text h1 {
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 32px;
  padding-left: 11px;
  margin-bottom: 25px;
  color: #2c3e50;
}

.klinik-text p {
  font-size: 15px;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  line-height: 1.5;
  padding: 13px;
  font-weight: 400;
  text-align: left;
}

.klinik-gallery {
  margin: 15px;
  padding-top: 42px;
}

.klinik-gallery h1 {
  font-size: 32px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  margin-bottom: 30px;
  padding-left: 4px;
}

.klinik-galeri {
  margin-top: 50px;
  padding-left: 4px;
}

.row1,
.row2,
.row3 {
  display: flex;
  justify-content: space-between;
  margin-top: 21px;
  margin-bottom: 21px;
  gap: 17px;
}

.row1 {
  margin: 2px;
}

.klinik-galeri img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.klinik-galeri img:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.klinik-slider {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.klinik-slider-container {
  position: relative;
  overflow: hidden;
}

.kadro-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 280px;
  transition: transform 0.3s ease;
}

.klinik-slider:active {
  cursor: grabbing;
}

.klinik-slider::-webkit-scrollbar {
  display: none;
}

.klinik-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.kadro-wrapper {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.kadro-btn {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.kadro-btn:hover {
  background: #f8f9fa;
}

.kadro-btn img {
  width: 16px;
  height: 16px;
}

.iletisim-page {
  padding: 50px 0;
  background-color: #f8fbff;
}

.page-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #222;
}

.social-media {
  text-align: right;
  margin-bottom: 20px;
}

.social-media p {
  font-weight: 600;
  color: #666;
}

.social-media .icons a {
  margin-left: 10px;
  font-size: 20px;
  color: #555;
  transition: color 0.3s;
}

.social-media .icons a:hover {
  color: #e67e88;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.contact-card {
  background-color: white;
  flex: 1 1 30%;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  background: #fff;
  padding: 12px;
  /* border-radius: 40%; */
  display: inline-block;
  color: #7a859a;
  width: 59px;
  height: 57px;
  font-size: 35px;
  margin-bottom: 10px;
}

.card-icon {
  position: absolute;
  top: 30px;
  right: 28px;
  background: white;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 37px;
  height: 35px;
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
}

.contact-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

/* Slider için güncellenmiş CSS */
.klinik-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.klinik-slider {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  cursor: grab;
  user-select: none;
  transition: transform 0.3s ease;
}

.klinik-slider.dragging {
  cursor: grabbing;
  transition: none;
}

.kadro-card {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.klinik-slider-container::-webkit-scrollbar {
  display: none;
}

.klinik-slider-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.uzman-kadro-container {
  padding: 60px 0px;
  max-width: 1402px;
  margin: 0 auto;
  position: relative;
  left: 3.5%;
}

.section-title-kadro {
  font-size: 32px;
  margin-bottom: 40px;
  padding-left: 1px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  color: #2c3e50;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.kadro-slider {
  display: flex;
  gap: 25px;
  cursor: grab;
  overflow-x: hidden;
  will-change: transform;
  transition: transform 0.3s ease-out;
}

.kadro-slider.dragging {
  cursor: grabbing;
  transition: none;
}

.kadro-card {
  flex: 0 0 410px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.kadro-card:hover {
  transform: translateY(-10px);
}

.card-img-container {
  position: relative;
  height: 483px;
  overflow: hidden;
}

.kadro-card:hover .kadro-img {
  transform: scale(1.05);
}

.share-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.kadro-card h2 {
  font-size: 22px;
  margin: 29px 0 5px 3px;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  color: #2c3e50;
  text-align: left;
}

.kadro-card p {
  font-size: 18px;
  margin: 14px 0 25px 5px;
  color: #5aaaac;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.section-contact-area {
  padding: 60px 20px;
}

.contact-head-row {
  max-width: 1260px;
  margin: 0 auto 40px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-main-heading {
  font-size: 32px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.media-connect-area {
  text-align: right;
}

.media-connect-text {
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-weight: 600;
  color: #666;
  margin-bottom: 20px;
  font-size: 20px;
}

/* Yeni büyütülmüş stil */
.media-icon-list a {
  margin-left: 10px;
  font-size: 20px;
  color: #7a859a;
  transition: 0.3s;
  background: #f7f9fc;
  padding: 12px; /* Arka plan boyutunu artırdık */
  border-radius: 50%;
  width: 44px; /* Sabit genişlik */
  height: 44px; /* Sabit yükseklik */
  display: inline-flex; /* İçeriği merkezlemek için */
  align-items: center;
  justify-content: center;
}

.media-icon-list a:hover {
  background: linear-gradient(135deg, #d0c8f3, #f7c5c8);
  color: white;
}

.contact-section {
  background-color: #f7f9fc;
  margin-top: 3em;
}

.contact-info-grid {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  width: 98%;
  margin-left: 18px;
}

.media-icon-list {
  padding-top: 1em;
}

.info-unit {
  width: 410px;
  min-height: 291px;
  background-color: white;
  border-radius: 16px;
  padding: 40px;
  margin-top: 4em;
  position: relative;
}

.info-symbol {
  position: absolute;
  top: 40px;
  right: 40px;
  background: linear-gradient(135deg, #ffc8c8, #c8c7fa);
  width: 55px;
  height: 55px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-symbol img {
  width: 24px;
  height: 24px;
}

.info-label {
  font-size: 20px;
  margin-top: 22px;
  color: #9eacc8;
  text-transform: uppercase;
  font-family: "SF-Pro-Display-Heavy", sans-serif;
}

.info-value {
  font-size: 14px;
  color: #7a859a;
  line-height: 1.4;
  margin-top: 122px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.info-unit:nth-child(3) .info-value {
  font-size: 16px;
  line-height: 1.6;
}

.map-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.map-section iframe {
  border-radius: 16px;
  width: 1265px;
  margin-left: 23px;
}

.arama-bolumu {
  padding: 60px 20px;
  background: #fff;
}

.icerik-kapsayici {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.arama-baslik h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: -19px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.arama-baslik p {
  font-size: 17px;
  color: #333;
  max-width: 563px;
  padding-top: 29px;
  padding-bottom: 25px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.arama-formu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.arama-kutusu {
  display: flex;
  align-items: center;
  background-color: #f7f9fb;
  border-radius: 40px;
  padding: 2px 10px;
  width: 100%;
  max-width: 460px;
}

.arama-kutusu input {
  border: none;
  background: transparent;
  padding: 14px 20px;
  flex: 1;
  font-size: 16px;
  outline: none;
  color: #333;
}

.arama-buton {
  border: none;
  background: linear-gradient(to right, #d3ccff, #ffb3c6);
  color: white;
  padding: 10px;
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  cursor: pointer;
  height: 50px;
  width: 60px;
  position: relative;
  left: 1em;
  z-index: 4444;
}

.kategori-secici {
  display: flex;
  gap: 15px;
}

.kategori-secici button {
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.kategori-secici .secili {
  background: linear-gradient(to right, #d3ccff, #ffb3c6);
  color: white;
}

.secenek {
  color: #7a859a;
}

.kategori-secici .secili-degil {
  background: transparent;
  color: #6e7b8a;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .icerik-kapsayici {
    align-items: center;
  }

  .arama-formu {
    flex-direction: column;
    align-items: center;
  }

  .arama-baslik {
    text-align: center;
  }

  .arama-baslik h2 {
    text-align: left;
    padding-left: 11px;
    padding-top: 1em;
  }

  .arama-baslik p {
    text-align: left;
    padding-left: 11px;
  }
}

.arama-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.cardd {
  position: relative;
  padding: 41px;
  border-radius: 16px;
  background: #f9fbfd;
  width: calc(33.333% - 14px);
  height: 300px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cardd:hover {
  background: linear-gradient(135deg, #ffe3e3, #d6f8f0);
  transform: translateY(-5px);
}

.cardd-icon {
  margin-bottom: 20px;
}

.cardd-icon img {
  width: 24px;
  height: 24px;
}

.cardd-link {
  display: block;
  height: 100%;
}

.cardd-link span {
  font-size: 14px;
  color: #000;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  display: block;
  margin-bottom: 10px;
}

.cardd-link h3 {
  font-size: 20px;
  margin: 15px 0;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}

.cardd-link p {
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 14px;
  font-weight: 100;
  line-height: 1.5;
  color: #7a859a;
}

/* Pagination */
.arama-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.arama-pagination .page-number,
.arama-pagination .page-arrow {
  border: none;
  background: none;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 16px;
  color: #7a859a;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.arama-pagination .page-number.active {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
  color: white;
  width: 48px;
  height: 48px;
}

.arama-pagination .page-number:hover,
.arama-pagination .page-arrow:hover {
  opacity: 0.7;
}

/************************************************************************/
@media (max-width: 768px) {
  .header-orta {
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -3em;
    left: 7px;
    width: 420px;
  }

  .header-sol,
  .header-sag {
    width: 90%;
    margin: 0 auto;
    padding-top: 2.5em;
  }

  .header-sol {
    order: 1;
  }

  .header-sag {
    order: 2;
    margin-bottom: 20px;
  }

  .header-text-overlay {
    position: static;
    transform: none;
    color: #000;
    background-color: #ffffffc9;
    border-radius: 8px;
    margin-top: -24em;
  }

  .header-text-overlay h1 {
    font-size: 24px;
    color: #2c3e50;
  }

  .header-text-overlay p {
    font-size: 14px;
    color: #444;
  }

  .header-image {
    max-height: 502px;
    object-fit: cover;
  }

  .desktop-img {
    display: none;
  }

  .slider-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    position: relative;
    left: 2em;
  }

  .slider {
    width: max-content;
    margin-top: 29px;
    margin-bottom: -26px;
    margin-left: 0px;
  }

  .card {
    max-width: 370px;
    margin-left: -px;
    scroll-snap-align: start;
  }

  .card p {
    width: 290px;
  }

  .slider-tab {
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 15px 15px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    margin-bottom: -1em;
  }

  .slider-tab::-webkit-scrollbar {
    display: none;
  }

  .slider-tab button {
    padding: 8px 27px;
    font-size: 15px;
    position: relative;
    left: -8em;
  }

  .tab-content.active {
    display: block;
    margin: 0 -22px;
    width: 390px;
  }

  .hakkimda-alan {
    flex-direction: column;
    padding-left: 7px;
  }

  .sol-box {
    display: flex;
    flex-direction: column;
  }

  .doctor-photo {
    position: absolute;
    top: 98px;
    left: 31px;
    margin: 0;
    order: unset;
  }

  .etiket-sol {
    order: 0;
    margin-top: -1em;
    display: block;
  }

  .share-wrapper {
    margin: 0 auto;
  }

  .dai-blog-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 16px;
    text-align: left;
  }

  .dai-left {
    width: 100%;
    margin-left: -7px;
  }

  .dai-grid {
    flex-direction: column;
    align-items: center;
    padding: 0 9px;
    max-width: 99%;
    position: relative;
    right: 8px;
  }

  .dai-colon {
    width: 100%;
    max-width: 370px;
    height: auto;
  }

  .dai-colon img {
    height: auto;
    max-height: 300px;
  }

  .dai-content {
    padding: 20px;
  }

  .dai-right {
    display: none;
  }

  .dai-left h1,
  .dai-left p {
    text-align: left;
    padding-bottom: 1px;
  }

  footer {
    padding: 20px 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 75px 0;
  }

  .footer-left {
    padding-left: 4px;
    width: 100%;
    margin-top: -4em;
  }

  .footer-left p {
    width: 100%;
  }

  .footer-right {
    flex-direction: column;
    gap: 12px;
    padding-top: 2em;
  }

  .input-group input {
    width: 370px;
    padding: 19px;
  }

  .call-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-orta {
    flex-direction: column;
    gap: 30px;
    padding: 0;
    margin-top: 20px;
  }

  .grid1,
  .grid2 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .grid2-text h1 {
    font-size: 20px;
  }

  .grid2-text p {
    font-size: 16px;
  }

  .social-share {
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
    margin-top: -9px;
    width: 100%;
    text-align: center;
  }

  .dai-share {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .share-wrapper {
    margin: -18px 72px;
  }

  .footer-alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 20px 0;
    margin-left: -30px;
    width: 100vw;
    background-color: #a8b1c7;
    color: white;
    text-align: center;
    box-sizing: border-box;
  }

  .footer-alt > div {
    justify-content: center;
  }

  .footer-alt p,
  .footer-nav a {
    text-align: center;
    font-size: 14px;
  }

  .footer-enalt {
    flex-direction: column;
    padding: 23px;
    margin-left: -28px;
    line-height: 1.6;
  }

  .footer-enalt p {
    text-align: center;
    width: 100%;
  }

  .footer-social {
    justify-content: center;
    gap: 20px;
    width: 100%;
  }

  .slider-tab,
  .left-boxs-search {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 15px;
    margin-left: 0;
    gap: 8px;
  }

  .slider-tab::-webkit-scrollbar,
  .left-boxs-search::-webkit-scrollbar {
    display: none;
  }

  .slider-tab button,
  .left-boxs-search .tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 14px 20px;
    font-size: 14px;
  }

  .slider-tab {
    margin: 30px 0;
    padding: 0 67px;
  }

  .header {
    height: 100px;
    padding: 0 15px;
  }

  .logo img {
    width: 212px;
  }

  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }

  .mobile-menu-content ul li {
    padding: 12px 0;
  }

  .breadcrumb-section {
    padding: 10px 2px;
    margin-top: 70px;
    position: relative;
    top: 1em;
  }

  .breadcrumb {
    font-size: 12px;
    white-space: nowrap;
    overflow-x: auto;
  }

  .tedavi-baslik-left h1 {
    font-size: 24px;
  }

  .tedavi-baslik-left p {
    max-width: 96%;
    font-size: 15px;
    color: #000;
  }

  .boxs-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .left-search {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-top: 10px;
  }

  .left-boxs-search {
    margin: auto;
    justify-content: flex-start;
    padding: 10px 12px;
  }

  .cards-row {
    flex-direction: column;
  }

  .card {
    width: 100%;
    margin-bottom: 20px;
  }

  .pagination {
    margin-top: 20px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-left p {
    width: 100%;
    padding: 4px;
  }

  .footer-middle {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .cards-container .cards-row:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .gebelik-container {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }

  .gebelik-left,
  .gebelik-right {
    width: 100%;
    padding: 0;
  }

  .gebelik-left {
    order: 2;
  }

  .gebelik-right {
    order: 1;
  }

  .gebelik-breadcrumb {
    white-space: normal !important;
    flex-wrap: wrap !important;
    display: flex !important;
    gap: 5px !important;
    padding: 10px 0 !important;
    overflow: visible !important;
  }

  .gebelik-breadcrumb a {
    white-space: normal !important;
    display: inline !important;
  }

  .gebelik-title h1 {
    text-wrap: nowrap;
    padding-top: 1em;
  }

  .sidebar-box .search-btn {
    margin-top: 0em;
    margin-right: 0em;
  }

  .yazi-card-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .yazi-colon {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    padding: 0 10px;
  }

  .pagination .page-number,
  .pagination .page-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .pagination .page-number.active {
    width: 40px;
    height: 40px;
  }

  .yazi-left {
    margin-top: 42px;
    padding: 0 8px;
    width: 85%;
  }

  .yazi-left h1 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: left;
    padding-left: 0;
  }

  .yazi-left p {
    max-width: 100%;
    font-size: 14px;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .blog-yazi {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin: 0;
    padding: 0 15px;
  }

  .blog-left-yazi {
    position: relative;
    left: auto;
  }

  .blog-left-yazi input {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
  }

  .yazi-btn {
    top: 9px;
    max-height: 90%;
  }

  .yazi-left {
    margin: 20px 0;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .blog-yazi {
    flex-direction: column;
    width: 100%;
    position: static;
    margin: 20px 0;
    padding: 0 15px;
  }

  .yazi-card-container {
    padding: 30px 0;
  }

  .yazi-card-row {
    flex-direction: column;
    margin: 0;
    padding: 0 15px;
    gap: 15px;
  }

  .gebelik-left-agri-alan {
    flex-direction: column;
    display: flex;
  }

  .gebelik-sidebar {
    /* width: 100%;
    max-width: 100%;
    margin-bottom: 30px; */
  }

  .gebelik-main-content {
    order: -1;
    margin-bottom: 30px;
  }

  .dai-orta-area {
    flex-direction: column;
    align-items: center;
  }
  .dai-rightt .career-list {
    grid-template-columns: 1fr;
  }

  .dai-left img {
    width: 370px;
  }

  .dai-title {
    width: 370px;
  }

  .dai-rightt {
    margin-left: -4px;
  }

  .dai-share {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
  }
  .dai-btn {
    margin: 20px auto !important;
    width: 80% !important;
  }

  .kadro-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .share-wrapper {
    top: 5px;
    right: 5px;
  }

  .uzman-kadro {
    padding: 30px 15px;
  }

  .uzman-title {
    text-align: center;
    padding-left: 0;
    font-size: 28px;
    margin-bottom: 30px;
  }

  .kadro-grid {
    width: 100% !important; /* %100 genişlik */
    margin-left: 0 !important;
    gap: 30px;
  }

  .kadro-row {
    gap: 30px;
    padding: 0 0px;
  }

  .kadro-row:nth-child(2) {
    display: none;
  }

  .uzman-title {
    font-size: 24px;
    text-align: start;
  }

  .section-uzman-title {
    font-size: 24px;
    padding-left: 10px;
    margin-bottom: 25px;
  }

  .gallery-uzman-slider {
    width: 100% !important;
    padding: 10px 10px;
    overflow-x: scroll;
  }

  .slide {
    width: 80vw;
    height: auto;
  }

  .social-iconss a {
    width: 25px;
    height: 25px;
  }

  .share-wrapper.uzman-share {
    margin-top: 19em;
  }
}

@media (max-width: 480px) {
  .header-text-overlay {
    left: 20px;
    padding: 25px;
    max-width: 90%;
  }

  .header-text-overlay h1 {
    font-size: 36px;
    line-height: 1;
    position: relative;
    top: -2.8em;
  }

  .header-text-overlay p {
    font-size: 14px;
    width: 91%;
    position: relative;
    top: -7em;
  }

  .header-text-overlay button {
    background: linear-gradient(90deg, #b18cff, #ffaebf);
    position: relative;
    top: -5em;
    padding: 4% 6%;
    width: 150px;
  }

  .header-slider-text h1 {
    margin-top: -2.4em;
    margin-left: 11px;
  }

  .header-slider-text p {
    padding: 21px 27px;
    margin-left: -1em;
    width: 106%;
  }

  .sol-box {
    height: 975px;
    padding: 12% 8%;
    width: 370px;
  }

  .etiket-sol {
    font-size: 14px;
    font-weight: 600;
    font-family: "SF-Pro-Display-Regular", sans-serif;
    width: 130px;
    padding-left: 10%;
  }

  .sol-text {
    position: absolute;
    top: 16em;
    padding-bottom: 60px;
  }

  .sol-text {
    order: 3;
  }

  .social-share {
    order: 4;
  }

  .sol-box {
    position: relative;
    padding-bottom: 80px;
  }

  .social-share {
    position: absolute;
    /* bottom: 30px; */
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .gebelik-dogum-share {
    width: 100%;
    margin-bottom: 11em;
    margin-left: 3em;
    position: absolute;
    transform: translateX(-50%);
    margin-top: -5px;
  }

  .sol-text h2 {
    font-size: 20px;
  }

  .sol-text p {
    width: 333px;
  }

  .etiket-sag {
    position: absolute;
    left: 23px;
  }

  .sag-box {
    height: 634px;
    width: 370px;
  }

  .sag-box h1 {
    text-wrap: nowrap;
    position: absolute;
    padding-top: 55px;
    left: 22px;
  }

  .sag-text {
    margin-top: 121px;
    width: 159%;
    margin-left: -3em;
  }

  .daha-btn {
    position: absolute;
    bottom: 61px;
    left: 2.3em;
  }

  .contact-address p {
    width: 82%;
  }

  .tedavi-baslik-left h1 {
    font-size: 32px;
  }

  .card {
    padding: 46px;
  }

  .whatsapp-btn-mobile {
    width: 100%;
    justify-content: center;
    margin: 20px 0;
    width: 205px;
    padding: 12px 18px;
  }

  .contact-info-box {
    max-width: 100%;
  }

  .desktop-img {
    display: none;
  }

  .mobile-img {
    display: block;
    width: 98%;
  }

  .left-search input {
    width: 370px;
    margin: auto;
  }

  .search-btn {
    margin: 12.2em 17px;
    height: 48px;
    width: 58px;
  }

  .gebelikte-agri-alan .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .date-agri-alan {
    margin-top: 27px;
    margin-left: 1em;
  }

  .gebelik-search-btn {
    width: 50px;
    height: 40px;
  }

  .recent-post-gebelik {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }

  .recent-post-gebelik img {
    height: auto;
    max-height: 200px;
    margin-bottom: 10px;
  }

  .gebelik-article {
    margin-left: 9px;
  }

  .gebelik-article h2 {
    font-size: 20px;
  }

  .gebelik-article p {
    font-size: 15px;
  }

  .search-gebelik input {
    padding: 12px 15px;
  }

  .gebelik-search-btn {
    width: 50px;
    height: 40px;
    position: absolute;
    margin-top: 0em;
    margin-right: 2px;
  }

  .gebelik-paylas {
    padding: 37px;
    background: #fff;
    border-radius: 8px;
    margin: 20px 0;
  }

  .dai-orta-area {
    flex-direction: column;
    align-items: center;
  }

  .dai-left,
  .dai-rightt {
    max-width: 100%;
  }

  .dai-rightt h1 {
    font-size: 24px;
  }

  .dai-rightt ul li {
    font-size: 15px;
  }

  .dai-orta-area {
    gap: 20px;
  }

  .dai-rightt h1 {
    font-size: 22px;
  }

  .dai-rightt p {
    font-size: 14px;
  }

  .dai-rightt ul li {
    font-size: 14px;
  }

  .dai-rightt ul li img {
    width: 18px;
    height: 18px;
  }
}
/****************************************************************/
html,
body {
  width: 100%;
  max-width: 100%;
  /* overflow-x: hidden; */
  position: relative;
  overflow: visible;
}

a {
  text-decoration: none;
}

.slider {
  display: flex;
  gap: 20px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .klinik-galeri {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .row1,
  .row2,
  .row3 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
  }

  .row1 img,
  .row2 img,
  .row3 img {
    width: 100%;
    height: auto;
  }

  .row2,
  .row3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .klinik-galeri img {
    min-height: 313px;
    object-fit: cover;
  }
}

/* Mobil görünüm için özel ayarlar */
@media (max-width: 768px) {
  .uzman-kadro-container {
    padding: 20px 10px;
    left: 0;
    width: 100%;
    overflow: hidden;
  }

  .section-title-kadro {
    font-size: 24px;
    text-align: center;
    padding-right: 5.5em;
    margin-bottom: 39px;
  }

  .slider-wrapper {
    padding: 0;
  }

  .kadro-slider {
    display: flex;
    gap: 15px;
    padding: 0 10px;
    overflow-x: auto;
    margin: auto;
    padding-left: 2em;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .kadro-slider::-webkit-scrollbar {
    display: none;
  }

  .kadro-card {
    scroll-snap-align: center;
    margin: 0 0px;
  }

  .kadro-img-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
  }

  .kadro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .kadro-card h2 {
    margin: 32px 0 14px 0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .kadro-card p {
    margin: 0 0 15px 0;
  }

  .share-wrapper.uzman-share {
    left: 10px;
    bottom: 10px;
    /* width: auto; */
  }

  .kadro-slider::after {
    content: "";
    padding-right: 10px;
  }
}

@media (max-width: 768px) {
  .contact-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
    padding: 41px 29px;
    margin-bottom: -1em;
  }

  .contact-main-heading {
    font-size: 26px;
  }

  .media-connect-area {
    text-align: left;
    width: 100%;
  }

  .media-connect-text {
    font-size: 18px;
  }

  .media-icon-list a {
    font-size: 18px;
    padding: 6px;
    margin-left: 6px;
  }

  .contact-info-grid {
    flex-direction: column;
    gap: 20px;
    margin-left: 0;
    width: 100%;
    padding: 0 10px;
  }

  .info-unit {
    width: 100%;
    margin-top: 2em;
    padding: 30px;
  }

  .info-label {
    font-size: 18px;
  }

  .info-value {
    font-size: 14px;
    margin-top: 100px;
  }

  .map-section iframe {
    width: 100% !important;
    margin-left: 0;
  }
}

/* Mobil Ekranlar: 480px ve altı */
@media (max-width: 480px) {
  .contact-main-heading {
    font-size: 22px;
  }

  .media-connect-text {
    font-size: 16px;
  }

  .media-icon-list a {
    font-size: 16px;
    padding: 5px;
  }

  .info-unit {
    padding: 36px;
  }

  .info-symbol {
    width: 40px;
    height: 40px;
    top: 40px;
    right: 35px;
  }

  .info-symbol img {
    width: 20px;
    height: 20px;
  }

  .info-label {
    font-size: 16px;
    margin-top: 20px;
  }

  .info-value {
    font-size: 13px;
    margin-top: 119px;
    margin-left: 1em;
  }

  .map-section {
    margin: 40px 0;
  }
}

@media (max-width: 1024px) {
  .cardd {
    padding: 30px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .arama-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .arama-formu {
    flex-direction: column;
    align-items: flex-start;
  }

  .arama-row:nth-of-type(n + 2) {
    display: none !important;
  }

  .arama-card {
    width: 100% !important;
    margin-bottom: 0 !important;
    padding: 25px !important;
  }
}

@media (max-width: 480px) {
  .arama-bolumu {
    padding: 40px 15px;
  }

  .arama-kutusu {
    width: 375px;
  }

  .kategori-secici {
    padding-top: 1em;
  }

  .kategori-secici button {
    padding: 10px 15px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .social-share.alt-share {
    position: absolute;
    bottom: 45px;
    left: 20%;
    transform: translateX(-50%);
    margin-top: 0;
    width: auto;
    order: 4;
  }

  .sol-box {
    position: relative;
    padding-bottom: 100px; /* Add more padding to accommodate the share buttons */
  }

  .sol-text {
    order: 3;
    margin-bottom: 60px; /* Create space for share buttons */
  }

  .doctor-photo {
    order: 2;
    position: absolute;
    top: 100px;
    left: 30px;
    margin: 0;
  }

  .etiket-sol {
    order: 1;
  }
}

.accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-toggle .icon-hover-bg {
  transition: transform 0.3s ease;
}

.accordion-toggle.open .icon-hover-bg {
  transform: rotate(90deg);
}

.dropdown-content {
  display: none;
  flex-direction: column;
  padding: 0 20px 15px;
  background-color: #fafafa;
}

.dropdown-content a {
  text-decoration: none;
  color: #333;
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}

.dropdown-content a:last-child {
  border-bottom: none;
  font-weight: bold;
  color: #007bff;
}

.dropdown-content.active {
  display: flex;
}

@media (max-width: 768px) {
  .grid2-text p,
  .grid2-text h2 {
    display: none;
  }

  .grid2-text h1.active + p,
  .grid2-text h1.active ~ p,
  .grid2-text h1.active ~ h2 {
    display: block;
  }

  .grid2-text h1 {
    cursor: pointer;
    position: relative;
    padding-right: 25px;
  }

  .grid2-text h1.active::after {
    transform: rotate(180deg);
  }
}

@media (min-width: 768px) {
  .icon-hover-bg {
    display: none;
  }
}

/* Mobilde grid2 içindeki yazıları gizle */
@media (max-width: 767px) {
  .grid2-text p,
  .grid2-text h2 {
    display: none;
  }

  .grid2-text.active p,
  .grid2-text.active h2 {
    display: block;
  }

  .grid2-text h1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .icon-hover-bg {
    transition: transform 0.3s ease;
  }

  .grid2-text.active .icon-hover-bg {
    transform: rotate(90deg);
  }
}

/* Açılır menü öğeleri için stil */
.dropdown-menu li a,
.nested-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #333;
  transition: all 0.3s ease;
}

.icon-hover-bg {
  background: #aab4c8;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  display: flex;
  margin-left: -10px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-hover-bg i {
  color: white;
  font-size: 20px;
}

.dropdown-menu li a:hover .icon-hover-bg,
.nested-dropdown-menu li a:hover .icon-hover-bg {
  background: linear-gradient(135deg, #c8c7fa, #ffc8c8);
}

@media (min-width: 1024px) {
  .hover-none {
    display: none;
  }
}

@media (max-width: 768px) {
  .kadro-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 4px;
  }

  .kadro-img-container {
    width: 100%;
    height: auto;
    aspect-ratio: 370/483;
  }

  .kadro-content {
    padding: 20px;
  }

  .kadro-card p {
    font-size: 16px;
  }
}
