:root {
  --text-muted: #666;
  --text-main: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Marmelad", sans-serif;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* Demo için yükseklik ekledim */
  height: 200vh;
  background-image: url("../assets/arkaplan.png");
  background-size: 100% auto;
  /* Genişliği %100, yükseklik otomatik */
  background-repeat: repeat;
  /* tekrar etmesin */
  background-attachment: scroll;
  /* scroll ile birlikte kaysın */
  background-position: top center;
  /* üstten ortadan başlasın */
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 50px;
  position: fixed;
  top: 0;
  width: 100%;
  height: 8vh;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, padding 0.3s;
  background: white;
  transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
  height: 7vh;
}

/* Logo */
.navbar .logo img {
  transition: height 0.3s;
}

.navbar-logo,
.logo,
.logo img {
  width: 5vw;
}

/* Hamburger Menu - Mobilde görünür */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Nav Links */
.nav-links {
  height: 100%;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5rem;
  position: relative;
}

.navbar-logo {
  border-radius: 100%;
  background: white;
  margin: 3rem 4rem 0 4rem;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 18px;
  transition: color 0.3s, transform 0.3s;
  font-weight: 600;
}

.nav-links li a:hover {
  color: #cba135;
}

.nav-links li {
  display: flex;
  width: 8vw;
  justify-content: center;
}

/* Indicator (kayan bant) */
.nav-indicator {
  position: absolute;
  height: 40px;
  background: rgba(203, 161, 53, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 0;
  width: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Mobile Dropdown Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-menu.active {
  max-height: 300px;
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  padding-top: 5px;
  display: flex;
  flex-direction: column;
}

.mobile-menu li {
  width: 100%;
}

.mobile-menu a {
  display: block;
  padding: 15px 30px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:hover {
  background: rgba(203, 161, 53, 0.1);
  color: #cba135;
}

/* Responsive Design */
@media (max-width: 900px) {
  .navbar {
    justify-content: space-between;
    padding: 0px 20px;
    height: 80px;
  }

  .navbar-logo {
    background: none;
    margin: 0;
  }

  .navbar.scrolled {
    height: 70px;
  }

  .navbar-logo,
  .logo,
  .logo img {
    width: auto !important;
    height: 100% !important;
  }

  .navbar .logo img {
    height: 80px;
  }

  .navbar.scrolled .logo img {
    height: 75px;
  }

  /* Desktop nav-links gizle */
  .nav-links {
    display: none;
  }

  /* Mobile logo göster */
  .mobile-logo {
    display: block !important;
  }

  /* Hamburger göster */
  .hamburger {
    display: flex;
  }

  /* Mobile menu göster */
  .mobile-menu {
    display: block;
  }

  /* Logo solda konumlandır */
  .navbar {
    align-items: center;
  }

  .nav-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0px 15px;
  }

  .mobile-menu a {
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* Sections */
section {
  width: 100%;
  box-sizing: border-box;
}

/* Hero Section */
#hero {
  color: white;
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 84, 147, 0.7) 0%,
    rgba(215, 177, 86, 0.7) 100%
  );
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

@keyframes moveBackground {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  display: grid;
  text-align: center;
  padding: 40px 20px;
  gap: 5rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
}

@keyframes titleGlow {
  0% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  100% {
    text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.4);
  }
}

.hero-content p {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-heading {
  display: grid;
  gap: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Modern Button Styles */
.btn {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.btn:active {
  transform: translateY(-1px);
}

/* Primary button - özel stil */
.btn-primary {
  background: #d7b1563b;
  border-color: #d7b156;
  color: white;
  width: 15rem;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #e8c267, #d7b156);
  border-color: #e8c267;
  box-shadow: 0 10px 25px rgba(203, 161, 53, 0.4);
}

/* Dekoratif elementler */
.hero-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-decoration:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
  width: 60px;
  height: 60px;
}

.hero-decoration:nth-child(3) {
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
  width: 80px;
  height: 80px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
    margin: 20px 0 30px 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hero-decoration {
    display: none;
    /* Mobilde gizle */
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .btn {
    padding: 12px 24px;
    width: 200px;
  }
}

/*Hakkımızda*/
.about {
  display: flex;
  justify-content: center;
  margin-top: 8vh;
  min-height: 100vh;
}

.about-container {
  max-width: 1200px;
  margin: 6rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 20px; /* Kenar boşlukları için */
}

.about-image {
  width: 455px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.about-text {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #7b5493;
  border-left: 6px solid #d7b156;
  padding-left: 12px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.about-btn {
  display: inline-block;
  margin-top: 1.5rem;
  margin-left: auto; /* Bu satırı ekle */
  background: #d7b156;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.about-btn:hover {
  background: #7b5493;
  transform: translateY(-2px);
}

/* Tablet için (768px ve altı) */
@media (max-width: 980px) {
  .about {
    margin-top: 4vh;
    min-height: auto;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 2rem auto;
    text-align: center;
  }

  .about-image {
    width: 60%;
    justify-self: center;
    order: 1;
  }

  .about-text {
    order: 2;
    padding: 30px;
  }

  .about-text h2 {
    font-size: 1.8rem;
    text-align: center;
    border-left: none;
    border-bottom: 3px solid #d7b156;
    padding-left: 0;
    padding-bottom: 8px;
    display: inline-block;
  }
}

/* Mobil için (480px ve altı) */
@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
    gap: 20px;
    margin: 1rem auto;
  }

  .about-image {
    width: 80%;
  }

  .about-text {
    padding: 20px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .about-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin: auto;
  }
}

/*Seminars*/
.seminars-section {
  display: grid;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  border-radius: 20px;
  padding: 60px 40px;
}

.seminars-section h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  color: #7b5493;
  border-bottom: #d7b156 2px solid;
  font-weight: bold;
  margin-bottom: 4rem;
}

@media (max-width: 480px) {
  .seminars-section h2 {
    font-size: 2rem;
  }
}

.swiper-container {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.swiper {
  max-width: 80vw;
  height: fit-content;
  padding: 0 10px;
}

.swiper-button-prev {
  position: relative !important;
  top: unset !important;
  left: unset !important;
  right: unset !important;
}

.swiper-button-next {
  position: relative !important;
  top: unset !important;
  left: unset !important;
  right: unset !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #7b5493 !important;
  font-weight: bolder;
}

.seminar-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.seminar-card:hover {
  transform: translateY(-8px) scale(1.04);
}

.seminar-card h3 {
  padding: 15px;
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-main);
  margin-top: auto;
}

.seminar-img {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.soon-text {
  margin-top: 3rem;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #adadad;
}

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

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: end;
  opacity: 0;
  transition: 0.4s;
}

.seminar-card:hover .hover-overlay {
  opacity: 1;
}

.fiyat-btn {
  padding: 12px 24px;
  margin-bottom: 4rem;
  border: none;
  border-radius: 25px;
  background: #7b5493;
  color: white;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
}

/* Contact Section */
#contact {
  display: grid;
  place-items: center;
  min-height: 92vh;
  margin-top: 8vh;
  background-color: #fff;
  background-image: radial-gradient(
    rgba(203, 161, 53, 0.15) 3px,
    transparent 3px
  );
  background-size: 10px 10px;
  color: var(--text-main);
  text-align: center;
}

.contact-container {
  width: 100vw;
  padding: 5rem 0 5rem 0;
}

.contact-newsletter i {
  font-size: 3rem;
  /* color: #7b5493; */
  color: var(--text-main);
  margin-bottom: 1rem;
}

.contact-newsletter h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-newsletter p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.contact-newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto;
  /* ortalamak için */
}

@media (max-width: 815px) {
  .contact-newsletter input {
    width: 70vw !important;
  }
}

.contact-newsletter input {
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  width: 50rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-newsletter button {
  padding: 10px 20px;
  border: none;
  background-color: #7b5493;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-newsletter button:hover {
  background-color: #67457a;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin: 5rem 0;
  flex-wrap: wrap;
}

.contact-info hr {
  opacity: 1;
  border-color: #7b5493;
  border-width: 0.25rem;
  width: 3rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  /* border: 0; */
  border-top: 1px solid;
}

.info-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 20rem;
  height: 28vh;
  border-bottom: 0.25rem solid #7b5493;
}

@media (max-width: 480px) {
  .contact-newsletter input {
    width: 90vw !important;
  }
}

.info-card h4 {
  color: var(--text-main);
  letter-spacing: 0.1rem;
  font-weight: 700;
}

.info-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.info-card a {
  color: var(--text-muted);
  text-decoration: none;
}

.info-card i {
  color: #7b5493;
}

/* .contact-form h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  padding: 12px;
  border: none;
  background-color: #CBA135;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #b08c2f;
} */

.socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon {
  --size: 44px;
  /* kolayca boyut değiştirin */
  width: var(--size);
  height: var(--size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f3f7;
  color: #7b5493;
  /* daire rengi */
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.icon i {
  font-size: 18px;
  font-weight: bold;
}

/* ikon boyutu */

.icon:hover {
  background: #7b5493;
  /* hover'da ters çevir */
  color: #f5f3f7;
  transform: translateY(-2px);
}

.contact-form .socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact-form .socials a {
  text-decoration: none;
  font-weight: 600;
}

#services {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 100vh;
  padding: 10rem 0 10rem 0;
}

/* Carousel Container */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  border-radius: 20px;
  padding: 20px;
  /* overflow: hidden; */
  /* Taşan içeriği gizle */
}

/* Genel Circle */
.circle {
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.circle-title {
  font-size: 16px;
  margin-bottom: 8px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.circle-description {
  font-size: 12px;
  font-weight: normal;
  opacity: 0;
  transition: opacity 0.6s ease;
  max-width: 85%;
  line-height: 1.4;
  padding: 0 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  pointer-events: none;
}

.read-more-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 1.2rem;
  margin-top: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  display: none;
  z-index: 5;
}

.circle.pos-1 .read-more-btn {
  display: inline-block;
}

.read-more-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.modal-content {
  background: linear-gradient(135deg, #ffffff, #f7f5ef);
  margin: 20% auto;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  color: #333;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #7b5493;
}

.modal-text {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  color: #444;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #333;
}

/* Desktop Circle Positionları */
.circle.pos-0 {
  width: 300px;
  height: 300px;
  transform: translateX(-280px) translateY(140px);
}

.circle.pos-1 {
  width: 500px;
  height: 500px;
  transform: translateX(30px) translateY(-80px);
  z-index: 10;
}

.circle.pos-2 {
  width: 300px;
  height: 300px;
  transform: translateX(540px) translateY(140px);
}

.circle.pos-3 {
  width: 200px;
  height: 200px;
  transform: translateX(400px) translateY(400px);
}

.circle.pos-4 {
  width: 180px;
  height: 180px;
  transform: translateX(195px) translateY(480px);
}

.circle.pos-5 {
  width: 200px;
  height: 200px;
  transform: translateX(-30px) translateY(400px);
}

.circle.pos-1 .circle-title {
  font-size: 3.5vw;
}

.circle.pos-0 .circle-title,
.circle.pos-2 .circle-title {
  font-size: 2rem;
  margin-top: 4rem;
}
.circle.pos-3 .circle-title,
.circle.pos-5 .circle-title {
  font-size: 1.5rem;
  margin-top: 5rem;
}

.circle.pos-4 .circle-title {
  font-size: 1.2rem;
  margin-top: 4.5rem;
}

.circle.pos-1 .circle-description {
  opacity: 1;
  font-size: 1.2rem;
  -webkit-line-clamp: 7;
}

/* Hover Effect */
/* .circle:not(.pos-1):hover {
  transform: scale(1.06);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.circle.pos-1:hover {
  transform: scale(1.03);
} */

/* Mobil Navigasyon Butonları */
.carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background-color: rgb(103 58 183 / 35%);
  border: 1px solid #7b5493;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: #7b5493;
  color: white;
}

.prev-btn {
  left: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.next-btn {
  right: 10px;
  color: rgba(255, 255, 255, 0.4);
}

/* Tablet Görünümü (1100px ve altı) */
@media (max-width: 1100px) {
  .circle.pos-0 {
    width: 260px;
    height: 260px;
    transform: translateX(-190px) translateY(80px);
  }

  .circle.pos-1 {
    width: 400px;
    height: 400px;
    transform: translateX(80px) translateY(-80px);
    z-index: 10;
  }

  .circle.pos-2 {
    width: 260px;
    height: 260px;
    transform: translateX(490px) translateY(80px);
  }

  .circle.pos-3 {
    width: 200px;
    height: 200px;
    transform: translateX(360px) translateY(300px);
  }

  .circle.pos-4 {
    width: 150px;
    height: 150px;
    transform: translateX(205px) translateY(380px);
  }

  .circle.pos-5 {
    width: 200px;
    height: 200px;
    transform: translateX(0px) translateY(300px);
  }

  .circle.pos-1 .circle-title {
    font-size: 3.5vw;
  }

  .circle.pos-0 .circle-title,
  .circle.pos-2 .circle-title {
    font-size: 1.7rem;
    margin-top: 5rem;
  }
  .circle.pos-3 .circle-title,
  .circle.pos-5 .circle-title {
    font-size: 1.5rem;
    margin-top: 5rem;
  }

  .circle.pos-4 .circle-title {
    font-size: 1rem;
    margin-top: 4rem;
  }

  .circle.pos-1 .circle-description {
    font-size: 1.2rem;
  }

  .read-more-btn {
    padding: 6px 14px;
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* Tablet Görünümü (1000px ve altı) */
@media (max-width: 1000px) {
  .circle.pos-0 {
    width: 240px;
    height: 240px;
    transform: translateX(-140px) translateY(50px);
  }

  .circle.pos-1 {
    width: 350px;
    height: 350px;
    transform: translateX(110px) translateY(-80px);
    z-index: 10;
  }

  .circle.pos-2 {
    width: 240px;
    height: 240px;
    transform: translateX(470px) translateY(50px);
  }

  .circle.pos-3 {
    width: 180px;
    height: 180px;
    transform: translateX(360px) translateY(260px);
  }

  .circle.pos-4 {
    width: 150px;
    height: 150px;
    transform: translateX(210px) translateY(350px);
  }

  .circle.pos-5 {
    width: 180px;
    height: 180px;
    transform: translateX(30px) translateY(260px);
  }

  .circle.pos-1 .circle-title {
    font-size: 3.5vw;
  }

  .circle.pos-0 .circle-title,
  .circle.pos-2 .circle-title {
    font-size: 2rem;
    margin-top: 4rem;
  }
  .circle.pos-3 .circle-title,
  .circle.pos-5 .circle-title {
    font-size: 1.5rem;
    margin-top: 4rem;
  }

  .circle.pos-4 .circle-title {
    font-size: 1.2rem;
    margin-top: 4.5rem;
  }

  .circle.pos-1 .circle-description {
    font-size: 1rem;
  }

  .read-more-btn {
    padding: 6px 14px;
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* Tablet Görünümü (900px ve altı) */
@media (max-width: 900px) {
  .carousel-container {
    height: 350px;
    padding: 15px;
    max-width: 100%;
  }

  /* Ortadaki büyük daire */
  .circle.pos-1 {
    width: 320px;
    height: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
  }

  /* Soldaki küçük daire */
  .circle.pos-0 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }

  /* Sağdaki küçük daire */
  .circle.pos-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 5%;
    left: auto;
    transform: translateY(-50%);
  }

  /* Diğer daireler gizli */
  .circle.pos-3,
  .circle.pos-4,
  .circle.pos-5 {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
  }

  .circle.pos-1 .circle-title {
    font-size: 3vw;
  }

  .circle.pos-0 .circle-title,
  .circle.pos-2 .circle-title {
    font-size: 1.5rem !important;
    margin-top: 0 !important;
  }

  .circle.pos-1 .circle-description {
    font-size: 0.8rem;
  }

  .read-more-btn {
    padding: 6px 14px;
    font-size: 1rem;
    margin-top: 1rem;
  }

  /* Yan dairelerdeki metinleri gizle */
  .circle.pos-0 .circle-description,
  .circle.pos-2 .circle-description,
  .circle.pos-0 .read-more-btn,
  .circle.pos-2 .read-more-btn {
    display: none;
  }

  .circle.pos-0 .circle-title,
  .circle.pos-2 .circle-title {
    font-size: 12px;
  }
}

/* Tablet Görünümü (800px ve altı) */
@media (max-width: 800px) {
  .carousel-container {
    height: 350px;
    padding: 15px;
    max-width: 100%;
  }

  /* Ortadaki büyük daire */
  .circle.pos-1 {
    width: 280px;
    height: 280px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
  }

  /* Soldaki küçük daire */
  .circle.pos-0 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }

  /* Sağdaki küçük daire */
  .circle.pos-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 5%;
    left: auto;
    transform: translateY(-50%);
  }

  /* Diğer daireler gizli */
  .circle.pos-3,
  .circle.pos-4,
  .circle.pos-5 {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
  }

  .circle.pos-1 .circle-title {
    font-size: 3vw;
  }

  .circle.pos-0 .circle-title,
  .circle.pos-2 .circle-title {
    font-size: 1.5rem !important;
    margin-top: 0 !important;
  }

  .circle.pos-1 .circle-description {
    font-size: 0.8rem;
  }

  .read-more-btn {
    padding: 6px 14px;
    font-size: 1rem;
    margin-top: 1rem;
  }

  /* Yan dairelerdeki metinleri gizle */
  .circle.pos-0 .circle-description,
  .circle.pos-2 .circle-description,
  .circle.pos-0 .read-more-btn,
  .circle.pos-2 .read-more-btn {
    display: none;
  }

  .circle.pos-0 .circle-title,
  .circle.pos-2 .circle-title {
    font-size: 12px;
  }
}

/* Tablet Görünümü (700px ve altı) */
@media (max-width: 700px) {
  .carousel-container {
    height: 350px;
    padding: 15px;
    max-width: 100%;
  }

  /* Ortadaki büyük daire */
  .circle.pos-1 {
    width: 240px;
    height: 240px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
  }

  /* Soldaki küçük daire */
  .circle.pos-0 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }

  /* Sağdaki küçük daire */
  .circle.pos-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 5%;
    left: auto;
    transform: translateY(-50%);
  }

  /* Diğer daireler gizli */
  .circle.pos-3,
  .circle.pos-4,
  .circle.pos-5 {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
  }

  .circle.pos-1 .circle-title {
    font-size: 3vw;
  }

  .circle.pos-0 .circle-title,
  .circle.pos-2 .circle-title {
    font-size: 1.2rem !important;
    margin-top: 0 !important;
  }

  .circle.pos-1 .circle-description {
    font-size: 0.8rem;
  }

  .read-more-btn {
    padding: 6px 14px;
    font-size: 0.6rem;
    margin-top: 0.5rem;
  }

  /* Yan dairelerdeki metinleri gizle */
  .circle.pos-0 .circle-description,
  .circle.pos-2 .circle-description,
  .circle.pos-0 .read-more-btn,
  .circle.pos-2 .read-more-btn {
    display: none;
  }

  .circle.pos-0 .circle-title,
  .circle.pos-2 .circle-title {
    font-size: 12px;
  }
}

/* Tablet Görünümü (600px ve altı) */
@media (max-width: 600px) {
  .carousel-container {
    height: 350px;
    padding: 15px;
    max-width: 100%;
  }

  /* Ortadaki büyük daire */
  .circle.pos-1 {
    width: 200px;
    height: 200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
  }

  /* Soldaki küçük daire */
  .circle.pos-0 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }

  /* Sağdaki küçük daire */
  .circle.pos-2 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 5%;
    left: auto;
    transform: translateY(-50%);
  }

  /* Diğer daireler gizli */
  .circle.pos-3,
  .circle.pos-4,
  .circle.pos-5 {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
  }

  .circle.pos-1 .circle-title {
    font-size: 3vw;
  }

  .circle.pos-0 .circle-title,
  .circle.pos-2 .circle-title {
    font-size: 1rem !important;
    margin-top: 0 !important;
  }

  .circle.pos-1 .circle-description {
    font-size: 0.6rem;
  }

  .read-more-btn {
    padding: 4px 10px;
    font-size: 0.5rem;
  }

  /* Yan dairelerdeki metinleri gizle */
  .circle.pos-0 .circle-description,
  .circle.pos-2 .circle-description,
  .circle.pos-0 .read-more-btn,
  .circle.pos-2 .read-more-btn {
    display: none;
  }

  .circle.pos-0 .circle-title,
  .circle.pos-2 .circle-title {
    font-size: 12px;
  }
}

/* Mobil Görünüm */
@media (max-width: 480px) {
  .carousel-container {
    height: 320px;
    padding: 10px;
  }

  /* Sadece ortadaki daire görünür */
  .circle.pos-1 {
    width: 250px;
    height: 250px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
  }

  /* Diğer tüm daireler tamamen gizlenir */
  .circle:not(.pos-1) {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.3);
    left: 50%;
    top: 50%;
  }

  .circle.pos-1 .circle-description {
    font-size: 12px;
    -webkit-line-clamp: 4;
    padding: 0 20px;
  }

  .circle.pos-1 .circle-title {
    font-size: 16px;
  }

  /* Okları göster */
  .carousel-btn {
    display: block;
  }

  .read-more-btn {
    font-size: 10px;
    padding: 5px 12px;
  }
}

/* Çok küçük ekranlar için */
@media (max-width: 360px) {
  .circle.pos-1 {
    width: 220px;
    height: 220px;
  }

  .carousel-container {
    height: 280px;
  }
}

footer {
  font-size: 1.1rem;
  background-color: #fff;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  color: var(--text-main);
  text-align: center;
  padding: 20px 0;
  /* margin-top: 40px; */
}
