/* GENEL STIL */
:root {
  --primary-color: #8a2be2; /* Lila */
  --primary-light: #9d4edd;
  --primary-dark: #6a0dad;
  --secondary-color: #00e5ff; /* Turkuaz */
  --secondary-light: #6effff;
  --secondary-dark: #00b2cc;
  --background: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --gray: #666;
  --light-gray: #e9ecef;
  --dark-gray: #343a40;
  --gradient: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 10px;
  --transition: all 0.3s ease;
  --page-transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  --spacing: 8px;
  --primary-font: 'Montserrat', sans-serif;
  --secondary-font: 'Raleway', sans-serif;
  --primary-font-color: #333333;
  --secondary-font-color: #666666;
  --text-color: #333;
  --text-light: #777777;
  --light-bg: #f5f5ff;
  --dark-bg: #1c1c2b;
  --max-width: 1200px;
  --gradient: linear-gradient(135deg, var(--primary-color), #9370DB);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #5F9EA0);
  --logo-gradient: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  --mobile-header-height: 70px;
  --mobile-font-size-base: 14px;
  --mobile-section-spacing: 40px;
  --turquoise: #00e5ff;  /* turkuaz */
  --lilac: #8A2BE2;      /* lila */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
  z-index: 1;
  border: none;
  cursor: pointer;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  z-index: -1;
  transition: 0.5s;
  transform: scaleX(0);
  transform-origin: left;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(138, 43, 226, 0.4);
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-outline::before {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.btn-outline:hover {
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(138, 43, 226, 0.3);
}

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  color: var(--primary-font-color); /* Lila başlık rengi */
  font-weight: 800;
  text-transform: capitalize;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-font-color); /* Turkuaz alt başlık rengi */
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 500;
}

/* HEADER STILI */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.logo:hover .nav-logo-svg {
  transform: rotate(10deg);
}

.nav-logo-svg {
  width: 75px;
  height: 75px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.logo span {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
}

.logo .tech {
  color: var(--black);
  font-weight: 600;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.logo-text {
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-left: 10px;
  font-family: var(--primary-font);
}

.duft-text {
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.tech-text {
  color: #000 !important;
  font-weight: 600;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-link {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black) !important;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 0.3rem;
  font-family: var(--secondary-font);
  letter-spacing: 0.5px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* MOBİL MENU STILI */
.mobile-menu {
  z-index: 1000;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-font-color);
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-menu:hover {
  color: var(--primary-color);
  background: rgba(138, 43, 226, 0.05);
}

.mobile-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
}

.mobile-menu .nav-links li {
  margin: 0;
  border-bottom: 1px solid #f1f1f1;
}

.mobile-menu .nav-links a {
  padding: 15px 0;
  display: block;
  text-align: left;
  font-size: 1rem;
  color: var(--secondary-font-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu .nav-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.menu-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-font-color);
  transition: all 0.3s ease;
  display: none;
}

.menu-toggle:hover {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  body {
    font-size: var(--mobile-font-size-base);
  }
  
  .container {
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Header ve navbar */
  header {
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
  }
  
  .navbar {
    padding: 0 15px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .nav-logo-svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
  }
  
  /* Ana bölümler için boşluk */
  section {
    padding: var(--mobile-section-spacing) 0;
    margin-top: var(--mobile-header-height);
  }
  
  #home {
    padding-top: calc(var(--mobile-header-height) + 20px);
    margin-top: 0;
  }
  
  /* Hero bölümü */
  .hero-content {
    padding: 20px 0 40px;
    text-align: center;
  }
  
  .hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    margin: 0;
    width: 100%;
    max-width: 250px;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info, .contact-form {
    width: 100%;
    padding: 20px;
  }
  
  .contact-form {
    margin-top: 30px;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Daha küçük mobil cihazlar için iyileştirmeler */
@media (max-width: 576px) {
  :root {
    --mobile-header-height: 60px;
    --mobile-font-size-base: 13px;
    --mobile-section-spacing: 30px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  /* Hizmetlerimiz bölümü */
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .solution-card {
    padding: 15px;
  }
  
  .solution-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .solution-title {
    font-size: 1.1rem;
    margin-top: 10px;
  }
  
  .solution-text {
    font-size: 0.85rem;
  }
  
  .solution-features li {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }
  
  .solution-link {
    font-size: 0.8rem;
  }
  
  /* Biz Kimiz bölümü */
  .about-content {
    flex-direction: column;
    padding: 0;
  }
  
  .about-image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 30px;
  }
  
  .about-text {
    padding-left: 0;
  }
  
  .about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
  }
  
  .stat-item {
    width: 100%;
    padding: 15px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-text {
    font-size: 0.9rem;
  }
  
  /* Projeler bölümü */
  .projects-slider {
    min-height: 350px;
  }
  
  .project-card {
    min-width: 270px;
  }
  
  .project-overlay {
    padding: 15px;
  }
  
  .project-title {
    font-size: 1.1rem;
  }
  
  .project-description {
    font-size: 0.8rem;
    max-height: 80px;
    overflow: hidden;
  }
  
  .project-link {
    font-size: 0.8rem;
    padding: 7px 15px;
  }
  
  /* Modal düzenlemeleri */
  .project-modal-content {
    width: 95%;
    max-width: 500px;
    padding: 15px;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .solution-detail-header {
    padding: 20px;
    margin: -15px -15px 20px -15px;
  }
  
  .solution-detail-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .solution-detail-header p {
    font-size: 0.85rem;
  }
  
  .solution-detail-description p {
    font-size: 0.9rem;
  }
  
  .solution-detail-benefits h4,
  .solution-detail-use-cases h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .solution-detail-benefits ul,
  .solution-detail-use-cases ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .solution-detail-benefits li,
  .solution-detail-use-cases li {
    padding: 12px;
    font-size: 0.85rem;
  }
  
  /* İletişim bölümü */
  .contact-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-info, 
  .contact-form {
    width: 100%;
    padding: 15px;
  }
  
  .contact-title {
    font-size: 1.3rem;
  }
  
  .contact-detail {
    margin-bottom: 15px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .contact-text p {
    font-size: 0.85rem;
  }
  
  .form-control {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .submit-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  /* Footer bölümü */
  footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-info {
    margin-bottom: 20px;
  }
  
  .footer-logo-svg {
    width: 40px !important;
    height: 40px !important;
  }
  
  .footer-text {
    font-size: 0.8rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 25px;
  }
  
  .footer-column {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
  }
  
  .footer-column a {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
  
  .social-links {
    justify-content: center;
    margin-bottom: 10px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .copyright {
    text-align: center;
    font-size: 0.75rem;
  }
}

/* Mobil menü düzeltme */
.mobile-menu {
  z-index: 1000;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-font-color);
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-menu:hover {
  color: var(--primary-color);
  background: rgba(138, 43, 226, 0.05);
}

.mobile-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
}

.mobile-menu .nav-links li {
  margin: 0;
  border-bottom: 1px solid #f1f1f1;
}

.mobile-menu .nav-links a {
  padding: 15px 0;
  display: block;
  text-align: left;
  font-size: 1rem;
  color: var(--secondary-font-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu .nav-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* Safari modalı görünümü düzeltme */
@media not all and (min-resolution:.001dpcm) { 
  @supports (-webkit-appearance:none) {
    .project-modal-content {
      -webkit-transform: translate3d(0,0,0);
      transform: translate3d(0,0,0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }
    
    .solution-detail-header,
    .solution-detail-content {
      -webkit-transform: translate3d(0,0,0);
      transform: translate3d(0,0,0);
    }
    
    .project-link {
      -webkit-appearance: none;
      appearance: none;
    }
  }
}

/* HERO SECTION STILI */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.35), rgba(138, 43, 226, 0.25));
  z-index: 1;
  overflow: hidden;
}

.neural-network-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1024' width='1440' height='1024' preserveAspectRatio='xMidYMid slice'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='2'%3E%3Ccircle cx='200' cy='200' r='10'/%3E%3Ccircle cx='400' cy='300' r='10'/%3E%3Ccircle cx='600' cy='150' r='10'/%3E%3Ccircle cx='800' cy='400' r='10'/%3E%3Ccircle cx='1000' cy='250' r='10'/%3E%3Ccircle cx='1200' cy='350' r='10'/%3E%3Ccircle cx='300' cy='500' r='10'/%3E%3Ccircle cx='500' cy='600' r='10'/%3E%3Ccircle cx='700' cy='450' r='10'/%3E%3Ccircle cx='900' cy='700' r='10'/%3E%3Ccircle cx='1100' cy='550' r='10'/%3E%3Cline x1='200' y1='200' x2='400' y2='300'/%3E%3Cline x1='400' y1='300' x2='600' y2='150'/%3E%3Cline x1='600' y1='150' x2='800' y2='400'/%3E%3Cline x1='800' y1='400' x2='1000' y2='250'/%3E%3Cline x1='1000' y1='250' x2='1200' y2='350'/%3E%3Cline x1='300' y1='500' x2='200' y2='200'/%3E%3Cline x1='500' y1='600' x2='400' y2='300'/%3E%3Cline x1='700' y1='450' x2='600' y2='150'/%3E%3Cline x1='900' y1='700' x2='800' y2='400'/%3E%3Cline x1='1100' y1='550' x2='1000' y2='250'/%3E%3Cline x1='300' y1='500' x2='500' y2='600'/%3E%3Cline x1='500' y1='600' x2='700' y2='450'/%3E%3Cline x1='700' y1='450' x2='900' y2='700'/%3E%3Cline x1='900' y1='700' x2='1100' y2='550'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
  animation: pulse 10s infinite alternate, rotate 180s linear infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 15px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.hero-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* WHAT WE DO SECTION STILI */
#about {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.35), rgba(0, 229, 255, 0.25));
  overflow: hidden;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-neural-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1024' width='1440' height='1024' preserveAspectRatio='xMidYMid slice'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='2'%3E%3Ccircle cx='200' cy='200' r='10'/%3E%3Ccircle cx='400' cy='300' r='10'/%3E%3Ccircle cx='600' cy='150' r='10'/%3E%3Ccircle cx='800' cy='400' r='10'/%3E%3Ccircle cx='1000' cy='250' r='10'/%3E%3Ccircle cx='1200' cy='350' r='10'/%3E%3Ccircle cx='300' cy='500' r='10'/%3E%3Ccircle cx='500' cy='600' r='10'/%3E%3Ccircle cx='700' cy='450' r='10'/%3E%3Ccircle cx='900' cy='700' r='10'/%3E%3Ccircle cx='1100' cy='550' r='10'/%3E%3Cline x1='200' y1='200' x2='400' y2='300'/%3E%3Cline x1='400' y1='300' x2='600' y2='150'/%3E%3Cline x1='600' y1='150' x2='800' y2='400'/%3E%3Cline x1='800' y1='400' x2='1000' y2='250'/%3E%3Cline x1='1000' y1='250' x2='1200' y2='350'/%3E%3Cline x1='300' y1='500' x2='200' y2='200'/%3E%3Cline x1='500' y1='600' x2='400' y2='300'/%3E%3Cline x1='700' y1='450' x2='600' y2='150'/%3E%3Cline x1='900' y1='700' x2='800' y2='400'/%3E%3Cline x1='1100' y1='550' x2='1000' y2='250'/%3E%3Cline x1='300' y1='500' x2='500' y2='600'/%3E%3Cline x1='500' y1='600' x2='700' y2='450'/%3E%3Cline x1='700' y1='450' x2='900' y2='700'/%3E%3Cline x1='900' y1='700' x2='1100' y2='550'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 229, 255, 0.05));
  border-radius: 50%;
  overflow: visible;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.moving-circle {
  position: absolute;
  width: 450px;
  height: 450px;
  border: 2px dashed rgba(138, 43, 226, 0.3);
  border-radius: 50%;
  animation: movingCircle 20s linear infinite;
}

@keyframes movingCircle {
  0% {
    transform: translate(-30px, -30px) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translate(30px, 30px) scale(1.2);
    opacity: 0.9;
  }
  100% {
    transform: translate(-30px, 30px) scale(0.9);
    opacity: 0.7;
  }
}

.about-logo-overlay {
  position: relative;
  z-index: 2;
  width: 360px !important;
  height: 360px !important;
  animation: pulse 3s infinite alternate;
  transition: all 0.5s ease;
  filter: drop-shadow(0 10px 20px rgba(138, 43, 226, 0.4));
}

@keyframes pulse {
  from {
    transform: scale(1);
    filter: drop-shadow(0 5px 15px rgba(138, 43, 226, 0.3));
  }
  to {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 25px rgba(138, 43, 226, 0.6));
  }
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border-top: 5px solid var(--primary-color);
  border-left: 5px solid var(--primary-color);
  z-index: 1;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border-bottom: 5px solid var(--primary-color);
  border-right: 5px solid var(--primary-color);
  z-index: 1;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: var(--transition);
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--primary-font-color); /* Lila başlık rengi */
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: #222222; /* Daha koyu bir renk için değiştirildi */
}

.about-text strong {
  color: #000000; /* Kalın metinleri daha belirgin yapmak için değiştirildi */
  font-weight: 700;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  flex: 1;
  margin-right: 1rem;
  transition: var(--transition);
}

.stat-item:last-child {
  margin-right: 0;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* SOLUTIONS SECTION STILI */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.solution-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.solution-logo {
  height: 100px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-bg);
  position: relative;
}

.solution-svg {
  width: 100%;
  height: 80px;
  object-fit: contain;
  transition: all 0.5s ease;
  opacity: 0.8;
}

.solution-card:hover .solution-svg {
  transform: scale(1.1);
  opacity: 1;
}

.solution-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.solution-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
  color: var(--white);
  font-size: 1.4rem;
}

.solution-card:hover .solution-icon {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.solution-title {
  color: var(--primary-font-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.solution-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-font-color);
  transition: all 0.3s ease;
}

.solution-card:hover .solution-title::after {
  width: 80px;
}

.solution-text {
  color: var(--gray);
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.solution-features li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--secondary-font-color);
}

.solution-link {
  display: inline-block;
  color: var(--secondary-font-color);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
  margin-top: auto;
}

.solution-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.solution-link:hover i {
  transform: translateX(5px);
}

/* PROJECTS SECTION STILI */
#projects {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--light-bg);
}

.projects-slider-container {
  position: relative;
  width: 100%;
  margin: 2rem 0;
  padding: 0 1.5rem;
  overflow: hidden;
  z-index: 1;
}

.projects-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 2rem 0;
  gap: 30px;
  /* Tarayıcı uyumluluğu sorunlarını düzeltiyorum */
  /* scrollbar-width: none; - Firefox uyumluluğu için kaldırıldı */
  -ms-overflow-style: none; /* IE ve Edge için */
  width: 100%;
  min-height: 450px;
  /* -webkit-overflow-scrolling: touch; - Artık desteklenmiyor */
  /* scroll-snap-type: x mandatory; - Bazı tarayıcılarda sorun yaratabilir */
}

/* Webkit tarayıcıları için scrollbar'ı gizleyen ek stil */
.projects-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve yeni Edge için */
}

/* Tarayıcı uyumluluğu için düzeltmeler */
@supports (-webkit-appearance:none) {
  .projects-slider {
    /* -webkit-overflow-scrolling: touch; - Artık desteklenmiyor */
    /* -webkit-scroll-snap-type: mandatory; - Artık desteklenmiyor */
  }
  
  .project-card {
    scroll-snap-align: start;
  }
  
  .project-modal-content {
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}

/* Firefox özel düzenlemeler */
@supports (scrollbar-width: none) {
  .projects-slider {
    scrollbar-width: none;
  }
}

.project-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-width: 300px;
  width: 300px;
  height: 350px;
  box-shadow: var(--shadow);
  margin: 0;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: var(--white);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  scroll-snap-align: start;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-title {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.project-description {
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.project-link {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transform: translateZ(0);
}

.project-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.project-link:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.project-link:hover i {
  transform: translateX(3px);
}

/* Safari-specific düzeltmeler */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .project-card,
  .project-overlay,
  .project-link {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .project-modal-content {
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* Proje detay modalı düzeltmeleri */
.project-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: modalFadeIn 0.3s ease-out;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.project-modal-content {
  position: relative;
  background: var(--white);
  max-width: 900px;
  width: 90%;
  margin: 50px auto;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  animation: modalContentFadeIn 0.5s forwards;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 1001;
}

@keyframes modalFadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes modalContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TESTIMONIALS SECTION STILI */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -25px;
  left: -10px;
  color: rgba(46, 77, 255, 0.1);
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--primary-light);
}

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

.testimonial-info h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-font-color); /* Lila isim rengi */
}

.testimonial-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* CONTACT SECTION STILI */
#contact {
  background: var(--dark-bg);
  color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  padding-right: 2rem;
}

.contact-title {
  font-size: 1.8rem;
  color: var(--primary-font-color); /* Lila başlık rengi */
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-text p {
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-cta {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 4px solid var(--secondary-color);
}

.contact-cta h4 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 15px;
}

.contact-form h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  color: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check input {
  margin-right: 10px;
  margin-top: 5px;
}

.form-check label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-check a {
  color: var(--secondary-light);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--gradient-secondary);
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FOOTER STILI */
footer {
  background-color: var(--light-bg);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
}

.footer-info {
  padding-right: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-svg {
  transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-svg {
  transform: rotate(10deg);
}

.footer-text {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: var(--text-light);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.8rem;
  color: var(--primary-color);
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.copyright {
  color: var(--text-light);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--primary-color);
}

/* ERROR PAGES */
.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 0 1.5rem;
}

.error-code {
  font-size: 10rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 5px 5px 0 rgba(138, 43, 226, 0.1);
}

.error-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.error-text {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* RESPONSIVE STILLER */
@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin-bottom: 30px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px auto;
  }
  
  .about-text {
    padding-left: 0;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
  }
  
  .navbar {
    padding: 15px 20px;
  }
  
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
  }
  
  /* Ana bölümler için boşluk */
  section {
    padding: var(--mobile-section-spacing) 0;
    margin-top: var(--mobile-header-height);
  }
  
  #home {
    padding-top: calc(var(--mobile-header-height) + 20px);
    margin-top: 0;
  }
  
  /* Hero bölümü */
  .hero-content {
    padding: 20px 0 40px;
    text-align: center;
  }
  
  .hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    margin: 0;
    width: 100%;
    max-width: 250px;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info, .contact-form {
    width: 100%;
    padding: 20px;
  }
  
  .contact-form {
    margin-top: 30px;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .testimonial {
    width: 90%;
  }
  
  .testimonial-avatar {
    width: 80px;
    height: 80px;
  }
  
  .error-code {
    font-size: 5rem;
  }
  
  .error-title {
    font-size: 1.5rem;
  }
  
  .project-card {
    min-width: 290px;
  }
  
  .project-overlay {
    padding: 15px;
  }
  
  .project-title {
    font-size: 1.2rem;
  }
  
  .project-description {
    font-size: 0.8rem;
  }
  
  /* Modal düzenlemeleri */
  .project-modal-content {
    width: 95%;
    padding: 15px;
  }
  
  .solution-detail-header h2 {
    font-size: 1.8rem;
  }
  
  .solution-detail-content {
    margin-top: 20px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about-image {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    justify-self: center;
  }
  
  .moving-circle {
    width: 320px;
    height: 320px;
  }
  
  .about-logo-overlay {
    width: 250px !important;
    height: 250px !important;
  }
  
  .about-text {
    width: 100%;
    padding: 0 15px;
    margin-top: 1.5rem;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .about-text p {
    text-align: center;
  }
  
  .about-text ul {
    padding-left: 0;
    margin: 0 auto;
    max-width: 90%;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .stat-item {
    width: 100%;
    max-width: 250px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-info {
    padding-right: 0;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-column h4 {
    text-align: center;
  }
  
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-column ul {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .copyright {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .solutions-grid {
    gap: 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-logo {
    width: 100px;
    height: 100px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 0.85rem;
    max-width: 100%;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .solution-card {
    padding: 15px;
  }
  
  .footer-info {
    margin-bottom: 30px;
  }
  
  .social-links {
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .copyright {
    text-align: center;
    font-size: 0.75rem;
  }
}

.partners-container {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.partner-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  margin: 0 15px;
  animation: partnerSlide 20s linear infinite;
}

.partner-logo img {
  max-width: 150px;
  max-height: 70px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes partnerSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 30px));
  }
}

/* Proje Modal Stili */
.project-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: modalFadeIn 0.3s ease-out;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.project-modal-content {
  position: relative;
  background: var(--white);
  max-width: 900px;
  width: 90%;
  margin: 50px auto;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  animation: modalContentFadeIn 0.5s forwards;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 1001;
}

@keyframes modalFadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes modalContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 30px;
  color: #777;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1;
}

.close-modal:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

#project-detail-content {
  padding: 30px;
}

.project-detail-header {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 20px;
}

.project-detail-header h2 {
  color: var(--primary-font-color);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.project-detail-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.project-detail-image {
  flex: 0 0 45%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.project-detail-content {
  flex: 0 0 50%;
}

.project-detail-description {
  margin-bottom: 30px;
  line-height: 1.8;
  color: var(--dark-gray);
}

.project-detail-features {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.project-detail-features h4 {
  color: var(--primary-font-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.project-detail-features ul {
  list-style: none;
  padding: 0;
}

.project-detail-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.project-detail-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-font-color);
  font-weight: bold;
}

.project-detail-results {
  margin-top: 30px;
}

.project-detail-results h4 {
  color: var(--primary-font-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.result-item {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.result-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.result-number {
  color: var(--primary-font-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.result-text {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

/* Responsive Modal */
@media (max-width: 992px) {
  .project-modal-content {
    width: 90%;
    margin: 10% auto;
  }
  
  .project-detail-info {
    flex-direction: column;
  }
  
  .project-detail-image, 
  .project-detail-content {
    flex: 1 1 100%;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .project-modal-content {
    width: 95%;
    margin: 5% auto;
    padding: 15px;
  }
  
  .project-detail-header h2 {
    font-size: 1.8rem;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* Proje Slider Navigasyon Butonları */
.projects-navigation {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none; /* Alt elementler hariç tıklanamaz yapar */
  padding: 0 1rem;
}

.project-nav-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border: none;
  outline: none;
  pointer-events: auto; /* Butonları tıklanabilir yapar */
  color: var(--primary-color);
  font-size: 1.2rem;
  opacity: 0.9;
}

.project-nav-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  background: var(--primary-color);
  color: var(--white);
}

.project-nav-button.prev {
  left: 20px;
  position: relative;
}

.project-nav-button.next {
  right: 20px;
  position: relative;
}

.project-nav-button i {
  font-size: 1.2rem;
}

/* Mobil Görünüm İyileştirmeleri */
@media (max-width: 768px) {
  .projects-slider-container {
    padding: 0 10px;
  }
  
  .project-nav-button {
    width: 40px;
    height: 40px;
  }
  
  .project-nav-button.prev {
    left: 5px;
  }
  
  .project-nav-button.next {
    right: 5px;
  }
  
  .project-card {
    min-width: 280px;
  }
  
  .project-title {
    font-size: 1.2rem;
  }
  
  .project-description {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
  }
}

/* Sayfa Yükleme Animasyonu */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 100px;
  height: 100px;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gradient);
  z-index: 1001;
  width: 0%;
  transition: width 0.2s ease;
}

#consultation-modal .project-modal-content {
  max-width: 650px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 255, 0.95));
  border-radius: 20px;
  border-top: 5px solid var(--primary-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

#consultation-modal .project-modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('path-to-pattern.png');
  opacity: 0.05;
  pointer-events: none;
}

#consultation-form-content {
  padding: 2rem;
}

#consultation-form-content h3 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#consultation-form-content p {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--secondary-font-color);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#consultation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

#consultation-form .form-group:nth-child(5),
#consultation-form .form-group:nth-child(6),
#consultation-form .form-group:nth-child(7),
#consultation-form .form-check {
  grid-column: span 2;
}

#consultation-form .form-control {
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

#consultation-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.1);
}

#consultation-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a2be2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

#consultation-form .submit-btn {
  grid-column: span 2;
  width: 100%;
  padding: 14px 30px;
  margin-top: 1rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

#consultation-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

@media (max-width: 768px) {
  #consultation-form {
    grid-template-columns: 1fr;
  }
  
  #consultation-form .form-group:nth-child(n) {
    grid-column: span 1;
  }
  
  #consultation-form .form-check,
  #consultation-form .submit-btn {
    grid-column: span 1;
  }
  
  #consultation-modal .project-modal-content {
    width: 95%;
    max-width: 450px;
  }
}

/* Solution Detail Modal Styling */
.solution-detail-header {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
  overflow: visible; /* Taşma sorununu düzeltmek için eklendi */
}

.solution-detail-header::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.solution-detail-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

.solution-detail-content {
  padding: 0 10px;
}

.solution-detail-description {
  margin-bottom: 25px;
  line-height: 1.7;
}

.solution-detail-description p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #222222; /* Hizmetlerimiz içeriğinin rengini düzeltildi */
}

.solution-detail-benefits,
.solution-detail-use-cases {
  margin-bottom: 30px;
}

.solution-detail-benefits h4,
.solution-detail-use-cases h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 8px;
  display: inline-block;
}

.solution-detail-benefits ul,
.solution-detail-use-cases ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}

.solution-detail-benefits li,
.solution-detail-use-cases li {
  padding: 15px;
  background: rgba(138, 43, 226, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #222222; /* Hizmetlerimiz liste öğelerinin rengini düzeltildi */
}

.solution-detail-benefits li::before,
.solution-detail-use-cases li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .solution-detail-header {
    padding: 20px;
    margin: -15px -15px 20px -15px;
  }
  
  .solution-detail-header h2 {
    font-size: 1.8rem;
  }
  
  .solution-detail-benefits ul,
  .solution-detail-use-cases ul {
    grid-template-columns: 1fr;
  }
  
  .solution-detail-benefits h4,
  .solution-detail-use-cases h4 {
    font-size: 1.3rem;
  }
}

/* Mobil header ve menü düzeltmeleri */
@media (max-width: 992px) {
  /* Header sabit pozisyonda */
  header {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  /* Navigasyon menüsü kompakt */
  .navbar {
    padding: 0 15px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo boyutunu küçült */
  .nav-logo-svg {
    width: 40px !important;
    height: 40px !important;
  }

  .logo-text {
    font-size: 18px;
  }

  /* Ana sayfa içeriği üst menü altından başlasın */
  #home {
    padding-top: 60px;
    margin-top: 0;
  }

  /* Tüm bölümler için margin düzeltme */
  section {
    padding: 40px 0;
    margin-top: 0;
    overflow: hidden;
  }
  
  /* Mobil menü düzenlemeleri */
  .mobile-menu {
    padding-top: 80px;
    z-index: 1001;
  }
  
  .close-menu {
    top: 12px;
    right: 12px;
  }
}

/* Mobil menü iyileştirme */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background-color: white;
  z-index: 1001;
  transition: all 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

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

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-menu .nav-links li {
  margin: 5px 0;
  border-bottom: 1px solid #f5f5f5;
}

.mobile-menu .nav-links a {
  display: block;
  padding: 15px 10px;
  color: var(--secondary-font-color);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
} 

/* "Biz Kimiz" bölümü mobil düzeltmesi */
@media (max-width: 768px) {
  .about-content {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    gap: 20px;
  }
  
  .about-image {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 15px;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
  }
  
  .moving-circle {
    width: 220px;
    height: 220px;
  }
  
  .about-text {
    width: 100%;
    padding: 0;
  }
  
  .about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    text-align: center;
  }
  
  .about-text p {
    margin-bottom: 15px;
    text-align: center;
  }
  
  .about-text ul {
    margin-left: 0;
    padding-left: 0;
  }
  
  .about-stats {
    flex-direction: row;
    justify-content: space-around;
    margin-top: 15px;
  }
  
  .stat-item {
    width: 48%;
    margin: 0;
  }
}

@media (max-width: 576px) {
  .about-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .stat-item {
    width: 100%;
    max-width: 300px;
  }
  
  .about-image {
    max-width: 200px;
  }
  
  .moving-circle {
    width: 180px;
    height: 180px;
  }
}

/* İletişim bölümü mobil düzeltmesi */
@media (max-width: 768px) {
  .contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }
  
  .contact-info, 
  .contact-form {
    width: 100%;
    padding: 0;
  }
  
  .contact-form {
    margin-bottom: 3rem;
  }
  
  #contact {
    padding-bottom: 4rem;
  }
}

@media (max-width: 576px) {
  .contact-content {
    padding: 0;
  }
  
  .contact-info, 
  .contact-form {
    width: 100%;
    padding: 0;
  }
  
  .form-control {
    padding: 15px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
}

/* Hizmetlerimiz bölümü ve detaylı bilgi butonları mobil düzeltmesi */
@media (max-width: 768px) {
  .solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 2rem;
  }
  
  .solution-card {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    height: auto;
    border-radius: 12px;
  }
  
  .solution-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .solution-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }
  
  .solution-title {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }
  
  .solution-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .solution-text {
    margin-bottom: 15px;
  }
  
  .solution-features {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 15px;
    text-align: left;
  }
  
  .solution-link {
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 10px;
  }
  
  .solution-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .solution-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
  }
  
  .solution-link:hover i {
    transform: translateX(3px);
  }
}

/* Çözüm detay modal düzeltmesi */
@media (max-width: 768px) {
  #solution-detail-modal .project-modal-content {
    width: 95%;
    max-width: none;
    margin: 50px auto;
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .solution-detail-header {
    padding: 20px;
    margin: 0 0 20px 0;
    border-radius: 10px 10px 0 0;
  }
  
  .solution-detail-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .solution-detail-header p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .solution-detail-content {
    padding: 0 15px 20px;
  }
  
  .solution-detail-description {
    margin-bottom: 20px;
  }
  
  .solution-detail-description p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .solution-detail-benefits,
  .solution-detail-use-cases {
    margin-bottom: 20px;
  }
  
  .solution-detail-benefits h4,
  .solution-detail-use-cases h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .solution-detail-benefits ul,
  .solution-detail-use-cases ul {
    display: block;
  }
  
  .solution-detail-benefits li,
  .solution-detail-use-cases li {
    margin-bottom: 10px;
    padding: 12px 15px;
  }
}

/* Inline CSS'leri kaldırma - "Biz Kimiz" bölümü listeleri için */
.about-text ul {
  list-style-type: none;
  padding-left: 0;
  margin: 15px 0;
}

.about-text li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.about-text li:last-child {
  margin-bottom: 0;
}

.about-text li span {
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Mobil taşma ve hizalama sorunları için genel düzeltmeler */
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 15px;
    overflow-x: hidden;
  }
  
  body {
    overflow-x: hidden;
  }
  
  section {
    overflow-x: hidden;
  }
  
  img, object {
    max-width: 100%;
    height: auto;
  }
  
  /* Grid görünümünde taşma sorunlarını çözmek için */
  .solutions-grid,
  .about-content,
  .contact-content,
  .footer-content {
    width: 100%;
    max-width: 100%;
  }
  
  /* Biz Kimiz bölümü listelerindeki taşma sorununu çözmek için */
  .about-text ul {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Projelerdeki taşma sorununu çözmek için */
  .projects-slider-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  /* Footer taşma sorununu çözmek için */
  footer {
    width: 100%;
    overflow: hidden;
  }
}

/* En küçük ekranlar için ek düzeltmeler */
@media (max-width: 400px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.85rem;
  }
  
  .solution-card {
    padding: 15px;
  }
  
  .solution-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .solution-title {
    font-size: 1rem;
  }
  
  .solution-text {
    font-size: 0.8rem;
  }
  
  .solution-features li {
    font-size: 0.75rem;
  }
  
  .solution-link {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
}

/* Kaldırılan inline CSS'ler için eklemeler */
.mobile-logo-svg {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.mobile-logo-text {
  font-size: 1.5rem;
}

.mobile-logo-text .duft-text,
.mobile-logo-text .tech-text {
  font-size: 1.5rem;
}

/* Biz Kimiz bölümü listeleri için */
.about-list {
  list-style-type: none;
  padding-left: 15px;
  margin: 15px 0;
}

.about-list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #222222; /* Daha koyu bir renk için değiştirildi */
}

.about-list-item:last-child {
  margin-bottom: 0;
}

.check-mark {
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Mobil görünümde düzeltmeler */
@media (max-width: 768px) {
  .nav-logo-svg {
    width: 50px;
    height: 50px;
  }
  
  .mobile-logo-svg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .mobile-logo-text {
    font-size: 1.2rem;
  }
  
  .about-list {
    padding-left: 5px;
  }
}

@media (max-width: 576px) {
  .nav-logo-svg {
    width: 40px;
    height: 40px;
  }
  
  .about-list-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  /* Existing code */
  
  .about-image {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
  }
  
  .about-logo-overlay {
    width: 200px !important;
    height: 200px !important;
  }
  
  .moving-circle {
    width: 250px;
    height: 250px;
  }
  
  .about-text {
    padding: 0;
  }
  
  .about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .about-list-item {
    font-size: 0.9rem;
    padding-left: 20px;
    text-align: left;
  }
  
  .check-mark {
    left: 0;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-column {
    margin-bottom: 1rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    margin-right: 0.5rem;
    font-size: 0.9rem;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
  
  /* End of existing code */
}

/* Sayfa geçiş efektleri */
.section-with-transition {
  transition: var(--page-transition);
  position: relative;
  overflow: hidden;
}

.section-with-transition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.8s ease;
}

#home::after,
#about::after,
#solutions::after,
#projects::after,
#testimonials::after,
#contact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
  z-index: 1;
  pointer-events: none;
}

.section-with-transition {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.section-with-transition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 229, 255, 0.05));
  z-index: -1;
}

/* Ana sayfa ile Biz Kimiz sayfası arasındaki geçiş efekti */
#home {
  position: relative;
  margin-bottom: -2px;
}

#home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%23FFFFFF" fill-opacity="1" d="M0,224L60,213.3C120,203,240,181,360,192C480,203,600,245,720,245.3C840,245,960,203,1080,186.7C1200,171,1320,181,1380,186.7L1440,192L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>') no-repeat;
  background-size: cover;
  z-index: 2;
  opacity: 0.9;
  transform-origin: bottom;
  animation: waveAnimation 15s ease-in-out infinite alternate;
}

/* İkinci dalga efekti (farklı hızda ve yükseklikte) */
#home::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%23FFFFFF" fill-opacity="0.7" d="M0,160L48,149.3C96,139,192,117,288,128C384,139,480,181,576,186.7C672,192,768,160,864,154.7C960,149,1056,171,1152,186.7C1248,203,1344,213,1392,218.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0.8;
  transform-origin: bottom;
  animation: waveAnimation2 18s ease-in-out infinite alternate;
}

/* Wave animasyonları */
@keyframes waveAnimation {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.05, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes waveAnimation2 {
  0% {
    transform: scale(1.05, 1);
  }
  50% {
    transform: scale(1, 1.2);
  }
  100% {
    transform: scale(1.05, 1);
  }
}

/* About bölümü üst kısmı */
#about {
  position: relative;
  background-color: #ffffff;
  z-index: 1;
  padding-top: 80px;
}

@media (max-width: 768px) {
  #home::after {
    height: 80px;
  }
  
  #home::before {
    height: 60px;
  }
  
  #about {
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  #home::after {
    height: 60px;
  }
  
  #home::before {
    height: 40px;
  }
  
  #about {
    padding-top: 40px;
  }
}

/* Parçacık animasyon efekti */
.particles-container {
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
  left: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  opacity: 0;
  transform: translateY(0);
  animation: particleAnimation 8s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 10%;
  width: 10px;
  height: 10px;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 20%;
  width: 12px;
  height: 12px;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  left: 30%;
  width: 8px;
  height: 8px;
  animation-delay: 1s;
}

.particle:nth-child(4) {
  left: 40%;
  width: 6px;
  height: 6px;
  animation-delay: 1.5s;
}

.particle:nth-child(5) {
  left: 50%;
  width: 10px;
  height: 10px;
  animation-delay: 2s;
}

.particle:nth-child(6) {
  left: 60%;
  width: 14px;
  height: 14px;
  animation-delay: 2.5s;
}

.particle:nth-child(7) {
  left: 70%;
  width: 7px;
  height: 7px;
  animation-delay: 3s;
}

.particle:nth-child(8) {
  left: 80%;
  width: 5px;
  height: 5px;
  animation-delay: 3.5s;
}

.particle:nth-child(9) {
  left: 90%;
  width: 9px;
  height: 9px;
  animation-delay: 4s;
}

.particle:nth-child(10) {
  left: 15%;
  width: 6px;
  height: 6px;
  animation-delay: 4.5s;
}

.particle:nth-child(11) {
  left: 25%;
  width: 11px;
  height: 11px;
  animation-delay: 5s;
}

.particle:nth-child(12) {
  left: 35%;
  width: 8px;
  height: 8px;
  animation-delay: 5.5s;
}

.particle:nth-child(13) {
  left: 45%;
  width: 10px;
  height: 10px;
  animation-delay: 6s;
}

.particle:nth-child(14) {
  left: 65%;
  width: 7px;
  height: 7px;
  animation-delay: 6.5s;
}

.particle:nth-child(15) {
  left: 85%;
  width: 9px;
  height: 9px;
  animation-delay: 7s;
}

@keyframes particleAnimation {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .particles-container {
    height: 160px;
  }
  
  .particle {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 576px) {
  .particles-container {
    height: 120px;
  }
  
  .particle {
    width: 5px;
    height: 5px;
  }
}

/* Proje ve Çözüm Detay Modalları */
.project-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
  animation: modalFadeIn 0.3s;
}

.project-modal-content {
  position: relative;
  background: var(--white);
  max-width: 900px;
  width: 90%;
  margin: 50px auto;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  animation: modalContentFadeIn 0.5s;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 1001;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalContentFadeIn {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: var(--gray);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  color: var(--primary-color);
  background-color: rgba(138, 43, 226, 0.1);
}

.solution-detail-header {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
  overflow: visible;
}

.solution-detail-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

.solution-detail-header p {
  font-size: 1.1rem;
  color: #222222;
  line-height: 1.6;
}

.solution-detail-content {
  display: grid;
  grid-gap: 2rem;
  margin-top: 2rem;
}

.solution-detail-description {
  margin-bottom: 2rem;
}

.solution-detail-description p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #222222;
}

.solution-detail-benefits h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
}

.solution-detail-benefits ul {
  padding-left: 0;
  margin-top: 1.2rem;
  list-style: none;
}

.solution-detail-benefits li {
  font-size: 1.05rem;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #222222;
}

.solution-detail-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Proje Detay Bölümü */
.project-detail-header {
  margin-bottom: 2rem;
}

.project-detail-header h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.project-detail-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  margin-bottom: 2rem;
}

.project-detail-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.project-detail-description p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #222222;
}

.project-detail-features h4 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.project-detail-features ul {
  list-style: none;
  padding-left: 0;
}

.project-detail-features li {
  font-size: 1.05rem;
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.8rem;
  color: #222222;
}

.project-detail-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1;
}

.project-detail-results h4 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 1.5rem;
}

.result-item {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 229, 255, 0.1));
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.result-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.result-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.result-text {
  font-size: 1rem;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .project-modal-content {
    padding: 30px 20px;
    margin: 30px auto;
    width: 95%;
  }
  
  .project-detail-info {
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
  }
  
  .results-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    grid-gap: 1rem;
  }
  
  .solution-detail-header {
    padding: 20px;
  }
  
  .solution-detail-content {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .project-modal-content {
    padding: 20px 15px;
    margin: 20px auto;
  }
  
  .project-detail-header h2,
  .solution-detail-header h2 {
    font-size: 1.8rem;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* Ana sayfa ile Biz Kimiz sayfası arasındaki renk geçişi */
.section-with-transition {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(246, 245, 254, 0.8), rgba(255, 255, 255, 1));
  transition: background 0.8s ease-in-out;
}

#home {
  position: relative;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.08), rgba(0, 229, 255, 0.08));
  overflow: hidden;
  margin-bottom: -1px;
  z-index: 2;
}

#home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(246, 245, 254, 0), rgba(246, 245, 254, 0.95));
  z-index: 3;
}

#about {
  position: relative;
  background: linear-gradient(to bottom, rgba(246, 245, 254, 0.95), rgba(255, 255, 255, 1));
  padding-top: 80px;
  padding-bottom: 100px;
  z-index: 1;
}

/* Biz Kimiz bölümünün içerik düzeni */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 2rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  flex: 1.5;
  min-width: 300px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.05);
  position: relative;
  z-index: 2;
}

.about-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  z-index: -1;
}

.about-text h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: #222222;
  line-height: 1.7;
  font-weight: 500;
}

.about-text strong {
  color: var(--primary-color);
  font-weight: 700;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.about-list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #222222;
  font-size: 1.05rem;
  font-weight: 500;
}

.check-mark {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 16px;
}

/* Tarayıcı uyumluluğu için Firefox ve Safari düzenlemeleri */
@-moz-document url-prefix() {
  .about-text {
    background-color: rgba(255, 255, 255, 0.98);
  }
  
  .about-list-item {
    color: #000000;
  }
}

@media not all and (min-resolution:.001dpcm) { 
  @supports (-webkit-appearance:none) {
    .about-text {
      background-color: rgba(255, 255, 255, 0.98);
      -webkit-box-shadow: 0 10px 30px rgba(138, 43, 226, 0.08);
    }
    
    .about-text p, 
    .about-list-item {
      -webkit-font-smoothing: antialiased;
      color: #000000;
    }
  }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .about-text {
    padding: 1.5rem;
  }
  
  .about-text h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .about-text {
    padding: 1rem;
  }
  
  .about-text h3 {
    font-size: 1.4rem;
  }
  
  .about-text p,
  .about-list-item {
    font-size: 1rem;
  }
}

/* Dalgalı geçiş efekti */
.wave-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='rgba(246, 245, 254, 0.9)'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 5;
}

/* Parçacık Efekti */
.particles-container {
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
  left: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  opacity: 0;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  animation: particleAnimation 8s ease-in-out infinite;
  -webkit-animation: particleAnimation 8s ease-in-out infinite;
  -moz-animation: particleAnimation 8s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
  -webkit-box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
  -moz-box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

@keyframes particleAnimation {
  0% {
    opacity: 0;
    transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -moz-transform: translateY(200px);
  }
  20% {
    opacity: 0.9;
  }
  80% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
  }
}

@-webkit-keyframes particleAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
  }
  20% {
    opacity: 0.9;
  }
  80% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}

/* Parçacıkların konumlandırmaları */
.particle:nth-child(1) { left: 10%; width: 10px; height: 10px; animation-delay: 0s; -webkit-animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; width: 12px; height: 12px; animation-delay: 0.5s; -webkit-animation-delay: 0.5s; }
.particle:nth-child(3) { left: 30%; width: 8px; height: 8px; animation-delay: 1s; -webkit-animation-delay: 1s; }
.particle:nth-child(4) { left: 40%; width: 6px; height: 6px; animation-delay: 1.5s; -webkit-animation-delay: 1.5s; }
.particle:nth-child(5) { left: 50%; width: 10px; height: 10px; animation-delay: 2s; -webkit-animation-delay: 2s; }
.particle:nth-child(6) { left: 60%; width: 14px; height: 14px; animation-delay: 2.5s; -webkit-animation-delay: 2.5s; }
.particle:nth-child(7) { left: 70%; width: 7px; height: 7px; animation-delay: 3s; -webkit-animation-delay: 3s; }
.particle:nth-child(8) { left: 80%; width: 5px; height: 5px; animation-delay: 3.5s; -webkit-animation-delay: 3.5s; }
.particle:nth-child(9) { left: 90%; width: 9px; height: 9px; animation-delay: 4s; -webkit-animation-delay: 4s; }
.particle:nth-child(10) { left: 15%; width: 6px; height: 6px; animation-delay: 4.5s; -webkit-animation-delay: 4.5s; }
.particle:nth-child(11) { left: 25%; width: 11px; height: 11px; animation-delay: 5s; -webkit-animation-delay: 5s; }
.particle:nth-child(12) { left: 35%; width: 8px; height: 8px; animation-delay: 5.5s; -webkit-animation-delay: 5.5s; }
.particle:nth-child(13) { left: 45%; width: 10px; height: 10px; animation-delay: 6s; -webkit-animation-delay: 6s; }
.particle:nth-child(14) { left: 65%; width: 7px; height: 7px; animation-delay: 6.5s; -webkit-animation-delay: 6.5s; }
.particle:nth-child(15) { left: 85%; width: 9px; height: 9px; animation-delay: 7s; -webkit-animation-delay: 7s; }

/* Tarayıcı uyumluluğu için düzenlemeler */
@media (prefers-reduced-motion: reduce) {
  .particle {
    animation: none;
    -webkit-animation: none;
    opacity: 0.5;
  }
  
  .wave-transition {
    height: 50px;
  }
}

/* Safari için animasyon düzeltmesi */
@media not all and (min-resolution:.001dpcm) { 
  @supports (-webkit-appearance:none) {
    .particle {
      animation-iteration-count: infinite;
      -webkit-animation-iteration-count: infinite;
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }
    
    .wave-transition {
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }
  }
}

/* Firefox için düzeltme */
@supports (-moz-appearance:none) {
  .particle {
    box-shadow: none;
  }
}

/* About Text içindeki backdrop filtre için */
.about-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  z-index: -1;
}

/* Firefox için Özel Stiller */
@supports (-moz-appearance:none) {
  .about-text {
    background-color: rgba(255, 255, 255, 0.98);
  }
  
  .about-list-item {
    color: #000000;
  }
  
  .particle {
    box-shadow: none;
  }
}

/* Safari için özel stiller */
@media not all and (min-resolution:.001dpcm) { 
  @supports (-webkit-appearance:none) {
    .about-text {
      background-color: rgba(255, 255, 255, 0.98);
      box-shadow: 0 10px 30px rgba(138, 43, 226, 0.08);
      -webkit-box-shadow: 0 10px 30px rgba(138, 43, 226, 0.08);
    }
    
    .about-text p, 
    .about-list-item {
      -webkit-font-smoothing: antialiased;
      color: #000000;
    }
    
    .particle {
      animation-iteration-count: infinite;
      -webkit-animation-iteration-count: infinite;
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }
    
    .wave-transition {
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }
  }
}

/* Line-clamp için */
.solution-description, 
.project-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .particles-container {
    height: 150px;
  }
  
  .particle {
    transform-origin: center;
    -webkit-transform-origin: center;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }
  
  .wave-transition {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .particles-container {
    height: 100px;
  }
  
  .particle {
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
  }
  
  .wave-transition {
    height: 40px;
  }
}

/* Ongoing projects için stil sınıfları - inline stilleri kaldırmak için */
.ongoing-projects {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.ongoing-project-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 500px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ongoing-project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.project-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1.5rem;
  border-bottom-left-radius: 15px;
  font-weight: bold;
}

.project-title-bordered {
  color: var(--primary-font-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.8rem;
  display: inline-block;
}

.project-description {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.project-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.progress-text {
  color: var(--secondary-font-color);
  font-weight: 600;
}

.progress-text-highlight {
  color: var(--primary-color);
}

.progress-bar-container {
  width: 100px;
  height: 10px;
  background: #eee;
  border-radius: 10px;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.progress-60 {
  width: 60%;
}

.progress-75 {
  width: 75%;
}

.project-tags {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.project-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.project-tag-primary {
  background: rgba(138, 43, 226, 0.1);
  color: var(--primary-color);
}

.project-tag-secondary {
  background: rgba(0, 229, 255, 0.1);
  color: var(--secondary-color);
}

.project-actions {
  margin-top: 1.5rem;
  text-align: right;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* Footer logo stil düzeltmeleri */
.footer-logo-svg {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

/* Genel container margin düzeltmesi */
.margin-top-2 {
  margin-top: 2rem;
}

.margin-top-4 {
  margin-top: 4rem;
}

/* Inline stillerden kurtulmak için section-subtitle stilinde değişiklik */
.section-subtitle {
  text-align: center;
  color: var(--secondary-font-color);
  font-size: 1.1rem;
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.section-subtitle-light {
  color: white;
}

.section-title-medium {
  font-size: 2rem;
}

/* Scrollbar stillendirme */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Firefox için scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-light);
}

/* Mobile Safari için scrolling desteği */
.projects-container, .solutions-container {
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

/* Temel animasyon stilleri tüm tarayıcılar için */
.particle, .wave-transition {
  -webkit-transform: translateY(0) translateX(0);
  -moz-transform: translateY(0) translateX(0);
  -ms-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Box shadow prefix'leri */
.card, .solution-card, .project-card, .modal-content, .ongoing-project-card {
  -webkit-box-shadow: var(--shadow);
  -moz-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.card:hover, .solution-card:hover, .project-card:hover, .ongoing-project-card:hover {
  -webkit-box-shadow: var(--hover-shadow);
  -moz-box-shadow: var(--hover-shadow);
  box-shadow: var(--hover-shadow);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* Backdrop filter için tarayıcı ön eki ekleyelim */
.about-text, .about-list-item {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Tüm tarayıcılar için footer logo stilleri */
.footer-logo-svg {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
}

/* Eski Firefox versiyonları için uyumluluk düzeltmeleri */
@supports (-moz-appearance:none) {
  .about-text, .about-list-item {
    background-color: rgba(255, 255, 255, 0.85);
  }
  
  .particle {
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
  }
}

/* Section subtitle stilleri */
.section-subtitle-light {
  color: white;
}

.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--turquoise), var(--lilac));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  pointer-events: none;
}

.page-transition.active {
  opacity: 1;
  visibility: visible;
}

.page-transition::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: ripple 1s ease-out infinite;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.8;
  }
  100% {
    width: 200vw;
    height: 200vw;
    opacity: 0;
  }
}

/* Sayfalar arası smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Sayfa bölümleri arası renk geçişi */
.section-with-transition {
  position: relative;
  transition: all 1s ease;
  z-index: 1;
}

.section-with-transition::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.02));
  z-index: -1;
}

#home {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.35), rgba(138, 43, 226, 0.25));
}

#about {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.35), rgba(0, 229, 255, 0.25));
}

.gradient-divider {
  display: none;
}

/* Modal için revize edilmiş stiller - kapanma sorununu düzeltmek için */
.project-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: auto !important;
}

.project-modal.active {
  opacity: 1;
  pointer-events: auto !important;
}

.project-modal-content {
  position: relative;
  background-color: var(--white);
  margin: 50px auto;
  padding: 40px;
  width: 90%;
  max-width: 1000px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  z-index: 10001;
  pointer-events: auto !important;
}

.project-modal.active .project-modal-content {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto !important;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  background: white;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  pointer-events: auto !important;
}

.close-modal:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Çözüm detay ve proje detay modalları için tüm etkileşimleri etkinleştir */
.solution-link, 
.project-link,
.ongoing-project-card,
.btn,
.close-modal,
#solution-detail-content,
#project-detail-content,
.project-detail-header,
.solution-detail-header,
.project-detail-info,
.solution-detail-content,
.project-detail-results,
.project-detail-features,
.solution-detail-benefits,
.project-detail-image,
.project-detail-description,
.solution-detail-description {
  pointer-events: auto !important;
  z-index: 100;
}

/* Bug düzeltme için Firefox ve Safari uyumluluğu */
@media not all and (min-resolution:.001dpcm) {
  .project-modal,
  .project-modal-content,
  .close-modal {
    pointer-events: auto !important;
  }
  
  .project-modal * {
    pointer-events: auto !important;
  }
}

@supports (-webkit-appearance:none) {
  .project-modal,
  .project-modal-content,
  .close-modal {
    pointer-events: auto !important;
  }
  
  .project-modal * {
    pointer-events: auto !important;
  }
}

/* Sayfalar arası geçiş için animasyon */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--turquoise), var(--lilac));
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  pointer-events: none;
}

.page-transition.active {
  opacity: 1;
  visibility: visible;
}

.page-transition::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: rippleEffect 0.8s ease-out forwards;
}

@keyframes rippleEffect {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 300vw;
    height: 300vw;
    opacity: 0;
  }
}

/* MODAL DÜZELTME - SAYFANIN ARKASINA DÜŞME SORUNU */
.project-modal {
  position: fixed !important;
  display: none;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 99999 !important; /* Maksimum z-index değeri */
  background-color: rgba(0, 0, 0, 0.85);
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 50px 20px;
}

.project-modal.active {
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
}

.project-modal-content {
  position: relative !important;
  background-color: white !important;
  width: 90% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 40px !important;
  border-radius: 15px !important;
  z-index: 100000 !important; /* Modal content daha yüksek z-index */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(0) !important; /* Transform değerini sıfırla */
}

.close-modal-btn, 
.close-modal {
  position: absolute !important;
  right: 20px !important;
  top: 20px !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 28px !important;
  background-color: white !important;
  color: #333 !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 100001 !important; /* Kapama butonu en üstte */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.close-modal-btn:hover,
.close-modal:hover {
  background-color: #8A2BE2 !important;
  color: white !important;
}

/* Tüm modallar için */
#project-detail-modal,
#solution-detail-modal,
#consultation-modal {
  position: fixed !important;
  display: none;
  z-index: 99999 !important;
  background-color: rgba(0, 0, 0, 0.85);
}

/* Overlay engelleme */
* {
  position: relative;
}

/* MODAL DÜZELTMELERİ */
.project-modal,
.solution-modal,
.consultation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999 !important;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  pointer-events: none;
}

.project-modal.active,
.solution-modal.active,
.consultation-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.project-modal-content,
.solution-modal-content,
.consultation-modal-content {
  background-color: #fff;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  overflow-y: auto;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.project-modal.active .project-modal-content,
.solution-modal.active .solution-modal-content,
.consultation-modal.active .consultation-modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.modal-close:before,
.modal-close:after {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #333;
  transform-origin: center;
}

.modal-close:before {
  transform: rotate(45deg);
}

.modal-close:after {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .project-modal-content,
  .solution-modal-content,
  .consultation-modal-content {
    width: 95%;
    padding: 20px;
    max-height: 80vh;
  }
}

/* Modal İçerik Düzenlemeleri */
.modal-header {
  margin-bottom: 20px;
  padding-right: 30px; /* Kapat butonu için alan */
}

.modal-body {
  margin-bottom: 20px;
}

.modal-content-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.modal-content-col {
  flex: 1;
  min-width: 300px;
  padding: 0 15px;
}

.modal-content-col:first-child {
  padding-left: 0;
}

.modal-content-col:last-child {
  padding-right: 0;
}

.modal-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.modal-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.modal-description {
  margin-bottom: 20px;
  line-height: 1.6;
}

.modal-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.modal-tech-item {
  background-color: #f0f0f0;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .modal-content-row {
    flex-direction: column;
  }
  
  .modal-content-col {
    min-width: 100%;
    padding: 0;
  }
}

/* İletişim formu değişiklikleri */
.consultation-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #6c63ff;
  outline: none;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}

.submit-btn {
  background-color: #6c63ff;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #5a52d5;
}

/* Modal gösterimi ve animasyonu iyileştirmeleri */
body.modal-open {
  overflow: hidden;
}