  :root {
        --primary: #ffc107; /* Sary reňk */
        --dark: #1e293b;
        --gray: #64748b;
        --bg: #f8fafc;
        background: linear-gradient(180deg, #9cc8fa 100%, #4a90e2 50%, #2c5aa0 100%);

      }

      .team-container {
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 20px;
      }

      .team-header {
        text-align: center;
        margin-bottom: 50px;
      }
      .team-header h1 {
        font-size: 2.5rem;
        color: #1e0080;
        font-weight: 900;
      }
      .team-header p {
        color: #06088a;
        margin-top: 10px;
        font-weight: 900;
      }

      /* Modern Tabs Navigation */
      .tabs-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 60px;
      }

      .tabs-nav {
        display: flex;
        position: relative;
        background: #fff;
        padding: 8px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      }

      .tab-item {
        padding: 12px 30px;
        border: none;
        background: none;
        font-weight: 600;
        color: var(--gray);
        cursor: pointer;
        z-index: 2;
        transition: 0.4s;
        min-width: 120px;
      }

      .tab-item.active {
        color: var(--dark);
      }

      /* Hereket edýän sary görkeziji */
      .tab-indicator {
        position: absolute;
        height: calc(100% - 16px);
        width: 120px;
        background: var(--primary);
        left: 8px;
        top: 8px;
        border-radius: 12px;
        transition: 0.5s cubic-bezier(0.68, -0.55, 0.26, 1.55);
        z-index: 1;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
      }

      /* Işgär Kartlary */
      .grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 35px;
      }

      .card {
        background: #fff;
        border-radius: 24px;
        padding: 15px;
        text-align: center;
        transition: 0.4s ease;
        border: 1px solid #f1f5f9;
      }

      .card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
      }

      .image-box {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 20px;
      }

      .image-box img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: 0.5s;
      }

      .card:hover img {
        transform: scale(1.1);
      }

      /* Surat üstündäki effekti */
      .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.4s;
      }

      .overlay span {
        background: #fff;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: bold;
        color: var(--dark);
      }

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

      .card h3 {
        font-size: 1.3rem;
        color: var(--dark);
        margin-bottom: 5px;
      }
      .card p {
        color: var(--primary);
        font-weight: 600;
        font-size: 0.9rem;
      }

      /* Tab Panes */
      .tab-pane {
        display: none;
        animation: slideUp 0.6s ease;
      }
      .tab-pane.active {
        display: block;
      }

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

      .back-btn {
        position: fixed;
        top: 30px;
        left: 30px;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
        z-index: 100;
        text-decoration: none;
        color: #333;
        font-size: 24px;
      }
