* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: 'Poppins', sans-serif; 
  background: #040D1A; 
  color: #fff; 
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container for consistent spacing */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loading animation */
body:not(.loaded) {
  opacity: 0;
}
body.loaded {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.navbar {
  position: sticky; 
  top: 0; 
  z-index: 1000;
  background: rgba(0,0,0,0.6); 
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.9);
}

.navbar-container {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 20px 50px; 
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Desktop Navigation */
.desktop-nav ul { 
  display: flex; 
  gap: 20px; 
  list-style: none; 
}
.desktop-nav a { 
  text-decoration: none; 
  color: #fff; 
  font-weight: 500; 
  transition: 0.3s; 
}
.desktop-nav a:hover, 
.desktop-nav a.active { 
  color: #00CED1; 
}

/* Mobile Controls */
.mobile-controls {
  display: none;
  align-items: center;
  gap: 15px;
  height: 40px; /* Logo ile aynı yükseklik */
}

.mobile-lang-switcher {
  display: flex;
  gap: 5px;
}

.mobile-lang-switcher .lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-lang-switcher .lang-btn.active {
  background: rgba(0,206,209,0.3);
  color: #00CED1;
  border-color: #00CED1;
}

/* Hamburger Menu */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(4, 13, 26, 0.98);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
}

.mobile-nav li {
  margin: 0;
}

.mobile-nav a {
  display: block;
  padding: 12px 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav li:last-child a {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: rgba(0,206,209,0.1);
  color: #00CED1;
  padding-left: 40px;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Alternative Section Styles */
.section-dark {
  background: rgba(12, 61, 100, 0.1);
  padding: 80px 20px;
}

.section-compact {
  padding: 60px 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 15px;
  border: 1px solid rgba(0,206,209,0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(0,206,209,0.1);
  transform: translateY(-5px);
  border-color: rgba(0,206,209,0.4);
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #00CED1;
  display: block;
  margin-bottom: 10px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.tech-item {
  text-align: center;
  padding: 25px 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.tech-item:hover {
  background: rgba(0,206,209,0.15);
  transform: scale(1.05);
  border-color: rgba(0,206,209,0.3);
}

.tech-item i {
  font-size: 32px;
  color: #00CED1;
  margin-bottom: 15px;
  display: block;
}

.section-compact h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
}

.section-compact h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00CED1, #0FF);
  border-radius: 2px;
}

.section-compact p {
  text-align: center;
  color: #999;
  font-size: 16px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-box {
  padding: 35px 25px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-radius: 20px;
  border: 1px solid rgba(0,206,209,0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,206,209,0.1), transparent);
  transition: left 0.6s ease;
}

.feature-box:hover::before {
  left: 100%;
}

.feature-box:hover {
  background: linear-gradient(135deg, rgba(0,206,209,0.15), rgba(0,255,255,0.05));
  transform: translateY(-8px);
  border-color: rgba(0,206,209,0.4);
  box-shadow: 0 15px 40px rgba(0,206,209,0.2);
}

.custom-icon {
  font-size: 28px;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  color: #00CED1;
  margin-bottom: 20px;
  padding: 18px;
  background: rgba(0,206,209,0.1);
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 2px solid rgba(0,206,209,0.2);
}

.feature-box:hover .custom-icon {
  background: rgba(0,206,209,0.2);
  transform: scale(1.1);
  border-color: rgba(0,206,209,0.4);
  color: #0FF;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}

.feature-box p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.cta-section {
  background: linear-gradient(135deg, rgba(0,206,209,0.1), rgba(0,255,255,0.05));
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid rgba(0,206,209,0.2);
  border-bottom: 1px solid rgba(0,206,209,0.2);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 9px 40px;
  background: linear-gradient(90deg, #00CED1, #0FF);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,206,209,0.3);
}

.cta-btn.secondary {
  background: transparent;
  color: #00CED1;
  border: 2px solid #00CED1;
}

.cta-btn.secondary:hover {
  background: rgba(0,206,209,0.1);
  color: #0FF;
  border-color: #0FF;
}

/* Welcome Section */
.welcome-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0,206,209,0.03), rgba(0,255,255,0.01));
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.welcome-text {
  max-width: 500px;
}

.welcome-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #00CED1 50%, #0FF 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.2;
  letter-spacing: 1px;
  position: relative;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(0,206,209,0.3);
}

.welcome-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0,206,209,0.1) 50%, transparent 100%);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.5;
}

.welcome-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00CED1, #0FF, #00CED1);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: lineGlow 2s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes lineGlow {
  0%, 100% {
    background-position: 0% 50%;
    box-shadow: 0 0 10px rgba(0,206,209,0.5);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 0 20px rgba(0,255,255,0.8);
  }
}

.welcome-description {
  font-size: 18px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 30px;
}

.welcome-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #fff;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00CED1, #0FF);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Visual Card */
.welcome-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  border: 1px solid rgba(0,206,209,0.2);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #666;
}

.card-dots span:nth-child(1) { background: #ff5f57; }
.card-dots span:nth-child(2) { background: #ffbd2e; }
.card-dots span:nth-child(3) { background: #28ca42; }

.card-title {
  font-size: 14px;
  color: #00CED1;
  font-weight: 600;
}

.card-content {
  padding: 25px 20px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.8;
}

.code-line {
  margin-bottom: 8px;
}

.code-comment { color: #6a9955; }
.code-keyword { color: #569cd6; }
.code-variable { color: #9cdcfe; }
.code-function { color: #dcdcaa; }
.code-string { color: #ce9178; }

/* Welcome Links */
.welcome-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.welcome-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.welcome-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,206,209,0.1), transparent);
  transition: left 0.6s ease;
}

.welcome-link:hover::before {
  left: 100%;
}

.welcome-link:hover {
  background: rgba(0,206,209,0.05);
  border-color: rgba(0,206,209,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,206,209,0.15);
}

.link-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,206,209,0.1);
  border-radius: 12px;
  border: 1px solid rgba(0,206,209,0.2);
}

.link-icon i {
  font-size: 20px;
  color: #00CED1;
}

.link-content {
  flex: 1;
}

.link-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
}

.link-content p {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.link-arrow {
  font-size: 16px;
  color: #00CED1;
  transition: transform 0.3s ease;
}

.welcome-link:hover .link-arrow {
  transform: translateX(5px);
}

/* Welcome Showcase */
.welcome-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Terminal Window */
.terminal-window {
  width: 100%;
  max-width: 350px;
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  border: 1px solid rgba(0,206,209,0.2);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #2d2d2d;
  border-bottom: 1px solid #404040;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #ffbd2e; }
.terminal-dots span:nth-child(3) { background: #28ca42; }

.terminal-title {
  font-size: 13px;
  color: #ccc;
  font-family: 'Courier New', monospace;
}

.terminal-content {
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.6;
  min-height: 120px;
}

.terminal-line {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prompt {
  color: #00CED1;
  font-weight: bold;
}

.command {
  color: #fff;
}

.output .success {
  color: #28ca42;
}

.output .info {
  color: #ffbd2e;
}

.cursor {
  color: #00CED1;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Typing Effect */
.typing-text {
  overflow: hidden;
  white-space: nowrap;
}

.typing-text.typing {
  border-right: 2px solid #00CED1;
  animation: typing 0.1s steps(1), blink-cursor 1s infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: auto; }
}

@keyframes blink-cursor {
  0%, 50% { border-color: #00CED1; }
  51%, 100% { border-color: transparent; }
}

/* Performance Bar */
.performance-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin-top: 5px;
  overflow: hidden;
}

.performance-fill {
  height: 100%;
  background: linear-gradient(90deg, #28ca42, #00ff00);
  border-radius: 3px;
  width: 0%;
  transition: width 2s ease;
  position: relative;
}

.performance-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Browser Window */
.browser-window {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  border: 1px solid rgba(0,206,209,0.2);
}

.browser-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
  gap: 12px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.address-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 12px;
  color: #666;
}

.address-bar i {
  color: #28ca42;
  font-size: 11px;
}

.browser-content {
  padding: 20px;
  min-height: 120px;
  background: #fafafa;
}

.website-preview {
  height: 100%;
}

.preview-header {
  height: 20px;
  background: linear-gradient(90deg, #00CED1, #0FF);
  border-radius: 4px;
  margin-bottom: 15px;
}

.preview-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-line {
  height: 8px;
  background: #ddd;
  border-radius: 4px;
}

.preview-line.short {
  width: 60%;
}

.preview-boxes {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.preview-box {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, rgba(0,206,209,0.3), rgba(0,255,255,0.1));
  border-radius: 6px;
}

/* Desktop Language Switcher */
.desktop-lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}
.desktop-lang-switcher .lang-btn { 
  background: none; 
  border: none; 
  color: #fff; 
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.desktop-lang-switcher .lang-btn:hover {
  background: rgba(0,206,209,0.2);
  color: #00CED1;
}
.desktop-lang-switcher .lang-btn.active {
  background: rgba(0,206,209,0.3);
  color: #00CED1;
}
.lang-separator {
  color: #666;
  margin: 0 5px;
}

.hero {
  height: 100vh; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  text-align: center;
  background: linear-gradient(135deg, #0C3D64, #040D1A);
}
.hero h1 { font-family: 'Orbitron', sans-serif; font-size: 72px; }
.gradient-text {
  background: linear-gradient(90deg, #00CED1, #0FF);
  background-clip: text;
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero .btn {
  margin-top: 20px; padding: 12px 28px; background: linear-gradient(90deg,#00CED1,#0FF);
  border-radius: 30px; color: #000; font-weight: 600; text-decoration: none; transition: 0.3s;
}
.hero .btn:hover { transform: scale(1.05); }

.intro { padding: 80px 20px; text-align: center; }
.intro h2 { font-size: 36px; margin-bottom: 20px; }
.quick-links { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.quick-links .card {
  padding: 25px 20px;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  opacity: 0;
  transform: translateY(20px);
}
.quick-links .card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.quick-links .card:hover {
  background: rgba(0,206,209,0.2);
  transform: translateY(-5px);
  border-color: rgba(0,206,209,0.3);
}
.quick-links .card i {
  font-size: 24px;
  color: #00CED1;
}

footer {
  padding: 40px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-section {
  margin-bottom: 20px;
}

.footer-section-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #444;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 20px;
  color: #00CED1;
  width: 25px;
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-block;
}

.contact-type {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-link {
  color: #00CED1;
  text-decoration: underline;
  font-size: 14px;
}

.contact-link:hover {
  color: #0FF;
}

.contact-address {
  color: #ccc;
  font-size: 14px;
  line-height: 1.4;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(0,206,209,0.2);
  border-color: #00CED1;
  color: #00CED1;
  transform: translateY(-2px);
}

.footer-copyright {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.footer-copyright p {
  color: #999;
  font-size: 12px;
  margin: 0;
}

@media (max-width: 768px) {
  footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    padding: 0 20px;
  }
  
  .footer-section-title {
    font-size: 16px;
  }
  
  .contact-icon {
    font-size: 18px;
    width: 22px;
  }
  
  .contact-type {
    font-size: 14px;
  }
  
  .contact-link {
    font-size: 13px;
  }
  
  .contact-address {
    font-size: 13px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .footer-copyright p {
    font-size: 11px;
  }
}

/* About Page Styles */
.about-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(0,206,209,0.03), rgba(0,255,255,0.01));
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(0,206,209,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(0,206,209,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(0,206,209,0.1)"/></svg>');
  opacity: 0.3;
}

.about-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #00CED1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 40px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  position: relative;
}

/* About page background shapes */
body.about-page {
  position: relative;
  overflow-x: hidden;
}

body.about-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0,206,209,0.08) 120px, transparent 121px),
    radial-gradient(circle at 80% 60%, rgba(0,255,255,0.05) 80px, transparent 81px),
    radial-gradient(circle at 40% 80%, rgba(0,206,209,0.06) 100px, transparent 101px),
    radial-gradient(circle at 70% 20%, rgba(0,206,209,0.04) 60px, transparent 61px),
    radial-gradient(circle at 10% 70%, rgba(0,255,255,0.03) 90px, transparent 91px);
  animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
  0%, 100% { 
    transform: translateY(0) translateX(0);
  }
  25% { 
    transform: translateY(-10px) translateX(5px);
  }
  50% { 
    transform: translateY(5px) translateX(-3px);
  }
  75% { 
    transform: translateY(-5px) translateX(8px);
  }
}

/* Ensure content is above background */
.about-hero,
.about-content,
.values-section,
.stats-section,
.cta-section,
footer {
  position: relative;
  z-index: 1;
}

.hero-shapes {
  display: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

/* About Content - Accordion */
.about-content {
  padding: 100px 0;
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-item:hover {
  border-color: rgba(0,206,209,0.2);
  box-shadow: 0 5px 15px rgba(0,206,209,0.08);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.accordion-header:hover {
  background: rgba(0,206,209,0.03);
}

.accordion-icon {
  width: 45px;
  height: 45px;
  background: rgba(0,206,209,0.08);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accordion-icon i {
  font-size: 18px;
  color: #00CED1;
}

.accordion-header:hover .accordion-icon {
  background: rgba(0,206,209,0.12);
  border-color: rgba(0,206,209,0.25);
}

.accordion-title {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.accordion-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.accordion-toggle i {
  font-size: 14px;
  color: #00CED1;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: 0 25px 25px 10px;
}

.accordion-text {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.accordion-text:last-child {
  margin-bottom: 0;
}

.accordion-text::before {
  content: '•';
  color: #00CED1;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -1.5px;
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: rgba(0,206,209,0.02);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,206,209,0.08), transparent);
  transition: left 0.6s ease;
}

.value-item:hover::before {
  left: 100%;
}

.value-item:hover {
  background: rgba(0,206,209,0.08);
  border-color: rgba(0,206,209,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,206,209,0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: rgba(0,206,209,0.1);
  border: 1px solid rgba(0,206,209,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.value-icon i {
  font-size: 32px;
  color: #00CED1;
}

.value-item:hover .value-icon {
  background: rgba(0,206,209,0.2);
  border-color: rgba(0,206,209,0.4);
  transform: scale(1.1);
}

.value-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.value-desc {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(12, 61, 100, 0.15), rgba(0,206,209,0.05));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.stat-item:hover {
  background: rgba(0,206,209,0.1);
  transform: translateY(-5px);
  border-color: rgba(0,206,209,0.4);
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #00CED1;
  display: block;
  margin-bottom: 10px;
  font-family: 'Orbitron', sans-serif;
  position: relative;
}

.stat-unit {
  font-size: 24px;
  color: #00CED1;
  font-weight: bold;
  display: inline;
}

.stat-label {
  font-size: 16px;
  color: #ccc;
  font-weight: 500;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-hero {
    padding: 50px 0 30px;
  }
  
  
  .hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .hero-visual {
    height: 200px;
  }
  
  .about-content {
    padding: 50px 0;
  }
  
  .accordion-container {
    max-width: 100%;
  gap: 15px;
}
  
  .accordion-header {
    padding: 18px 20px;
    gap: 12px;
  }
  
  .accordion-icon {
    width: 40px;
    height: 40px;
  }
  
  .accordion-icon i {
    font-size: 16px;
  }
  
  .accordion-title {
    font-size: 18px;
  }
  
  .accordion-toggle {
    width: 28px;
    height: 28px;
  }
  
  .accordion-toggle i {
    font-size: 12px;
  }
  
  .accordion-body {
    padding: 0 20px 20px 10px;
  }
  
  .accordion-text {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 18px;
  }
  
  .accordion-text::before {
    font-size: 18px;
    top: -1px;
  }
  
  .values-section {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 26px;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .value-item {
    padding: 25px 20px;
  }
  
  .value-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .value-desc {
    font-size: 15px;
  }
  
  .stats-section {
    padding: 40px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 40px 0 25px;
  }
  
  .hero-title {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  .hero-visual {
    height: 150px;
  }
  
  .about-content {
    padding: 40px 0;
  }
  
  .accordion-container {
    gap: 12px;
  }
  
  .accordion-header {
    padding: 15px;
    gap: 10px;
  }
  
  .accordion-icon {
    width: 35px;
    height: 35px;
  }
  
  .accordion-icon i {
    font-size: 14px;
  }
  
  .accordion-title {
    font-size: 16px;
  }
  
  .accordion-toggle {
    width: 25px;
    height: 25px;
  }
  
  .accordion-toggle i {
    font-size: 10px;
  }
  
  .accordion-body {
    padding: 0 15px 18px 10px;
  }
  
  .accordion-text {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 16px;
  }
  
  .accordion-text::before {
    font-size: 16px;
    top: -1px;
  }
  
  .values-section {
    padding: 40px 0;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .values-grid {
    gap: 20px;
  }
  
  .value-item {
    padding: 20px 15px;
  }
  
  .value-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .value-desc {
    font-size: 14px;
  }
  
  .stats-section {
    padding: 30px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-item {
    padding: 18px 12px;
  }
  
  .stat-number {
    font-size: 28px;
    margin-bottom: 6px;
  }
  
  .stat-label {
    font-size: 13px;
  }
}

/* Projects Page Styles */
.projects-page {
  position: relative;
  overflow-x: hidden;
}

.projects-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(0,206,209,0.06) 100px, transparent 101px),
    radial-gradient(circle at 85% 70%, rgba(0,255,255,0.04) 120px, transparent 121px),
    radial-gradient(circle at 50% 50%, rgba(0,206,209,0.03) 80px, transparent 81px);
  animation: backgroundFloat 25s ease-in-out infinite;
}

.projects-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(0,206,209,0.03), rgba(0,255,255,0.01));
  position: relative;
  z-index: 1;
}

.projects-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.projects-grid-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.project-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  width: 420px;
  height: 480px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,206,209,0.2);
  border-color: rgba(0,206,209,0.4);
}

.project-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Game Launcher görselini sola kaydır */
.project-image img[src*="m2launcher"] {
  transform: translateX(-10px);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-card:hover .project-image img[src*="m2launcher"] {
  transform: translateX(-10px) scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,206,209,0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.overlay-content h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.overlay-content p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.project-tags .tag {
  background: rgba(0,206,209,0.8);
  color: #000;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.project-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-header {
  margin-bottom: 12px;
}

.project-header h3 {
  font-size: 20px;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.project-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
  margin-top: 15px;
  font-weight: 500;
}

.project-status i {
  color: #00CED1;
  font-size: 12px;
}

.project-summary {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 15px;
  flex: 1;
}

.project-tech {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.tech-item {
  background: rgba(0,206,209,0.1);
  border: 1px solid rgba(0,206,209,0.2);
  color: #00CED1;
  padding: 2px 4px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}

/* Projects tech items mobile - remove padding */
@media (max-width: 768px) {
  .projects-page .tech-item {
    padding: 2px 4px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .projects-page .tech-item {
    padding: 1px 3px;
    font-size: 9px;
  }
}

/* Project Detail Page Styles */
.project-detail-page {
  position: relative;
  overflow-x: hidden;
}

.project-detail-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 25% 20%, rgba(0,206,209,0.05) 150px, transparent 151px),
    radial-gradient(circle at 75% 80%, rgba(0,255,255,0.03) 100px, transparent 101px);
  animation: backgroundFloat 30s ease-in-out infinite;
}

.back-section {
  padding: 26px 0 10px;
  position: relative;
  z-index: 1;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00CED1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-btn:hover {
  color: #0FF;
  transform: translateX(-5px);
}

.project-hero {
  position: relative;
  z-index: 1;
}

.project-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.project-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #00CED1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-subtitle {
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

.project-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  color: #ccc;
}

.meta-item i {
  color: #00CED1;
  font-size: 12px;
}

.project-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-hero-image img {
  max-width: 130%;
  height: auto;
  margin-right: 35px;
}

.project-description {
  padding: 80px 0;
  background: rgba(0,206,209,0.02);
  position: relative;
  z-index: 1;
}

.description-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.description-content h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

.description-text {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  text-align: left;
  padding: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 15px;
  margin-bottom: 30px;
}

.technologies-list {
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

.tech-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #ccc;
  font-weight: 500;
}

.tech-list-item i {
  color: #00CED1;
  font-size: 14px;
  width: 20px;
  flex-shrink: 0;
}

.project-technologies {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.project-technologies h2 {
  text-align: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 60px;
}

.project-technologies .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.project-technologies .tech-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.project-technologies .tech-card:hover {
  background: rgba(0,206,209,0.08);
  border-color: rgba(0,206,209,0.3);
  transform: translateY(-5px);
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: rgba(0,206,209,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.tech-icon i {
  font-size: 24px;
  color: #00CED1;
}

.project-technologies .tech-card:hover .tech-icon {
  background: rgba(0,206,209,0.2);
  transform: scale(1.1);
}

.project-technologies .tech-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.project-technologies .tech-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}

/* Projects Page Mobile - Force single column */
@media (max-width: 768px) {
  .projects-page .projects-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 25px;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .projects-page .project-card {
    width: 100% !important;
    max-width: 400px !important;
    height: 450px;
    margin: 0 auto;
    flex-shrink: 0;
  }
  
  .projects-hero {
    padding: 60px 0 60px;
  }
  
  .projects-hero .hero-title {
    font-size: 36px;
  }
  
  .projects-hero .hero-subtitle {
    font-size: 16px;
  }
  
  .projects-grid-section {
    padding: 60px 0;
  }
  
  .project-image {
    height: 180px;
    flex-shrink: 0;
  }
  
  .project-info {
    padding: 20px;
    flex: 1;
  }
  
  .project-header h3 {
    font-size: 18px;
  }
  
  .project-summary {
    font-size: 13px;
  }
  
  .tech-item {
    font-size: 10px;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .projects-page .projects-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px;
    padding: 0 15px;
  }
  
  .projects-page .project-card {
    width: 100% !important;
    max-width: 350px !important;
    height: 420px;
    margin: 0 auto;
  }
  
  .projects-hero {
    padding: 30px 0 40px;
  }
  
  .projects-hero .hero-title {
    font-size: 28px;
  }
  
  .projects-hero .hero-subtitle {
    font-size: 15px;
  }
  
  .projects-grid-section {
    padding: 40px 0;
  }
  
  .project-image {
    height: 160px;
    flex-shrink: 0;
  }
  
  .project-info {
    padding: 18px;
    flex: 1;
  }
  
  .project-header h3 {
    font-size: 16px;
  }
  
  .project-summary {
    font-size: 12px;
  }
  
  .tech-item {
    font-size: 9px;
    padding: 2px 5px;
  }
}

/* Project Detail Mobile Responsive */
@media (max-width: 768px) {
  .project-hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .project-title {
    font-size: 32px;
  }
  
  .project-subtitle {
    font-size: 16px;
  }
  
  .project-meta {
    justify-content: center;
    gap: 15px;
  }
  
  .project-hero-image {
    order: 2;
  }
  
  .project-hero-text {
    order: 1;
  }
  
  .description-content {
    text-align: left;
  }
  
  .description-text {
    padding: 25px;
    font-size: 15px;
  }
  
  .technologies-list {
    max-width: 100%;
    gap: 10px;
  }
  
  .tech-list-item {
    font-size: 15px;
    gap: 10px;
  }
  
  .tech-list-item i {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .project-title {
    font-size: 28px;
  }
  
  .project-subtitle {
    font-size: 15px;
  }
  
  .project-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .meta-item {
    font-size: 13px;
    padding: 8px 12px;
  }
  
  .description-text {
    padding: 20px;
    font-size: 14px;
  }
  
  .tech-list-item {
    font-size: 14px;
  }
  
  .tech-list-item i {
    font-size: 12px;
  }
}

/* Team Page Styles */
.team-page {
  position: relative;
  overflow-x: hidden;
}

.team-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(0,206,209,0.04) 120px, transparent 121px),
    radial-gradient(circle at 70% 70%, rgba(0,255,255,0.03) 100px, transparent 101px),
    radial-gradient(circle at 20% 80%, rgba(0,206,209,0.02) 80px, transparent 81px);
  animation: backgroundFloat 25s ease-in-out infinite;
}

.team-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(0,206,209,0.03), rgba(0,255,255,0.01));
  position: relative;
  z-index: 1;
}

.team-hero .hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.team-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.team-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.team-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
}

.team-grid {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.team-card {
  flex: 0 0 calc(33.333% - 20px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,206,209,0.08), transparent);
  transition: left 0.6s ease;
}

.team-card:hover::before {
  left: 100%;
}

.team-card:hover {
  background: rgba(0,206,209,0.08);
  border-color: rgba(0,206,209,0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,206,209,0.15);
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  position: relative;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,206,209,0.2), rgba(0,255,255,0.1));
  border: 2px solid rgba(0,206,209,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.avatar-placeholder i {
  font-size: 40px;
  color: #00CED1;
}

.avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,206,209,0.3);
  transition: all 0.3s ease;
}

.team-card:hover .avatar-placeholder {
  background: linear-gradient(135deg, rgba(0,206,209,0.3), rgba(0,255,255,0.2));
  border-color: rgba(0,206,209,0.5);
  transform: scale(1.05);
}

.team-card:hover .avatar-image {
  border-color: rgba(0,206,209,0.5);
  transform: scale(1.05);
}

.team-name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.team-role {
  font-size: 14px;
  color: #00CED1;
  font-weight: 500;
  margin-bottom: 0;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,206,209,0.2);
  border-radius: 50%;
  color: #00CED1;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: rgba(0,206,209,0.2);
  border-color: #00CED1;
  color: #0FF;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.indicator {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #00CED1;
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(0,206,209,0.6);
}

/* Team Page Mobile Responsive */
@media (max-width: 768px) {
  .team-hero {
    padding: 80px 0 60px;
  }
  
  .team-hero .hero-title {
    font-size: 36px;
  }
  
  .team-hero .hero-subtitle {
    font-size: 16px;
  }
  
  .team-section {
    padding: 60px 0;
  }
  
  .team-carousel-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .carousel-btn {
    display: none;
  }
  
  .team-carousel {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
  }
  
  .team-grid {
    gap: 0;
    width: 500%;
  }
  
  .team-card {
    flex: 0 0 20%;
    width: 20%;
    max-width: none;
    margin: 0;
    padding: 25px 15px;
  }
  
  .team-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  
  .avatar-placeholder i {
    font-size: 32px;
  }
  
  .team-name {
    font-size: 18px;
  }
  
  .team-role {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .team-hero {
    padding: 60px 0 40px;
  }
  
  .team-hero .hero-title {
    font-size: 28px;
  }
  
  .team-hero .hero-subtitle {
    font-size: 15px;
  }
  
  .team-section {
    padding: 40px 0;
  }
  
  .team-card {
    padding: 25px 20px;
  }
  
  .team-name {
    font-size: 16px;
  }
  
  .team-role {
    font-size: 12px;
  }
}

/* Services Page Styles */
.services-page {
  position: relative;
  overflow-x: hidden;
}

.services-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0,206,209,0.06) 150px, transparent 151px),
    radial-gradient(circle at 80% 20%, rgba(0,255,255,0.04) 100px, transparent 101px),
    radial-gradient(circle at 60% 80%, rgba(0,206,209,0.03) 120px, transparent 121px);
  animation: backgroundFloat 20s ease-in-out infinite;
}

.services-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, rgba(0,206,209,0.03), rgba(0,255,255,0.01));
  position: relative;
  z-index: 1;
}

.services-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.hero-stats .stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,206,209,0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
  background: rgba(0,206,209,0.1);
  transform: translateY(-3px);
}

.hero-stats .stat-number {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: #00CED1;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 5px;
}

.hero-stats .stat-label {
  font-size: 14px;
  color: #ccc;
  font-weight: 500;
}

.main-services {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card.featured {
  border: 2px solid rgba(0,206,209,0.3);
  background: rgba(0,206,209,0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,206,209,0.1), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  background: rgba(0,206,209,0.08);
  border-color: rgba(0,206,209,0.4);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,206,209,0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(0,206,209,0.1);
  border: 1px solid rgba(0,206,209,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 32px;
  color: #00CED1;
}

.service-card:hover .service-icon {
  background: rgba(0,206,209,0.2);
  border-color: rgba(0,206,209,0.4);
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.service-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  color: #00CED1;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 16px;
}

.service-features li:last-child {
  margin-bottom: 0;
}

/* Process Section */
.process-section {
  padding: 50px 0;
  background: rgba(0,206,209,0.02);
  position: relative;
  z-index: 1;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #00CED1, #0FF);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
}

.timeline-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  transform: translateX(30px);
}

.timeline-item:nth-child(even).animate-in {
  transform: translateX(0);
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00CED1, #0FF);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  margin: 0 30px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 15px;
  padding: 25px;
  max-width: 300px;
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
}

/* Technologies Section */
.technologies-section {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-category {
  text-align: center;
}

.category-title {
  font-size: 24px;
  font-weight: 600;
  color: #00CED1;
  margin-bottom: 30px;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #00CED1, #0FF);
  border-radius: 2px;
}

.tech-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 15px;
  transition: all 0.3s ease;
}

/* Tech item mobile - less padding */
@media (max-width: 768px) {
  .services-page .tech-item {
    padding: 15px 10px;
  }
}

@media (max-width: 480px) {
  .services-page .tech-item {
    padding: 12px 8px;
  }
}

.tech-item:hover {
  background: rgba(0,206,209,0.1);
  border-color: rgba(0,206,209,0.3);
  transform: translateY(-5px);
}

.tech-item i {
  font-size: 32px;
  color: #00CED1;
  transition: transform 0.3s ease;
}

.tech-item:hover i {
  transform: scale(1.2);
}

.tech-item span {
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
}

/* Services Page Mobile Responsive */
@media (max-width: 768px) {
  .services-hero {
    padding: 50px 0 30px;
  }
  
  .services-hero .hero-title {
    font-size: 36px;
  }
  
  .services-hero .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 15px;
    max-width: 250px;
    margin: 30px auto 0;
  }
  
  .main-services {
    padding: 40px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card {
    padding: 30px 25px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .service-icon i {
    font-size: 28px;
  }
  
  .service-title {
    font-size: 20px;
  }
  
  .service-desc {
    font-size: 15px;
  }
  
  .service-features li {
    font-size: 13px;
  }
  
  .process-section {
    padding: 40px 0;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .timeline-item {
    flex-direction: column !important;
    text-align: center;
    margin-bottom: 30px;
    transform: translateY(20px) !important;
  }
  
  .timeline-item.animate-in {
    transform: translateY(0) !important;
  }
  
  .timeline-number {
    margin: 0 0 15px 0;
  }
  
  .timeline-content {
    max-width: 100%;
  }
  
  .technologies-section {
    padding: 40px 0;
  }
  
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .category-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 40px 0 25px;
  }
  
  .services-hero .hero-title {
    font-size: 28px;
  }
  
  .services-hero .hero-subtitle {
    font-size: 15px;
  }
  
  .hero-stats .stat-number {
    font-size: 24px;
  }
  
  .main-services {
    padding: 30px 0;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-title {
    font-size: 18px;
  }
  
  .process-section {
    padding: 30px 0;
  }
  
  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-content h3 {
    font-size: 18px;
  }
  
  .timeline-content p {
    font-size: 14px;
  }
  
  .technologies-section {
    padding: 30px 0;
  }
}

/* Contact Page Styles */
.contact-page {
  position: relative;
  overflow-x: hidden;
}

.contact-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(0,206,209,0.05) 120px, transparent 121px),
    radial-gradient(circle at 75% 75%, rgba(0,255,255,0.03) 100px, transparent 101px);
  animation: backgroundFloat 30s ease-in-out infinite;
}

.contact-hero {
  padding: 80px 0 50px;
  background: linear-gradient(135deg, rgba(0,206,209,0.03), rgba(0,255,255,0.01));
  position: relative;
  z-index: 1;
}

.contact-hero .hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-content {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 20px;
  padding: 40px;
}

.contact-form {
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #00CED1;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0,206,209,0.5);
  background: rgba(0,206,209,0.1);
  box-shadow: 0 0 20px rgba(0,206,209,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.submit-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(90deg, #00CED1, #0FF);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,206,209,0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Contact Info */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.contact-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:hover {
  background: rgba(0,206,209,0.05);
  border-color: rgba(0,206,209,0.3);
  transform: translateY(-3px);
}

.contact-page .contact-icon {
  font-size: 20px;
  color: #00CED1;
  margin-bottom: 15px;
  display: inline-block;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.contact-link {
  color: #00CED1;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #0FF;
}

.contact-details p,
.address-text p,
.hours-text p {
  color: #aaa;
  font-size: 14px;
  margin: 2px 0;
}

.address-text p:first-child,
.hours-text p:first-child {
  margin-top: 5px;
}

/* Map */
.map-container {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.map-container:hover {
  border-color: rgba(0,206,209,0.3);
}

.map-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,206,209,0.2);
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  filter: grayscale(0.3) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-container:hover .map-wrapper iframe {
  filter: grayscale(0) contrast(1.2);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: rgba(0,206,209,0.02);
  position: relative;
  z-index: 1;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,206,209,0.15);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  border-color: rgba(0,206,209,0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0,206,209,0.05);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.faq-question i {
  color: #00CED1;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0 40px;
  }
  
  .contact-hero .hero-title {
    font-size: 36px;
  }
  
  .contact-hero .hero-subtitle {
    font-size: 16px;
  }
  
  .contact-content {
    padding: 50px 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-section {
    padding: 30px 25px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  .contact-page .contact-icon {
    font-size: 18px;
  }
  
  .contact-details h3 {
    font-size: 16px;
  }
  
  .contact-link {
    font-size: 15px;
  }
  
  .map-container {
    padding: 20px;
  }
  
  .map-title {
    font-size: 18px;
  }
  
  .map-wrapper iframe {
    height: 250px;
  }
  
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-question {
    padding: 20px 25px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 25px 20px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 50px 0 30px;
  }
  
  .contact-hero .hero-title {
    font-size: 28px;
  }
  
  .contact-hero .hero-subtitle {
    font-size: 15px;
  }
  
  .contact-content {
    padding: 40px 0;
  }
  
  .contact-grid {
    gap: 30px;
  }
  
  .contact-form-section {
    padding: 25px 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .form-group label {
    font-size: 13px;
  }
  
  .submit-btn {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .contact-cards {
    gap: 12px;
  }
  
  .contact-card {
    padding: 18px 15px;
  }
  
  .contact-page .contact-icon {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .contact-details h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .contact-link {
    font-size: 14px;
  }
  
  .contact-details p,
  .address-text p,
  .hours-text p {
    font-size: 13px;
  }
  
  .map-container {
    padding: 18px 15px;
  }
  
  .map-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .map-wrapper iframe {
    height: 220px;
  }
  
  .faq-section {
    padding: 40px 0;
  }
  
  .faq-question {
    padding: 18px 20px;
  }
  
  .faq-question h3 {
    font-size: 15px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 18px;
  }
}

/* Animation classes */
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  .navbar-container {
    padding: 20px 30px;
  }
  .hero h1 {
    font-size: 60px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .project-card.featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  /* Hide desktop navigation and show mobile controls */
  .desktop-nav,
  .desktop-lang-switcher {
    display: none;
  }
  
  .mobile-controls {
    display: flex;
  }
  
  .navbar-container {
    padding: 15px 20px;
    align-items: center; /* Ekstra hizalama garantisi */
  }
  
  .navbar.scrolled .navbar-container {
    padding: 12px 20px;
  }
  
  
  .hero {
    height: 95vh; /* Mobilde çok daha küçük */
    min-height: 400px;
  }
  .hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
  }
  .hero .hero-content {
    padding: 0 20px;
  }
  .hero p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .intro h2 {
    font-size: 28px;
  }
  .quick-links {
    flex-direction: column;
    align-items: center;
  }
  .quick-links .card {
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 95vh;
    min-height: 350px; 
  }
  .hero h1 {
    font-size: 32px;
  }
  .navbar-container {
    padding: 10px 15px;
  }
  .intro {
    padding: 60px 20px;
  }
  .quick-links .card {
    min-width: 200px;
    padding: 20px 15px;
  }
  
  .mobile-nav a {
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .mobile-nav a:hover {
    padding-left: 30px;
  }
  
  .mobile-lang-switcher .lang-btn {
    font-size: 11px;
    padding: 4px 8px;
    height: 24px;
  }
  
  .mobile-controls {
    height: 36px; /* Logo ile aynı yükseklik */
  }

  /* Mobile responsive for new sections */
  .section-compact h2 {
    font-size: 28px;
  }
  
  .section-compact p {
    font-size: 15px;
    margin-bottom: 40px;
  }
  
  .features-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-box {
    padding: 25px 20px;
    min-height: 220px;
  }
  
  .custom-icon {
    font-size: 24px;
    width: 56px;
    height: 56px;
    padding: 12px;
    margin-bottom: 15px;
  }
  
  .feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .feature-box p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    justify-content: center;
  }

  /* Welcome section mobile */
  .welcome-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .welcome-title {
    font-size: 28px;
    letter-spacing: 0.5px;
  }
  
  .welcome-title::after {
    width: 60px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .welcome-title::before {
    border-radius: 6px;
  }
  
  .welcome-description {
    font-size: 16px;
  }
  
  .welcome-links {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .welcome-link {
    padding: 20px;
  }
  
  .welcome-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
  }
  
  .terminal-window,
  .browser-window {
    max-width: 350px;
  }
  
  .projects-section {
    padding: 60px 20px;
  }
  
  .projects-section h2 {
    font-size: 28px;
  }
  
  .projects-section p {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .project-image {
    height: 180px;
  }
  
  .project-info {
    padding: 20px;
  }
  
  .project-info h3 {
    font-size: 20px;
  }
  
  .project-stats {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .project-placeholder {
    height: 220px;
    padding: 30px 20px;
  }
  
  .placeholder-icon {
    width: 50px;
    height: 50px;
  }
  
  .placeholder-icon i {
    font-size: 20px;
  }
}

@media (max-width: 320px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .projects-section {
    padding: 50px 15px;
  }
  
  .projects-section h2 {
    font-size: 24px;
  }
  
  .project-image {
    height: 160px;
  }
  
  .project-info {
    padding: 15px;
  }
  
  .project-placeholder {
    height: 180px;
    padding: 25px 15px;
  }
  
  .tech-tag {
    font-size: 11px;
    padding: 3px 6px;
  }
  
  .features-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-box {
    padding: 25px 20px;
    min-height: 200px;
  }
}

/* Projects Section */
.projects-section {
  padding: 80px 20px;
  background: rgba(0,206,209,0.02);
}

.projects-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
}

.projects-section p {
  text-align: center;
  color: #ccc;
  margin-bottom: 50px;
  font-size: 18px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0,206,209,0.2);
  transition: all 0.3s ease;
  position: relative;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,206,209,0.2);
  border-color: rgba(0,206,209,0.4);
}

.project-card.featured {
  border: 2px solid rgba(0,206,209,0.4);
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,206,209,0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  background: rgba(0,206,209,0.8);
  color: #000;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.project-info {
  padding: 25px;
}

.project-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #00CED1;
}

.project-info p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.project-stats {
  display: flex;
  gap: 20px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #999;
}

.stat i,
.stat .icon-symbol {
  color: #00CED1;
  font-size: 12px;
}

/* Project Placeholder */
.project-placeholder {
  padding: 40px 25px;
  text-align: center;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.placeholder-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,206,209,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.placeholder-icon i,
.placeholder-icon .icon-symbol {
  font-size: 24px;
  color: #00CED1;
}

.project-placeholder h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.project-placeholder p {
  color: #999;
  font-size: 14px;
  text-align: center;
  margin: 0;
}

/* Impact Section */
.impact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(12, 61, 100, 0.15), rgba(0,206,209,0.05));
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(0,206,209,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(0,206,209,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(0,206,209,0.1)"/></svg>');
  opacity: 0.3;
}

.impact-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.impact-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fff 0%, #00CED1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.impact-header p {
  font-size: 18px;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 35px 30px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(0,206,209,0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,206,209,0.1), transparent);
  transition: left 0.6s ease;
}

.metric-card:hover::before {
  left: 100%;
}

.metric-card:hover {
  background: rgba(0,206,209,0.08);
  transform: translateY(-5px);
  border-color: rgba(0,206,209,0.4);
  box-shadow: 0 20px 40px rgba(0,206,209,0.15);
}

.metric-visual {
  flex-shrink: 0;
}

.metric-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #00CED1 0%, #0FF 100%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-circle::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #040D1A;
}

.metric-number {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 700;
  color: #00CED1;
  font-family: 'Courier New', monospace;
}

.metric-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.metric-info p {
  font-size: 14px;
  color: #999;
  margin: 0;
  line-height: 1.4;
}
