    /* Card Icon Style */
    .card-icon {
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: var(--transition);
      padding: 8px;
    }

    .card-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
      transition: var(--transition);
    }

    .card:hover .card-icon {
      border-color: var(--hover-color);
      background: var(--hover-bg);
      box-shadow: 0 8px 25px var(--hover-glow);
    }

    .card:hover .card-icon img {
      transform: scale(1.1);
    }

    .hero-new {
      padding: 180px 24px 100px;
      display: flex;
      align-items: center;
      min-height: 90vh;
      background-color: var(--bg-color);
      position: relative;
    }

    .hero-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      z-index: 2;
    }

    .hero-left {
      flex: 1;
      max-width: 600px;
      animation: fadeInLeft 1s ease;
    }

    .hero-subtitle {
      display: block;
      color: var(--text-secondary);
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 15px;
      font-family: "Space Grotesk", sans-serif;
    }

    .hero-title {
      font-size: 3.0rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 25px;
      font-family: "Space Grotesk", sans-serif;
    }

    .hero-desc {
      color: var(--text-secondary);
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 40px;
      font-weight: 400;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn-pink {
      padding: 16px 24px;
      background-color: #ff8ca3;
      color: #fff;
      font-weight: 900;
      border-radius: 8px;
      text-decoration: none;
      transition: var(--transition);
      font-family: "Space Grotesk", sans-serif;
      font-size: 1rem;
    }
    
    .btn-pink:hover {
      background-color: #ff708e;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(255, 140, 163, 0.3);
    }

    .btn-dark {
      padding: 16px 32px;
      background-color: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: var(--transition);
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.95rem;
    }

    .btn-dark:hover {
      background-color: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-2px);
    }

    .hero-right {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeInRight 1s ease;
    }

    .hero-logo {
      max-width: 100%;
      height: auto;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (max-width: 900px) {
      .hero-container {
        flex-direction: column-reverse;
        text-align: center;
      }
      .hero-buttons {
        justify-content: center;
      }
      .hero-title {
        font-size: 2.5rem;
      }
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 24px 120px 24px;
      position: relative;
      z-index: 2;
      flex: 1;
    }

    .section-header {
      margin-bottom: 60px;
      text-align: center;
    }

    .section-title {
      font-family: "Space Grotesk", sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #fff;
      position: relative;
      display: inline-block;
      padding-bottom: 12px;
    }

    .section-title::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--accent-color);
      border-radius: 2px;
      box-shadow: 0 0 10px rgba(241, 178, 41, 0.5);
    }

    .about-section {
      margin-bottom: 120px;
    }

    .about-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 30px;
    }

    .projects-header {
      align-items: center;
    }

    .about-title {
      font-family: "Space Grotesk", sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      margin: 0;
    }

    .about-subtitle {
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.95rem;
      color: var(--text-secondary);
      margin-bottom: 6px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .about-card {
      background: #0f1219;
      border: 1px solid #1f2430;
      padding: 30px 24px;
      border-radius: 12px;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .about-card:hover {
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .about-card h3 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }

    .about-card p {
      font-size: 1.05rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .grid-projects {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .card.project {
      padding: 20px;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .card.project:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 255, 255, 0.15);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .thumb {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 12px;
    }

    .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .card.project:hover .thumb img {
      transform: scale(1.05);
    }

    .badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 2;
    }

    .p-meta {
      padding: 20px 0 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
      flex: 1;
    }
    .p-meta > div:first-child {
      flex: 1;
      min-width: 0;
    }

    

    .p-title {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin: 0 0 8px 0;
    }

    .project-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn {
      padding: 8px 16px;
      text-decoration: none;
      border-radius: 6px;
      font-family: "Space Grotesk", sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn.primary {
      background-color: #ff8fa3;
      color: #fff;
    }

    .btn.primary:hover {
      background-color: #ff748c;
      transform: translateY(-2px);
    }

    .btn.dark {
      background-color: rgba(255, 255, 255, 0.05);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn.dark:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .muted {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin: 0;
    }

    .grid-branches {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
    }

    .card {
      --hover-color: var(--accent-color);
      --hover-glow: rgba(241, 178, 41, 0.15);
      --hover-bg: rgba(241, 178, 41, 0.05);
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      padding: 40px 35px;
      position: relative;
      border-radius: 20px;
      transition: var(--transition);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    /* Branch-specific hover themes */
    .card-inzibat {
      --hover-color: #000000;
      --hover-glow: rgba(255, 255, 255, 0.08);
      --hover-bg: rgba(0, 0, 0, 0.6);
    }

    .card-kara {
      --hover-color: #8b5a2b;
      --hover-glow: rgba(139, 90, 43, 0.3);
      --hover-bg: rgba(139, 90, 43, 0.08);
    }

    .card-hava {
      --hover-color: #38bdf8;
      --hover-glow: rgba(56, 189, 248, 0.3);
      --hover-bg: rgba(56, 189, 248, 0.08);
    }

    .card-sinir {
      --hover-color: #0f766e;
      --hover-glow: rgba(15, 118, 110, 0.35);
      --hover-bg: rgba(15, 118, 110, 0.08);
    }

    .card-ozel {
      --hover-color: #ef4444;
      --hover-glow: rgba(239, 68, 68, 0.35);
      --hover-bg: rgba(239, 68, 68, 0.08);
    }

    .card-jandarma {
      --hover-color: #1e40af;
      --hover-glow: rgba(30, 64, 175, 0.35);
      --hover-bg: rgba(30, 64, 175, 0.08);
    }

    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg,
          var(--hover-bg) 0%,
          transparent 100%);
      opacity: 0;
      transition: var(--transition);
    }

    .card:hover {
      transform: translateY(-8px);
      border-color: var(--hover-color);
      box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.4),
        0 0 25px var(--hover-glow);
    }

    .card:hover::before {
      opacity: 1;
    }

    .card h3 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      letter-spacing: 0.5px;
    }

    .card .subtitle {
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.75rem;
      color: var(--accent-color);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .card p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      font-weight: 300;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .hero-new {
        padding: 120px 16px 60px;
      }

      .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
      }

      .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
      }

      .container {
        padding: 40px 16px 80px 16px;
      }

      .about-card {
        padding: 25px 20px;
      }

      .grid-branches {
        grid-template-columns: 1fr;
      }

      .grid-projects {
        grid-template-columns: 1fr;
      }

      .p-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }
    }
.card.project::before { display: none; }

.discord-section {
  margin-top: 100px;
}

.discord-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.discord-container iframe {
  border-radius: 12px;
  border: 1px solid #1f2430;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  width: 100%;
  height: 550px;
}

.discord-container iframe:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.stats-section {
  margin-top: 100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.stats-card {
  background: #0f1219;
  border: 1px solid #1f2430;
  border-radius: 12px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.stats-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stats-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.stats-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stats-value {
    font-size: 2.2rem;
  }
}

