/* Reset ve Genel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  /* padding-left: 50px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Topbar Styles */
.topbar {
  padding: 8px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto; /* Sağa yaslamak için */
}

.topbar-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  white-space: nowrap; /* Metinlerin alt satıra geçmemesi için */
}

.topbar-contact-item i {
  font-size: 14px;
  color: #2563eb;
}

.topbar-info {
  font-size: 13px;
  color: #64748b;
}

/* Responsive ayarlar */
@media (max-width: 1200px) {
  .topbar-content {
    flex-direction: column;
    gap: 10px;
  }

  .topbar-right {
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .page-hero .container {
    flex-direction: column;
  }

  .why-baditech .container {
    flex-direction: column;
  }

  .why-baditech {
    padding-bottom: 40px !important;
  }

  .why-baditech .container p {
    margin: 0;
    max-width: 100%;
  }

  .why-baditech .container .why-features {
    gap: 40px;
  }

  .why-baditech .container .section-header {
    margin: 0 auto 60px;
  }
  .why-card-details .feature-content p {
    margin-bottom: 1rem;
  }
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact-item i,
.topbar-contact-item svg {
  color: #2563eb;
  font-size: 14px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar-social a {
  color: #555;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.topbar-social span {
  text-decoration: none;
}

.topbar-social a:hover {
  color: #2563eb;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .has-topbar .header {
    top: 0 !important;
  }
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(30, 64, 175, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Topbar olduğunda header konumunu ayarla */
.has-topbar .header {
  top: 37px; /* Topbar yüksekliğine göre ayarla */
}

.has-topbar .header.scrolled {
  top: 0;
}

.header.scrolled {
  /* background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); */
  background: rgba(30, 64, 175, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.logo {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 1px;
  margin-left: 30px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

.logo img {
  height: 45px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.logo::before {
  content: "I";
  margin-right: 10px;
  font-weight: 300;
  opacity: 0.9;
  color: #60a5fa;
  display: none; /* Resim varken gizlenecek */
}

.logo:hover {
  transform: translateY(-2px);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  margin-left: auto;
  gap: 5px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  padding: 10px 18px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #60a5fa;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(-50%);
  opacity: 0;
}

.nav-menu a:hover::after {
  width: 70%;
  opacity: 1;
}

.nav-menu a.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-menu a.active::after {
  width: 70%;
  opacity: 1;
}

.nav-menu.active li {
  padding: 0 0.8rem;
}

.nav-button {
  background: rgba(96, 165, 250, 0.2) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 30px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(96, 165, 250, 0.4) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  font-weight: 700 !important;
}

.nav-button:hover {
  background: #60a5fa !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.nav-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.8s;
}

.nav-button:hover::before {
  left: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
}

/* Hamburger Menu Animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
  .mobile-menu-btn {
    display: flex;
  }

  .logo img {
    height: 38px;
    max-width: 150px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Menü genişliği kadar negatif değer */
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 0 30px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    margin: 8px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
    border-radius: 1rem;
    /* background-color: #ffffff; */
  }

  .nav-menu.active a {
    border-radius: 0.6rem;
    padding-left: 1rem;
  }

  .nav-menu li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-menu li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-menu li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-menu li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-menu li:nth-child(6) {
    transition-delay: 0.6s;
  }

  .nav-menu a {
    padding: 12px 0;
    width: 100%;
    border-radius: 0;
    font-size: 16px;
  }

  /* .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    box-shadow: none;
  } */

  .nav-menu a::after {
    display: none;
  }

  .nav-button {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
  }

  /* Body Scroll Lock */
  body.menu-open {
    overflow: hidden;
  }

  /* Overlay when menu is open */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
  }

  .menu-overlay.active {
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .nav-menu {
    width: 100%;
    right: -100%; /* Tam ekran genişliği kadar negatif değer */
    padding: 80px 20px 30px;
  }

  .logo img {
    height: 32px;
    max-width: 120px;
  }
}

/* Hero Section Styles */
.hero {
  position: relative;
  padding: 100px 0 120px;
  /* background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); */
  /* background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%); */
  background: linear-gradient(135deg, rgb(14, 36, 83) 0%, #1e40af 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.1) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 60px 60px, 30px 30px, 30px 30px;
  background-position: 0 0, 15px 15px, 45px 45px;
  opacity: 0.6;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'%3E%3Cpath d='M30 5 L45 15 L45 35 L30 45 L15 35 L15 15 Z'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
  background-size: 60px 60px;
  opacity: 0.3;
  z-index: 1;
  animation: hexagonMove 20s linear infinite;
}

/* Animated hexagonal pattern */
@keyframes hexagonMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(60px) translateY(60px);
  }
}

/* Alternative hexagonal grid using CSS shapes */
.hero-hexagon-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 1;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 52px,
      rgba(255, 255, 255, 0.1) 52px,
      rgba(255, 255, 255, 0.1) 54px
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 52px,
      rgba(255, 255, 255, 0.1) 52px,
      rgba(255, 255, 255, 0.1) 54px
    ),
    repeating-linear-gradient(
      120deg,
      transparent,
      transparent 52px,
      rgba(255, 255, 255, 0.1) 52px,
      rgba(255, 255, 255, 0.1) 54px
    );
}

/* Ensure hero content stays above the background */
.hero .container {
  position: relative;
  z-index: 2;
  justify-content: center;
}

.hero-flex {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Floating hexagonal elements for extra visual appeal */
.hero-floating-hexagons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-hexagon {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.1;
  animation: floatHexagon 8s ease-in-out infinite;
}

.floating-hexagon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
  );
}

.floating-hexagon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.floating-hexagon:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.floating-hexagon:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.floating-hexagon:nth-child(4) {
  top: 30%;
  right: 15%;
  animation-delay: 1s;
  animation-duration: 9s;
}

@keyframes floatHexagon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero::after {
    background-size: 40px 40px;
  }

  .floating-hexagon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 576px) {
  .hero::after {
    background-size: 30px 30px;
  }

  .floating-hexagon {
    width: 20px;
    height: 20px;
  }
}

.hero-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 600px;
}

.hero-content h1,
.hero-content p {
  text-align: left;
}

.hero .container {
  justify-content: center;
}

.hero .subtitle {
  max-width: 8rem;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-shapes svg {
  position: absolute;
}

.hero-shapes .shape-1 {
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shapes .shape-2 {
  top: 25%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.hero-shapes .shape-3 {
  bottom: 15%;
  right: 5%;
  animation: float 7s ease-in-out infinite;
}

.hero-shapes .shape-4 {
  bottom: 20%;
  left: 10%;
  animation: float 5s ease-in-out infinite;
}

.hero-shapes .shape-5 {
  top: 40%;
  right: 15%;
  animation: float 9s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-top: 30px;
  z-index: 1;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.hero-stats .text {
  font-size: 0.9rem;
  opacity: 0.8;
}

.wave-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path 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="white"/></svg>');
  background-size: cover;
}

/* Page-specific hero styles */
.about-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.services-hero {
  background: linear-gradient(135deg, #0f766e 0%, #0ea5e9 100%);
}

.portfolio-hero {
  background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
}

.blog-hero {
  background: linear-gradient(135deg, #9333ea 0%, #3b82f6 100%);
}

/* Responsive styles for hero section */
@media (max-width: 992px) {
  .hero {
    padding: 80px 0 100px;
  }

  .hero-flex {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-content {
    display: inline;
    text-align: center;
    max-width: 100%;
  }

  .hero .subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .hero-content h1,
  .hero-content p {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 0 80px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
  }
}

/* Hero buttons */
.btn-primary {
  display: inline-block;
  background-color: #fff;
  color: #1e40af;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-secondary i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-secondary:hover i {
  transform: translateX(5px);
}

/* Social Links Styles */
.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.social-btn svg {
  transition: all 0.3s ease;
}

.social-btn:hover svg {
  transform: scale(1.1);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.services .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #333;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #045089 0%, #0080ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: block;
}

.section-header p {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 0;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-header p {
    font-size: 16px;
  }
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, #045089, #0066cc);
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
  border-radius: 20px;
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 102, 204, 0.2);
  color: white;
}

.service-card:hover::before {
  height: 100%;
  opacity: 1;
}

.service-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.service-card:hover .service-icon {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 20px 30px rgba(0, 102, 204, 0.2);
}

.service-icon object {
  width: 65%;
  height: 65%;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-icon object {
  transform: scale(1.15);
  filter: brightness(1.1);
}

.service-card h3 {
  margin-bottom: 15px;
  color: #0c2d48;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  transition: color 0.5s ease;
  z-index: 2;
}

.service-card:hover h3 {
  color: white;
}

.service-card p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0 25px;
  transition: color 0.5s ease;
  z-index: 2;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Floating Animation for Service Icons */
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-icon {
  animation: floatIcon 6s ease-in-out infinite;
}

.learn-more {
  color: #045089;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 2px solid rgba(4, 80, 137, 0.1);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.learn-more:hover {
  background: #045089;
  color: #fff;
  border-color: #045089;
}

/* Portfolio Section */
.portfolio {
  padding: 80px 0 160px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.portfolio-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 60px;
  overflow: hidden;
}

.portfolio-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.portfolio-item {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  height: 450px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(4, 80, 137, 0.2),
    rgba(4, 80, 137, 0)
  );
  z-index: 1;
  transition: opacity 0.5s;
}

.portfolio-item:hover {
  transform: translateZ(50px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
  width: 100%;
  height: 45%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.portfolio-image object {
  width: 80%;
  height: 80%;
  transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-image object {
  transform: scale(1.1);
}

.portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-content {
  transform: translateY(-20px);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: #045089;
}

.slider-nav:hover {
  background: #045089;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

.slider-nav svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.slider-nav.prev:hover svg {
  transform: translateX(-3px);
}

.slider-nav.next:hover svg {
  transform: translateX(3px);
}

.slider-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(4, 80, 137, 0.2);
  border: 2px solid #045089;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(4, 80, 137, 0.4);
  transform: scale(1.1);
}

.dot.active {
  background: #045089;
  transform: scale(1.2);
  border-color: #fff;
}

.portfolio-category {
  font-size: 14px;
  color: #045089;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.portfolio-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.portfolio-description {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s 0.1s;
}

.portfolio-item:hover .portfolio-description {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  color: #045089;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s 0.2s;
}

.portfolio-link svg {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-link {
  opacity: 1;
  transform: translateX(0);
}

.portfolio-item:hover .portfolio-link svg {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .portfolio-slider {
    padding: 20px 40px;
  }

  .portfolio-item {
    height: 400px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
  }

  .portfolio-content {
    padding: 15px;
  }

  .portfolio-title {
    font-size: 18px;
  }

  .portfolio-description {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

/* Footer */
.footer {
  background-color: #0f172a;
  color: #fff;
  position: relative;
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* Şirket Bilgileri */
.footer-info {
  padding-right: 30px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.contact-item i {
  color: #60a5fa;
  font-size: 1rem;
  margin-top: 4px;
}

/* Hızlı Linkler ve Hizmetler */
.footer-links h4,
.footer-services h4,
.footer-social h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-social h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #60a5fa;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: #60a5fa;
  transform: translateX(5px);
}

/* Sosyal Medya Bölümü */
.footer-social p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-social .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #94a3b8;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.footer-social .social-link:hover {
  background: #60a5fa;
  border-color: #60a5fa;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.4);
}

.footer-social .social-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social .social-link:hover i {
  transform: scale(1.1);
}

/* Footer CTA Butonu */
.footer-cta {
  margin-top: 25px;
}

.footer-cta .cta-button {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(45deg, #60a5fa, #3b82f6);
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta .cta-button:hover {
  background: linear-gradient(45deg, #3b82f6, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.3);
}

.footer-cta .cta-button i {
  font-size: 16px;
}

/* Sosyal Medya */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #60a5fa;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 40px;
  margin: 0 20px;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 0 10px;
}

.legal-links a:hover {
  color: #60a5fa;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #60a5fa;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #3b82f6;
  transform: translateY(-5px);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
  .footer-content-wrapper {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .footer-content-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-info {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 50px 0 30px;
  }

  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .legal-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
}

/* Tech Stack Section */
.tech-stack {
  padding: 80px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.tech-stack .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: block;
}

.tech-stack .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.tech-layout {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 50px;
}

.tech-intro {
  flex: 0 0 275px;
  padding-right: 20px;
  border-right: 1px solid #e2e8f0;
}

.tech-intro-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.25);
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}

.tech-intro-icon:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
}

.tech-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tech-intro p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.5;
}

.tech-tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tech-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tech-nav-link {
  padding: 8px 16px;
  background: #f1f5f9;
  border: none;
  border-radius: 50px;
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tech-nav-link:hover {
  background: #e0f2fe;
  color: #0369a1;
}

.tech-nav-link.active {
  background: #0ea5e9;
  color: #fff;
  box-shadow: 0 4px 8px rgba(14, 165, 233, 0.2);
}

.tech-tab-content {
  display: none;
  background: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.tech-tab-content.active {
  display: block;
}

.tech-tab-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
}

.tech-tab-content h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #3b82f6;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: #e0f2fe;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.tech-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}

.tech-item span {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

/* Responsive Styles for Technology Section */
@media (max-width: 992px) {
  .tech-layout {
    flex-direction: column;
  }

  .tech-intro {
    flex: 0 0 auto;
    padding-right: 0;
    border-right: none;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
  }

  .tech-intro-icon {
    margin: 0 auto 20px;
  }

  .tech-tab-content.active {
    display: block;
  }
}

@media (max-width: 768px) {
  .tech-tab-content {
    padding: 20px;
  }

  .tech-items {
    gap: 10px;
  }

  .tech-item {
    padding: 6px 12px;
  }

  .tech-icon {
    width: 20px;
    height: 20px;
  }

  .tech-item span {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .tech-items {
    justify-content: center;
  }
}

/* Make all tab content visible on mobile for easier viewing */
@media (max-width: 768px) {
  .tech-tab-content {
    display: block;
    margin-bottom: 20px;
  }
}

/* Success Stories Section */
.success-stories {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, #e8f3ff 100%);
  position: relative;
  overflow: hidden;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

.journey-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(4, 80, 137, 0.1);
}

.journey-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #045089, #0080ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(4, 80, 137, 0.15);
}

.journey-card:hover::before {
  transform: scaleX(1);
}

.journey-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(4, 80, 137, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #045089;
  transition: all 0.3s ease;
}

.journey-card:hover .journey-icon {
  background: #045089;
  color: #fff;
  transform: rotateY(180deg);
}

.journey-card h3 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.journey-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 45px;
}

.journey-stat {
  padding-top: 20px;
  border-top: 1px solid rgba(4, 80, 137, 0.1);
}

.journey-stat .number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #045089;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #045089 0%, #0080ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journey-stat .label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .journey-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }

  .journey-card {
    padding: 25px;
  }

  .journey-card p {
    min-height: auto;
  }
}

/* Blog Section */
.blog {
  padding: 100px 0 120px;
  background-color: #f0f7ff;
  position: relative;
  overflow: hidden;
}

.blog .container {
  flex-direction: column;
  align-items: stretch;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.blog-header-content {
  max-width: 600px;
}

.blog-badge {
  display: inline-block;
  background-color: rgba(96, 165, 250, 0.2);
  color: #1e40af;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.blog-header-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.blog-header-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.blog-header-action {
  margin-top: 20px;
}

.view-all {
  padding: 12px 24px;
  border-radius: 8px;
  background-color: transparent;
  color: #1e40af;
  border: 1px solid #1e40af;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.view-all:hover {
  background-color: #1e40af;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(30, 64, 175, 0.15);
}

.view-all svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.view-all:hover svg {
  transform: translateX(5px);
  color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.blog-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(30, 64, 175, 0.15);
  border-color: rgba(96, 165, 250, 0.3);
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image object {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image object {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #1e40af;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(30, 64, 175, 0.2);
}

.blog-date-chip {
  position: absolute;
  left: 16px;
  bottom: -20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  text-align: center;
  z-index: 2;
  line-height: 1;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.blog-date-chip .day {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1e40af;
}

.blog-date-chip .month {
  display: block;
  font-size: 12px;
  color: #475569;
  margin-top: 2px;
}

.blog-content {
  padding: 30px 24px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #475569;
}

.read-time svg {
  color: #60a5fa;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
  color: #1e40af;
}

.blog-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 0;
  position: relative;
}

.read-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #60a5fa;
  transition: width 0.3s ease;
}

.read-more:hover::after {
  width: 100%;
}

.read-more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: #60a5fa;
}

.read-more:hover svg {
  transform: translateX(5px);
}

/* Blog bölümüne hafif süsleme elemanları ekleyelim */
.blog::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.1);
  z-index: 1;
}

.blog::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.05);
  z-index: 1;
}

@media (max-width: 1100px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-header-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .blog-header-action {
    margin-top: 20px;
  }

  .blog-header-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .blog {
    padding: 80px 0 100px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog {
    padding: 60px 0 80px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-header-content h2 {
    font-size: 28px;
  }

  .blog-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .blog {
    padding: 50px 0 70px;
  }

  .blog-header-content h2 {
    font-size: 24px;
  }

  .blog-badge {
    font-size: 12px;
    padding: 4px 12px;
  }

  .view-all {
    padding: 10px 16px;
    font-size: 14px;
  }

  .blog-image {
    height: 180px;
  }

  .blog-content h3 {
    font-size: 18px;
  }
}

/* Neden Baditech Bölümü - Yeni Stil */
.why-baditech {
  padding: 100px 0;
  background: #f9fafd;
  position: relative;
  overflow: hidden;
}

.why-baditech p,
.why-baditech h2 {
  text-align: left;
}

.why-baditech p {
  padding: 0 2rem 0 0;
}

.why-baditech .container .section-header {
  min-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: left;
}

.why-baditech .container .section-header .subtitle {
  margin: 0 auto 20px 0;
}

.why-features {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 40px;
  margin-top: 40px;
  min-height: 450px;
}

/* 3D Kartlar */
.why-3d-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  height: 140px;
  perspective: 1000px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card-details {
  /* margin-right: 2rem; */
}
.why-card.active {
  box-shadow: 0 15px 30px rgba(0, 102, 204, 0.15);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 20px;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-left: 80px;
  position: relative;
  z-index: 2;
}

.card-front::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #e0e7ff;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  transition: all 0.3s ease;
}

.why-card.active .card-front::before,
.why-card:hover .card-front::before {
  width: 12px;
  background: #0066cc;
}

.card-back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background: #f0f7ff;
  border-radius: 16px;
  padding: 25px;
  transform: rotateY(180deg);
}

/* Kartların dönme efektini kaldır */
.card-front {
  transform: rotateY(0deg);
}

.card-back {
  transform: rotateY(180deg);
  opacity: 0;
  pointer-events: none;
}

.card-icon {
  position: absolute;
  left: 25px;
  width: 40px;
  height: 40px;
  color: #64748b;
  transition: all 0.3s ease;
  z-index: 3;
}

.why-card.active .card-icon,
.why-card:hover .card-icon {
  color: #0066cc;
}

.card-front h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0c2d48;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.why-card.active .card-front h3,
.why-card:hover .card-front h3 {
  color: #0066cc;
}

.card-badge {
  position: absolute;
  right: 15px;
  top: 15px;
  background: #f0f7ff;
  color: #0066cc;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hover-hint {
  font-size: 12px;
  color: #64748b;
  margin-top: 8px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.why-card:hover .hover-hint {
  opacity: 1;
  color: #0066cc;
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.feature-cta:hover {
  text-decoration: underline;
  color: #004c99;
}

/* Detay Alanı */
.why-card-details {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.feature-content {
  padding: 2rem;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  display: flex;
  flex-direction: column;
}

.feature-content.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.feature-content h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1e293b;
  position: relative;
  display: inline-block;
}

.feature-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background: #2563eb;
}

.feature-highlight {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 30px;
  margin-bottom: 20px;
}

.feature-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 30px;
}

.feature-stat {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 20px;
  border-radius: 15px;
  width: fit-content;
  text-align: center;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
  transition: transform 0.3s ease;
}

.feature-stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.tech-tags span {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tech-tags span:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-3px);
}

.team-stats {
  display: flex;
  gap: 20px;
  margin-top: auto;
}

.team-stat {
  flex: 1;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-stat:hover {
  /* background: #e2e8f0; */
  transform: translateY(-5px);
}

.team-stat .stat-number {
  color: #2563eb;
  font-size: 28px;
}

.team-stat .stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobil Kartlar */
.why-mobile-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.why-card-mobile {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.why-card-mobile:hover {
  transform: translateY(-5px);
  border-top: 3px solid #2563eb;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.why-card-mobile .card-icon {
  color: #2563eb;
  height: 60px;
  margin-bottom: 20px;
}

.why-card-mobile h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
}

.why-card-mobile p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1100px) {
  .why-features {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-3d-cards {
    flex-direction: row;
    gap: 20px;
  }

  .why-card {
    flex: 1;
  }

  .feature-content {
    position: relative;
    opacity: 1;
    transform: none;
    height: auto;
    display: none;
  }

  .feature-content.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .why-3d-cards {
    flex-direction: column;
  }

  .why-mobile-cards {
    grid-template-columns: 1fr;
  }

  .feature-content {
    padding: 30px 20px;
  }

  .team-stats {
    flex-direction: column;
    gap: 10px;
  }
}

/* Contact Section */
.contact {
  padding: 120px 0;
  position: relative;
  background-color: #f8faff;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.05);
  z-index: 1;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(30, 64, 175, 0.03);
  z-index: 1;
}

.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.contact .section-header .subtitle {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.contact .section-header h2 {
  color: #1e3a8a;
  margin-bottom: 16px;
}

.contact .section-header p {
  color: #64748b;
}

.contact-wrapper {
  display: flex;
  width: 100%;
  gap: 40px;
  align-items: stretch;
  margin-top: 20px;
}

.contact-form-container {
  flex: 1;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-form-container:hover {
  box-shadow: 0 15px 50px rgba(30, 64, 175, 0.08);
  transform: translateY(-5px);
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.contact-form {
  position: relative;
  z-index: 2;
}

.form-header {
  margin-bottom: 30px;
  position: relative;
}

.form-header h3 {
  color: #1e3a8a;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-header p {
  color: #64748b;
  font-size: 15px;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background-color: #f8fafc;
  color: #334155;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 20px;
  color: #94a3b8;
  font-size: 15px;
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: transparent;
}

.form-group textarea ~ label {
  top: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.1);
  background-color: #fff;
  outline: none;
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 15px;
  font-size: 12px;
  color: #3b82f6;
  padding: 0 5px;
  background-color: white;
  z-index: 2;
}

.form-icons {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #94a3b8;
  z-index: 2;
  pointer-events: none;
}

.form-icons svg {
  width: 20px;
  height: 20px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  margin: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.checkbox-container input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container span {
  color: #64748b;
  font-size: 14px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
}

.form-submit-btn:hover::before {
  left: 100%;
}

.form-submit-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
  transform: translateX(4px);
}

.contact-info-container {
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #3b82f6, #60a5fa);
  opacity: 0;
  transition: all 0.3s ease;
}

.contact-info-card:hover::before {
  opacity: 1;
}

.info-icon-container {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(96, 165, 250, 0.1) 100%
  );
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-info-card:hover .info-icon-container {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(96, 165, 250, 0.2) 100%
  );
}

.info-icon-container svg {
  width: 28px;
  height: 28px;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.contact-info-card:hover .info-icon-container svg {
  transform: scale(1.1);
}

.info-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 6px;
}

.info-content p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.contact-decoration {
  position: absolute;
  z-index: 1;
}

.decoration-1 {
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.decoration-2 {
  bottom: 15%;
  right: 5%;
  animation: float 8s ease-in-out infinite;
}

.decoration-3 {
  bottom: 30%;
  left: 10%;
  animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.contact-form-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

.form-animation-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.circle-1 {
  width: 120px;
  height: 120px;
  background-color: #3b82f6;
  top: -60px;
  right: -60px;
}

.circle-2 {
  width: 80px;
  height: 80px;
  background-color: #60a5fa;
  bottom: 30px;
  left: -30px;
}

.circle-3 {
  width: 60px;
  height: 60px;
  background-color: #93c5fd;
  top: 40%;
  right: -20px;
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info-container {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info-card {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0;
  }

  .contact-info-container {
    flex-direction: column;
  }

  .contact-info-card {
    width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
  }

  .form-group label {
    top: 12px;
    left: 16px;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 60px 0;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .form-header h3 {
    font-size: 20px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .info-icon-container {
    width: 50px;
    height: 50px;
  }

  .info-icon-container svg {
    width: 24px;
    height: 24px;
  }

  .info-content h4 {
    font-size: 16px;
  }
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  animation: slideIn 0.3s ease;
  max-width: 400px;
}

.notification.success {
  border-left: 4px solid #4caf50;
}

.notification.error {
  border-left: 4px solid #f44336;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification-icon {
  width: 24px;
  height: 24px;
}

.notification.success .notification-icon {
  color: #4caf50;
}

.notification.error .notification-icon {
  color: #f44336;
}

.notification span {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.notification-close {
  background: none;
  border: none;
  color: #666;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.3s ease;
}

.notification-close:hover {
  color: #333;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Loading Spinner */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.service-features {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
}

.service-features.active {
  max-height: 300px;
  margin: 15px 0;
  opacity: 1;
  visibility: visible;
  padding: 10px 0;
}

.service-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}

.service-features.active li {
  transform: translateY(0);
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23045089'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
}

.toggle-features {
  background: none;
  border: 2px solid #045089;
  border-radius: 5px;
  color: #045089;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px auto 0;
  transition: all 0.3s ease;
  width: auto;
  min-width: 120px;
}

.toggle-features:hover {
  background: #045089;
  color: #fff;
}

.toggle-features svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.toggle-features.active svg {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .service-features {
    margin: 10px 0;
  }

  .service-features li {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
  background: #fff;
  padding: 0 4px;
}

.form-group textarea ~ label {
  top: 24px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  outline: none;
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 14px;
  color: #2563eb;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 1.5rem 0;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.checkbox-container span {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, #2563eb, #3b82f6);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: linear-gradient(45deg, #1d4ed8, #2563eb);
  transform: translateY(-2px);
}

.contact-form .btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover svg {
  transform: translateX(4px);
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #033b6c 0%, #0066cc 100%);
}

.about-hero .hero-content {
  max-width: 550px;
  position: relative;
  z-index: 2;
}

.about-hero .hero-image {
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.about-hero .hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-shapes svg {
  position: absolute;
  animation: float 5s ease-in-out infinite;
}

.hero-shapes .shape-1 {
  top: 15%;
  left: 30%;
  animation-delay: 0s;
}

.hero-shapes .shape-2 {
  top: 55%;
  left: 15%;
  animation-delay: 1s;
}

.hero-shapes .shape-3 {
  top: 25%;
  right: 20%;
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Firma Tarihçesi */
.company-history {
  padding: 100px 0;
  background: #f8fbff;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 20px 0;
}

.timeline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 102, 204, 0.1),
    rgba(0, 102, 204, 0.8),
    rgba(0, 102, 204, 0.1)
  );
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #0066cc;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  background: #1a8cff;
  box-shadow: 0 0 0 6px rgba(0, 102, 204, 0.3);
  transform: translateX(-50%) scale(1.2);
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-content.left {
  left: 0;
}

.timeline-content.right {
  left: 55%;
}

.timeline-year {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(135deg, #0066cc, #1a8cff);
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 15px;
  font-size: 14px;
}

.timeline-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0066cc;
}

.timeline-content p {
  margin: 0;
  color: #555;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-card {
  padding: 40px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.value-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0066cc, #1a8cff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.value-card:hover:before {
  transform: scaleX(1);
}

.value-card:hover .value-icon {
  background: rgba(0, 102, 204, 0.1);
  transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0066cc;
  transition: all 0.3s ease;
}

.value-card:hover h3 {
  transform: translateY(-5px);
  color: #1a8cff;
}

.value-card p {
  color: #555;
  margin: 0;
}

/* Ekip Bölümü */
.team-section {
  padding: 100px 0;
  background: #f8fbff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
  position: relative;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.team-member:hover .member-social {
  transform: translateY(0);
}

.member-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: #0066cc;
  transform: translateY(-5px);
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0066cc;
}

.position {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(0, 102, 204, 0.1);
  color: #0066cc;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.member-info p {
  color: #555;
  margin: 0;
  font-size: 14px;
}

/* İletişim CTA Bölümü */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #033b6c 0%, #0066cc 100%);
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.cta-section:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .about-hero {
    padding: 140px 0 80px;
  }

  .timeline:before {
    left: 30px;
  }

  .timeline-dot {
    left: 30px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    left: 60px;
  }

  .timeline-content.left,
  .timeline-content.right {
    left: 60px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 60px;
  }

  .timeline-content {
    padding: 20px;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

/* Hizmetler Sayfası Stilleri */
.services-hero {
  background: linear-gradient(135deg, #0057b8, #00377a);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.services-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-hero .hero-content .subtitle {
  max-width: 10rem;
  margin-bottom: 0;
}
.services-hero h1 {
  font-size: 3.5rem;
  margin: 20px 0;
  color: #fff;
}

.services-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.services-main {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.services-main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.section-header .subtitle {
  color: #045089;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  background: rgba(4, 80, 137, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  position: relative;
  width: fit-content;
  margin: 0 auto 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .section-header {
    display: none;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-detail-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-detail-card .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #fff;
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}

.service-detail-card:hover .service-icon {
  transform: rotate(0) scale(1.1);
}

.service-detail-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a202c;
  font-weight: 700;
}

.service-detail-card p {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-features {
  background-color: #f1f5f9;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 25px;
}

.service-features h4,
.service-tech h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2d3748;
  font-weight: 600;
}

.service-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #4a5568;
}

.service-features ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #3b82f6;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags span {
  background-color: #e6f0ff;
  color: #3b82f6;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-tags span:hover {
  background-color: #3b82f6;
  color: #fff;
  transform: translateY(-3px);
}

/* Çalışma Süreci */
.work-process {
  padding: 80px 0;
  background-color: #fff;
}

.process-steps {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.process-steps:before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #60a5fa, #3b82f6);
  border-radius: 4px;
}

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.step-content {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1a202c;
  font-weight: 700;
}

.step-content p {
  font-size: 16px;
  color: #4a5568;
  margin: 0;
  line-height: 1.6;
}

/* Müşteri Yorumları */
.testimonials {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.testimonial-slider {
  max-width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.testimonial-item {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-item::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 120px;
  color: rgba(59, 130, 246, 0.1);
  font-family: Georgia, serif;
  line-height: 0.5;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.6;
  font-style: italic;
  margin-top: 1.6rem;
  margin-bottom: 1.3rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #e6f0ff;
}

.author-info h4 {
  font-size: 18px;
  margin: 0 0 5px;
  color: #1a202c;
  font-weight: 700;
}

.author-info span {
  font-size: 14px;
  color: #718096;
}

.testimonials .container {
  flex-direction: column;
}

.testimonials .container .section-header {
  margin: 0 auto 30px;
}

/* Responsive */
@media (max-width: 992px) {
  .services-hero h1 {
    font-size: 2.8rem;
  }

  .service-detail-card {
    padding: 30px;
  }

  .testimonial-slider {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 80px 0 60px;
  }

  .services-hero h1 {
    font-size: 2.2rem;
  }

  .process-steps:before {
    left: 20px;
  }

  .process-step {
    padding-left: 60px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .service-detail-card .service-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .services-hero h1 {
    font-size: 1.8rem;
  }

  .services-hero p {
    font-size: 1rem;
  }

  .service-detail-card {
    padding: 20px;
  }

  .tech-tags span {
    padding: 6px 12px;
    font-size: 12px;
  }

  .step-content {
    padding: 20px;
  }
}

.portfolio-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px 0;
}

.portfolio-item {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.15);
}

/* Responsive styles for portfolio grid */
@media (max-width: 992px) {
  .portfolio-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .portfolio-items {
    grid-template-columns: 1fr;
  }
}

/* Portfolyo Sayfası CSS Kodları */
.portfolio-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  padding: 120px 0 120px;
  position: relative;
  overflow: hidden;
}

.portfolio-hero .hero-flex {
  gap: 3rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.stat-item {
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-item .text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Kategori Filtreleme */
.portfolio-categories {
  background: #fff;
  padding: 1.5rem 0;
  /* position: sticky; */
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.category-tab {
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  background: #f8fafc;
  color: #475569;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

/* Proje Kartları */
.portfolio-projects {
  padding: 2rem 0;
  background: #f8fafc;
}

@media (max-width: 768px) {
  .portfolio-projects {
    padding: 0.4rem 0;
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.project-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-image {
  position: relative;
  height: 220px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-project {
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid #fff;
  border-radius: 30px;
  font-weight: 600;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.project-card:hover .view-project {
  transform: translateY(0);
}

.project-info {
  padding: 1.5rem;
}

.project-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #e0e7ff;
  color: #4f46e5;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.project-info h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.project-info p {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-tech span {
  padding: 0.25rem 0.75rem;
  background: #f1f5f9;
  color: #475569;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* İstatistik Kartları */
.project-stats {
  padding: 5rem 0;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: #2563eb;
}

.stat-icon {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.stat-text {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
}

/* CTA Bölümü */
.contact-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
  color: #fff;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #fff;
  color: #2563eb;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  background: #f8fafc;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    padding: 0 1rem;
  }

  .category-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

.topbar-lang {
  text-decoration: none;
}

/* Animasyonlu SVG Stilleri */
.animated-svg {
  max-width: 650px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
  z-index: 2;
  position: relative;
  margin-left: auto;
  transform: translateX(40px);
}

.dashboard-frame {
  animation: pulse 4s ease-in-out infinite;
}

.graph-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw-line 3s ease-in-out forwards, glow 3s ease-in-out infinite 3s;
}

.graph-point {
  transform-origin: center;
  opacity: 0;
  animation: pop-in 0.3s ease-out forwards;
}

.point1 {
  animation-delay: 0.5s;
}
.point2 {
  animation-delay: 0.8s;
}
.point3 {
  animation-delay: 1.1s;
}
.point4 {
  animation-delay: 1.4s;
}
.point5 {
  animation-delay: 1.7s;
}
.point6 {
  animation-delay: 2s;
}

.side-panel {
  animation: slide-in 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
  transform: translateX(40px);
  opacity: 0;
}

.data-icon {
  animation: bounce 2s ease-in-out infinite 1s;
  transform-origin: center;
}

.info-bar {
  transform: scaleX(0);
  animation: scale-in 0.6s ease-out forwards;
  transform-origin: left;
}

.info-bar:nth-of-type(1) {
  animation-delay: 2.2s;
}

.info-bar:nth-of-type(2) {
  animation-delay: 2.5s;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-in {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes scale-in {
  to {
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes glow {
  0%,
  100% {
    stroke: #2563eb;
    stroke-width: 3;
  }
  50% {
    stroke: #60a5fa;
    stroke-width: 4;
  }
}

.hero-shapes .shape-1 {
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shapes .shape-2 {
  top: 25%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.hero-shapes .shape-3 {
  bottom: 15%;
  right: 5%;
  animation: float 7s ease-in-out infinite;
}

.hero-shapes .shape-4 {
  bottom: 20%;
  left: 10%;
  animation: float 5s ease-in-out infinite;
}

.hero-shapes .shape-5 {
  top: 40%;
  right: 15%;
  animation: float 9s ease-in-out infinite;
}

@media (max-width: 992px) {
  .animated-svg {
    max-width: 100%;
    transform: translateX(0);
  }
}

/* Hero dalga ve kaydırma göstergesi stilleri */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  transform: translateY(2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  color: #ffffff;
  opacity: 0.9;
}

.scroll-indicator-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounce 2s infinite;
}

.scroll-indicator-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Hero Ayırıcı ve Kaydırma Göstergesi */
.hero-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 48px;
  overflow: hidden;
}

.hero-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.divider-path-1 {
  fill: #ffffff;
  opacity: 0.7;
}

.divider-path-2 {
  fill: #ffffff;
  opacity: 0.9;
}

.divider-circles {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 0 20%;
}

.divider-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  position: relative;
  bottom: -40px;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
  transform: scale(0);
  animation: popCircle 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.divider-circle:nth-child(1) {
  left: -5%;
  animation-delay: 0.2s;
  transform-origin: bottom;
}

.divider-circle:nth-child(2) {
  animation-delay: 0.4s;
  transform-origin: bottom;
}

.divider-circle:nth-child(3) {
  right: -5%;
  animation-delay: 0.6s;
  transform-origin: bottom;
}

@keyframes popCircle {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 992px) {
  .divider-circles {
    padding: 0 10%;
  }

  .divider-circle {
    width: 60px;
    height: 60px;
    bottom: -30px;
  }
}

@media (max-width: 576px) {
  .divider-circles {
    padding: 0;
  }

  .divider-circle {
    width: 40px;
    height: 40px;
    bottom: -20px;
  }

  .scroll-indicator {
    bottom: 60px;
  }
}

/* İstatistik Bölümü */
.stats-banner {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 60px 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.stats-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  gap: 30px;
}

.stats-left,
.stats-right {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-center {
  width: 50%;
  text-align: center;
}

.stats-animation {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.stats-message {
  text-align: center;
  margin-bottom: 25px;
}

.stats-message h3 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.stats-message p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.stats-cta {
  display: inline-block;
  padding: 14px 32px;
  background: #ffffff;
  color: #1e40af;
  font-weight: 700;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: #f0f7ff;
}

.stats-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
  padding: 15px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
  .stats-container {
    max-width: 1100px;
  }

  .stats-left,
  .stats-right {
    width: 20%;
  }

  .stats-center {
    width: 60%;
  }
}

@media (max-width: 992px) {
  .stats-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .stats-left,
  .stats-right {
    display: none;
  }

  .stats-center {
    width: 100%;
  }

  .stats-numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
  }

  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .stats-banner {
    padding: 40px 0;
  }

  .stats-message h3 {
    font-size: 28px;
  }

  .stats-message p {
    font-size: 14px;
  }

  .stats-cta {
    padding: 12px 28px;
    font-size: 14px;
  }

  .stats-numbers {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }
}

/* Firma Tarihçesi Bölümü */
.company-history {
  padding: 100px 0;
  background-color: #f8fafc;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #1e40af, #60a5fa);
  left: 50%;
  margin-left: -2px;
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  margin-bottom: 80px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #3b82f6;
  border-radius: 50%;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.3);
  background-color: #2563eb;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-content.left {
  left: 0;
}

.timeline-content.right {
  left: 55%;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.timeline-year {
  position: absolute;
  top: -15px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline-content.left .timeline-year {
  right: 20px;
}

.timeline-content.right .timeline-year {
  left: 20px;
}

.timeline-content h3 {
  margin-top: 10px;
  margin-bottom: 15px;
  color: #1e40af;
  font-size: 1.4rem;
  font-weight: 700;
}

.timeline-content p {
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .timeline::before {
    left: 31px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    left: 80px !important;
  }

  .timeline-dot {
    left: 31px;
  }

  .timeline-content.left .timeline-year,
  .timeline-content.right .timeline-year {
    left: 20px;
    right: auto;
  }
}

@media (max-width: 576px) {
  .company-history {
    padding: 60px 0;
  }

  .timeline {
    margin-top: 40px;
  }

  .timeline-item {
    margin-bottom: 50px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-year {
    font-size: 1rem;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }
}

/* Değerlerimiz Bölümü */
.values-section {
  padding: 100px 0;
  background-color: #fff;
}

.values-section .container {
  flex-direction: column;
}

.values-section .container .section-header {
  margin: 0 auto 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(59, 130, 246, 0.1);
  background: rgba(0, 102, 204, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background-color: rgba(59, 130, 246, 0.2);
  transform: scale(1.1);
}

.value-card h3 {
  margin-bottom: 15px;
  color: #1e40af;
  font-weight: 700;
  font-size: 1.4rem;
}

.value-card p {
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-section {
    padding: 60px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 20px;
  }

  .value-card h3 {
    font-size: 1.2rem;
  }
}

/* İletişim CTA Bölümü */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.cta-section::before {
  top: -150px;
  left: -150px;
}

.cta-section::after {
  bottom: -150px;
  right: -150px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

/* Animated SVG Styles */
.animated-svg {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* Organizasyon Şeması Animasyonları */
.org-box {
  transition: all 0.3s ease;
  transform-origin: center;
}

.org-box:hover {
  transform: translateY(-5px) scale(1.05);
  filter: brightness(1.1);
}

.dept1,
.dept2,
.dept3 {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.dept1 {
  animation-delay: 0.3s;
}
.dept2 {
  animation-delay: 0.5s;
}
.dept3 {
  animation-delay: 0.7s;
}

.sub1,
.sub2,
.sub3,
.sub4,
.sub5,
.sub6 {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.sub1 {
  animation-delay: 0.9s;
}
.sub2 {
  animation-delay: 1s;
}
.sub3 {
  animation-delay: 1.1s;
}
.sub4 {
  animation-delay: 1.2s;
}
.sub5 {
  animation-delay: 1.3s;
}
.sub6 {
  animation-delay: 1.4s;
}

.value-tab {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
  animation-delay: 1.6s;
  transition: all 0.3s ease;
}

.value-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.org-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawLine 1.5s ease-out forwards;
}

.main-line {
  animation-delay: 0.2s;
}
.branch-line1,
.branch-line2 {
  animation-delay: 0.4s;
}
.sub-line1,
.sub-line2 {
  animation-delay: 0.6s;
}

.pulse-node {
  animation: pulseDot 2s ease-in-out infinite;
}

.node1 {
  animation-delay: 0s;
}
.node2 {
  animation-delay: 0.5s;
}
.node3 {
  animation-delay: 1s;
}
.node4 {
  animation-delay: 1.5s;
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

.elem1 {
  animation-delay: 0s;
}
.elem2 {
  animation-delay: 2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* Şirket Binası Animasyonları */
.building {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

.building-inner {
  animation: slideUp 1s ease-out 0.5s forwards;
  transform: translateY(50px);
  opacity: 0;
}

.roof {
  animation: fadeIn 1s ease-out 0.4s forwards;
  opacity: 0;
}

.antenna,
.antenna-base {
  animation: fadeIn 1s ease-out 0.6s forwards;
  opacity: 0;
}

.signal {
  animation: pulse 2s infinite;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

.signal1 {
  animation-delay: 0s;
}
.signal2 {
  animation-delay: 0.3s;
}
.signal3 {
  animation-delay: 0.6s;
}

.floor {
  animation: slideRight 1s ease-out forwards;
  transform: translateX(-50px);
  opacity: 0;
}

.floor1 {
  animation-delay: 1.2s;
}
.floor2 {
  animation-delay: 1.4s;
}
.floor3 {
  animation-delay: 1.6s;
}
.floor4 {
  animation-delay: 1.8s;
}

.office-module {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.entrance {
  animation: glow 3s infinite;
  animation-delay: 2s;
}

.team-member {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.member1 {
  animation-delay: 2.1s;
}
.member2 {
  animation-delay: 2.2s;
}
.member3 {
  animation-delay: 2.3s;
}
.member4 {
  animation-delay: 2.4s;
}
.member5 {
  animation-delay: 2.5s;
}
.member6 {
  animation-delay: 2.6s;
}
.member7 {
  animation-delay: 2.7s;
}
.member8 {
  animation-delay: 2.8s;
}
.member9 {
  animation-delay: 2.9s;
}
.member10 {
  animation-delay: 3s;
}
.member11 {
  animation-delay: 3.1s;
}

.moving-member1 {
  animation: moveLR 5s infinite linear;
  animation-delay: 2.5s;
}

.moving-member2 {
  animation: moveRL 6s infinite linear;
  animation-delay: 3s;
}

.foreground {
  animation: fadeIn 1s ease-out 3.2s forwards;
  opacity: 0;
}

.floating-cloud {
  animation: floatCloud 20s infinite ease-in-out;
}

.cloud1 {
  animation-delay: 0s;
}

.cloud2 {
  animation-direction: reverse;
  animation-delay: 10s;
}

.value-bubble {
  animation: float 6s infinite ease-in-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.bubble1 {
  animation-delay: 3.4s;
}
.bubble2 {
  animation-delay: 3.6s;
}
.bubble3 {
  animation-delay: 3.8s;
}
.bubble4 {
  animation-delay: 4s;
}

.stat-box {
  animation: popIn 0.5s ease-out forwards;
  transform: scale(0);
}

.stat-box:nth-child(1) {
  animation-delay: 4.2s;
}
.stat-box:nth-child(2) {
  animation-delay: 4.3s;
}
.stat-box:nth-child(3) {
  animation-delay: 4.4s;
}
.stat-box:nth-child(4) {
  animation-delay: 4.5s;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes glow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.3);
  }
}

@keyframes floatCloud {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes moveLR {
  0% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(-30px);
  }
}

@keyframes moveRL {
  0% {
    transform: translateX(30px);
  }
  50% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(30px);
  }
}

/* Sade SVG Animasyonları */
.animated-svg {
  max-width: 100%;
  height: auto;
}

/* Portfolyo Showcase Animasyonları */
#portfolio-showcase {
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
}

.portfolio-frame {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

.portfolio-nav {
  animation: fadeIn 1s ease-out 0.3s forwards;
  opacity: 0;
}

.portfolio-item {
  animation: slideUp 0.5s ease-out forwards;
  transform: translateY(20px);
  opacity: 0;
}

.item1 {
  animation-delay: 0.5s;
}
.item2 {
  animation-delay: 0.7s;
}
.item3 {
  animation-delay: 0.9s;
}
.item4 {
  animation-delay: 1.1s;
}
.item5 {
  animation-delay: 1.3s;
}

.item-image {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.item-title {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.item-text {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.portfolio-item:nth-child(1) .item-image {
  animation-delay: 0.6s;
}
.portfolio-item:nth-child(1) .item-title {
  animation-delay: 0.7s;
}
.portfolio-item:nth-child(1) .item-text {
  animation-delay: 0.8s;
}

.portfolio-item:nth-child(2) .item-image {
  animation-delay: 0.8s;
}
.portfolio-item:nth-child(2) .item-title {
  animation-delay: 0.9s;
}
.portfolio-item:nth-child(2) .item-text {
  animation-delay: 1s;
}

.portfolio-item:nth-child(3) .item-image {
  animation-delay: 1s;
}
.portfolio-item:nth-child(3) .item-title {
  animation-delay: 1.1s;
}
.portfolio-item:nth-child(3) .item-text {
  animation-delay: 1.2s;
}

.portfolio-item:nth-child(4) .item-image {
  animation-delay: 1.2s;
}
.portfolio-item:nth-child(4) .item-title {
  animation-delay: 1.3s;
}
.portfolio-item:nth-child(4) .item-text {
  animation-delay: 1.4s;
}

.portfolio-item:nth-child(5) .item-image {
  animation-delay: 1.4s;
}
.portfolio-item:nth-child(5) .item-title {
  animation-delay: 1.5s;
}
.portfolio-item:nth-child(5) .item-text {
  animation-delay: 1.6s;
}

.floating-dot {
  animation: float 3s ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
}

.dot1 {
  animation-delay: 1.6s;
}
.dot2 {
  animation-delay: 1.7s;
}
.dot3 {
  animation-delay: 1.8s;
}

.hover-overlay {
  animation: pulseOpacity 2s ease-in-out infinite;
  animation-delay: 2s;
}

.view-icon {
  animation: fadeIn 0.5s ease-out 2.2s forwards,
    pulseScale 2s ease-in-out 2.5s infinite;
  opacity: 0;
}

.project-stats {
  animation: fadeIn 1s ease-out 2.5s forwards;
  opacity: 0;
}

.stat-circle {
  animation: pulseScale 3s ease-in-out infinite;
  animation-delay: 3s;
}

.stat-number,
.stat-label {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

.stat-number {
  animation-delay: 2.7s;
}
.stat-label {
  animation-delay: 2.9s;
}

@keyframes pulseOpacity {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes pulseScale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Hizmetler Showcase Animasyonları */
#services-showcase {
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
  margin-left: auto;
  margin-right: -40px;
  transform: translateX(20px);
}

.center-circle {
  animation: pulse 4s ease-in-out infinite;
}

.service-module {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.web-dev {
  animation-delay: 0.3s;
}
.mobile-dev {
  animation-delay: 0.6s;
}
.ecommerce {
  animation-delay: 0.9s;
}
.marketing {
  animation-delay: 1.2s;
}

.service-center {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
  animation-delay: 1.5s;
}

.center-icon {
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 1.8s;
}

.connection-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawLine 1.5s ease-out forwards;
}

.web-dev .connection-line {
  animation-delay: 0.5s;
}
.mobile-dev .connection-line {
  animation-delay: 0.8s;
}
.ecommerce .connection-line {
  animation-delay: 1.1s;
}
.marketing .connection-line {
  animation-delay: 1.4s;
}

.floating-particle {
  animation: float 6s ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
}

.particle1 {
  animation-delay: 1.6s;
}
.particle2 {
  animation-delay: 1.7s;
}
.particle3 {
  animation-delay: 1.8s;
}
.particle4 {
  animation-delay: 1.9s;
}

.data-flow {
  animation: moveAlongPath 3s linear infinite;
  opacity: 0;
  animation-fill-mode: forwards;
}

.flow1 {
  animation: moveAlongPath1 4s linear infinite;
  animation-delay: 2s;
}

.flow2 {
  animation: moveAlongPath2 4s linear infinite;
  animation-delay: 2.2s;
}

.flow3 {
  animation: moveAlongPath3 4s linear infinite;
  animation-delay: 2.4s;
}

.flow4 {
  animation: moveAlongPath4 4s linear infinite;
  animation-delay: 2.6s;
}

.stat-box,
.stat-text,
.stat-label {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.stat-box:nth-child(1) {
  animation-delay: 2.8s;
}
.stat-box:nth-child(4) {
  animation-delay: 2.9s;
}
.stat-box:nth-child(7) {
  animation-delay: 3s;
}

.stat-text {
  animation-delay: 3.1s;
}
.stat-label {
  animation-delay: 3.2s;
}

@keyframes moveAlongPath1 {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(60px, 0px);
  }
}

@keyframes moveAlongPath2 {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50px, 0px);
  }
}

@keyframes moveAlongPath3 {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0px, -40px);
  }
}

@keyframes moveAlongPath4 {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0px, 40px);
  }
}

/* İletişim Sayfası Stilleri */
.contact-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 994px) {
  .contact-hero .container {
    padding-left: 50px;
  }
}

.contact-hero .hero-content h1 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-hero .hero-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 90%;
}

.contact-hero .subtitle {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  /* color: #60a5fa; */
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.contact-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-hero .btn-primary,
.contact-hero .btn-secondary {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-hero .btn-primary {
  background: #3b82f6;
  color: white;
  border: none;
}

.contact-hero .btn-primary:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.contact-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-hero .hero-image {
  position: relative;
  height: 400px;
  max-width: 800px;
}

.contact-hero .hero-flex {
  gap: 0;
}

.contact-hero #contact-showcase {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: -40px;
  transform: translateX(20px);
}

.contact-hero .form-input {
  transition: all 0.3s ease;
}

.contact-hero .form-input:hover {
  fill: #bfdbfe;
}

.contact-hero .submit-button {
  transition: all 0.3s ease;
}

.contact-hero .submit-button:hover {
  fill: #2563eb;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact-hero .hero-flex {
    flex-direction: column;
  }

  .contact-hero .hero-content {
    text-align: center;
    padding-bottom: 2rem;
  }

  .contact-hero .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero .hero-buttons {
    justify-content: center;
  }

  .contact-hero .hero-image {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-hero .btn-primary,
  .contact-hero .btn-secondary {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }

  .contact-hero .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .contact-hero .hero-image {
    height: 300px;
  }
}

/* İletişim Sayfası Stilleri */
.contact-section {
  padding: 6rem 0;
  background-color: #f8fafc;
  position: relative;
}

.contact-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.contact-form-wrapper {
  flex: 1;
  min-width: 320px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.contact-form .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 1.5rem;
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  font-size: 1rem;
  background: #ffffff;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
  outline: none;
}

.contact-form label {
  position: absolute;
  left: 1rem;
  top: 0.8rem;
  pointer-events: none;
  transition: all 0.3s ease;
  color: #64748b;
  font-size: 1rem;
}

.contact-form input:focus ~ label,
.contact-form textarea:focus ~ label,
.contact-form input:not(:placeholder-shown) ~ label,
.contact-form textarea:not(:placeholder-shown) ~ label {
  top: -0.7rem;
  left: 0.7rem;
  font-size: 0.85rem;
  background: #ffffff;
  padding: 0 0.5rem;
  color: #3b82f6;
}

.contact-form .checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-form .checkbox-container input {
  width: auto;
}

.contact-form .checkbox-container span {
  font-size: 0.9rem;
  color: #64748b;
}

.contact-info {
  flex: 1;
  min-width: 320px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.contact-info-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

/* Harita ve Konumlar Bölümü */
.map-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.map-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.map-wrapper {
  flex: 2;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.location-cards {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
}

.location-card.active,
.location-card:hover {
  border-left-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.location-card p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.location-card i {
  color: #3b82f6;
  font-size: 1rem;
}

.location-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.location-directions:hover {
  color: #1e40af;
}

.location-directions i {
  transition: all 0.3s ease;
}

.location-directions:hover i {
  transform: translateX(3px);
}

/* CTA Bölümü */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: #1e40af;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* İletişim Sayfası - Responsive Stillemeler */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .map-container {
    flex-direction: column;
  }

  .location-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .project-card {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .project-image {
    height: 200px;
  }

  .project-info h3 {
    font-size: 1.2rem;
  }

  .project-tech {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .project-tech span {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-info-item {
    width: 100%;
    margin-bottom: 1rem;
  }

  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-form-wrapper {
    width: 100%;
  }

  .contact-info-content h3 {
    font-size: 1.1rem;
  }

  .contact-info-content p {
    font-size: 0.9rem;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
  }

  .footer-menu {
    display: block;
    width: 100%;
  }

  .footer-menu-column {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-menu-column h4 {
    text-align: center;
  }

  .footer-menu-column ul {
    text-align: center;
  }
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-menu {
    display: block;
    width: 100%;
  }

  .footer-menu-column {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
  }

  .footer-menu-column:last-child {
    margin-bottom: 0;
  }

  .footer-menu-column h4 {
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-menu-column ul {
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .footer-menu-column ul li {
    margin-bottom: 10px;
  }

  .footer-menu-column ul li:last-child {
    margin-bottom: 0;
  }
}

.hero-illustration {
  width: 100%;
  height: auto;
  max-width: 720px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(37, 99, 235, 0.1),
    rgba(96, 165, 250, 0.1)
  );
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-illustration:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
}

/* .hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-shapes svg {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  top: 10%;
  left: 10%;
}
.shape-2 {
  top: 60%;
  right: 10%;
  animation-delay: 1s;
}
.shape-3 {
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}
.shape-4 {
  top: 35%;
  right: 15%;
  animation-delay: 3s;
}
.shape-5 {
  bottom: 30%;
  right: 30%;
  animation-delay: 4s;
} */

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@media (max-width: 768px) {
  .hero-illustration {
    max-width: 100%;
    margin-top: 30px;
  }

  .hero-shapes {
    display: none;
  }
}

@media (max-width: 1205px) {
  .page-hero {
    margin-top: 1rem !important;
  }
}

/* Yasal Sayfalar (KVKK, Gizlilik, Çerez) Stilleri */
.page-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 80px 0 60px;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.page-hero h1 {
  font-size: 2.8rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.legal-content {
  padding: 80px 0;
  background: #f8fafc;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.legal-container h2 {
  font-size: 1.8rem;
  color: #1e3a8a;
  font-weight: 600;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}

.legal-container h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #3b82f6;
}

.legal-container h3 {
  font-size: 1.4rem;
  color: #2563eb;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

.legal-container p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.legal-container ul {
  list-style-type: disc;
  margin: 1rem 0 1.5rem 1.5rem;
  color: #475569;
}

.legal-container ul li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  position: relative;
  padding-left: 0.5rem;
}

.legal-container ul li::marker {
  color: #3b82f6;
}

.legal-container a {
  color: #2563eb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-container a:hover {
  color: #1e40af;
  text-decoration: underline;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 0 40px;
    margin-top: 3rem !important;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .legal-container {
    padding: 25px;
    margin: 0 15px;
  }

  .legal-container h2 {
    font-size: 1.6rem;
  }

  .legal-container h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .legal-container {
    padding: 20px;
  }

  .legal-container h2 {
    font-size: 1.4rem;
  }

  .legal-container h3 {
    font-size: 1.2rem;
  }

  .legal-container p,
  .legal-container ul li {
    font-size: 0.95rem;
  }
}

/* İletişim Formu - Loading ve Hata Stilleri */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.loading-spinner {
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

/* Form Field Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444 !important;
  background-color: rgba(239, 68, 68, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.field-error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 5px;
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Submit Button Loading State */
.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.form-submit-btn:disabled::before {
  opacity: 0.7;
}

/* Form Notification Styles */
.form-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  min-width: 300px;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  color: white;
  font-weight: 500;
}

.form-notification-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.form-notification-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.form-notification-content {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
}

.form-notification-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-notification-message {
  flex: 1;
  font-weight: 500;
  line-height: 1.4;
}

.form-notification-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-notification-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive for notifications */
@media (max-width: 576px) {
  .form-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    min-width: unset;
    max-width: unset;
  }
  
  .form-notification-content {
    padding: 14px;
    gap: 10px;
  }
  
  .form-notification-message {
    font-size: 14px;
  }
}

/* KVKK Checkbox Styling */
.kvkk-consent {
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.kvkk-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #3b82f6;
}

.kvkk-consent span {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.kvkk-consent a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.kvkk-consent a:hover {
  text-decoration: underline;
}

/* Portfolio Load More Button Styles */
.load-more-container {
  text-align: center;
  margin: 60px 0 40px;
  padding: 20px 0;
}

.load-more-btn,
.show-less-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: #fff;
  border: none;
  padding: 18px 35px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
  position: relative;
  overflow: hidden;
}

.load-more-btn::before,
.show-less-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.load-more-btn:hover::before,
.show-less-btn:hover::before {
  left: 100%;
}

.load-more-btn:hover,
.show-less-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.load-more-btn i,
.show-less-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.load-more-btn:hover i {
  transform: translateY(2px);
}

.show-less-btn:hover i {
  transform: translateY(-2px);
}

.show-less-btn {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%) !important;
  box-shadow: 0 4px 15px rgba(100, 116, 139, 0.3);
}

.show-less-btn:hover {
  background: linear-gradient(135deg, #475569 0%, #334155 100%) !important;
  box-shadow: 0 8px 25px rgba(100, 116, 139, 0.4);
}
